/* ═══════════════════════════════════════════════════════════════════════
   SHORTSY — Marketing site design system
   Bold condensed display + warm humanist body, mint→lime CTAs, violet accents.
   Self-contained. No build step. Drop-in portable to Next.js later.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Canvas & surfaces */
  --bg:        #E9E8E4;
  --bg-2:      #F1F0EC;
  --card:      #FFFFFF;
  --dark:      #171717;
  --dark-2:    #202020;

  /* Ink */
  --ink:       #141414;
  --ink-soft:  #2C2C2C;
  --muted:     #6A6A66;
  --muted-2:   #9B9B96;
  --line:      rgba(20,20,20,.09);
  --line-2:    rgba(20,20,20,.14);

  /* Signature gradients */
  --green-1:   #58E6A0;
  --green-2:   #BEF23F;
  --grad-cta:  linear-gradient(100deg, #5FE7A2 0%, #93EE6E 48%, #C2F33B 100%);
  --grad-cta-h:linear-gradient(100deg, #4fe096 0%, #86ec5f 48%, #b7ef2b 100%);

  --violet-1:  #6C5CF7;
  --violet-2:  #9A6BF4;
  --grad-vio:  linear-gradient(100deg, #6C5CF7, #A56BF3);
  --band:      #DEDCFB;   /* periwinkle announcement bar */
  --band-ink:  #3B3670;

  /* Type */
  --display: "Anton", "Arial Narrow", sans-serif;
  --body:    "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  /* Radii */
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  26px;
  --r-xl:  34px;
  --pill:  999px;

  /* Shadow */
  --sh-sm: 0 2px 10px rgba(20,20,30,.06);
  --sh-md: 0 14px 40px rgba(20,20,40,.10);
  --sh-lg: 0 30px 80px rgba(20,20,50,.16);
  --sh-cta:0 12px 30px rgba(120,220,90,.40);

  /* Motion */
  --ease: cubic-bezier(.22,.72,.16,1);
  --dur:  .55s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: clip;
}

/* The beta is browser-first; keep the old mock QR artwork out of the public UI. */
.stat-card .qr { display: none; }

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ── Layout helpers ─────────────────────────────────────────────── */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.center { text-align: center; }

/* ── Typography ─────────────────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1.display { font-size: clamp(46px, 8.4vw, 128px); }
h2.display { font-size: clamp(38px, 6vw, 92px); }
.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--violet-1);
}
.grad-text {
  background: var(--grad-vio);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead {
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.4;
  max-width: 640px;
}
.muted { color: var(--muted); }
.tiny { font-size: 13px; color: var(--muted-2); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  padding: 15px 30px; border-radius: var(--pill);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background .28s var(--ease), color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-cta {
  background: var(--grad-cta); color: #10241a;
  box-shadow: var(--sh-cta);
  background-size: 160% 160%;
}
.btn-cta:hover { transform: translateY(-3px) scale(1.015); background: var(--grad-cta-h); box-shadow: 0 18px 40px rgba(120,220,90,.5); }
.btn-cta:active { transform: translateY(-1px) scale(1); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; box-shadow: var(--sh-md); }
.btn-vio { background: var(--grad-vio); color: #fff; box-shadow: 0 12px 28px rgba(108,92,247,.34); }
.btn-vio:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 20px 46px; font-size: 18px; }
.btn-block { width: 100%; }

/* ── Announcement bar ───────────────────────────────────────────── */
.announce {
  background: var(--band); color: var(--band-ink);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 9px 16px; text-align: center;
}
.announce a.pill {
  background: var(--grad-vio); color: #fff; font-weight: 700;
  padding: 6px 16px; border-radius: var(--pill); font-size: 13px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.announce a.pill:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(108,92,247,.4); }

/* ── Nav ────────────────────────────────────────────────────────── */
.nav-outer { position: sticky; top: 0; z-index: 60; padding: 14px 0; transition: padding .3s var(--ease); }
.nav {
  display: flex; align-items: center; gap: 10px;
  background: rgba(247,246,243,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--sh-sm);
  border-radius: var(--pill);
  padding: 12px 14px 12px 26px;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav-outer.scrolled { padding: 8px 0; }
.nav-outer.scrolled .nav { box-shadow: var(--sh-md); background: rgba(247,246,243,.9); }
.brand {
  font-family: var(--display); font-size: 27px; letter-spacing: .01em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 9px;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad-cta);
  display: grid; place-items: center; color: #10241a; font-size: 19px;
  box-shadow: 0 4px 10px rgba(120,220,90,.4);
}
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 18px; }
.nav-links > * { position: relative; }
.nav-link {
  padding: 9px 14px; border-radius: var(--pill); font-weight: 600; font-size: 15.5px;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px;
  transition: background .2s, color .2s;
}
.nav-link:hover { background: rgba(20,20,20,.05); color: var(--ink); }
.nav-link svg { width: 15px; height: 15px; opacity: .6; transition: transform .2s; }
.has-menu:hover .nav-link svg { transform: rotate(180deg); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-right .txt { padding: 9px 14px; font-weight: 600; font-size: 15.5px; }
.nav-right .txt:hover { color: var(--violet-1); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 12px; width: 380px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-item { display: flex; gap: 11px; padding: 11px; border-radius: 12px; transition: background .18s; }
.dd-item:hover { background: var(--bg-2); }
.dd-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; background: var(--band); color: var(--violet-1); }
.dd-ic svg { width: 18px; height: 18px; }
.dd-t { font-weight: 700; font-size: 14.5px; }
.dd-d { font-size: 12.5px; color: var(--muted); line-height: 1.35; }

.menu-toggle { display: none; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: clamp(40px, 6vw, 84px); padding-bottom: clamp(30px, 4vw, 60px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob.b1 { width: 480px; height: 480px; background: radial-gradient(circle, #c9f5a0, transparent 70%); top: -120px; left: -80px; }
.blob.b2 { width: 520px; height: 520px; background: radial-gradient(circle, #cfc7fb, transparent 70%); top: 40px; right: -120px; }
.hero-inner { position: relative; z-index: 1; }
.hero h1 { max-width: 15ch; margin-inline: auto; }
.hero .lead { margin: 26px auto 0; text-align: center; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; }

/* floating video strip */
.reel-strip { margin-top: clamp(30px, 5vw, 70px); position: relative; }
.reel-track { display: flex; gap: 22px; width: max-content; animation: marquee 42s linear infinite; }
.reel-strip:hover .reel-track { animation-play-state: paused; }
.reel {
  width: 240px; aspect-ratio: 9/13; border-radius: var(--r-lg); overflow: hidden;
  position: relative; box-shadow: var(--sh-md); flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.reel:hover { transform: translateY(-8px) scale(1.02); }
.reel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.4));
}
.reel .cap {
  position: absolute; bottom: 16px; left: 14px; right: 14px; z-index: 2;
  font-weight: 800; font-size: 20px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.reel .cap b { background: var(--violet-1); padding: 1px 7px; border-radius: 6px; }
.reel .play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px); display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.5);
}
.reel .play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
@keyframes marquee { to { transform: translateX(calc(-50% - 11px)); } }

/* ── Trust strip ────────────────────────────────────────────────── */
.trust { padding: 20px 0 10px; }
.trust p { text-align: center; color: var(--ink-soft); font-weight: 600; margin-bottom: 26px; }
.trust p b { color: var(--ink); }
.logos { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: marquee 34s linear infinite; }
.logo-track span { font-family: var(--display); font-size: 26px; color: #9a9a95; opacity: .8; white-space: nowrap; letter-spacing: .02em; }

/* ── Section head ───────────────────────────────────────────────── */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px,5vw,64px); }
.sec-head h2 { margin-bottom: 20px; }
.sec-head .lead { margin-inline: auto; }

/* ── AI feature explorer ────────────────────────────────────────── */
.feat { display: grid; grid-template-columns: 340px 1fr; gap: 26px; align-items: start; }
.feat-list { display: flex; flex-direction: column; gap: 10px; }
.feat-tab {
  text-align: left; background: rgba(255,255,255,.55); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px; font-weight: 700; font-size: 17px; color: var(--muted);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: all .25s var(--ease);
}
.feat-tab:hover { color: var(--ink); background: #fff; }
.feat-tab.active { background: #fff; color: var(--ink); box-shadow: var(--sh-md); transform: translateX(4px); }
.feat-tab .chip { font-family: var(--display); font-size: 12px; text-transform: uppercase; background: var(--grad-cta); color: #10241a; padding: 6px 14px; border-radius: var(--pill); opacity: 0; transition: opacity .25s; }
.feat-tab.active .chip { opacity: 1; }
.feat-stage {
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  min-height: 480px; padding: 34px; position: relative; overflow: hidden;
}
.feat-panel { display: none; animation: fadeUp .5s var(--ease); }
.feat-panel.active { display: block; }
.feat-panel h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.feat-panel p { color: var(--muted); max-width: 52ch; margin-bottom: 22px; }

/* mock timeline */
.tl { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.tl-row { display: flex; gap: 10px; align-items: center; }
.tl-clip { height: 68px; border-radius: 12px; background: linear-gradient(135deg,#3b3b52,#565676); position: relative; overflow: hidden; box-shadow: inset 0 0 0 2px rgba(108,92,247,.5); }
.tl-clip::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(108,92,247,.25), transparent); }
.tl-track { height: 40px; border-radius: 10px; display: flex; align-items: center; padding: 0 14px; font-weight: 700; font-size: 13px; color: #fff; }
.tl-toggle { margin-top: 18px; display: inline-flex; align-items: center; gap: 12px; background: var(--band); border-radius: var(--pill); padding: 12px 8px 12px 22px; font-weight: 700; }
.tl-switch { width: 60px; height: 32px; border-radius: var(--pill); background: var(--dark); position: relative; }
.tl-switch::after { content:""; position:absolute; top:3px; left:3px; width:26px; height:26px; border-radius:50%; background:#fff; transition:left .3s var(--ease); }
.tl-toggle.on .tl-switch::after { left: 31px; }

/* ── Avatar carousel ────────────────────────────────────────────── */
.ava-wrap { position: relative; }
.ava-nav { position: absolute; top: -78px; right: 0; display: flex; gap: 12px; }
.ava-btn { width: 58px; height: 58px; border-radius: 50%; background: #fff; box-shadow: var(--sh-md); display: grid; place-items: center; transition: transform .2s var(--ease); }
.ava-btn:hover { transform: scale(1.08); }
.ava-btn svg { width: 24px; height: 24px; }
.ava-viewport { overflow: hidden; }
.ava-track { display: flex; gap: 22px; transition: transform .55s var(--ease); }
.ava-card { flex: 0 0 clamp(220px, 24vw, 300px); }
.ava-name { text-align: center; margin-bottom: 10px; font-weight: 700; }
.ava-name i { font-style: italic; font-family: Georgia, serif; font-size: 20px; }
.ava-name .role { color: var(--muted); font-weight: 500; margin-left: 6px; font-size: 14px; }
.ava-photo { aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative; }
.ava-card.featured .ava-photo { box-shadow: var(--sh-lg); transform: scale(1.04); }

/* ── Phone / app section ────────────────────────────────────────── */
.app { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.stat-card { background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 22px 26px; display: inline-flex; gap: 34px; align-items: center; margin: 26px 0; }
.stat-card .n { font-family: var(--display); font-size: 44px; line-height: 1; }
.stat-card .n small { font-size: 18px; color: var(--muted); }
.stat-card .d { font-size: 13px; color: var(--muted); max-width: 12ch; }
.qr { width: 92px; height: 92px; border-radius: 12px; }
.phone { justify-self: center; width: min(340px, 80%); aspect-ratio: 9/19; background: var(--dark); border-radius: 42px; padding: 10px; box-shadow: var(--sh-lg); position: relative; }
.phone-screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; position: relative; background: linear-gradient(160deg,#2a2440,#4a2f66); }

/* ── Big CTA band ───────────────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 16ch; margin: 0 auto 40px; }
.cta-huge {
  display: block; width: min(1100px, 92vw); margin: 0 auto; padding: clamp(50px,7vw,90px) 30px;
  border-radius: var(--pill); background: var(--grad-cta); background-size: 180% 180%;
  font-family: var(--display); font-size: clamp(30px, 5vw, 62px); text-transform: uppercase;
  color: #10241a; box-shadow: var(--sh-cta);
  transition: transform .4s var(--ease), background-position .6s var(--ease), box-shadow .4s;
}
.cta-huge:hover { transform: translateY(-4px) scale(1.008); background-position: 100% 0; box-shadow: 0 30px 70px rgba(120,220,90,.5); }

/* ── Cards / grids (feature & use-case pages) ───────────────────── */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--band); color: var(--violet-1); display: grid; place-items: center; margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card.dark { background: var(--dark); color: #fff; border-color: transparent; }
.card.dark p { color: #b9b9b9; }
.card.pop { background: linear-gradient(150deg,#eaffd6,#dcf7ff); border-color: transparent; }

/* ── Pricing ────────────────────────────────────────────────────── */
.price-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 4px 0 46px; font-weight: 700; }
.switch { width: 58px; height: 32px; border-radius: var(--pill); background: var(--dark); position: relative; transition: background .2s; }
.switch::after { content:""; position:absolute; top:4px; left:4px; width:24px; height:24px; border-radius:50%; background:#fff; transition:left .28s var(--ease); }
.switch.off { background: #c9c9c4; }
.switch.off::after { left: 4px; }
.switch:not(.off)::after { left: 30px; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.plan { background: #fff; border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-sm); border: 1px solid var(--line); position: relative; }
.plan.best { border: 2px solid var(--violet-1); box-shadow: var(--sh-md); }
.plan .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--grad-vio); color: #fff; font-weight: 700; font-size: 13px; padding: 7px 18px; border-radius: var(--pill); display: inline-flex; gap: 6px; align-items: center; }
.plan h3 { font-size: 24px; font-weight: 800; }
.plan .sub { color: var(--muted); font-size: 15px; margin: 4px 0 20px; }
.plan .price { font-family: var(--display); font-size: 56px; line-height: 1; display: flex; align-items: baseline; gap: 10px; }
.plan .save { font-size: 12px; font-family: var(--body); font-weight: 800; color: #2f7d1e; background: #d9f5c6; padding: 4px 10px; border-radius: var(--pill); }
.plan .per { color: var(--muted); font-size: 13px; margin: 8px 0 22px; }
.plan ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 10px; font-size: 15px; }
.plan li svg { width: 19px; height: 19px; color: var(--violet-1); flex-shrink: 0; margin-top: 2px; }
.plan .grp { font-weight: 800; margin-top: 22px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.foot { background: var(--dark); color: #fff; }
.foot-top { text-align: center; padding: clamp(60px,8vw,100px) 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-top h2 { color: #fff; margin-bottom: 18px; }
.foot-top p { color: #a8a8a8; max-width: 44ch; margin: 0 auto 30px; font-size: 17px; }
.sub-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; background: #fff; border-radius: var(--pill); padding: 6px; }
.sub-form input { flex: 1; border: 0; background: none; padding: 12px 20px; font-size: 15px; font-family: inherit; color: var(--ink); outline: none; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; padding: 60px 0; }
.foot-col h4 { font-size: 14px; font-weight: 800; margin-bottom: 16px; letter-spacing: .02em; }
.foot-col a { display: block; color: #a8a8a8; font-size: 14.5px; padding: 6px 0; transition: color .18s; }
.foot-col a:hover { color: #fff; }
.foot .brand { color: #fff; margin-bottom: 14px; }
.foot-bar { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; color: #8a8a8a; font-size: 14px; gap: 16px; flex-wrap: wrap; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.foot-social a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; fill: #fff; }

/* ── Page hero (sub pages) ──────────────────────────────────────── */
.phero { padding: clamp(50px,7vw,96px) 0 clamp(30px,4vw,50px); text-align: center; position: relative; overflow: hidden; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split.rev > :first-child { order: 2; }
.media-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 16/10; position: relative; }

/* ── Reveal on scroll ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero .anim { opacity: 0; animation: rise .8s var(--ease) forwards; }
.hero .anim.a1 { animation-delay: .05s; }
.hero .anim.a2 { animation-delay: .18s; }
.hero .anim.a3 { animation-delay: .31s; }
.hero .anim.a4 { animation-delay: .44s; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: #fff; margin-left: auto; }
  .nav-right { display: none; }
  .feat { grid-template-columns: 1fr; }
  .app, .split, .split.rev > :first-child { grid-template-columns: 1fr; order: 0; }
  .g-3, .g-2, .plans { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stat-card { flex-direction: column; gap: 16px; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; }
  .announce { font-size: 12.5px; flex-direction: column; gap: 8px; }
}

/* ── Mobile menu drawer ─────────────────────────────────────────── */
.drawer { position: fixed; inset: 0; z-index: 90; background: rgba(20,20,20,.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s; }
.drawer.open { opacity: 1; visibility: visible; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 86vw); background: var(--bg-2); padding: 26px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
.drawer.open .drawer-panel { transform: none; }
.drawer a.d-link { display: block; padding: 15px 6px; font-weight: 700; font-size: 19px; border-bottom: 1px solid var(--line); }
.drawer .close { position: absolute; top: 22px; right: 22px; font-size: 26px; }

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