.landing-body {
  background:
    radial-gradient(circle at 16% 0%, rgba(243, 179, 77, 0.16), transparent 26%),
    radial-gradient(circle at 100% 18%, rgba(88, 134, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07080d 0%, #090b13 48%, #06070c 100%);
}

.landing-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  height: 3px;
  width: calc(var(--landing-progress, 0) * 100%);
  background: linear-gradient(90deg, #f3b34d, #6b92ff);
  box-shadow: 0 0 18px rgba(243, 179, 77, 0.35);
}

.landing-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 14, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-nav__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
}

.landing-brand img {
  width: 74px;
  max-width: 100%;
  display: block;
}

.landing-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.landing-links a:hover,
.landing-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.landing-nav__actions,
.landing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-main {
  overflow: clip;
}

.landing-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 52px 0 42px;
}

.landing-hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.95;
  will-change: transform;
}

.landing-orb--gold {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -70px;
  background: radial-gradient(circle, rgba(243, 179, 77, 0.34) 0%, rgba(243, 179, 77, 0) 72%);
}

.landing-orb--blue {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 90px;
  background: radial-gradient(circle, rgba(93, 141, 219, 0.28) 0%, rgba(93, 141, 219, 0) 70%);
}

.landing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 84%);
}

.landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.landing-copy {
  display: grid;
  gap: 22px;
}

.landing-kicker {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f3b34d;
}

.landing-copy h1,
.landing-section__head h2,
.landing-flow__copy h2,
.landing-final__card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fbf6ec;
}

.landing-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 10.8ch;
}

.landing-lead,
.landing-section__head p,
.landing-flow__copy p,
.landing-final__card p {
  margin: 0;
  color: #a7b0c1;
  line-height: 1.7;
  font-size: 1.04rem;
  max-width: 640px;
}

.landing-button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.landing-button:hover {
  transform: translateY(-1px);
}

.landing-button--primary {
  background: linear-gradient(135deg, #f1b44f, #ffd78f);
  color: #1a1309;
  box-shadow: 0 12px 34px rgba(243, 179, 77, 0.28);
}

.landing-button--secondary,
.landing-button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f7f3ea;
}

.landing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #d7deeb;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-visual {
  position: relative;
}

.landing-visual__stage {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 18px;
  max-width: 420px;
  margin-left: auto;
}

.landing-floating-card,
.landing-benefit-card,
.landing-step-card,
.landing-reason-card,
.landing-faq-item,
.landing-final__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(13, 16, 25, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.landing-floating-card p,
.landing-benefit-card p,
.landing-step-card p,
.landing-reason-card p,
.landing-faq-item p {
  margin: 0;
  color: #a8b0bf;
  line-height: 1.68;
}

.landing-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-stat-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 6px;
}

.landing-stat-card strong {
  font-size: 1rem;
  color: #fbf6ec;
}

.landing-stat-card span {
  color: #a4acb9;
  font-size: 0.88rem;
}

.landing-floating-card {
  position: relative;
  width: 100%;
  padding: 18px 18px 18px 20px;
  border-radius: 24px;
  display: grid;
  gap: 8px;
}

.landing-floating-card--mid {
  z-index: 2;
  animation: landingFloat 5.2s ease-in-out infinite;
}

.landing-floating-card--bottom {
  z-index: 1;
  margin-left: 44px;
  animation: landingFloat 6.4s ease-in-out infinite reverse;
}

.landing-floating-card__label {
  color: #f3b34d;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.landing-floating-card strong {
  font-size: 1.04rem;
}

.landing-section {
  padding: 92px 0;
}

.landing-section--contrast {
  background:
    radial-gradient(circle at 12% 14%, rgba(243, 179, 77, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(9, 11, 18, 0.96), rgba(7, 8, 13, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-section--compact {
  padding-top: 78px;
  padding-bottom: 110px;
}

.landing-section__head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.landing-section__head h2,
.landing-flow__copy h2,
.landing-final__card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.landing-benefit-grid,
.landing-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-benefit-card,
.landing-reason-card {
  padding: 24px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
  min-height: 220px;
}

.landing-benefit-card__index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(243, 179, 77, 0.12);
  color: #f3b34d;
  font-family: var(--font-mono);
}

.landing-benefit-card h3,
.landing-step-card h3,
.landing-reason-card h3,
.landing-faq-item summary,
.landing-final__card h2 {
  margin: 0;
}

.landing-benefit-card h3,
.landing-reason-card h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

.landing-flow {
  display: grid;
  gap: 28px;
}

.landing-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-step-card {
  padding: 24px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.landing-step-card__count {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(243, 179, 77, 0.18), rgba(93, 141, 219, 0.22));
  color: #fff1d4;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.landing-faq {
  display: grid;
  gap: 14px;
}

.landing-faq-item {
  padding: 20px 22px;
  border-radius: 24px;
}

.landing-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
}

.landing-faq-item summary::-webkit-details-marker {
  display: none;
}

.landing-faq-item p {
  margin-top: 12px;
}

.landing-final {
  padding: 0 0 120px;
}

.landing-final__card {
  border-radius: 36px;
  padding: 34px;
  display: grid;
  gap: 18px;
  text-align: center;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
}

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

.landing-mobile-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(8, 10, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  z-index: 85;
}

.landing-mobile-bar {
  flex-wrap: wrap;
}
.landing-mobile-bar .landing-button {
  flex: 1;
  min-width: 0;
}

/* Hint label that introduces the two CTA buttons in the bottom bar.
   Forces a full-width row above the buttons regardless of whether the
   parent uses flex (.mobile-bar) or grid (.landing-mobile-bar): both
   force the kid to span the entire row. Padding the kid alone won't
   work — the flex parent needs `flex-wrap: wrap` so a 100%-wide child
   can break onto its own line. */
.mobile-bar { flex-wrap: wrap; }
.mobile-bar__hint {
  flex: 0 0 100%;
  width: 100%;
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 2px 0 0;
  margin: 0;
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  transform: translateX(36px) scale(0.98);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* CSS-only fallback: if JS doesn't run (no IntersectionObserver, blocked
   script, etc.), or for users who prefer reduced motion, content must
   still be visible. Without this, long article-body sections stayed
   permanently opacity:0 when the IntersectionObserver threshold could
   not be satisfied. */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final safety net: after a short delay, reveal anything that JS hasn't
   marked as visible yet. Animation locks at the visible state, so the
   scroll-triggered fade still wins for nodes that get .is-visible
   before the timer fires. */
@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
[data-reveal]:not(.is-visible) {
  animation: revealFallback 0.4s ease 1.5s forwards;
}

@keyframes landingFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1120px) {
  .landing-hero__grid,
  .landing-benefit-grid,
  .landing-reason-grid,
  .landing-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-visual__stage {
    min-height: auto;
    max-width: none;
    margin-left: 0;
  }
}

/* ─── Mobile burger menu ─── */
.landing-burger-wrap {
  position: relative;
  display: none;
}

.landing-burger {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
}

.landing-burger-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(14, 14, 20, 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 12px 8px;
  min-width: 180px;
  backdrop-filter: blur(16px);
  z-index: 100;
  flex-direction: column;
  gap: 2px;
}

.landing-burger-panel.is-open {
  display: flex;
}

.landing-burger-panel a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  transition: color 150ms, background 150ms;
}

.landing-burger-panel a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 860px) {
  .landing-nav__inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .landing-links {
    display: none;
  }

  .landing-burger-wrap {
    display: block;
  }

  .landing-burger {
    display: flex;
  }

  .landing-hero {
    padding-top: 34px;
  }

  .landing-hero__grid,
  .landing-benefit-grid,
  .landing-reason-grid,
  .landing-flow__grid {
    grid-template-columns: 1fr;
  }

  .landing-visual__stage {
    min-height: auto;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .landing-shell,
  .landing-nav__inner {
    width: min(100% - 24px, 100%);
  }

  .landing-nav {
    position: sticky;
  }

  .landing-nav__actions {
    display: none;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .landing-copy {
    gap: 18px;
  }

  .landing-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .landing-lead,
  .landing-section__head p,
  .landing-flow__copy p,
  .landing-final__card p {
    font-size: 0.98rem;
  }

  .landing-actions,
  .landing-actions--center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-visual__stage {
    min-height: auto;
    display: grid;
    gap: 16px;
    max-width: none;
    margin-left: 0;
  }

  .landing-floating-card,
  .landing-benefit-card,
  .landing-step-card,
  .landing-reason-card,
  .landing-final__card {
    border-radius: 24px;
    padding: 22px;
  }

  .landing-floating-card {
    animation: none;
  }

  .landing-floating-card--bottom {
    margin-left: 0;
  }

  .landing-stat-grid {
    grid-template-columns: 1fr;
  }

  .landing-step-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .landing-step-card__count {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .landing-section {
    padding: 68px 0;
  }

  .landing-final {
    padding-bottom: 110px;
  }

  .landing-mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
