/**
 * ═══════════════════════════════════════════════════════════════════════════
 * ZUNII — LANDING EXPERIENCE
 * ───────────────────────────────────────────────────────────────────────────
 * Loaded after /css/styles.css. styles.css provides the design tokens
 * (:root custom properties), the CSS reset, and the base .btn / form system.
 * This file owns the public marketing page (index.html) ONLY — it never
 * styles the auth / account / legal pages.
 *
 * Every claim the markup makes is grounded in the product: anonymous-first
 * (initials + age + country), 21-minute ephemeral chats with a mutual
 * 60-minute extension, opt-in name/photo reveal, opt-in connections,
 * report taxonomy + automated enforcement, screenshot blocking, 18+, and
 * 6 languages.
 * ═══════════════════════════════════════════════════════════════════════════
 */

/* ───────────────────────────────────────────────────────────────────────────
   1. LANDING TOKENS
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  --lp-max: 1180px;
  --lp-gutter: clamp(20px, 5vw, 40px);

  --lp-grad-brand: linear-gradient(120deg, #FF6B6B 0%, #FF8E6B 100%);
  --lp-grad-warm: linear-gradient(135deg, #FF6B6B 0%, #FF8E6B 100%);
  --lp-ring: rgba(255, 107, 107, 0.45);

  --lp-mesh-1: rgba(255, 107, 107, 0.55);
  --lp-mesh-2: rgba(78, 205, 196, 0.45);
  --lp-mesh-3: rgba(139, 92, 246, 0.45);

  --lp-card-border: rgba(17, 17, 26, 0.07);
  --lp-elev: 0 1px 2px rgba(17, 17, 26, 0.04), 0 10px 24px -12px rgba(17, 17, 26, 0.16);
  --lp-elev-hi: 0 8px 18px rgba(17, 17, 26, 0.08), 0 40px 80px -32px rgba(17, 17, 26, 0.32);
  --lp-glass: rgba(255, 255, 255, 0.7);
  --lp-glass-border: rgba(255, 255, 255, 0.6);

  /* Landing uses the one brand family (Plus Jakarta Sans) for both display and
     body; --font-sans already resolves to it (see styles.css). Kept as named
     tokens so existing rules referencing them keep working. */
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
}

@media (prefers-color-scheme: dark) {
  :root {
    --lp-card-border: rgba(255, 255, 255, 0.09);
    --lp-elev: 0 1px 2px rgba(0, 0, 0, 0.4), 0 16px 40px -16px rgba(0, 0, 0, 0.6);
    --lp-elev-hi: 0 10px 28px rgba(0, 0, 0, 0.5), 0 50px 90px -34px rgba(0, 0, 0, 0.85);
    --lp-glass: rgba(22, 22, 27, 0.62);
    --lp-glass-border: rgba(255, 255, 255, 0.08);
  }
}

/* ───────────────────────────────────────────────────────────────────────────
   2. PAGE BASE
   ─────────────────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  overflow-x: clip;
}

h1, h2, h3, h4, .lp-eyebrow, .nav-logo-text-only, .stat-num {
  font-family: var(--font-display);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; clip: auto;
  padding: 12px 18px; margin: 0;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-lg); z-index: var(--z-max);
  box-shadow: var(--lp-elev-hi);
}

.lp-shell { width: 100%; max-width: var(--lp-max); margin: 0 auto; padding: 0 var(--lp-gutter); }

.lp-grain {
  position: fixed; inset: 0; z-index: -4; pointer-events: none;
  opacity: 0.6;
  background-image: radial-gradient(circle at 1px 1px, rgba(120, 120, 140, 0.10) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000, transparent 78%);
}

/* ───────────────────────────────────────────────────────────────────────────
   3. SCROLL REVEAL
   ─────────────────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ───────────────────────────────────────────────────────────────────────────
   4. SECTION FURNITURE
   ─────────────────────────────────────────────────────────────────────────── */
.lp-section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.lp-section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.lp-section--alt { background: var(--surface-variant); }

.lp-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: var(--space-4);
}
.lp-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--lp-grad-warm); border-radius: 2px; }

.lp-head h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.lp-head p {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--text-secondary); line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

/* Signature gradient word — a real brand gradient with a slow, premium sheen.
   Falls back to solid coral where background-clip:text is unsupported. */
.gradient-text {
  color: var(--primary); /* fallback */
  background: linear-gradient(100deg, #FF6B6B 0%, #FF8E6B 38%, #C45BD6 78%, #FF6B6B 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lpHue 9s var(--ease-in-out) infinite alternate;
  /* keep descenders from clipping in some browsers */
  padding-bottom: 0.04em;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text { -webkit-text-fill-color: currentColor; }
}
@keyframes lpHue {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .gradient-text { animation: none; } }

/* Premium typographic polish — balanced headlines, tidy paragraph rags. */
.hero-title, .lp-head h2, .step-body h3, .bento-card h3, .cta-final h2 { text-wrap: balance; }
.hero-subtitle, .lp-head p, .bento-card p, .cta-final p { text-wrap: pretty; }

/* ───────────────────────────────────────────────────────────────────────────
   5. NAVIGATION
   ─────────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  border-bottom: 1px solid transparent;
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}
.nav.scrolled {
  background: var(--lp-glass);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--lp-card-border);
  box-shadow: 0 8px 30px -22px rgba(17, 17, 26, 0.55);
  padding: var(--space-3) 0;
}

.nav-container {
  max-width: var(--lp-max); margin: 0 auto; padding: 0 var(--lp-gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}

.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 6px 16px -6px var(--lp-ring);
  transition: transform var(--duration-normal) var(--ease-spring);
}
.nav-logo-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.nav-logo:hover .nav-logo-mark { transform: rotate(-8deg) scale(1.06); }
.nav-logo-text-only { font-size: 1.32rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-link {
  position: relative; color: var(--text-secondary);
  font-size: var(--text-sm); font-weight: 500;
  transition: color var(--duration-fast);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--lp-grad-warm); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--text); }
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { margin-left: var(--space-2); }

/* Instagram icon link in the nav */
.nav-social {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  border: 1px solid var(--lp-card-border);
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}
.nav-social:hover {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--primary-rgb), 0.06);
  transform: translateY(-1px);
}
.nav-social svg { width: 18px; height: 18px; fill: currentColor; }

.nav-mobile-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--text); border-radius: var(--radius-md);
}
.nav-mobile-toggle svg { width: 26px; height: 26px; fill: currentColor; }

.mobile-menu {
  position: fixed; inset: 64px 0 auto 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-dropdown);
  padding: var(--space-4) var(--lp-gutter) var(--space-6);
  animation: lpSlideDown 0.28s var(--ease-out);
}
.mobile-menu.hidden { display: none; }
@keyframes lpSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu-content { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-menu-link {
  padding: var(--space-4) var(--space-2);
  font-size: var(--text-lg); font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-link:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: var(--space-3); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}

/* ───────────────────────────────────────────────────────────────────────────
   6. BUTTONS (extends shared .btn)
   ─────────────────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--lp-grad-warm);
  box-shadow: 0 8px 24px -6px var(--lp-ring);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 14px 34px -8px var(--lp-ring); transform: translateY(-2px); }

.btn-outline {
  width: auto; background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover:not(:disabled) {
  border-color: var(--primary); color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06); transform: translateY(-2px);
}

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
}
.btn-shine:hover::after { animation: lpShine 0.9s var(--ease-out); }
@keyframes lpShine { to { left: 140%; } }
@media (prefers-reduced-motion: reduce) { .btn-shine:hover::after { animation: none; } }

/* App-store style buttons */
.store-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 18px; border-radius: var(--radius-xl);
  background: var(--text); color: var(--bg);
  text-decoration: none; position: relative;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), opacity var(--duration-fast);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--lp-elev-hi); }
.store-btn svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.store-btn .store-tt { text-align: left; line-height: 1.1; }
.store-btn .store-tt small { display: block; font-size: 0.66rem; opacity: 0.72; font-weight: 500; }
.store-btn .store-tt b { display: block; font-size: 1rem; font-weight: 700; }

/* ───────────────────────────────────────────────────────────────────────────
   7. HERO
   ─────────────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(120px, 16vh, 184px) 0 clamp(64px, 9vw, 110px); overflow: clip; }
.hero-aurora {
  position: absolute; inset: -12% -10% auto -10%; height: 130%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(38% 36% at 16% 12%, var(--lp-mesh-1) 0%, transparent 60%),
    radial-gradient(34% 32% at 84% 16%, var(--lp-mesh-3) 0%, transparent 60%),
    radial-gradient(44% 40% at 62% 72%, var(--lp-mesh-2) 0%, transparent 62%);
  filter: blur(64px) saturate(130%); opacity: 0.7;
  animation: lpAurora 20s ease-in-out infinite alternate;
}
@keyframes lpAurora {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(2%, 1.4%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, -1%, 0) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) { .hero-aurora { animation: none; } }

.hero-grid {
  max-width: var(--lp-max); margin: 0 auto; padding: 0 var(--lp-gutter);
  display: grid; grid-template-columns: 1fr; gap: clamp(48px, 7vw, 72px); align-items: center;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.04fr 0.96fr; gap: 56px; } }

.hero-copy { max-width: 600px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: var(--radius-full);
  background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  box-shadow: var(--lp-elev); margin-bottom: var(--space-6);
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0.5);
  animation: lpPing 2s ease-out infinite;
}
@keyframes lpPing { 0% { box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0.5); } 70%,100% { box-shadow: 0 0 0 7px rgba(var(--success-rgb), 0); } }
@media (prefers-reduced-motion: reduce) { .hero-pill .dot { animation: none; } }

.hero-title { font-size: clamp(2.55rem, 7.4vw, 4.5rem); font-weight: 800; line-height: 1.03; letter-spacing: -0.04em; margin: 0 0 var(--space-5); }
.hero-subtitle { font-size: clamp(1.05rem, 2.3vw, 1.28rem); color: var(--text-secondary); line-height: 1.62; margin: 0 0 var(--space-7); max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); margin-bottom: var(--space-7); }
.hero-actions .btn { width: auto; }

.hero-meta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; color: var(--text-secondary); font-size: 0.9rem; }
.hero-meta b { color: var(--text); font-weight: 700; }
.hero-meta .sep { width: 1px; height: 26px; background: var(--border); }


/* ───────────────────────────────────────────────────────────────────────────
   8. HERO PHONE MOCKUP (animated anonymous chat)
   ─────────────────────────────────────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1600px; }
.hero-visual::before {
  content: ''; position: absolute; inset: 5% 12%; border-radius: 48px;
  background: var(--lp-grad-brand); filter: blur(58px); opacity: 0.26; z-index: -1;
}

.phone {
  width: min(312px, 80vw); aspect-ratio: 9 / 19;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2b2b34, #0d0d12);
  box-shadow: var(--lp-elev-hi), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative; transform-style: preserve-3d;
  transform: rotateY(-13deg) rotateX(6deg) rotateZ(1deg);
  transition: transform 0.6s var(--ease-out);
  animation: lpFloat 6s ease-in-out infinite;
}
@media (min-width: 980px) { .phone:hover { transform: rotateY(-5deg) rotateX(2deg); } }
@keyframes lpFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; transform: none; } }

.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; border-radius: var(--radius-full); background: #0d0d12; z-index: 6; }
.phone-screen { height: 100%; border-radius: 34px; overflow: hidden; background: #F4F4F7; display: flex; flex-direction: column; }
@media (prefers-color-scheme: dark) { .phone-screen { background: #0f0f13; } }

.pc-header { padding: 40px 16px 13px; background: var(--lp-grad-warm); color: #fff; display: flex; align-items: center; gap: 11px; }
.pc-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.22); font-weight: 800; font-size: 0.92rem; }
.pc-id { flex: 1; min-width: 0; }
.pc-name { font-weight: 700; font-size: 0.9rem; }
.pc-sub { font-size: 0.68rem; opacity: 0.92; }
.pc-timer { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; font-variant-numeric: tabular-nums; padding: 5px 10px; border-radius: var(--radius-full); background: rgba(255,255,255,0.22); }

.pc-body { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.pc-day { align-self: center; font-size: 0.62rem; color: var(--text-tertiary); background: rgba(127,127,140,0.16); padding: 3px 11px; border-radius: var(--radius-full); }
.bubble {
  max-width: 80%; padding: 9px 13px; font-size: 0.8rem; line-height: 1.4; border-radius: 16px;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-spring);
}
/* Visible by default (no-JS / reduced-motion). JS opts into the staggered
   entrance by adding .anim-on to <body>, which hides bubbles until .show. */
body.anim-on .bubble { opacity: 0; transform: translateY(8px) scale(0.96); }
body.anim-on .bubble.show { opacity: 1; transform: none; }
.bubble.typing { opacity: 0; }
.bubble.typing.show { opacity: 1; }
body:not(.anim-on) .bubble.typing { display: none; }
.bubble.them { align-self: flex-start; background: #fff; color: #1c1c1e; box-shadow: 0 1px 2px rgba(0,0,0,0.06); border-bottom-left-radius: 5px; }
.bubble.me { align-self: flex-end; background: var(--lp-grad-warm); color: #fff; border-bottom-right-radius: 5px; }
@media (prefers-color-scheme: dark) { .bubble.them { background: #232329; color: #f2f2f4; } }
.bubble.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.bubble.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-tertiary); animation: lpTyping 1.2s infinite ease-in-out; }
.bubble.typing i:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes lpTyping { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.pc-reveal {
  align-self: center; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; color: #2c9c92;
  background: rgba(78,205,196,0.16); border: 1px solid rgba(78,205,196,0.32);
  padding: 7px 12px; border-radius: var(--radius-full);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring);
}
body.anim-on .pc-reveal { opacity: 0; transform: scale(0.9); }
body.anim-on .pc-reveal.show { opacity: 1; transform: none; }

.pc-input { padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); display: flex; align-items: center; gap: 8px; border-top: 1px solid rgba(127,127,140,0.18); background: #fff; }
@media (prefers-color-scheme: dark) { .pc-input { background: #16161b; } }
.pc-input .field { flex: 1; height: 32px; border-radius: var(--radius-full); background: rgba(127,127,140,0.16); font-size: 0.72rem; color: var(--text-tertiary); display: flex; align-items: center; padding: 0 14px; }
.pc-input .send { width: 32px; height: 32px; border-radius: 50%; background: var(--lp-grad-warm); display: grid; place-items: center; flex-shrink: 0; }
.pc-input .send svg { width: 15px; height: 15px; fill: #fff; }

.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-2xl);
  background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: var(--lp-elev); font-size: 0.8rem; font-weight: 600; color: var(--text); z-index: 5;
  animation: lpFloat 5s ease-in-out infinite;
}
.hero-chip .ico { font-size: 1.05rem; }
.hero-chip--a { top: 11%; left: -4%; animation-delay: -1s; }
.hero-chip--b { bottom: 15%; right: -6%; animation-delay: -2.6s; }
@media (max-width: 540px) { .hero-chip--a { left: 0; } .hero-chip--b { right: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-chip { animation: none; } }

/* ───────────────────────────────────────────────────────────────────────────
   9. PILLARS STRIP
   ─────────────────────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: 1fr; gap: var(--space-5); max-width: var(--lp-max); margin: 0 auto; padding: 0 var(--lp-gutter); }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }
.pillar { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5); border-radius: var(--radius-2xl); background: var(--surface); border: 1px solid var(--lp-card-border); box-shadow: var(--lp-elev); }
.pillar-ico { width: 46px; height: 46px; border-radius: var(--radius-xl); display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; }
.pillar-ico.coral { background: rgba(255,107,107,0.12); }
.pillar-ico.teal { background: rgba(78,205,196,0.14); }
.pillar-ico.violet { background: rgba(139,92,246,0.14); }
.pillar h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* ───────────────────────────────────────────────────────────────────────────
   10. HOW IT WORKS (timeline)
   ─────────────────────────────────────────────────────────────────────────── */
.steps { max-width: 880px; margin: 0 auto; display: grid; gap: var(--space-2); }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: var(--space-5);
  padding: var(--space-5) 0; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 29px; top: 78px; bottom: -6px; width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(255,107,107,0.15)); opacity: 0.4;
}
.step-num {
  width: 60px; height: 60px; border-radius: var(--radius-full);
  background: var(--lp-grad-warm); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; box-shadow: 0 10px 24px -8px var(--lp-ring); z-index: 1;
}
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 6px; }
.step-body p { color: var(--text-secondary); line-height: 1.6; font-size: 0.98rem; }
.step-body .tag { display: inline-block; margin-top: 10px; font-size: 0.74rem; font-weight: 600; color: var(--primary); background: rgba(var(--primary-rgb),0.08); padding: 4px 10px; border-radius: var(--radius-full); }

/* ───────────────────────────────────────────────────────────────────────────
   11. REVEAL MECHANIC (signature interaction)
   ─────────────────────────────────────────────────────────────────────────── */
.reveal-wrap { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: clamp(40px,6vw,64px); align-items: center; }
@media (min-width: 880px) { .reveal-wrap { grid-template-columns: 1fr 1fr; } }

.reveal-stage {
  position: relative; border-radius: var(--radius-3xl);
  background: var(--surface); border: 1px solid var(--lp-card-border);
  box-shadow: var(--lp-elev-hi); padding: clamp(28px,5vw,44px);
  overflow: hidden;
}
.reveal-stage::before { content: ''; position: absolute; inset: 0; background: var(--lp-grad-brand); opacity: 0.05; pointer-events: none; }
.reveal-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-4); }
.reveal-portrait {
  width: 120px; height: 120px; border-radius: var(--radius-full);
  display: grid; place-items: center; position: relative;
  background: var(--lp-grad-warm); color: #fff;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  box-shadow: 0 16px 36px -12px var(--lp-ring); overflow: hidden;
}
.reveal-portrait .pf { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.4rem; opacity: 0; transform: scale(0.8); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring); background: linear-gradient(135deg,#FFC7A1,#FF6B6B); }
.reveal-stage[data-stage="photo"] .reveal-portrait .pf { opacity: 1; transform: none; }
.reveal-name { font-size: 1.3rem; font-weight: 700; min-height: 1.5em; }
.reveal-name .full { color: var(--text-tertiary); }
.reveal-stage[data-stage="name"] .reveal-name .full,
.reveal-stage[data-stage="photo"] .reveal-name .full { color: var(--text); }
.reveal-meta { font-size: 0.9rem; color: var(--text-secondary); }
.reveal-track { display: flex; gap: 6px; margin-top: var(--space-2); }
.reveal-track i { width: 30px; height: 4px; border-radius: 4px; background: var(--surface-3); transition: background var(--duration-normal); }
.reveal-stage[data-stage="initials"] .reveal-track i:nth-child(1),
.reveal-stage[data-stage="name"] .reveal-track i:nth-child(-n+2),
.reveal-stage[data-stage="photo"] .reveal-track i { background: var(--primary); }

.reveal-steps { display: grid; gap: var(--space-3); }
.reveal-step { display: flex; gap: var(--space-4); padding: var(--space-4); border-radius: var(--radius-2xl); border: 1px solid var(--lp-card-border); background: var(--surface); transition: border-color var(--duration-normal), box-shadow var(--duration-normal); }
.reveal-step.active { border-color: rgba(var(--primary-rgb),0.45); box-shadow: var(--lp-elev); }
.reveal-step .rs-ico { width: 40px; height: 40px; border-radius: var(--radius-lg); display: grid; place-items: center; font-size: 1.15rem; background: rgba(var(--primary-rgb),0.1); flex-shrink: 0; }
.reveal-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.reveal-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ───────────────────────────────────────────────────────────────────────────
   12. FEATURES BENTO
   ─────────────────────────────────────────────────────────────────────────── */
.bento { max-width: var(--lp-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bento { grid-template-columns: repeat(3, 1fr); } }
.bento-card {
  position: relative; padding: clamp(22px,3vw,30px);
  border-radius: var(--radius-3xl); background: var(--surface);
  border: 1px solid var(--lp-card-border); box-shadow: var(--lp-elev);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal);
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--primary-rgb), 0.1), transparent 45%);
  opacity: 0; transition: opacity var(--duration-normal);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--lp-elev-hi); border-color: rgba(var(--primary-rgb),0.28); }
.bento-card:hover::before { opacity: 1; }
.bento-ico { width: 54px; height: 54px; border-radius: var(--radius-xl); display: grid; place-items: center; font-size: 1.55rem; margin-bottom: var(--space-4); }
.bento-ico.coral { background: rgba(255,107,107,0.12); }
.bento-ico.teal { background: rgba(78,205,196,0.14); }
.bento-ico.violet { background: rgba(139,92,246,0.14); }
.bento-ico.amber { background: rgba(245,158,11,0.14); }
.bento-card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.bento-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; position: relative; }

/* ───────────────────────────────────────────────────────────────────────────
   13. SAFETY GRID
   ─────────────────────────────────────────────────────────────────────────── */
.safety-grid { max-width: var(--lp-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 640px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .safety-grid { grid-template-columns: repeat(3, 1fr); } }
.safety-item { display: flex; gap: var(--space-4); padding: var(--space-5); border-radius: var(--radius-2xl); background: var(--surface); border: 1px solid var(--lp-card-border); }
.safety-item .si-ico { width: 42px; height: 42px; border-radius: var(--radius-lg); display: grid; place-items: center; flex-shrink: 0; background: rgba(34,197,94,0.12); }
.safety-item .si-ico svg { width: 22px; height: 22px; stroke: var(--success); fill: none; stroke-width: 2; }
.safety-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.safety-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ───────────────────────────────────────────────────────────────────────────
   14. STATS / GLOBAL BAND
   ─────────────────────────────────────────────────────────────────────────── */
.band { position: relative; overflow: hidden; background: #0E0E14; color: #fff; }
.band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 12% 20%, rgba(255,107,107,0.22), transparent 60%), radial-gradient(55% 75% at 92% 85%, rgba(255,107,107,0.10), transparent 55%); }
.band-inner { position: relative; max-width: var(--lp-max); margin: 0 auto; padding: clamp(48px,7vw,80px) var(--lp-gutter); display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-6); text-align: center; }
@media (min-width: 760px) { .band-inner { grid-template-columns: repeat(4,1fr); } }
.stat-num { font-size: clamp(2rem,5vw,3rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: #FF8E6B; }
.stat-label { margin-top: 8px; font-size: 0.86rem; opacity: 0.92; }
.band-langs { position: relative; max-width: var(--lp-max); margin: 0 auto; padding: 0 var(--lp-gutter) clamp(40px,6vw,64px); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); }
.lang-chip { font-size: 0.8rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-full); background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25); }

/* ───────────────────────────────────────────────────────────────────────────
   16. FAQ ACCORDION
   ─────────────────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: var(--space-3); }
.faq-item { border: 1px solid var(--lp-card-border); border-radius: var(--radius-2xl); background: var(--surface); box-shadow: var(--lp-elev); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-5); text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--text); background: none; }
.faq-q .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--duration-normal) var(--ease-out); fill: var(--text-tertiary); }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 var(--space-5) var(--space-5); color: var(--text-secondary); line-height: 1.65; font-size: 0.96rem; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] .faq-a { animation: lpFade 0.35s var(--ease-out); }
@keyframes lpFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ───────────────────────────────────────────────────────────────────────────
   17. FINAL CTA — closes the narrative arc with one clear, premium ask
   ─────────────────────────────────────────────────────────────────────────── */
.cta-final-section { padding-top: clamp(40px, 6vw, 80px); }
.cta-final {
  position: relative; overflow: hidden;
  max-width: var(--lp-max); margin: 0 auto;
  border-radius: clamp(28px, 4vw, 40px);
  padding: clamp(44px, 7vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% -20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(150deg, #14141B 0%, #1B1620 55%, #241620 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--lp-elev-hi);
}
.cta-final-aurora {
  position: absolute; inset: -40% -10% auto -10%; height: 150%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(36% 50% at 22% 18%, var(--lp-mesh-1) 0%, transparent 60%),
    radial-gradient(34% 46% at 80% 24%, var(--lp-mesh-3) 0%, transparent 60%),
    radial-gradient(40% 50% at 60% 90%, var(--lp-mesh-2) 0%, transparent 62%);
  filter: blur(70px) saturate(130%); opacity: 0.5;
  animation: lpAurora 22s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .cta-final-aurora { animation: none; } }
.cta-final > * { position: relative; z-index: 1; }
.cta-final .lp-eyebrow { color: #FFB39B; justify-content: center; }
.cta-final .lp-eyebrow::before { background: linear-gradient(90deg, #FF8E6B, #C45BD6); }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.2vw, 3.4rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.03em; margin-bottom: var(--space-4);
}
.cta-final p { font-size: clamp(1rem, 2.2vw, 1.18rem); color: rgba(255,255,255,0.82); line-height: 1.62; max-width: 560px; margin: 0 auto var(--space-7); }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-bottom: var(--space-5); }
.cta-final .store-btn { background: #fff; color: #14141B; }
.cta-final .store-btn:hover { box-shadow: 0 18px 40px -16px rgba(0,0,0,0.55); }
.cta-final-meta { font-size: 0.88rem !important; color: rgba(255,255,255,0.7) !important; margin-bottom: 0 !important; display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); justify-content: center; }

/* ───────────────────────────────────────────────────────────────────────────
   18. FOOTER
   ─────────────────────────────────────────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: clamp(56px,8vw,88px) 0 var(--space-8); }
.footer-grid { max-width: var(--lp-max); margin: 0 auto var(--space-10); padding: 0 var(--lp-gutter); display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-10); } }
.footer-brand { max-width: 320px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--space-4); text-decoration: none; }
.footer-logo .nav-logo-mark { width: 40px; height: 40px; }
.footer-logo .nav-logo-mark img { width: 100%; height: 100%; }
.footer-logo span { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); }
.footer-brand p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-bottom: var(--space-5); }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--radius-full); background: var(--surface-variant); color: var(--text-secondary); transition: all var(--duration-fast); }
.footer-social a:hover { background: var(--lp-grad-warm); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-col h4 { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: var(--text-secondary); font-size: 0.92rem; transition: color var(--duration-fast); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { max-width: var(--lp-max); margin: 0 auto; padding: var(--space-6) var(--lp-gutter) 0; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; justify-content: space-between; color: var(--text-tertiary); font-size: 0.84rem; }
.footer-bottom .badges { display: flex; gap: var(--space-4); }

/* ───────────────────────────────────────────────────────────────────────────
   19. PRINT
   ─────────────────────────────────────────────────────────────────────────── */
@media print {
  .nav, .hero-visual, .hero-aurora, .footer-social { display: none !important; }
  body { background: #fff; color: #000; }
}
