/* =========================================================
   ExpertMoney — landing page
   Palette mirrors the app: emerald #2ECC71 on #202022
   ========================================================= */

:root{
  --bg:          #141416;
  --bg-2:        #191a1c;
  --surface:     #202022;
  --surface-2:   #2c2c2e;
  --surface-3:   #363638;

  --primary:     #2ECC71;
  --primary-dk:  #27AE60;
  --primary-gl:  rgba(46,204,113,.16);

  --text:        #ffffff;
  --muted:       #a0a0a0;
  --muted-2:     #6f7073;
  --warn:        #f2b13c;
  --error:       #e74c3c;

  --line:        rgba(255,255,255,.08);
  --line-2:      rgba(255,255,255,.14);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shell: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:16px;
  line-height:1.6;
  font-weight:500;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ margin:0; line-height:1.08; letter-spacing:-.03em; font-weight:800; }
p{ margin:0; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

svg{ fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--primary); color:#08120c; padding:12px 20px; border-radius:0 0 var(--r-sm) 0;
  font-weight:700;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:2px solid var(--primary); outline-offset:3px; border-radius:4px; }

.container{ width:100%; max-width:var(--shell); margin:0 auto; padding:0 24px; }
.container-narrow{ max-width:800px; }

/* ---------- ambient background ---------- */
.ambient{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.orb{ position:absolute; border-radius:50%; filter:blur(110px); opacity:.5; }
.orb-1{ width:620px; height:620px; top:-240px; right:-140px;
        background:radial-gradient(circle,rgba(46,204,113,.34),transparent 68%); }
.orb-2{ width:540px; height:540px; top:52%; left:-220px;
        background:radial-gradient(circle,rgba(39,174,96,.20),transparent 70%); }
.grid-lines{
  position:absolute; inset:0;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),
                   linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:74px 74px;
  mask-image:radial-gradient(ellipse 90% 55% at 50% 0%,#000 20%,transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 90% 55% at 50% 0%,#000 20%,transparent 75%);
  opacity:.55;
}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  transition:background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom:1px solid transparent;
}
.nav.is-stuck{
  background:rgba(20,20,22,.78);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom-color:var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; height:76px; }

.brand{ display:flex; align-items:center; gap:11px; font-size:19px; font-weight:600; letter-spacing:-.02em; flex-shrink:0; }
.brand img{ border-radius:9px; }
.brand strong{ font-weight:800; color:var(--primary); }

.nav-links{ display:flex; gap:34px; margin-left:auto; }
.nav-links a{
  font-size:15px; font-weight:600; color:var(--muted);
  transition:color .2s; position:relative; padding:6px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--primary); border-radius:2px; transition:width .28s var(--ease);
}
.nav-links a:hover{ color:var(--text); }
.nav-links a:hover::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{ display:none; width:42px; height:42px; border-radius:11px; border:1px solid var(--line-2);
             flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.nav-toggle span{ display:block; width:17px; height:2px; background:var(--text); border-radius:2px;
                  transition:transform .3s var(--ease), opacity .2s; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  border-radius:var(--r-sm); font-weight:700; letter-spacing:-.01em;
  transition:transform .22s var(--ease), box-shadow .22s var(--ease),
             background .22s, border-color .22s, color .22s;
  white-space:nowrap;
}
.btn-sm{ padding:10px 18px; font-size:14.5px; }
.btn-lg{ padding:15px 28px; font-size:16px; border-radius:13px; }
.btn-block{ display:flex; width:100%; padding:14px 20px; }

.btn-primary{ background:var(--primary); color:#08120c; box-shadow:0 6px 22px rgba(46,204,113,.26); }
.btn-primary:hover{ background:#3ee183; transform:translateY(-2px); box-shadow:0 12px 34px rgba(46,204,113,.34); }

.btn-ghost{ background:rgba(255,255,255,.04); color:var(--text); border:1px solid var(--line-2); }
.btn-ghost:hover{ background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.28); transform:translateY(-2px); }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position:relative; z-index:1; padding:170px 0 90px; }
.hero-grid{ display:grid; grid-template-columns:1.06fr .94fr; gap:60px; align-items:center; }

.pill{
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 15px 7px 11px; border-radius:100px;
  background:rgba(46,204,113,.09); border:1px solid rgba(46,204,113,.24);
  font-size:13.5px; font-weight:700; color:#8ce8b3; margin-bottom:26px;
}
.pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--primary);
            box-shadow:0 0 0 0 rgba(46,204,113,.6); animation:pulse 2.4s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(46,204,113,.55); }
  70%{ box-shadow:0 0 0 9px rgba(46,204,113,0); }
  100%{ box-shadow:0 0 0 0 rgba(46,204,113,0); }
}

.hero h1{ font-size:clamp(3.2rem,7.4vw,5.4rem); font-weight:800; letter-spacing:-.045em; }
.hero h1 em{
  font-style:normal;
  background:linear-gradient(120deg,var(--primary) 10%,#7ef0ae 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.lede{ margin-top:26px; font-size:17.5px; color:var(--muted); max-width:31em; line-height:1.62; font-weight:500; }

.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:36px; }

.hero-points{ display:flex; flex-wrap:wrap; gap:22px; margin-top:32px; }
.hero-points li{ display:flex; align-items:center; gap:8px; font-size:14.5px; color:var(--muted); font-weight:600; }
.hero-points .ic{ width:16px; height:16px; color:var(--primary); stroke-width:2.6; flex-shrink:0; }

/* ---------- phone ---------- */
.hero-visual{ position:relative; display:flex; flex-direction:column; align-items:center; }
.phone-glow{
  position:absolute; width:340px; height:340px; top:14%; left:50%; transform:translateX(-50%);
  background:radial-gradient(circle,rgba(46,204,113,.30),transparent 68%);
  filter:blur(64px); z-index:0;
}
.phone{
  position:relative; z-index:1;
  width:305px; height:625px;
  background:linear-gradient(160deg,#3a3a3d,#1b1b1d);
  border-radius:46px; padding:11px;
  box-shadow:0 40px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.09) inset;
  animation:float 7s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }

.phone-notch{
  position:absolute; top:11px; left:50%; transform:translateX(-50%);
  width:112px; height:26px; background:#0d0d0f; border-radius:0 0 17px 17px; z-index:4;
}
.phone-screen{
  position:relative; width:100%; height:100%;
  background:var(--surface); border-radius:36px; overflow:hidden;
  padding:44px 17px 22px;
}
.phone-home{
  position:absolute; bottom:7px; left:50%; transform:translateX(-50%);
  width:112px; height:4px; border-radius:4px; background:rgba(255,255,255,.28);
}

.scr{
  position:absolute; inset:0; padding:46px 17px 24px;
  opacity:0; transform:translateX(16px) scale(.985);
  transition:opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events:none;
}
.scr.is-active{ opacity:1; transform:none; pointer-events:auto; }

.scr-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.scr-hi{ font-size:11.5px; color:var(--muted-2); font-weight:600; }
.scr-name{ font-size:17px; font-weight:800; letter-spacing:-.02em; }
.scr-avatar{
  width:34px; height:34px; border-radius:50%; background:var(--surface-2);
  display:grid; place-items:center; font-size:13px; font-weight:800; color:var(--primary);
  border:1px solid var(--line-2);
}
.balance-card{
  background:linear-gradient(145deg,rgba(46,204,113,.17),rgba(46,204,113,.05));
  border:1px solid rgba(46,204,113,.24);
  border-radius:19px; padding:17px; margin-bottom:18px;
}
.bc-label{ font-size:11px; color:#8ce8b3; font-weight:700; text-transform:uppercase; letter-spacing:.07em; }
.bc-value{ font-size:33px; font-weight:800; letter-spacing:-.035em; margin-top:5px; line-height:1; }
.bc-meta{ display:flex; gap:7px; margin-top:13px; }
.tag{ font-size:10.5px; font-weight:700; padding:4px 9px; border-radius:100px; }
.tag-up{ background:rgba(46,204,113,.16); color:#7ee2a8; }
.tag-down{ background:rgba(255,255,255,.07); color:var(--muted); }

.scr-section{ font-size:11px; text-transform:uppercase; letter-spacing:.09em;
              color:var(--muted-2); font-weight:800; margin-bottom:9px; }

.tx{ display:flex; align-items:center; gap:11px; padding:9px 0; }
.tx-ic{ width:34px; height:34px; border-radius:11px; display:grid; place-items:center; flex-shrink:0;
        background:var(--surface-2); }
.tx-ic svg{ width:16px; height:16px; }
.tx-ic-food{ color:#f2b13c; }
.tx-ic-fuel{ color:#5aa9f2; }
.tx-ic-in{ color:var(--primary); background:rgba(46,204,113,.13); }
.tx-body{ flex:1; min-width:0; }
.tx-body p{ font-size:13.5px; font-weight:700; }
.tx-body span{ font-size:11px; color:var(--muted-2); font-weight:600; }
.tx-amt{ font-size:13.5px; font-weight:800; letter-spacing:-.02em; }
.tx-in{ color:var(--primary); }

/* budgets */
.bud{ margin-bottom:15px; }
.bud-row{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:7px; }
.bud-row span:first-child{ font-size:13.5px; font-weight:700; }
.bud-num{ font-size:11.5px; color:var(--muted); font-weight:700; }
.bud-num.warn{ color:var(--warn); }
.bar{ height:7px; border-radius:100px; background:rgba(255,255,255,.07); overflow:hidden; }
.bar i{
  display:block; height:100%; width:0; border-radius:100px;
  background:linear-gradient(90deg,var(--primary-dk),var(--primary));
  transition:width 1.15s var(--ease);
}
.bar i.warn{ background:linear-gradient(90deg,#d99327,var(--warn)); }
.bar.is-on i{ width:var(--w); }

.nudge{
  display:flex; gap:10px; align-items:flex-start; margin-top:18px;
  background:rgba(242,177,60,.09); border:1px solid rgba(242,177,60,.22);
  border-radius:13px; padding:11px 13px;
}
.nudge svg{ width:16px; height:16px; color:var(--warn); flex-shrink:0; margin-top:2px; }
.nudge p{ font-size:12px; color:#e8cd9a; font-weight:600; line-height:1.45; }
.nudge strong{ color:var(--warn); font-weight:800; }

/* goal pace callout (phone) */
.pace{
  display:flex; gap:10px; align-items:flex-start; margin-top:18px;
  background:rgba(46,204,113,.09); border:1px solid rgba(46,204,113,.22);
  border-radius:13px; padding:11px 13px;
}
.pace svg{ width:16px; height:16px; color:var(--primary); flex-shrink:0; margin-top:2px; }
.pace p{ font-size:12px; color:#a8dfc0; font-weight:600; line-height:1.45; }
.pace strong{ color:var(--primary); font-weight:800; }

.scr-dots{ display:flex; gap:9px; margin-top:30px; }
.scr-dots button{
  width:8px; height:8px; border-radius:100px; background:rgba(255,255,255,.2);
  transition:width .35s var(--ease), background .25s;
}
.scr-dots button.is-active{ width:26px; background:var(--primary); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.strip{ position:relative; z-index:1; padding:26px 0 10px; }
.strip-inner{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:30px 0;
}
.strip-item{ text-align:center; }
.strip-item strong{ display:block; font-size:19px; font-weight:800; letter-spacing:-.025em; color:var(--primary); }
.strip-item span{ font-size:13.5px; color:var(--muted); font-weight:600; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ position:relative; z-index:1; padding:104px 0; }
.section-alt{ background:linear-gradient(180deg,transparent,var(--bg-2) 12%,var(--bg-2) 88%,transparent); }

.head{ max-width:660px; margin:0 auto 62px; text-align:center; }
.eyebrow{
  font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:.14em;
  color:var(--primary); margin-bottom:15px;
}
.head h2{ font-size:clamp(2.05rem,4.1vw,3.05rem); }
.head .sub{ margin-top:20px; font-size:17px; color:var(--muted); line-height:1.62; }

/* ---------- feature cards ---------- */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.card{
  position:relative;
  background:linear-gradient(165deg,rgba(255,255,255,.045),rgba(255,255,255,.014));
  border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 28px;
  transition:transform .35s var(--ease), border-color .35s, background .35s;
  overflow:hidden;
}
.card::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(420px circle at var(--mx,50%) var(--my,0%),rgba(46,204,113,.10),transparent 62%);
  opacity:0; transition:opacity .4s; pointer-events:none;
}
.card:hover{ transform:translateY(-5px); border-color:rgba(46,204,113,.30); }
.card:hover::before{ opacity:1; }
.card-ic{
  width:50px; height:50px; border-radius:15px; display:grid; place-items:center; margin-bottom:22px;
  background:rgba(46,204,113,.11); border:1px solid rgba(46,204,113,.20); color:var(--primary);
}
.card-ic svg{ width:23px; height:23px; }
.card h3{ font-size:19.5px; margin-bottom:11px; letter-spacing:-.025em; }
.card p{ font-size:15px; color:var(--muted); line-height:1.62; }

/* ---------- steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.step{ position:relative; padding:34px 28px; border-radius:var(--r-lg);
       background:rgba(255,255,255,.028); border:1px solid var(--line); }
.step-n{
  font-size:13px; font-weight:800; letter-spacing:.1em; color:var(--primary);
  margin-bottom:18px;
}
.step h3{ font-size:19.5px; margin-bottom:11px; letter-spacing:-.025em; }
.step p{ font-size:15px; color:var(--muted); line-height:1.62; }

/* ---------- showcase ---------- */
.show{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; margin-bottom:110px; }
.show:last-child{ margin-bottom:0; }
.show-rev .show-copy{ order:2; }
.show-copy h2{ font-size:clamp(1.9rem,3.6vw,2.7rem); }
.show-copy .sub{ margin-top:20px; font-size:16.5px; color:var(--muted); line-height:1.65; }
.fineprint{ margin-top:22px; font-size:13px; color:var(--muted-2); font-weight:600; }

.ticks{ margin-top:26px; display:flex; flex-direction:column; gap:13px; }
.ticks li{ position:relative; padding-left:31px; font-size:15.5px; color:#d2d2d4; font-weight:600; line-height:1.55; }
.ticks li::before{
  content:''; position:absolute; left:0; top:5px; width:19px; height:19px; border-radius:50%;
  background:rgba(46,204,113,.14);
}
.ticks li::after{
  content:''; position:absolute; left:6px; top:10px; width:7px; height:4px;
  border-left:2px solid var(--primary); border-bottom:2px solid var(--primary);
  transform:rotate(-45deg);
}
.ticks li strong{ color:var(--text); font-weight:800; }

.panel{
  background:linear-gradient(165deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
  border:1px solid var(--line); border-radius:var(--r-xl); padding:28px;
  box-shadow:0 26px 60px rgba(0,0,0,.35);
}
.panel-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; }
.panel-head span:first-child{ font-size:16px; font-weight:800; letter-spacing:-.02em; }
.panel-tag{ font-size:11.5px; font-weight:800; color:var(--muted);
            background:rgba(255,255,255,.06); padding:5px 11px; border-radius:100px; }
.panel .bud-row span:first-child{ font-size:14.5px; }
.panel .bud-num{ font-size:13px; }

/* bar chart */
.chart{
  display:grid; grid-template-columns:repeat(6,1fr); gap:12px;
  align-items:end; height:168px; margin-bottom:26px;
}
.chart-col{ display:flex; flex-direction:column; align-items:center; gap:10px; height:100%;
            justify-content:flex-end; }
.chart-bar{
  width:100%; max-width:38px; height:0; border-radius:8px 8px 3px 3px;
  background:linear-gradient(180deg,rgba(46,204,113,.55),rgba(46,204,113,.14));
  border:1px solid rgba(46,204,113,.28); border-bottom:0;
  transition:height 1s var(--ease);
}
.chart-bar.is-now{
  background:linear-gradient(180deg,var(--primary),rgba(46,204,113,.32));
  border-color:var(--primary);
  box-shadow:0 0 22px rgba(46,204,113,.30);
}
.chart.is-on .chart-bar{ height:var(--h); }
.chart-col span{ font-size:11.5px; color:var(--muted-2); font-weight:700; }

/* category legend */
.legend{ display:flex; flex-direction:column; gap:2px; border-top:1px solid var(--line); padding-top:18px; }
.legend-row{ display:flex; align-items:center; gap:11px; padding:8px 0; }
.swatch{ width:10px; height:10px; border-radius:3px; flex-shrink:0; }
.swatch-1{ background:var(--primary); }
.swatch-2{ background:#5aa9f2; }
.swatch-3{ background:var(--warn); }
.swatch-4{ background:#8d8d92; }
.legend-name{ flex:1; font-size:14.5px; font-weight:600; color:#d2d2d4; }
.legend-val{ font-size:14.5px; font-weight:800; letter-spacing:-.02em; }

/* goal rings */
.goal{ display:flex; align-items:center; gap:18px; padding:15px 0; border-top:1px solid var(--line); }
.goal:first-of-type{ border-top:0; padding-top:0; }
.ring{ position:relative; width:62px; height:62px; flex-shrink:0; }
.ring svg{ width:100%; height:100%; transform:rotate(-90deg); }
.ring circle{ fill:none; stroke-width:9; }
.ring-bg{ stroke:rgba(255,255,255,.08); }
.ring-fg{
  stroke:var(--primary); stroke-linecap:round;
  stroke-dasharray:326.7; stroke-dashoffset:326.7;
  transition:stroke-dashoffset 1.3s var(--ease);
}
.ring-val{
  position:absolute; inset:0; display:grid; place-items:center;
  font-size:14px; font-weight:800; letter-spacing:-.03em;
}
.ring-val i{ font-style:normal; font-size:9px; color:var(--muted); }
.goal-body p{ font-size:15.5px; font-weight:800; letter-spacing:-.02em; }
.goal-body span{ display:block; font-size:13px; color:var(--muted); font-weight:600; }
.goal-pace{ color:var(--primary) !important; font-size:12px !important; margin-top:2px; }

/* ---------- security ---------- */
.sec-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.sec{ padding:30px 26px; border-radius:var(--r-lg);
      background:rgba(255,255,255,.028); border:1px solid var(--line);
      transition:border-color .3s, transform .3s var(--ease); }
.sec:hover{ border-color:rgba(46,204,113,.28); transform:translateY(-4px); }
.sec > svg{ width:26px; height:26px; color:var(--primary); margin-bottom:19px; }
.sec h3{ font-size:17px; margin-bottom:10px; letter-spacing:-.02em; }
.sec p{ font-size:14.5px; color:var(--muted); line-height:1.6; }

/* ---------- faq ---------- */
.faq{ display:flex; flex-direction:column; gap:12px; }
.q{ background:rgba(255,255,255,.03); border:1px solid var(--line);
    border-radius:var(--r); overflow:hidden; transition:border-color .3s, background .3s; }
.q.is-open{ border-color:rgba(46,204,113,.28); background:rgba(46,204,113,.04); }
.q-btn{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:21px 24px; text-align:left; font-size:16.5px; font-weight:700; letter-spacing:-.02em;
}
.q-btn svg{ width:19px; height:19px; color:var(--primary); flex-shrink:0;
            transition:transform .32s var(--ease); }
.q.is-open .q-btn svg{ transform:rotate(180deg); }
.q-body{ max-height:0; overflow:hidden; transition:max-height .38s var(--ease); }
.q-body p{ padding:0 24px 22px; font-size:15.5px; color:var(--muted); line-height:1.65; }

/* ---------- cta ---------- */
.cta{ position:relative; z-index:1; padding:40px 0 110px; }
.cta-box{
  position:relative; overflow:hidden; text-align:center;
  padding:76px 40px; border-radius:var(--r-xl);
  background:linear-gradient(150deg,rgba(46,204,113,.15),rgba(46,204,113,.03));
  border:1px solid rgba(46,204,113,.26);
}
.cta-box::after{
  content:''; position:absolute; width:520px; height:520px; top:-260px; left:50%;
  transform:translateX(-50%); border-radius:50%;
  background:radial-gradient(circle,rgba(46,204,113,.22),transparent 68%); filter:blur(52px);
}
.cta-box h2{ position:relative; font-size:clamp(2rem,4.1vw,3rem); }
.cta-box p{ position:relative; margin-top:18px; font-size:17px; color:var(--muted); }

.store-row{ position:relative; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:36px; }
.store-btn{
  display:inline-flex; align-items:center; gap:12px;
  padding:12px 22px; border-radius:13px;
  background:rgba(255,255,255,.05); border:1px solid var(--line-2);
  transition:border-color .25s, background .25s, transform .25s var(--ease);
}
.store-btn svg{ width:24px; height:24px; color:var(--text); flex-shrink:0; }
.store-btn > span{ display:flex; flex-direction:column; line-height:1.2; text-align:left;
                   font-size:16px; font-weight:800; letter-spacing:-.02em; }
.store-btn i{ font-style:normal; font-size:10.5px; font-weight:700; color:var(--muted);
              text-transform:uppercase; letter-spacing:.09em; margin-bottom:2px; }
.store-btn.is-soon{ cursor:default; opacity:.82; }
.store-btn.is-soon:hover{ border-color:rgba(46,204,113,.30); background:rgba(255,255,255,.07); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ position:relative; z-index:1; border-top:1px solid var(--line); padding:64px 0 34px;
         background:var(--bg-2); }
.footer-inner{ display:grid; grid-template-columns:2.1fr 1fr 1fr 1fr; gap:44px; }
.footer-brand p{ margin-top:18px; font-size:14.5px; color:var(--muted); max-width:29em; line-height:1.62; }
.footer-h{ font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:.12em;
           color:var(--muted-2); margin-bottom:17px; }
.footer-col{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; color:var(--muted); font-weight:600; transition:color .2s; }
.footer-col a:hover{ color:var(--primary); }

.footer-bottom{
  margin-top:52px; padding-top:26px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; gap:22px; flex-wrap:wrap;
}
.footer-bottom p{ font-size:13px; color:var(--muted-2); font-weight:600; }
.footer-dis{ max-width:46em; text-align:right; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal{ position:relative; z-index:1; padding:150px 0 100px; }
.legal-head{ margin-bottom:50px; }
.legal-head h1{ font-size:clamp(2.2rem,4.6vw,3.2rem); }
.legal-head p{ margin-top:16px; color:var(--muted); font-size:15.5px; }
.legal-body{ max-width:760px; }
.legal-body h2{ font-size:22px; margin:44px 0 14px; letter-spacing:-.025em; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p{ font-size:16px; color:#c8c8ca; line-height:1.75; margin-bottom:14px; }
.legal-body ul{ list-style:none; margin:0 0 18px; }
.legal-body ul li{ position:relative; padding-left:22px; font-size:16px; color:#c8c8ca;
                   line-height:1.75; margin-bottom:9px; }
.legal-body ul li::before{ content:''; position:absolute; left:4px; top:11px; width:6px; height:6px;
                           border-radius:50%; background:var(--primary); }
.legal-body a{ color:var(--primary); text-decoration:underline; text-underline-offset:3px; }
.note{
  background:rgba(242,177,60,.08); border:1px solid rgba(242,177,60,.24);
  border-radius:var(--r); padding:18px 22px; margin-bottom:38px;
}
.note p{ font-size:14.5px; color:#e8cd9a; margin:0; line-height:1.6; }
.note strong{ color:var(--warn); }

/* =========================================================
   404
   ========================================================= */
.nf{
  position:relative; z-index:1; text-align:center;
  min-height:78vh; display:flex; align-items:center; padding:150px 0 90px;
}
.nf-code{
  font-size:clamp(5rem,15vw,9rem); font-weight:800; line-height:1; letter-spacing:-.06em;
  background:linear-gradient(120deg,var(--primary) 10%,#7ef0ae 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom:18px;
}
.nf h1{ font-size:clamp(2rem,4.6vw,3.2rem); }
.nf-sub{ margin:22px auto 0; max-width:34em; font-size:17px; color:var(--muted); line-height:1.62; }
.nf-cta{ justify-content:center; margin-top:36px; }
.nf-links{
  display:flex; flex-wrap:wrap; gap:10px 28px; justify-content:center;
  margin-top:52px; padding-top:28px; border-top:1px solid var(--line);
  max-width:660px; margin-left:auto; margin-right:auto;
}
.nf-links a{ font-size:14.5px; font-weight:600; color:var(--muted); transition:color .2s; }
.nf-links a:hover{ color:var(--primary); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{ opacity:0; transform:translateY(26px); }
.reveal.is-in{
  opacity:1; transform:none;
  transition:opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal[data-delay="1"].is-in{ transition-delay:.09s; }
.reveal[data-delay="2"].is-in{ transition-delay:.18s; }
.reveal[data-delay="3"].is-in{ transition-delay:.27s; }
.reveal[data-delay="4"].is-in{ transition-delay:.36s; }
.reveal[data-delay="5"].is-in{ transition-delay:.45s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1000px){
  .hero-grid{ grid-template-columns:1fr; gap:64px; text-align:center; }
  .hero-copy .lede{ margin-left:auto; margin-right:auto; }
  .hero-cta, .hero-points{ justify-content:center; }
  .cards{ grid-template-columns:repeat(2,1fr); }
  .sec-grid{ grid-template-columns:repeat(2,1fr); }
  .show{ grid-template-columns:1fr; gap:44px; }
  .show-rev .show-copy{ order:0; }
  .footer-inner{ grid-template-columns:1fr 1fr; gap:38px; }
  .footer-dis{ text-align:left; }
}

@media (max-width:760px){
  .nav-links{
    position:fixed; top:76px; left:0; right:0;
    flex-direction:column; gap:0;
    background:rgba(20,20,22,.97);
    backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
    padding:10px 24px 24px;
    transform:translateY(-118%); transition:transform .38s var(--ease);
    z-index:-1;
  }
  .nav-links.is-open{ transform:translateY(0); }
  .nav-links a{ padding:15px 0; border-bottom:1px solid var(--line); font-size:16px; }
  .nav-links a::after{ display:none; }
  .nav-toggle{ display:flex; }

  .hero{ padding:132px 0 70px; }
  .section{ padding:76px 0; }
  .head{ margin-bottom:46px; }
  .cards, .steps, .sec-grid{ grid-template-columns:1fr; }
  .strip-inner{ grid-template-columns:repeat(2,1fr); gap:26px; }
  .cta-box{ padding:54px 26px; }
  .chart{ height:140px; gap:8px; }
  .store-row{ flex-direction:column; align-items:stretch; }
  .store-btn{ justify-content:center; }
  .footer-inner{ grid-template-columns:1fr; gap:34px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .panel{ padding:22px; }
  .legal{ padding:120px 0 70px; }
}

@media (max-width:420px){
  .phone{ width:274px; height:562px; }
  .btn-lg{ padding:14px 22px; font-size:15px; }
  .hero-cta .btn{ width:100%; }
}

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