:root {
  --night: #2E2440;
  --night-deep: #181126;
  --navy: #0F1B4C;
  --lavender: #C9B8E8;
  --lilac: #F3EDFC;
  --cream: #FFF4DC;
  --paper: #FFF9EF;
  --pink: #FFB6D5;
  --pink-soft: #FBEFF5;
  --taro: #8A63D2;
  --taro-deep: #6B46B0;
  --ink: #35294D;
  --muted: #6A5E85;
  --display: "Fredoka", sans-serif;
  --body: "Nunito", sans-serif;
  --shadow: 0 24px 70px rgba(46, 36, 64, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { touch-action: manipulation; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.section { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; }

.skip-link { position: fixed; top: 12px; left: 50%; z-index: 999; transform: translate(-50%, -180%); padding: .7rem 1.25rem; border-radius: 999px; background: var(--cream); color: var(--night); font-weight: 900; text-decoration: none; transition: transform .2s ease; }
.skip-link:focus { transform: translate(-50%, 0); }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; border-radius: 8px; }

.eyebrow { margin-bottom: 1rem; color: var(--taro); font-size: .76rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.section-heading { max-width: 680px; margin-bottom: 3.4rem; }
.section-heading h2, .stamp-copy h2, .wallet-copy h2, .questions-heading h2 { font-family: var(--display); font-size: clamp(2.45rem, 6vw, 4.5rem); font-weight: 600; line-height: .98; letter-spacing: -.035em; }
h2 span { color: var(--taro); }
.section-heading > p:last-child, .stamp-copy > p, .wallet-copy > p, .questions-heading > p:last-child { margin-top: 1.25rem; max-width: 55ch; color: var(--muted); font-size: 1.05rem; }

.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .85rem 1.65rem; border-radius: 999px; font-family: var(--display); font-size: 1rem; font-weight: 600; text-decoration: none; transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--pink); color: var(--navy); box-shadow: 0 12px 34px rgba(255, 182, 213, .3); }
.btn-primary:hover { background: #ffd0e4; box-shadow: 0 15px 42px rgba(255, 182, 213, .45); }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: var(--cream); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* Navigation */
.nav-wrap { position: fixed; inset: 0 0 auto; z-index: 100; display: flex; justify-content: center; padding: 14px 4%; pointer-events: none; }
.nav { width: min(1120px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem .7rem .55rem 1.3rem; border: 1px solid rgba(201,184,232,.22); border-radius: 999px; background: rgba(30,21,44,.58); box-shadow: 0 12px 34px rgba(10,7,18,.12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); pointer-events: auto; transition: background .3s ease, box-shadow .3s ease; }
.nav.scrolled { background: rgba(30,21,44,.9); box-shadow: 0 14px 40px rgba(10,7,18,.32); }
.nav-logo, .footer-brand { display: inline-flex; align-items: center; gap: .58rem; color: var(--cream); font-family: var(--display); font-size: 1.35rem; font-weight: 600; text-decoration: none; }
.brand-image { position: relative; width: 32px; height: 32px; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; background: #fff; box-shadow: 0 0 18px rgba(255,244,220,.28); }
.brand-image img { position: absolute; width: 85px; max-width: none; height: 85px; transform: translate(-20px, -18px); }
.nav-moon { position: relative; width: 27px; height: 27px; flex: 0 0 auto; border-radius: 50%; background: radial-gradient(circle at 34% 30%, #fffdf4, var(--cream) 56%, #e9d09c); box-shadow: 0 0 18px rgba(255,244,220,.58); }
.nav-moon::after { content: ""; position: absolute; width: 21px; height: 21px; top: -2px; right: -5px; border-radius: 50%; background: #2c213e; }
.nav-links { display: flex; align-items: center; gap: 1.45rem; }
.nav-links a { display: inline-flex; min-height: 44px; align-items: center; color: rgba(255,249,239,.84); font-size: 1rem; font-weight: 800; text-decoration: none; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { padding: .58rem 1.25rem; border-radius: 999px; background: var(--cream); color: var(--night); font-family: var(--display); font-weight: 600; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; margin: 6px auto; border-radius: 4px; background: var(--cream); transition: transform .25s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: var(--night-deep); color: var(--cream); isolation: isolate; }
.hero-image { position: absolute; inset: -3%; z-index: -3; width: 106%; max-width: none; height: 106%; object-fit: cover; object-position: center; transform: translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0) scale(1.02); will-change: transform; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(20,14,35,.94) 0%, rgba(25,18,44,.81) 38%, rgba(25,18,44,.13) 67%, rgba(18,12,30,.08) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 30%; background: linear-gradient(transparent, var(--night-deep)); }
.hero-stars, .wallet-stars, .closing-stars { position: absolute; inset: 0; z-index: -1; opacity: .55; background-image: radial-gradient(circle at 13% 18%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 27% 73%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 48% 29%, #C9B8E8 0 1.5px, transparent 2px), radial-gradient(circle at 74% 14%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 84% 67%, #FFB6D5 0 1.5px, transparent 2px), radial-gradient(circle at 92% 36%, #fff 0 1px, transparent 1.5px); background-size: 310px 260px; animation: twinkle 5s ease-in-out infinite alternate; }
@keyframes twinkle { to { opacity: .95; } }
.hero-inner { width: min(1120px, 92%); padding: 130px 0 120px; }
.hero-copy { max-width: 650px; }
.hero .eyebrow { color: var(--pink); }
.hero h1 { max-width: 10ch; font-family: var(--display); font-size: clamp(3.45rem, 8.5vw, 7.2rem); font-weight: 600; line-height: .9; letter-spacing: -.045em; text-wrap: balance; }
.hero h1 span { color: var(--pink); text-shadow: 0 0 28px rgba(255,182,213,.22); }
.hero-lead { max-width: 48ch; margin: 1.6rem 0 2rem; color: rgba(255,249,239,.82); font-size: clamp(1rem, 2vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .8rem 1.3rem; margin-top: 1.7rem; color: rgba(255,249,239,.64); font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
.hero-proof span { display: flex; align-items: center; gap: .45rem; }
.hero-proof span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.hero-glow { position: absolute; left: -10vw; bottom: -30vw; z-index: -1; width: 70vw; height: 55vw; border-radius: 50%; background: rgba(255,182,213,.13); filter: blur(80px); }
.hero-orb { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: radial-gradient(circle at 30% 24%, #fff, var(--pink) 26%, rgba(255,182,213,.15) 70%); box-shadow: 0 0 24px rgba(255,182,213,.55); pointer-events: none; transform: translate3d(var(--px, 0), var(--py, 0), 0); transition: transform .25s ease-out; }
.hero-orb-one { width: 24px; height: 24px; left: 5%; top: 25%; }
.hero-orb-two { width: 13px; height: 13px; left: 45%; bottom: 16%; }
.scroll-cue { position: absolute; left: 50%; bottom: 18px; display: flex; min-height: 56px; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; color: rgba(255,255,255,.7); font-size: 1rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { width: 1px; height: 28px; background: linear-gradient(var(--pink), transparent); animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleY(.45); transform-origin: top; opacity: .45; } }

.ticker { overflow: hidden; border-block: 1px solid rgba(201,184,232,.15); background: var(--night-deep); color: var(--lavender); }
.ticker-track { display: flex; width: max-content; font-family: var(--display); font-size: clamp(.95rem, 2vw, 1.25rem); font-weight: 500; letter-spacing: .08em; animation: ticker 28s linear infinite; }
.ticker-track span { padding: 1rem 0; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Steps */
.how { background: linear-gradient(180deg, var(--lilac), var(--paper)); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step-card { position: relative; min-height: 390px; padding: 2rem; overflow: hidden; border: 1px solid rgba(138,99,210,.12); border-radius: 30px; background: rgba(255,255,255,.8); box-shadow: var(--shadow), inset 0 2px 0 rgba(255,255,255,.95); transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .22s ease, box-shadow .25s ease; }
.step-card:hover { box-shadow: 0 30px 75px rgba(46,36,64,.18); }
.step-number { position: absolute; top: 1.5rem; right: 1.6rem; color: rgba(138,99,210,.14); font-family: var(--display); font-size: 3.6rem; font-weight: 700; line-height: 1; }
.step-icon { position: relative; width: 96px; height: 96px; margin-bottom: 2.2rem; border-radius: 30px; background: linear-gradient(145deg, var(--pink-soft), #fff); box-shadow: inset 0 2px 0 #fff, 0 16px 30px rgba(138,99,210,.12); }
.scan-icon::before, .scan-icon::after { content: ""; position: absolute; inset: 24px; border: 4px solid var(--navy); }
.scan-icon::after { inset: 34px; border-width: 3px; background: repeating-linear-gradient(90deg, var(--navy) 0 4px, transparent 4px 7px); }
.scan-icon span { position: absolute; left: 12px; right: 12px; top: 47px; z-index: 2; height: 2px; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.cup-icon::before { content: ""; position: absolute; width: 46px; height: 54px; left: 24px; top: 26px; border: 3px solid var(--navy); border-radius: 4px 4px 17px 17px; background: linear-gradient(var(--pink) 0 65%, #fff 65%); }
.cup-icon::after { content: ""; position: absolute; width: 5px; height: 31px; left: 59px; top: 11px; border-radius: 5px; background: var(--taro); transform: rotate(11deg); }
.cup-icon span { position: absolute; left: 21px; top: 23px; z-index: 2; width: 54px; height: 7px; border: 3px solid var(--navy); border-radius: 8px; background: #fff; }
.cup-icon i { position: absolute; left: 34px; top: 65px; z-index: 3; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); box-shadow: 13px 4px var(--navy), 25px -1px var(--navy); }
.gift-icon::before { content: ""; position: absolute; width: 52px; height: 43px; left: 22px; top: 38px; border-radius: 6px; background: var(--navy); box-shadow: inset 0 12px 0 var(--taro); }
.gift-icon::after { content: ""; position: absolute; width: 7px; height: 54px; left: 45px; top: 30px; background: var(--pink); }
.gift-icon span::before, .gift-icon span::after { content: ""; position: absolute; top: 19px; width: 24px; height: 18px; border: 5px solid var(--pink); }
.gift-icon span::before { left: 23px; border-radius: 20px 5px 5px 20px; transform: rotate(15deg); }
.gift-icon span::after { right: 23px; border-radius: 5px 20px 20px 5px; transform: rotate(-15deg); }
.step-kicker { margin-bottom: .55rem; color: var(--taro); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.step-card h3 { margin-bottom: .8rem; font-family: var(--display); font-size: 1.65rem; font-weight: 600; line-height: 1.05; }
.step-card > p:last-child { color: var(--muted); }
.reward-step { background: linear-gradient(145deg, var(--night), #51406e); color: var(--cream); }
.reward-step .step-kicker { color: var(--pink); }
.reward-step > p:last-child { color: rgba(255,249,239,.72); }

/* Interactive Passport */
.stamp-story { overflow: hidden; background: var(--paper); }
.stamp-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.stamp-copy h2 { max-width: 11ch; }
.tiny-facts { display: grid; gap: 1rem; margin-top: 2rem; list-style: none; }
.tiny-facts li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(53,41,77,.12); }
.tiny-facts strong { font-family: var(--display); font-weight: 600; }
.tiny-facts span { color: var(--muted); font-size: .9rem; }
.passport-demo { position: relative; min-height: 560px; padding: clamp(1.5rem, 4vw, 2.5rem); overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 42px; background: radial-gradient(circle at 83% 0%, #455799 0%, transparent 35%), linear-gradient(145deg, #17275f, var(--navy) 62%, #091337); color: #fff; box-shadow: 0 32px 80px rgba(15,27,76,.25), inset 0 2px 0 rgba(255,255,255,.12); }
.passport-demo::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,255,255,.025), 0 0 0 88px rgba(255,255,255,.018); }
.passport-shine { position: absolute; inset: -30% 52% 35% -20%; background: radial-gradient(circle, rgba(255,182,213,.32), transparent 68%); filter: blur(20px); }
.passport-topline { position: relative; z-index: 1; display: flex; justify-content: space-between; color: var(--pink); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.passport-title-row { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; margin: 2rem 0 2.3rem; }
.passport-title-row small { display: block; margin-bottom: .35rem; color: rgba(255,255,255,.55); font-size: .67rem; font-weight: 900; letter-spacing: .15em; }
.passport-title-row strong { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; line-height: 1; }
.mini-moon { width: 74px; height: 74px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff, var(--cream) 55%, #e7ca92); box-shadow: 0 0 35px rgba(255,244,220,.35); }
.stamp-dots { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.65rem, 2vw, 1.15rem); }
.stamp-dots span { aspect-ratio: 1; display: grid; place-items: center; border: 2px dashed rgba(255,255,255,.28); border-radius: 50%; color: rgba(255,255,255,.45); font-family: var(--display); font-size: 1.1rem; transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s ease, color .25s ease, border .25s ease; }
.stamp-dots span.filled { border-style: solid; border-color: var(--pink); background: var(--pink); color: var(--navy); box-shadow: 0 10px 22px rgba(255,182,213,.24); transform: scale(1.05) rotate(-4deg); }
.stamp-dots span.filled::after { content: "✓"; font-weight: 900; }
.stamp-dots span.filled { font-size: 0; }
.passport-demo.reward-ready .mini-moon { animation: rewardGlow 1.2s ease-in-out infinite alternate; }
.passport-demo.reward-ready .reward-heading { color: var(--pink); }
@keyframes rewardGlow { to { box-shadow: 0 0 58px rgba(255,182,213,.85); transform: scale(1.06); } }
.demo-message { position: relative; z-index: 1; min-height: 26px; margin: 1.7rem 0 1.1rem; color: rgba(255,255,255,.75); }
.demo-button { position: relative; z-index: 2; width: 100%; min-height: 54px; border: 0; border-radius: 18px; background: var(--pink); color: var(--navy); font-family: var(--display); font-size: 1rem; font-weight: 600; cursor: pointer; box-shadow: 0 12px 28px rgba(255,182,213,.2); }
.demo-button:hover { background: #ffd0e4; }
.demo-reset { position: relative; z-index: 2; display: block; min-height: 44px; margin: .45rem auto 0; padding: .4rem .75rem; border: 0; background: none; color: rgba(255,255,255,.7); font: 800 1rem var(--body); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.stamp-cloud { position: absolute; border-radius: 50%; background: var(--pink); opacity: .22; filter: blur(1px); transform: translateY(var(--float-y, 0)); }
.stamp-cloud-one { width: 50px; height: 50px; top: 11%; right: 6%; }
.stamp-cloud-two { width: 23px; height: 23px; bottom: 9%; left: 4%; background: var(--taro); }

/* Wallet */
.wallet { overflow: hidden; background: radial-gradient(900px 600px at 10% 80%, #533d74 0%, transparent 70%), linear-gradient(145deg, #21172f, var(--night-deep)); color: var(--cream); }
.wallet-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 9vw, 8rem); }
.wallet-visual { position: relative; min-height: 650px; display: grid; place-items: center; perspective: 1200px; }
.phone-shell { position: relative; width: min(340px, 82vw); padding: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 49px; background: linear-gradient(145deg, #56505c, #111); box-shadow: 0 45px 95px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.12); transform: rotateY(-7deg) rotateX(2deg); }
.phone-island { position: absolute; top: 19px; left: 50%; z-index: 3; width: 92px; height: 25px; border-radius: 20px; background: #050505; transform: translateX(-50%); }
.phone-screen { min-height: 610px; padding: 72px 14px 28px; border-radius: 40px; background: #f4f1f7; }
.phone-pass { min-height: 480px; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg, #17275f, var(--navy)); box-shadow: 0 15px 30px rgba(15,27,76,.22); }
.phone-pass-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.phone-pass-head small { color: var(--pink); font-size: 7px; font-weight: 900; }
.phone-mark { width: 24px; height: 24px; border-radius: 50%; background: var(--pink); box-shadow: inset 0 0 0 7px var(--navy), 0 0 0 1px rgba(255,255,255,.2); }
.phone-score { display: grid; padding: 24px 16px; background: radial-gradient(circle at 80% 0%, rgba(255,182,213,.42), transparent 44%); }
.phone-score strong { font: 500 3rem/1 var(--display); }
.phone-score span { margin-top: 4px; color: var(--pink); font-size: 10px; font-weight: 900; }
.phone-pearls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 24px 18px; }
.phone-pearls i { aspect-ratio: 1; border-radius: 50%; background: var(--pink); box-shadow: inset 0 -5px 8px rgba(15,27,76,.16); }
.phone-pearls i::after { content: "✓"; display: grid; height: 100%; place-items: center; color: var(--navy); font-style: normal; font-weight: 900; }
.phone-code { width: 122px; margin: 12px auto; padding: 12px; border-radius: 12px; background: #fff; text-align: center; }
.phone-code span { display: block; height: 90px; background: repeating-linear-gradient(90deg, var(--navy) 0 4px, #fff 4px 7px), repeating-linear-gradient(0deg, transparent 0 5px, var(--navy) 5px 8px); background-blend-mode: multiply; }
.phone-code small { color: var(--navy); font-size: 6px; font-weight: 900; }
.wallet-copy { position: relative; z-index: 2; }
.wallet-copy .eyebrow { color: var(--pink); }
.wallet-copy h2 { max-width: 11ch; }
.wallet-copy h2 span { color: var(--pink); }
.wallet-copy > p { color: rgba(255,249,239,.7); }
.wallet-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 2rem 0; }
.wallet-benefits span { padding: 1rem; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); color: rgba(255,249,239,.6); font-size: .75rem; }
.wallet-benefits b { display: block; margin-bottom: .3rem; color: var(--cream); font-family: var(--display); font-size: .94rem; font-weight: 500; }
.wallet-badges { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.wallet-badges a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 8px; font-size: 1rem; transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s ease, border-color .2s ease; }
.wallet-badges a:hover { transform: translateY(-3px) scale(1.02); }
.wallet-badges img { width: auto; height: 48px; }
.wallet-android-link { padding: .7rem 1.1rem; border: 1px solid rgba(255,255,255,.26); color: var(--cream); background: rgba(255,255,255,.08); font-family: var(--display); font-weight: 600; text-decoration: none; }
.wallet-android-link:hover { border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.14); }
.wallet-copy .wallet-note { margin-top: 1rem; max-width: 58ch; color: rgba(255,249,239,.48); font-size: .76rem; }
.wallet-orbit { position: absolute; border-radius: 50%; background: var(--pink); box-shadow: 0 0 34px rgba(255,182,213,.48); transform: translate3d(var(--px, 0), var(--py, 0), 0); }
.wallet-orbit-one { width: 42px; height: 42px; top: 13%; right: 2%; }
.wallet-orbit-two { width: 18px; height: 18px; left: 3%; bottom: 20%; background: var(--lavender); }

/* FAQ */
.questions { background: linear-gradient(180deg, var(--pink-soft), var(--lilac)); }
.questions-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 9vw, 7rem); align-items: start; }
.questions-heading { position: sticky; top: 130px; }
.accordion { border-top: 1px solid rgba(53,41,77,.16); }
.accordion details { border-bottom: 1px solid rgba(53,41,77,.16); }
.accordion summary { position: relative; padding: 1.6rem 3rem 1.6rem 0; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i, .accordion summary i::after { position: absolute; top: 50%; right: 5px; width: 18px; height: 2px; border-radius: 4px; background: var(--taro); transform: translateY(-50%); transition: transform .25s ease; }
.accordion summary i::after { content: ""; inset: 0; transform: rotate(90deg); }
.accordion details[open] summary i { transform: translateY(-50%) rotate(45deg); }
.accordion details p { max-width: 64ch; padding: 0 3rem 1.7rem 0; color: var(--muted); }

/* Closing and footer */
.closing { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 120%, #7b5ba8, transparent 48%), linear-gradient(var(--night), var(--night-deep)); color: var(--cream); text-align: center; }
.closing::before { content: ""; position: absolute; width: min(720px, 90vw); aspect-ratio: 1; bottom: -62%; border-radius: 50%; background: radial-gradient(circle at 34% 30%, #fff, var(--cream) 52%, #e5cb96); box-shadow: 0 0 90px rgba(255,244,220,.22); }
.closing-inner { position: relative; z-index: 2; padding: 6rem 0 8rem; }
.closing .eyebrow { color: var(--pink); }
.closing h2 { font-family: var(--display); font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 600; line-height: .88; letter-spacing: -.05em; }
.closing-inner > p:not(.eyebrow):not(.address) { max-width: 48ch; margin: 1.5rem auto 2rem; color: rgba(255,249,239,.72); font-size: 1.05rem; }
.closing-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.closing-actions .btn-ghost {
  border-color: rgba(255,255,255,.38);
  color: #fff;
  background: rgba(25, 17, 40, .94);
  box-shadow: 0 12px 34px rgba(10, 7, 18, .28);
}
.closing-actions .btn-ghost:hover { color: var(--night); background: var(--cream); }
.address { margin-top: 1.5rem; color: rgba(255,249,239,.5); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
footer { padding: 3rem 0; background: #120c1b; color: rgba(255,249,239,.6); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem 2rem; }
.footer-brand { font-size: 1.2rem; }
.footer-inner > p { font-size: .85rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-inner nav a { display: inline-flex; min-height: 44px; align-items: center; font-size: 1rem; font-weight: 800; text-decoration: none; }
.footer-inner nav a:hover { color: #fff; }
.footer-inner small { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .68rem; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 310px; }
  .stamp-grid, .wallet-grid, .questions-grid { grid-template-columns: 1fr; }
  .stamp-copy h2, .wallet-copy h2 { max-width: 13ch; }
  .questions-heading { position: static; }
  .wallet-visual { order: 2; min-height: 600px; }
  .wallet-copy { order: 1; }
}

@media (max-width: 760px) {
  .nav-wrap { padding: max(10px, env(safe-area-inset-top)) 3% 10px; }
  .nav {
    padding: .5rem .55rem .5rem 1rem;
    background: rgba(30,21,44,.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; gap: 1.6rem; padding: 7rem 2rem 3rem; background: rgba(24,17,38,.98); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font: 500 1.6rem var(--display); }
  .nav-links .nav-cta { margin-top: .8rem; font-size: 1.1rem; }

  .hero { min-height: clamp(760px, 106svh, 890px); align-items: end; }
  .hero-image { inset: -2% -24% auto; width: 148%; height: 63%; object-position: 73% center; transform: none; will-change: auto; }
  .hero::before { background: linear-gradient(180deg, rgba(20,14,35,.04) 0%, rgba(20,14,35,.12) 30%, rgba(20,14,35,.93) 62%, var(--night-deep) 84%); }
  .hero::after { height: 30%; }
  .hero-inner { width: 90%; padding: clamp(370px, 98vw, 420px) 0 max(3.25rem, env(safe-area-inset-bottom)); }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 8.4ch; font-size: clamp(3rem, 14vw, 4.65rem); }
  .hero-lead { max-width: 35ch; margin: 1rem 0 1.25rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: .65rem; }
  .hero-proof { gap: .5rem 1rem; margin-top: 1.1rem; }
  .scroll-cue { display: none; }
  .hero-orb-one { top: 19%; }
  .hero-orb-two { display: none; }

  .section { padding: 5.5rem 0; }
  .section-heading { margin-bottom: 2.2rem; }
  .step-card { padding: 1.55rem; border-radius: 26px; }
  .step-icon { width: 88px; height: 88px; margin-bottom: 1.5rem; transform: scale(.9); transform-origin: left top; }
  .tiny-facts li { grid-template-columns: 1fr; gap: .15rem; }
  .passport-demo { min-height: 500px; padding: 1.35rem; border-radius: 30px; }
  .passport-title-row { margin: 1.5rem 0; }
  .mini-moon { width: 58px; height: 58px; }
  .stamp-dots { gap: .65rem; }

  .wallet-benefits { grid-template-columns: 1fr; }
  .wallet-benefits span { display: grid; grid-template-columns: 120px 1fr; align-items: center; }
  .wallet-benefits b { margin: 0; }
  .wallet-badges { align-items: flex-start; flex-direction: column; }
  .wallet-badges img { height: 48px; }
  .wallet-visual { min-height: 620px; }
  .phone-shell { width: 310px; }

  .closing { min-height: 650px; }
  .closing::before { bottom: -42%; }
  .closing-actions { display: grid; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-inner nav { justify-content: center; }
}

@media (max-width: 500px) {
  .hero-proof span:nth-child(2) { display: none; }
}

@media (max-width: 390px) {
  .passport-topline { letter-spacing: .08em; }
  .wallet-badges img { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-image, [data-depth], [data-float] { transform: none !important; }
}
