/* ============================================================
   POCKET CREATOR — Marketing Site
   Warm editorial system · Plus Jakarta Sans · amber accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400..800;1,400..700&display=swap');

:root {
  --paper:      #F7F2E9;
  --paper-2:    #F1E9DB;
  --surface:    #FFFDF8;
  --surface-2:  #F2ECE0;
  --ink:        #2A2520;
  --ink-2:      #6B6358;
  --ink-3:      #A39A8C;
  --line:       #EAE2D4;
  --line-strong:#DED4C2;

  --primary:     #D98A2B;
  --primary-soft:#FBEAD2;
  --primary-deep:#A9651A;
  --accent2:     #C7613F;
  --success:     #5B8C6E;
  --success-soft:#DDEBE0;
  --info:        #5B7C9C;
  --info-soft:   #DEE7EF;

  --ink-dark:   #18130E;
  --ink-dark-2: #221C15;

  --grad: linear-gradient(135deg, #F2B25A 0%, #E08B3E 46%, #CE6A4A 100%);
  --grad-soft: linear-gradient(160deg, #FBEAD2 0%, #F7DDD2 100%);

  --shadow-sm:  0 1px 2px rgba(42,37,32,.04), 0 6px 18px rgba(42,37,32,.05);
  --shadow-md:  0 2px 6px rgba(42,37,32,.05), 0 18px 44px rgba(60,40,20,.09);
  --shadow-lg:  0 30px 70px -20px rgba(60,40,20,.28);
  --shadow-glow:0 24px 60px -12px rgba(217,138,43,.5);

  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 38px;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 40px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: -0.011em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--primary); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary-deep);
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--primary); border-radius: 2px; }
.eyebrow.center::before { display: none; }

h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.02; font-weight: 800; }
.display {
  font-size: clamp(40px, 7.4vw, 84px);
  line-height: .98; font-weight: 800; letter-spacing: -0.04em;
  text-wrap: balance;
}
.h-sec {
  font-size: clamp(31px, 4.6vw, 54px);
  letter-spacing: -0.038em; line-height: 1.03; text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--ink-2); font-weight: 500; text-wrap: pretty;
}
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, filter .25s;
  will-change: transform; white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -8px rgba(217,138,43,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(217,138,43,.7); filter: brightness(1.04); }
.btn--ghost { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--lg { padding: 17px 30px; font-size: 16.5px; }
.btn:active { transform: translateY(0) scale(.98); }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 11px 22px 11px 18px; border-radius: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 12px 30px -10px rgba(42,37,32,.5);
}
.appstore:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(42,37,32,.55); }
.appstore svg { width: 27px; height: 27px; flex: none; }
.appstore__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore__txt small { font-size: 10.5px; font-weight: 600; opacity: .82; letter-spacing: .01em; }
.appstore__txt b { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.appstore--light { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 18px;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(60,40,20,.05);
  padding-block: 11px;
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18.5px; letter-spacing: -0.03em; }
.brand img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 4px 12px rgba(166,101,26,.28); transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-6deg) scale(1.06); }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { padding: 8px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .2s, background .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); background: color-mix(in srgb, var(--surface-2) 70%, transparent); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); box-shadow: var(--shadow-sm); place-items: center; }
.nav__burger span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .3s; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(120px, 17vh, 180px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero__orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.orb--1 { width: 520px; height: 520px; top: -200px; right: -150px; background: radial-gradient(circle, #F6C173, transparent 70%); }
.orb--2 { width: 440px; height: 440px; top: 30px; left: -190px; background: radial-gradient(circle, #F2C7B0, transparent 70%); }
.orb--3 { width: 300px; height: 300px; bottom: -150px; left: 42%; background: radial-gradient(circle, #FBE3C4, transparent 70%); }

.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hero__rating { display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 11px; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-sm); font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 26px; white-space: nowrap; }
.hero__rating .stars { display: inline-flex; gap: 1px; color: var(--primary); }
.hero__rating b { color: var(--ink); font-weight: 800; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 30ch; margin-bottom: 32px; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 18px; margin-top: 24px; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { color: var(--success); }

/* phone */
.hero__stage { position: relative; display: flex; justify-content: center; perspective: 1600px; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  border-radius: 46px; background: #1c1813;
  padding: 11px; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  transform-style: preserve-3d; will-change: transform;
}
.phone__screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--paper); position: relative; }
.phone__notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #1c1813; border-radius: 999px; z-index: 9; }
.phone--app { width: 300px; height: 624px; }
.appframe { position: absolute; top: 0; left: 0; width: 390px; height: 844px; border: 0; background: #F7F2E9; transform: scale(0.71282); transform-origin: top left; pointer-events: none; }

/* floating chips around phone */
.fchip {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); padding: 11px 15px; border-radius: 15px;
  box-shadow: var(--shadow-md); font-size: 13.5px; font-weight: 700;
  opacity: 0; transform: translateY(10px);
}
.hero__stage.in .fchip { animation: chipIn .6s var(--ease-out) forwards; }
@keyframes chipIn { to { opacity: 1; transform: translateY(0); } }
.fchip small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.fchip__ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.fchip--a { top: 15%; left: -6%; }
.fchip--b { top: 46%; right: -10%; }
.fchip--c { bottom: 9%; left: -4%; }
.hero__stage.in .fchip--a { animation-delay: .3s; }
.hero__stage.in .fchip--b { animation-delay: .42s; }
.hero__stage.in .fchip--c { animation-delay: .54s; }

/* logo marquee strip */
.strip { padding-block: 30px; border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 50%, transparent); }
.strip__lbl { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 44px; }
.strip__row span { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-2); }
.strip__row svg { color: var(--primary); flex: none; }

/* ---------- section heads ---------- */
.shead { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.shead.center { margin-inline: auto; text-align: center; }
.shead .eyebrow { margin-bottom: 18px; }
.shead .lead { margin-top: 18px; }

/* ---------- feature split (AutoContent) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split--rev .split__media { order: 2; }
.feat-list { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.feat-row { display: flex; gap: 15px; align-items: flex-start; padding: 15px; border-radius: var(--r); transition: background .25s; }
.feat-row:hover { background: color-mix(in srgb, var(--surface) 60%, transparent); }
.feat-row__ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none; background: var(--primary-soft); color: var(--primary-deep); }
.feat-row h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3px; }
.feat-row p { font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bcard {
  position: relative; overflow: hidden; background: var(--surface);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bcard__ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.bcard h3 { font-size: 21px; letter-spacing: -0.03em; margin-bottom: 9px; }
.bcard p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.bcard--lg { grid-column: span 4; }
.bcard--sm { grid-column: span 2; }
.bcard--half { grid-column: span 3; }
.bcard--dark { background: var(--ink-dark); color: #F4EEE3; }
.bcard--dark p { color: #B9AE9C; }
.bcard--grad { background: var(--grad); color: #fff; }
.bcard--grad p { color: rgba(255,255,255,.92); }
.bcard__deco { position: absolute; right: -30px; bottom: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.1); }

/* mini caption demo inside bento */
.cap-demo { margin-top: 18px; background: var(--surface-2); border-radius: var(--r); padding: 16px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); position: relative; }
.cap-demo .typed { color: var(--ink); font-weight: 500; }
.cap-demo .cursor { display: inline-block; width: 2px; height: 1.05em; background: var(--primary); vertical-align: text-bottom; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* clock demo */
.clock-demo { margin-top: 20px; display: flex; gap: 8px; }
.clock-demo span { flex: 1; text-align: center; padding: 10px 4px; border-radius: 11px; background: rgba(255,255,255,.12); font-size: 12px; font-weight: 700; }
.clock-demo .best { background: #fff; color: var(--primary-deep); box-shadow: 0 6px 14px rgba(0,0,0,.12); }

/* ---------- insights / dark section ---------- */
.dark-sec { background: var(--ink-dark); color: #F4EEE3; position: relative; overflow: hidden; }
.dark-sec .eyebrow { color: #F2B25A; }
.dark-sec .eyebrow::before { background: #F2B25A; }
.dark-sec .lead { color: #B9AE9C; }
.dark-sec__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(217,138,43,.4), transparent 65%); filter: blur(40px); top: -200px; right: -150px; pointer-events: none; }
.dash {
  background: var(--ink-dark-2); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
}
.dash__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.metric { background: rgba(255,255,255,.04); border-radius: var(--r); padding: 20px; }
.metric__lbl { font-size: 13px; font-weight: 600; color: #B9AE9C; }
.metric__val { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.04em; margin-top: 4px; }
.metric__delta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: #7FCB9B; margin-top: 6px; }
.metric svg.spark { margin-top: 14px; width: 100%; height: 50px; overflow: visible; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 130px; margin-top: 22px; }
.bars .bar { flex: 1; background: linear-gradient(180deg, #F2B25A, #CE6A4A); border-radius: 7px 7px 3px 3px; transition: height 1.1s var(--ease-out); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step-card { position: relative; background: var(--surface); border-radius: var(--r-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); overflow: hidden; }
.step-card__n { font-size: 15px; font-weight: 800; color: var(--primary-deep); letter-spacing: .1em; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.step-card__n b { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 14px; }
.step-card h3 { font-size: 22px; letter-spacing: -0.03em; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.step-card__line { position: absolute; top: 49px; right: -10px; color: var(--line-strong); display: none; }

/* ---------- testimonials ---------- */
.tgrid { columns: 3; column-gap: 18px; }
.tcard { break-inside: avoid; margin-bottom: 18px; background: var(--surface); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.tcard p { font-size: 15.5px; line-height: 1.55; color: var(--ink); font-weight: 500; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 16px; flex: none; }
.tcard__who b { font-size: 14.5px; font-weight: 700; display: block; }
.tcard__who small { font-size: 13px; color: var(--ink-3); }
.tcard__stars { display: inline-flex; gap: 1px; color: var(--primary); margin-bottom: 14px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin-inline: auto; align-items: stretch; }
.bill-toggle { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: var(--surface-2); }
.bill-opt { padding: 10px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 700; color: var(--ink-2); transition: background .2s, color .2s, box-shadow .2s; white-space: nowrap; }
.bill-opt.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.plan { background: var(--surface); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.plan--pro { background: var(--ink-dark); color: #F4EEE3; box-shadow: var(--shadow-lg); }
.plan--pro .plan__sub, .plan--pro .plan__feat li { color: #B9AE9C; }
.plan__tag { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-deep); }
.plan--pro .plan__tag { color: #F2B25A; }
.plan__tagrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plan__badge { display: inline-flex; align-items: center; white-space: nowrap; font-size: 11.5px; font-weight: 800; letter-spacing: 0; background: var(--grad); color: #fff; padding: 5px 11px; border-radius: 999px; }
.plan__note { font-size: 13px; font-weight: 600; color: var(--ink-3); margin: -2px 0 18px; }
.plan--pro .plan__note { color: #B9AE9C; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.plan__price b { font-size: 42px; font-weight: 800; letter-spacing: -0.045em; }
.plan__price span { font-size: 15px; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.plan--pro .plan__price span { color: #B9AE9C; }
.plan__sub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 26px; }
.plan__feat { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.plan__feat li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.plan__feat li svg { flex: none; margin-top: 2px; color: var(--success); }
.plan--pro .plan__feat li svg { color: #7FCB9B; }
.plan__refer { margin-top: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: #B9AE9C; display: flex; align-items: center; gap: 9px; }
.plan__refer b { color: #F2B25A; }

/* ---------- final CTA ---------- */
.cta-final { position: relative; overflow: hidden; background: var(--grad); border-radius: var(--r-xl); padding: clamp(48px, 8vw, 96px) var(--gut); text-align: center; color: #fff; box-shadow: var(--shadow-glow); }
.cta-final h2 { font-size: clamp(34px, 5.5vw, 64px); letter-spacing: -0.04em; margin-bottom: 20px; text-wrap: balance; }
.cta-final p { font-size: clamp(16px, 1.6vw, 20px); color: rgba(255,255,255,.92); max-width: 36ch; margin: 0 auto 36px; }
.cta-final__deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.13); }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { padding-block: 60px 40px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand { max-width: 280px; }
.footer__brand p { font-size: 14px; color: var(--ink-2); margin-top: 14px; line-height: 1.5; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 80px); flex-wrap: wrap; }
.fcol h5 { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.fcol a { display: block; font-size: 14.5px; font-weight: 500; color: var(--ink-2); margin-bottom: 11px; transition: color .2s; }
.fcol a:hover { color: var(--primary-deep); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .fchip { opacity: 1 !important; transform: none !important; animation: none !important; }
  #heroPhone { transform: none !important; }
  .cap-demo .cursor { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bcard--lg { grid-column: span 4; }
  .bcard--sm { grid-column: span 2; }
  .bcard--half { grid-column: span 4; }
  .tgrid { columns: 2; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: grid; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero__actions, .hero__meta { justify-content: center; }
  .hero__rating { margin-inline: auto; }
  .hero__stage { margin-top: 50px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .split__media { display: flex; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--lg, .bcard--half, .bcard--sm { grid-column: span 2; }
  .tgrid { columns: 1; }
  .fchip--a { left: 0; } .fchip--b { right: -2%; } .fchip--c { left: 0; }
  .strip__row { gap: 12px 22px; }
  .strip__row span { font-size: 14px; }
  .footer__top { flex-direction: column; gap: 32px; }
}

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: color-mix(in srgb, var(--paper) 96%, transparent); backdrop-filter: blur(18px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; padding: 12px; color: var(--ink); }
.mobile-menu .btn { margin-top: 18px; }
