:root {
  --lp-bg: #edf3f6;
  --lp-bg-deep: #d7e4ec;
  --lp-surface: #ffffff;
  --lp-surface-2: #f4f9fd;
  --lp-text: #12253a;
  --lp-text-soft: #4b667f;
  --lp-line: #cfe0ea;
  --lp-brand: #1172dd;
  --lp-brand-strong: #0b5ab8;
  --lp-brand-soft: #e6f1ff;
  --lp-focus: #33a0e8;
  --lp-danger: #6e1c26;
  --lp-danger-bg: #ffe8ed;
  --lp-radius-sm: 0.75rem;
  --lp-radius-md: 1.1rem;
  --lp-radius-lg: 1.7rem;
  --lp-shadow-sm: 0 20px 40px -30px rgba(12, 52, 94, 0.35);
  --lp-shadow-lg: 0 34px 70px -38px rgba(8, 39, 84, 0.38);
  --lp-speed: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.layout,
.body {
  min-height: 100vh;
}

.body {
  color: var(--lp-text);
  background:
    radial-gradient(circle at -4% 4%, rgba(35, 143, 237, 0.26), transparent 37%),
    radial-gradient(circle at 98% 0%, rgba(74, 220, 218, 0.16), transparent 35%),
    linear-gradient(180deg, #f8fcff 0%, var(--lp-bg) 58%, var(--lp-bg-deep) 100%);
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  line-height: 1.58;
  position: relative;
  display: flex;
  flex-direction: column;
}

.body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(84, 122, 173, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(84, 122, 173, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 14%, black 24%, transparent 76%);
}

.body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 44%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 52%
  );
  opacity: 0.4;
  animation: lpSheen 22s linear infinite;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(175, 199, 232, 0.5);
}

.main,
.nav,
.footer-content {
  width: min(1180px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.main {
  flex: 1;
  padding: 2.2rem 0 4.4rem;
}

.nav {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0;
  position: relative;
  flex-wrap: wrap;
}

.nav-brand {
  text-decoration: none;
  color: var(--lp-text);
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.34rem;
  font-weight: 700;
}

.nav-toggle {
  border: 1px solid var(--lp-line);
  background: #fff;
  color: var(--lp-text);
  min-height: 2.75rem;
  min-width: 2.95rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle__line {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-list {
  list-style: none;
  position: fixed;
  top: 72px;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 120;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d8e5f8;
  border-radius: 1rem;
  box-shadow: var(--lp-shadow-lg);
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-list--open {
  display: flex;
}

.nav-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--lp-speed),
    background-color var(--lp-speed),
    color var(--lp-speed);
}

.nav-link--ghost {
  color: var(--lp-text-soft);
  border: 1px solid var(--lp-line);
  background: #fff;
}

.nav-link--ghost:hover {
  color: var(--lp-brand-strong);
  background: var(--lp-brand-soft);
}

.nav-link--accent {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(130deg, #0f56c7, #2489e8);
  box-shadow: var(--lp-shadow-sm);
}

.nav-link--accent:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.lp-hero,
.lp-trust,
.lp-stats,
.lp-section,
.lp-final,
.lp-page,
.lp-auth {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow-sm);
}

.lp-kicker {
  display: inline-flex;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: var(--lp-brand-strong);
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.lp-actions--center {
  justify-content: center;
}

.lp-actions--spaced {
  margin-top: 1.55rem;
}

.lp-actions--cta-gap {
  margin-top: 1.9rem;
}

.lp-actions--stack-mobile .lp-link {
  width: 100%;
  text-align: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.75rem 1.05rem;
  border-radius: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    background-color var(--lp-speed),
    color var(--lp-speed);
  position: relative;
  overflow: hidden;
}

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(140deg, #0f56c7, #2f8dea 85%);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 24%,
    rgba(255, 255, 255, 0.34) 50%,
    transparent 76%
  );
  transform: translateX(-130%);
  animation: lpBtnSheen 4.8s ease-in-out infinite;
}

.lp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-btn--ghost {
  color: var(--lp-text);
  background: #fff;
  border-color: var(--lp-line);
}

.lp-btn--ghost:hover {
  background: var(--lp-brand-soft);
  color: var(--lp-brand-strong);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-link {
  color: var(--lp-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.lp-link:hover {
  text-decoration: underline;
}

.lp-hero {
  display: grid;
  gap: 1.45rem;
  padding: 1.55rem;
  position: relative;
  overflow: hidden;
}

.lp-hero--wide {
  min-height: 23rem;
}

.lp-hero::after {
  content: '';
  position: absolute;
  width: 19rem;
  height: 19rem;
  right: -10rem;
  top: -11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 149, 247, 0.28), rgba(56, 149, 247, 0));
  pointer-events: none;
  animation: lpFloatOrb 9s ease-in-out infinite;
}

.lp-hero::before {
  content: '';
  position: absolute;
  left: -7rem;
  bottom: -9rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 160, 213, 0.2), rgba(16, 160, 213, 0));
  pointer-events: none;
  animation: lpFloatOrb 11s ease-in-out infinite reverse;
}

.lp-hero__title,
.lp-section__title,
.lp-auth__title,
.lp-final__title {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.lp-hero__title {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 7.1vw, 3.45rem);
}

.lp-hero__lead,
.lp-page__lead,
.lp-final__lead,
.lp-auth__lead,
.lp-auth__aside-text {
  margin-top: 0.8rem;
  color: var(--lp-text-soft);
  line-height: 1.68;
  max-width: 66ch;
  font-size: 1.02rem;
}

.lp-points {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--lp-text-soft);
}

.lp-points li {
  position: relative;
  padding-left: 1.1rem;
}

.lp-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--lp-brand);
}

.lp-hero__panel {
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f9fbff, #f0f6ff);
  padding: 1.35rem;
  animation: lpCardBob 8s ease-in-out infinite;
}

.lp-panel__title {
  font-weight: 700;
  color: #1a3e76;
}

.lp-panel__grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.lp-mini-card {
  padding: 0.95rem;
  border: 1px solid #cee0fb;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.85);
  min-height: 5.2rem;
}

.lp-mini-card__value {
  display: block;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: #19498e;
}

.lp-mini-card__label {
  color: var(--lp-text-soft);
  font-size: 0.92rem;
}

.lp-trust {
  margin-top: 1.45rem;
  padding: 1.3rem;
}

.lp-trust--compact {
  margin-top: 0;
  height: 100%;
}

.lp-trust__title {
  text-align: center;
  font-weight: 700;
  color: #223f73;
}

.lp-trust__row {
  margin-top: 0.75rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.lp-trust__row--tight {
  margin-top: 0.95rem;
}

.lp-chip {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #f2f7ff;
  border: 1px solid #d6e5fb;
  color: #365f97;
  font-weight: 700;
  transition:
    transform var(--lp-speed),
    background-color var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-chip:hover {
  transform: translateY(-2px);
  background: #ebf5ff;
  border-color: #bdd7f5;
}

.lp-stats {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.lp-stats--compact {
  margin-top: 0;
  align-content: start;
  height: 100%;
}

.lp-layout-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 1.45rem;
}

.lp-layout-grid--mosaic,
.lp-layout-grid--split {
  align-items: stretch;
}

.lp-story {
  margin-top: 1.45rem;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(140deg, rgba(18, 114, 221, 0.08), rgba(47, 180, 183, 0.08)), #ffffff;
  box-shadow: var(--lp-shadow-sm);
  padding: 1.35rem;
}

.lp-story--side {
  margin-top: 0;
  height: 100%;
}

.lp-story__intro {
  max-width: 72ch;
}

.lp-story__rail {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.lp-story__rail--stack {
  align-content: start;
}

.lp-story__event {
  border: 1px solid #c7ddef;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-story__event--roomy {
  min-height: 11.25rem;
}

.lp-story__event:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a8c7e3;
}

.lp-story__event span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c65bc;
}

.lp-story__event h3 {
  margin-top: 0.35rem;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

.lp-story__event p {
  margin-top: 0.35rem;
  color: var(--lp-text-soft);
}

.lp-stat {
  border: 1px solid #d4e2f7;
  border-radius: var(--lp-radius-md);
  padding: 1.05rem;
  background: linear-gradient(180deg, #f9fcff, #f0f6ff);
  min-height: 7.25rem;
}

.lp-stat__value {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  color: #19498e;
}

.lp-stat__label {
  color: var(--lp-text-soft);
  font-size: 0.95rem;
}

.lp-section,
.lp-page,
.lp-final {
  margin-top: 1.45rem;
  padding: 1.55rem;
}

.lp-section--flush {
  margin-top: 0;
  height: 100%;
}

.lp-section--soft {
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.lp-section__head {
  margin-bottom: 1.05rem;
}

.lp-section__title,
.lp-auth__title,
.lp-final__title {
  margin-top: 0.4rem;
  font-size: clamp(1.65rem, 6.4vw, 2.55rem);
}

.lp-grid {
  display: grid;
  gap: 0.95rem;
}

.lp-grid--features-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid--about-inline .lp-card {
  background: linear-gradient(180deg, #ffffff, #f8fcff);
}

.lp-card {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.3rem;
  min-width: 0;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-card--roomy {
  min-height: 9.2rem;
}

.lp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a7c8e6;
}

.lp-card h2,
.lp-card h3,
.lp-timeline__item h3,
.lp-walkthrough__item h2 {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.015em;
  font-size: 1.26rem;
}

.lp-card p,
.lp-timeline__item p,
.lp-walkthrough__item p {
  margin-top: 0.4rem;
  color: var(--lp-text-soft);
  line-height: 1.65;
}

.lp-timeline {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.lp-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.25rem;
  min-height: 8rem;
  min-width: 0;
}

.lp-timeline__index {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--lp-brand-strong);
  background: var(--lp-brand-soft);
}

.lp-walkthrough {
  display: grid;
  gap: 0.75rem;
}

.lp-walkthrough__item {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.15rem;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-walkthrough__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a7c8e6;
}

.lp-walkthrough__step {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #235ebe;
}

.lp-page--404 {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}

.lp-auth {
  padding: 1.45rem;
  display: grid;
  gap: 1.25rem;
}

.lp-auth__form-wrap {
  order: 1;
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.45rem;
  min-width: 0;
}

.lp-auth__aside {
  order: 2;
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f8fbff, #f1f7ff);
  padding: 1.45rem;
  min-width: 0;
}

.lp-auth--login .lp-auth__aside,
.lp-auth--register .lp-auth__aside {
  order: 2;
}

.lp-auth--login .lp-auth__form-wrap,
.lp-auth--register .lp-auth__form-wrap {
  order: 1;
}

.lp-auth__aside-title {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.35rem, 4.4vw, 1.92rem);
  letter-spacing: -0.02em;
}

.lp-auth__checks,
.lp-auth__steps {
  margin-top: 0.8rem;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.lp-auth__checks li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--lp-text-soft);
}

.lp-auth__checks li::before {
  content: '';
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  left: 0;
  top: 0.62rem;
  background: var(--lp-brand);
}

.lp-auth__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--lp-text-soft);
}

.lp-auth__steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-brand-soft);
  color: var(--lp-brand-strong);
  font-weight: 800;
  font-size: 0.78rem;
}

.lp-auth__aside .lp-btn {
  margin-top: 0.95rem;
}

.lp-auth__form {
  display: grid;
  gap: 0.75rem;
}

.form-group {
  display: grid;
  gap: 0.33rem;
}

.form-group--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-label {
  color: #31517d;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-label--required::after {
  content: '*';
  margin-left: 0.2rem;
  color: #b53d20;
}

.form-input {
  width: 100%;
  min-height: 2.95rem;
  border-radius: 0.8rem;
  border: 1px solid #c0d4f1;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--lp-text);
  background: #fbfdff;
  outline: none;
  transition:
    border-color var(--lp-speed),
    box-shadow var(--lp-speed);
}

.form-input:focus {
  border-color: var(--lp-focus);
  box-shadow: 0 0 0 3px rgba(82, 161, 255, 0.22);
}

.form-button {
  width: 100%;
  min-height: 2.95rem;
  border: 0;
  border-radius: 0.8rem;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: linear-gradient(135deg, #0f56c7, #2f8dea);
  cursor: pointer;
  transition:
    transform var(--lp-speed),
    filter var(--lp-speed);
}

.form-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.form-button:disabled {
  cursor: not-allowed;
  transform: none;
  filter: saturate(0.85) brightness(0.95);
}

.auth-footer,
.auth-link {
  font-size: 0.95rem;
}

.auth-footer {
  color: var(--lp-text-soft);
}

.auth-link {
  color: var(--lp-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.message,
.error {
  border-radius: 0.8rem;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.message {
  border: 1px solid #b5d4ff;
  background: #edf5ff;
  color: #244f9a;
}

.error {
  border: 1px solid #d9a9b4;
  background: var(--lp-danger-bg);
  color: var(--lp-danger);
}

.footer {
  margin-top: 1.5rem;
  border-top: 1px solid #cad9ef;
  background: #0e274e;
  color: #d2e0f6;
  padding: 1.7rem 0;
}

.footer-copy {
  text-align: center;
  color: #9fb9e4;
  margin-bottom: 0.7rem;
}

.footer-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}

.footer-link {
  color: #ebf2ff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.reveal-ready .lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lp-delay, 0ms);
}

.reveal-ready .lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .lp-reveal .lp-card,
.reveal-ready .lp-reveal .lp-story__event,
.reveal-ready .lp-reveal .lp-timeline__item,
.reveal-ready .lp-reveal .lp-stat,
.reveal-ready .lp-reveal .lp-walkthrough__item,
.reveal-ready .lp-reveal .lp-mini-card,
.reveal-ready .lp-reveal .lp-chip,
.reveal-ready .lp-reveal .lp-auth__form-wrap,
.reveal-ready .lp-reveal .lp-auth__aside,
.reveal-ready .lp-reveal .form-group {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

.reveal-ready .lp-reveal.is-visible .lp-card,
.reveal-ready .lp-reveal.is-visible .lp-story__event,
.reveal-ready .lp-reveal.is-visible .lp-timeline__item,
.reveal-ready .lp-reveal.is-visible .lp-stat,
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item,
.reveal-ready .lp-reveal.is-visible .lp-mini-card,
.reveal-ready .lp-reveal.is-visible .lp-chip,
.reveal-ready .lp-reveal.is-visible .lp-auth__form-wrap,
.reveal-ready .lp-reveal.is-visible .lp-auth__aside,
.reveal-ready .lp-reveal.is-visible .form-group {
  animation: lpCascadeIn 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-story__event:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-mini-card:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(2) {
  animation-delay: 95ms;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-story__event:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-mini-card:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(3) {
  animation-delay: 190ms;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(4) {
  animation-delay: 285ms;
}

.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(5) {
  animation-delay: 360ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(4) {
  animation-delay: 90ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(5) {
  animation-delay: 180ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(6) {
  animation-delay: 270ms;
}

.lp-reveal--1 {
  --lp-delay: 80ms;
}

.lp-reveal--2 {
  --lp-delay: 200ms;
}

.lp-reveal--3 {
  --lp-delay: 320ms;
}

.lp-reveal--4 {
  --lp-delay: 440ms;
}

.lp-reveal--5 {
  --lp-delay: 560ms;
}

.lp-reveal--6 {
  --lp-delay: 680ms;
}

.lp-reveal--7 {
  --lp-delay: 780ms;
}

.lp-reveal--8 {
  --lp-delay: 880ms;
}

@media (display-mode: standalone) {
  .nav-item-install {
    display: none;
  }
}

@media (min-width: 768px) {
  .main,
  .nav,
  .footer-content {
    width: min(1200px, calc(100% - 2rem));
  }

  .main {
    padding-top: 2.9rem;
    padding-bottom: 5rem;
  }

  .nav {
    flex-wrap: nowrap;
  }

  .nav-list {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-link {
    width: auto;
    min-height: 2.6rem;
    padding-inline: 0.86rem;
  }

  .lp-btn {
    min-width: 13rem;
  }

  .lp-hero {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2rem;
    gap: 1.6rem;
  }

  .lp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-layout-grid {
    gap: 1.6rem;
  }

  .lp-layout-grid:not(.lp-layout-grid--mosaic):not(.lp-layout-grid--split) {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .lp-layout-grid--mosaic {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .lp-layout-grid--split {
    grid-template-columns: 1fr 1fr;
  }

  .lp-trust__row {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

  .lp-grid--features,
  .lp-grid--about,
  .lp-walkthrough {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--features-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-story {
    padding: 1.65rem;
  }

  .lp-story__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-auth {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 1.4rem;
    align-items: stretch;
  }

  .lp-auth__form-wrap,
  .lp-auth__aside {
    order: initial;
    padding: 1.35rem;
  }

  .lp-page--404 .lp-actions--stack-mobile .lp-link {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .main,
  .nav,
  .footer-content {
    width: min(1240px, calc(100% - 2.5rem));
  }

  .lp-hero,
  .lp-story,
  .lp-section,
  .lp-page,
  .lp-final,
  .lp-auth {
    padding: 2.3rem;
  }

  .lp-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-layout-grid {
    gap: 1.9rem;
  }

  .lp-grid--features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-story__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-walkthrough {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-auth {
    grid-template-columns: 0.96fr 1.04fr;
  }
}

@media (max-width: 767px) {
  .lp-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .body::after {
    animation: none;
  }

  .lp-hero::before,
  .lp-hero::after,
  .lp-hero__panel,
  .lp-btn--primary::after {
    animation: none;
  }

  .reveal-ready .lp-reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-ready .lp-reveal .lp-card,
  .reveal-ready .lp-reveal .lp-story__event,
  .reveal-ready .lp-reveal .lp-timeline__item,
  .reveal-ready .lp-reveal .lp-stat,
  .reveal-ready .lp-reveal .lp-walkthrough__item,
  .reveal-ready .lp-reveal .lp-mini-card,
  .reveal-ready .lp-reveal .lp-chip,
  .reveal-ready .lp-reveal .lp-auth__form-wrap,
  .reveal-ready .lp-reveal .lp-auth__aside,
  .reveal-ready .lp-reveal .form-group {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .lp-card,
  .lp-story__event,
  .lp-walkthrough__item,
  .lp-btn,
  .nav-link {
    transition: none;
  }
}

@keyframes lpSheen {
  0% {
    transform: translateX(-16%);
  }

  100% {
    transform: translateX(16%);
  }
}

@keyframes lpCascadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lpBtnSheen {
  0%,
  14% {
    transform: translateX(-130%);
  }

  35%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes lpCardBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes lpFloatOrb {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-12px) translateX(6px);
  }
}
