/* ===================================================================
   Deen Box — landing experience styles (index.html only)
   Legal pages keep style.css; this file is standalone.
   =================================================================== */

:root{
  --teal:#0F6E56; --teal-d:#0B5946; --gold:#EF9F27; --violet:#7F77DD;
  --coral:#D85A30; --ink:#14161A; --bg:#F4F6F8; --surface:#FFFFFF;
  --muted:#565C66; --line:#E3E7EC;
  --teal-pale:#E1F5EE; --gold-pale:#FCEFD6; --violet-pale:#EEEDFE; --coral-pale:#FBE6DD;
  --shadow-sm:0 1px 3px rgba(20,22,26,.06);
  --shadow-md:0 10px 30px -12px rgba(20,22,26,.18);
  --shadow-lg:0 30px 70px -20px rgba(11,89,70,.28);
  --radius:20px;
  --maxw:1140px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:"Sora",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color:var(--ink); background:var(--bg); line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
a{color:var(--teal); text-decoration:none}
a:hover{text-decoration:underline}
img,svg{max-width:100%; display:block}
h1,h2,h3,p{margin:0}
::selection{background:var(--teal-pale); color:var(--teal-d)}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal); background:var(--teal-pale);
  padding:6px 14px; border-radius:999px;
}

/* focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:3px solid rgba(15,110,86,.45); outline-offset:2px; border-radius:6px;
}

/* ---------- Decorative ambient background blobs ---------- */
.ambient{position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden}
.ambient .blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.5;
  will-change:transform;
}
.blob.b1{width:520px;height:520px; top:-160px; left:-120px;
  background:radial-gradient(circle at 30% 30%, rgba(15,110,86,.55), transparent 70%)}
.blob.b2{width:480px;height:480px; top:14%; right:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(239,159,39,.40), transparent 70%)}
.blob.b3{width:560px;height:560px; bottom:6%; left:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(127,119,221,.40), transparent 70%)}

/* ===================================================================
   Header / nav
   =================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:14px 0;
  transition:background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled{
  background:rgba(244,246,248,.82);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  box-shadow:0 1px 0 rgba(20,22,26,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between}
.brand{display:flex; align-items:center; gap:11px; font-weight:700; font-size:20px; color:var(--ink)}
.brand .mark{
  width:36px;height:36px;border-radius:11px;
  background:linear-gradient(135deg,var(--teal),var(--teal-d));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:20px;
  box-shadow:0 6px 16px -6px rgba(11,89,70,.7);
}
.nav-links{display:flex; align-items:center; gap:28px}
.nav-links a{color:var(--muted); font-weight:500; font-size:15px}
.nav-links a:hover{color:var(--ink); text-decoration:none}
.nav-cta{
  background:var(--ink); color:#fff !important; padding:9px 18px; border-radius:999px;
  font-size:14px; font-weight:600;
}
.nav-cta:hover{text-decoration:none; background:#000}
@media(max-width:780px){ .nav-links a:not(.nav-cta){display:none} }

/* ===================================================================
   Hero
   =================================================================== */
.hero{
  position:relative; z-index:1;
  padding:170px 0 90px;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center;
}
.hero-copy{max-width:560px}
.hero h1{
  font-size:clamp(38px, 5.4vw, 66px); line-height:1.05; letter-spacing:-1.4px;
  margin:20px 0 20px; font-weight:700;
}
.hero h1 .accent{
  background:linear-gradient(120deg,var(--teal),var(--violet));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.hero .sub{
  font-size:clamp(17px,1.5vw,20px); color:var(--muted); max-width:520px; margin-bottom:32px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; align-items:center}

/* Google Play coming-soon badge */
.play-badge{
  display:inline-flex; align-items:center; gap:12px;
  background:var(--ink); color:#fff; padding:11px 20px 11px 16px; border-radius:14px;
  box-shadow:var(--shadow-md); transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.play-badge:hover{transform:translateY(-2px); box-shadow:var(--shadow-lg); text-decoration:none}
.play-badge .pb-icon{width:26px;height:26px; flex:none}
.play-badge .pb-text{display:flex; flex-direction:column; line-height:1.15; text-align:left}
.play-badge .pb-small{font-size:11px; color:#c9cdd4; letter-spacing:.04em}
.play-badge .pb-big{font-size:16px; font-weight:600; color:#fff}
.play-badge .pb-big .soon{color:var(--gold)}

.btn-ghost{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 20px; border-radius:14px; font-weight:600; font-size:15px;
  color:var(--ink); border:1.5px solid var(--line); background:var(--surface);
  transition:border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-ghost:hover{border-color:var(--teal); transform:translateY(-2px); text-decoration:none}

.hero-meta{margin-top:30px; display:flex; gap:26px; flex-wrap:wrap; color:var(--muted); font-size:14px}
.hero-meta span{display:inline-flex; align-items:center; gap:8px}
.hero-meta .dot{width:7px;height:7px;border-radius:50%;background:var(--teal)}
.hero-meta .dot.g{background:var(--gold)} .hero-meta .dot.v{background:var(--violet)}

/* ---------- Hero 3D visual / phone stage ---------- */
.hero-stage{
  position:relative; height:560px;
  perspective:1400px;
  transform-style:preserve-3d;
}
.stage-inner{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  transform-style:preserve-3d;
  will-change:transform;
}

/* floating glass cards behind the phone */
.float-card{
  position:absolute; background:var(--surface); border-radius:16px;
  box-shadow:var(--shadow-lg); border:1px solid var(--line);
  padding:14px 16px; will-change:transform; z-index:1;
}
.float-card .fc-row{display:flex; align-items:center; gap:10px}
.float-card .fc-ic{width:34px;height:34px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:17px}
.float-card .fc-title{font-weight:600; font-size:13px}
.float-card .fc-sub{font-size:11px; color:var(--muted)}
.fc-streak{top:6%; left:-4%; }
.fc-streak .fc-ic{background:var(--gold-pale)}
.fc-xp{bottom:12%; right:-6%;}
.fc-xp .fc-ic{background:var(--violet-pale)}
.fc-ayah{bottom:2%; left:2%;}
.fc-ayah .fc-ic{background:var(--teal-pale)}

/* the phone */
.phone{
  position:relative; z-index:2;
  width:288px; height:592px;
  border-radius:42px;
  background:linear-gradient(150deg,#1c1f25,#0c0d10);
  padding:13px;
  box-shadow:
    0 50px 90px -30px rgba(11,89,70,.45),
    0 30px 60px -30px rgba(20,22,26,.5),
    inset 0 0 0 2px rgba(255,255,255,.06);
  will-change:transform;
  transform-style:preserve-3d;
}
.phone::after{ /* side button */
  content:""; position:absolute; right:-3px; top:150px; width:3px; height:62px;
  border-radius:3px; background:#23262d;
}
.phone-screen{
  position:relative; width:100%; height:100%; border-radius:31px; overflow:hidden;
  background:var(--bg);
}
.phone-notch{
  position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:108px; height:24px; background:#0c0d10; border-radius:0 0 16px 16px; z-index:6;
}

/* The app screen content (stylized Home) */
.app-screen{
  position:absolute; inset:0; padding:38px 16px 16px; overflow:hidden;
  display:flex; flex-direction:column; gap:12px;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(15,110,86,.14), transparent 60%),
    var(--bg);
}
.as-top{display:flex; align-items:center; justify-content:space-between}
.as-greet .hi{font-size:12px; color:var(--muted)}
.as-greet .name{font-size:17px; font-weight:700; letter-spacing:-.3px}
.as-avatar{width:34px;height:34px;border-radius:50%;
  background:linear-gradient(135deg,var(--violet),var(--teal));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:14px}
.as-chips{display:flex; gap:8px}
.as-chip{flex:1; background:var(--surface); border:1px solid var(--line); border-radius:13px; padding:9px 10px; box-shadow:var(--shadow-sm)}
.as-chip .v{font-size:16px; font-weight:700; display:flex; align-items:center; gap:5px}
.as-chip .l{font-size:9.5px; color:var(--muted); margin-top:2px}
.as-chip .v .em{font-size:14px}
.as-card{
  background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:13px;
  box-shadow:var(--shadow-sm);
}
.as-card.quest{background:linear-gradient(135deg,var(--teal),var(--teal-d)); border:none; color:#fff}
.as-card.quest .qh{font-size:12px; opacity:.85; display:flex; justify-content:space-between}
.as-card.quest .qt{font-size:15px; font-weight:700; margin:4px 0 9px}
.as-bar{height:7px; border-radius:5px; background:rgba(255,255,255,.25); overflow:hidden}
.as-bar > i{display:block; height:100%; width:64%; border-radius:5px; background:var(--gold)}
.as-actions{display:grid; grid-template-columns:1fr 1fr; gap:9px}
.as-act{border-radius:14px; padding:11px; color:#fff; min-height:60px; display:flex; flex-direction:column; justify-content:space-between}
.as-act .ai{font-size:18px}
.as-act .at{font-size:12px; font-weight:600}
.as-act.a1{background:linear-gradient(135deg,#2aa07d,var(--teal))}
.as-act.a2{background:linear-gradient(135deg,var(--gold),#d98712)}
.as-act.a3{background:linear-gradient(135deg,var(--violet),#5b51c9)}
.as-act.a4{background:linear-gradient(135deg,var(--coral),#b8431f)}

/* ===================================================================
   Section scaffolding
   =================================================================== */
main{position:relative; z-index:1}
.section{padding:96px 0; position:relative}
.section-head{max-width:680px; margin:0 auto 56px; text-align:center}
.section-head h2{
  font-size:clamp(28px,3.6vw,44px); line-height:1.1; letter-spacing:-1px; font-weight:700; margin:14px 0 14px;
}
.section-head p{font-size:clamp(16px,1.4vw,19px); color:var(--muted)}

/* reveal-on-scroll base (JS adds .is-in). Falls back visible if no JS. */
.reveal{opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease)}
.reveal.is-in{opacity:1; transform:none}
.no-js .reveal{opacity:1; transform:none}

/* Feature row layout */
.feature{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  max-width:var(--maxw); margin:0 auto; padding:64px 24px;
}
.feature.flip .feature-text{order:2}
.feature.flip .feature-visual{order:1}
.feature-icon{
  width:54px;height:54px;border-radius:15px;display:flex;align-items:center;justify-content:center;
  font-size:26px; margin-bottom:20px; box-shadow:var(--shadow-sm);
}
.fi-teal{background:var(--teal-pale)} .fi-gold{background:var(--gold-pale)}
.fi-violet{background:var(--violet-pale)} .fi-coral{background:var(--coral-pale)}
.fi-ink{background:#e7eaee}
.feature-text h2{font-size:clamp(26px,3vw,38px); line-height:1.12; letter-spacing:-.8px; font-weight:700; margin-bottom:16px}
.feature-text p{font-size:clamp(16px,1.3vw,18px); color:var(--muted); margin-bottom:18px}
.feature-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px}
.feature-list li{display:flex; gap:11px; align-items:flex-start; color:var(--ink); font-size:15px}
.feature-list .tick{
  width:22px;height:22px;border-radius:50%;flex:none;margin-top:1px;
  background:var(--teal-pale); color:var(--teal-d); display:flex;align-items:center;justify-content:center;
  font-size:12px; font-weight:700;
}
.tag-soon{
  display:inline-flex; align-items:center; gap:7px; margin-top:6px;
  background:var(--gold-pale); color:#9a6608; font-weight:600; font-size:13px;
  padding:6px 13px; border-radius:999px;
}

/* parallax layer used inside visuals */
.parallax{will-change:transform}

/* ---------- Mock: stage panel that holds an illustration ---------- */
.mock{
  position:relative; border-radius:24px; padding:26px;
  background:linear-gradient(160deg,#ffffff, #eef2f5);
  border:1px solid var(--line); box-shadow:var(--shadow-md);
  perspective:1200px;
}
.mock-inner{transform-style:preserve-3d}

/* Quiz mock */
.quiz-q{background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:18px; box-shadow:var(--shadow-sm)}
.quiz-tag{font-size:12px; font-weight:600; color:var(--teal); background:var(--teal-pale); padding:4px 11px; border-radius:999px; display:inline-block; margin-bottom:12px}
.quiz-question{font-size:17px; font-weight:600; line-height:1.4; margin-bottom:16px}
.quiz-opts{display:flex; flex-direction:column; gap:10px}
.quiz-opt{
  display:flex; align-items:center; gap:12px; padding:13px 14px; border-radius:13px;
  border:1.5px solid var(--line); background:var(--surface); font-size:14.5px; font-weight:500;
  transition:transform .2s var(--ease);
}
.quiz-opt .k{width:24px;height:24px;border-radius:7px;background:var(--bg);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--muted); flex:none}
.quiz-opt.correct{border-color:var(--teal); background:var(--teal-pale)}
.quiz-opt.correct .k{background:var(--teal); color:#fff}
.quiz-opt.correct .check{margin-left:auto; color:var(--teal-d); font-weight:700}

/* Seerah lesson card mock */
.lesson-card{background:var(--surface); border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-sm)}
.lesson-hero{height:118px; position:relative; display:flex; align-items:flex-end; padding:14px;
  background:linear-gradient(135deg,#0e5a47,#12806340), linear-gradient(120deg,var(--teal-d),#1c9a76)}
.lesson-hero .lh-badge{font-size:11px; font-weight:600; color:#fff; background:rgba(0,0,0,.28); padding:4px 10px; border-radius:999px; backdrop-filter:blur(4px)}
.lesson-star{position:absolute; top:14px; right:14px; font-size:20px; opacity:.8}
.lesson-body{padding:16px}
.lesson-body h4{font-size:16px; font-weight:700; margin-bottom:6px}
.lesson-body p{font-size:13.5px; color:var(--muted); line-height:1.55}
.ref-card{
  margin-top:14px; display:flex; align-items:center; gap:11px;
  border:1px solid var(--line); border-radius:13px; padding:11px 13px; background:var(--bg);
}
.ref-card .ric{width:30px;height:30px;border-radius:9px;background:var(--teal-pale);color:var(--teal-d);display:flex;align-items:center;justify-content:center;font-size:15px;flex:none}
.ref-card .rt{font-size:12.5px; font-weight:600}
.ref-card .rs{font-size:11px; color:var(--muted)}
.ref-card .grade{margin-left:auto; font-size:10.5px; font-weight:600; color:var(--teal-d); background:var(--teal-pale); padding:3px 9px; border-radius:999px}
.ref-card .chev{color:var(--muted)}

/* Qur'an ayah card mock */
.ayah-card{background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:22px; box-shadow:var(--shadow-sm); text-align:center}
.ayah-card .surah{font-size:12px; font-weight:600; color:var(--gold); letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px}
.ayah-ar{
  font-size:26px; line-height:2; direction:rtl; color:var(--ink); margin-bottom:18px;
  font-family:"Scheherazade New","Amiri","Sora",serif; font-weight:500;
}
.ayah-en{font-size:15px; color:var(--muted); line-height:1.6; font-style:italic; margin-bottom:16px}
.ayah-foot{display:flex; align-items:center; justify-content:center; gap:8px; font-size:12px; color:var(--muted)}
.ayah-foot .ln{height:1px; width:34px; background:var(--line)}

/* Habit / collectible cards mock */
.collectibles{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; perspective:900px}
.collect{
  border-radius:18px; padding:16px; color:#fff; aspect-ratio:3/4;
  display:flex; flex-direction:column; justify-content:space-between;
  box-shadow:var(--shadow-md); transform-style:preserve-3d; position:relative; overflow:hidden;
}
.collect::before{content:""; position:absolute; inset:0;
  background:radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,.35), transparent 55%)}
.collect > *{position:relative}
.collect .c-ic{font-size:30px}
.collect .c-name{font-size:13px; font-weight:700}
.collect .c-sub{font-size:10.5px; opacity:.85}
.collect.c1{background:linear-gradient(155deg,var(--gold),#c97f0e)}
.collect.c2{background:linear-gradient(155deg,var(--violet),#564bc4)}
.collect.c3{background:linear-gradient(155deg,var(--teal),var(--teal-d))}
.streak-pill{margin-top:18px; display:inline-flex; align-items:center; gap:9px; background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:11px 16px; box-shadow:var(--shadow-sm); font-weight:600; font-size:15px}
.streak-pill .fire{font-size:20px}
.streak-pill .days{color:var(--coral)}

/* PvP / friends mock */
.pvp{display:flex; flex-direction:column; gap:14px}
.pvp-vs{display:flex; align-items:center; gap:14px; justify-content:center}
.pvp-player{display:flex; flex-direction:column; align-items:center; gap:8px; flex:1}
.pvp-ava{width:60px;height:60px;border-radius:50%; display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:22px; box-shadow:var(--shadow-md)}
.pvp-ava.p1{background:linear-gradient(135deg,var(--teal),var(--teal-d))}
.pvp-ava.p2{background:linear-gradient(135deg,var(--coral),#b8431f)}
.pvp-name{font-size:13px; font-weight:600}
.pvp-score{font-size:22px; font-weight:800; letter-spacing:-.5px}
.pvp-vs .vs{font-size:13px; font-weight:800; color:var(--muted); background:var(--bg); border:1px solid var(--line); width:42px;height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none}
.pvp-bar{height:8px; border-radius:6px; background:var(--bg); overflow:hidden; display:flex}
.pvp-bar i{display:block; height:100%}
.pvp-bar .t{width:60%; background:var(--teal)}
.pvp-bar .c{width:40%; background:var(--coral)}
.pvp-friends{display:flex; flex-direction:column; gap:9px; margin-top:4px}
.pvp-friend{display:flex; align-items:center; gap:11px; background:var(--surface); border:1px solid var(--line); border-radius:13px; padding:9px 12px; box-shadow:var(--shadow-sm)}
.pvp-friend .fa{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:13px}
.pvp-friend .fn{font-size:13.5px; font-weight:600}
.pvp-friend .fl{font-size:11px; color:var(--muted)}
.pvp-friend .chal{margin-left:auto; font-size:11px; font-weight:600; color:#fff; background:var(--teal); padding:5px 12px; border-radius:999px}

/* Wallet (coming soon) mock */
.wallet-mock{display:flex; flex-direction:column; gap:14px}
.wallet-balance{border-radius:18px; padding:18px; color:#fff; background:linear-gradient(140deg,#13332b,var(--teal-d)); box-shadow:var(--shadow-md); position:relative; overflow:hidden}
.wallet-balance::after{content:""; position:absolute; right:-30px; top:-30px; width:140px; height:140px; border-radius:50%; background:rgba(239,159,39,.25)}
.wallet-balance .wl{font-size:12px; opacity:.8}
.wallet-balance .wv{font-size:30px; font-weight:800; letter-spacing:-.6px; margin-top:4px}
.wallet-balance .wsub{font-size:12px; opacity:.85; margin-top:6px}
.wallet-rows{display:grid; grid-template-columns:1fr 1fr; gap:11px}
.wallet-row{background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:13px; box-shadow:var(--shadow-sm)}
.wallet-row .wi{font-size:18px; margin-bottom:7px}
.wallet-row .wt{font-size:13px; font-weight:700}
.wallet-row .ws{font-size:11px; color:var(--muted)}
.wallet-row.zakat .wi{color:var(--teal)}
.wallet-row.goal .wi{color:var(--violet)}
.wallet-row.budget .wi{color:var(--gold)}
.wallet-row.save .wi{color:var(--coral)}

/* Section that wraps the wallet — soft tinted band */
.section.tease{background:linear-gradient(180deg, transparent, rgba(15,110,86,.05))}

/* ===================================================================
   Values strip
   =================================================================== */
.values{background:var(--ink); color:#fff; border-radius:32px; margin:40px auto; max-width:var(--maxw);
  padding:64px 48px; position:relative; overflow:hidden}
.values::before{content:""; position:absolute; inset:0;
  background:radial-gradient(80% 120% at 100% 0%, rgba(15,110,86,.5), transparent 55%),
             radial-gradient(70% 90% at 0% 100%, rgba(127,119,221,.35), transparent 55%);
  pointer-events:none}
.values .vh{position:relative; text-align:center; max-width:640px; margin:0 auto 44px}
.values .vh h2{font-size:clamp(26px,3vw,38px); letter-spacing:-.8px; margin-bottom:12px; font-weight:700}
.values .vh p{color:#c4c9d2; font-size:17px}
.values-grid{position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:24px}
.value{background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:18px; padding:24px}
.value .vi{font-size:26px; margin-bottom:14px}
.value h3{font-size:16px; font-weight:700; margin-bottom:8px}
.value p{font-size:13.5px; color:#aeb4be; line-height:1.55}

/* ===================================================================
   Final CTA
   =================================================================== */
.cta{padding:110px 0 90px; position:relative; z-index:1; text-align:center}
.cta-inner{max-width:640px; margin:0 auto}
.cta .eyebrow{margin-bottom:20px}
.cta h2{font-size:clamp(32px,4.4vw,54px); line-height:1.06; letter-spacing:-1.2px; font-weight:700; margin-bottom:18px}
.cta h2 .accent{background:linear-gradient(120deg,var(--teal),var(--gold)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent}
.cta p.lead{font-size:19px; color:var(--muted); margin-bottom:34px}
.notify-form{display:flex; gap:10px; max-width:480px; margin:0 auto 18px; flex-wrap:wrap}
.notify-form input[type=email]{
  flex:1; min-width:220px; padding:15px 18px; border-radius:14px; border:1.5px solid var(--line);
  font-family:inherit; font-size:15px; background:var(--surface); color:var(--ink);
}
.notify-form input[type=email]:focus{border-color:var(--teal); outline:none}
.notify-form button{
  padding:15px 26px; border-radius:14px; border:none; cursor:pointer;
  background:var(--teal); color:#fff; font-family:inherit; font-weight:600; font-size:15px;
  box-shadow:var(--shadow-md); transition:transform .25s var(--ease), background .25s var(--ease);
}
.notify-form button:hover{transform:translateY(-2px); background:var(--teal-d)}
.cta-fallback{font-size:14px; color:var(--muted); margin-bottom:30px}
.cta-badges{display:flex; justify-content:center}
.notify-success{
  display:none; max-width:480px; margin:0 auto 18px; padding:16px 20px; border-radius:14px;
  background:var(--teal-pale); color:var(--teal-d); font-weight:600; border:1px solid #bfe6d8;
}
.notify-success.show{display:block}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer{border-top:1px solid var(--line); background:var(--surface); position:relative; z-index:1}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding:60px 0 36px}
.footer-brand .brand{margin-bottom:14px}
.footer-brand p{color:var(--muted); font-size:14px; max-width:320px}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:14px; font-weight:600}
.footer-col a{display:block; color:var(--ink); font-size:14.5px; margin-bottom:10px; font-weight:500}
.footer-col a:hover{color:var(--teal)}
.footer-bottom{border-top:1px solid var(--line); padding:22px 0 40px; display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center; color:var(--muted); font-size:13px}
.credits{font-size:12px; color:var(--muted); line-height:1.7; max-width:760px; padding-bottom:26px}
.credits a{color:var(--teal)}

/* ===================================================================
   Responsive
   =================================================================== */
@media(max-width:980px){
  .hero{padding:140px 0 60px}
  .hero-grid{grid-template-columns:1fr; gap:30px}
  .hero-copy{max-width:none; text-align:center; margin:0 auto}
  .hero .sub{margin-left:auto; margin-right:auto}
  .hero-actions, .hero-meta{justify-content:center}
  .hero-stage{height:520px; transform:scale(.92)}
  .feature{grid-template-columns:1fr; gap:36px; padding:48px 24px}
  .feature.flip .feature-text{order:1} .feature.flip .feature-visual{order:2}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr; gap:30px}
}
@media(max-width:560px){
  .hero{padding:120px 0 40px}
  .section{padding:64px 0}
  .hero-stage{height:480px; transform:scale(.82)}
  .float-card{display:none}
  .values{padding:44px 24px; border-radius:24px; margin:20px 16px}
  .values-grid{grid-template-columns:1fr}
  .collectibles{gap:10px}
  .footer-top{grid-template-columns:1fr}
  .notify-form{flex-direction:column}
  .notify-form button{width:100%}
  .play-badge{width:100%; justify-content:center}
  .btn-ghost{width:100%; justify-content:center}
}

/* ===================================================================
   Reduced motion — disable heavy animation, show everything
   =================================================================== */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
  html{scroll-behavior:auto}
  .reveal{opacity:1 !important; transform:none !important}
  .ambient .blob{display:none}
  .float-card, .phone, .stage-inner, .parallax{transform:none !important}
}
