/* ════════════════════════════════════════════════════════════════
   Grand Master Plan™ 2026 — v2
   Standalone "Apple-style" product page. Light theme, big type,
   generous whitespace, pure-CSS device mockups. Self-contained:
   index-v2.html loads ONLY this stylesheet.
   ════════════════════════════════════════════════════════════════ */

/* ─── Tokens ───────────────────────────────────────────────────── */
:root {
  --ink:        #1d1d1f;   /* primary text */
  --ink-2:      #6e6e73;   /* secondary text */
  --ink-3:      #86868b;   /* tertiary / captions */
  --line:       rgba(0,0,0,0.10);
  --bg:         #ffffff;
  --bg-soft:    #f5f5f7;   /* Apple's signature light grey */
  --bg-dark:    #000000;
  --blue:       #0071e3;
  --blue-hover: #0077ed;
  --link:       #0066cc;
  --grad:       linear-gradient(120deg, #00DFFC 0%, #0066FF 100%);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1080px;
  --maxw-wide: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: var(--maxw-wide); }

section { position: relative; }
.soft { background: var(--bg-soft); }
.dark { background: var(--bg-dark); color: #f5f5f7; }

/* ─── Typography ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--blue);
  margin-bottom: 14px;
}
.dark .eyebrow { color: #2997ff; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.06; }

.display {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.07;
}

.lede {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.4;
  letter-spacing: -0.012em;
}
.dark .lede { color: #a1a1a6; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center { text-align: center; }
.measure { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  border-radius: 980px;
  padding: 11px 24px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }
.btn--primary:active { transform: scale(0.97); }

.btn--ghost {
  background: rgba(0,0,0,0.05);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(0,0,0,0.09); }

.dark .btn--ghost { background: rgba(255,255,255,0.1); color: #fff; }
.dark .btn--ghost:hover { background: rgba(255,255,255,0.16); }

.btn--lg { font-size: 1.1875rem; padding: 14px 30px; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--link);
  font-size: 1.0625rem;
  font-weight: 400;
  transition: opacity 0.2s;
}
.dark .link { color: #2997ff; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.link .chev { transition: transform 0.25s var(--ease); }
.link:hover .chev { transform: translateX(3px); }

.cta-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}
.nav__logo-dot {
  width: 16px; height: 16px; border-radius: 5px;
  background: var(--grad);
  box-shadow: 0 1px 6px rgba(0,102,255,0.4);
}
.nav__logo sup { font-size: 0.55em; color: var(--ink-3); top: -0.7em; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__menu a { font-size: 0.875rem; color: var(--ink-2); transition: color 0.2s; }
.nav__menu a:hover { color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__actions .btn { padding: 7px 16px; font-size: 0.875rem; }

.nav__burger { display: none; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero { padding: 84px 0 0; text-align: center; overflow: hidden; }
.hero__sub { margin: 22px auto 30px; max-width: 600px; }
.hero__cta { margin-bottom: 16px; }
.hero__micro { font-size: 0.85rem; color: var(--ink-3); }
.hero__stage {
  margin-top: 56px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
}

/* ─── Pure-CSS device: Laptop ──────────────────────────────────── */
.laptop { width: min(720px, 92vw); }
.laptop__screen {
  position: relative;
  border-radius: 16px 16px 6px 6px;
  background: #0a0a0a;
  padding: 11px 11px 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 30px 60px rgba(0,0,0,0.22),
    0 8px 18px rgba(0,0,0,0.12);
}
.laptop__cam {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #2a2a2a; box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.laptop__panel {
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 16 / 10.2;
  background: #fff;
}
.laptop__deck {
  position: relative;
  width: 112%;
  margin: 0 -6%;
  height: 16px;
  border-radius: 0 0 13px 13px;
  background: linear-gradient(180deg, #e4e4e7 0%, #b9b9bf 55%, #98989f 100%);
  box-shadow: 0 14px 22px rgba(0,0,0,0.18);
}
.laptop__deck::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 130px; height: 8px;
  border-radius: 0 0 9px 9px;
  background: linear-gradient(180deg, #aeaeb4, #c9c9ce);
}

/* ─── Pure-CSS device: Phone ───────────────────────────────────── */
.phone {
  width: 240px;
  border-radius: 46px;
  background: #1d1d1f;
  padding: 11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 30px 60px rgba(0,0,0,0.28),
    0 8px 18px rgba(0,0,0,0.16);
}
.phone__screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 9 / 19.3;
  background: #fff;
}
.phone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 22px; border-radius: 14px;
  background: #000; z-index: 5;
}

/* Hero composition: laptop with phone overlapping bottom-right */
.hero__stage .laptop { position: relative; z-index: 1; }
.hero__stage .phone {
  position: absolute;
  right: max(2%, calc(50% - 430px));
  bottom: 0;
  z-index: 2;
  width: 188px;
}

/* ─── In-app UI mockup (lives inside device screens) ───────────── */
.ui { display: flex; height: 100%; font-size: 11px; color: var(--ink); background: #fbfbfd; }
.ui__side {
  width: 34%;
  max-width: 200px;
  padding: 14px 12px;
  background: #f0f0f3;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.ui__brand { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 11px; margin-bottom: 16px; letter-spacing: -0.02em; }
.ui__brand i { width: 12px; height: 12px; border-radius: 4px; background: var(--grad); }
.ui__nav { display: flex; flex-direction: column; gap: 3px; }
.ui__nav span {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; border-radius: 7px; color: var(--ink-2); font-weight: 500;
}
.ui__nav span i { width: 9px; height: 9px; border-radius: 3px; background: var(--c, #c9c9cf); flex-shrink: 0; }
.ui__nav span.on { background: #fff; color: var(--ink); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

.ui__main { flex: 1; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.ui__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ui__crumb { color: var(--blue); font-weight: 600; font-size: 9.5px; margin-bottom: 3px; }
.ui__title { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; line-height: 1.15; }
.ui__pct { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.02em; }
.ui__bar { height: 6px; border-radius: 6px; background: #e4e4ea; overflow: hidden; }
.ui__bar > i { display: block; height: 100%; border-radius: 6px; background: var(--grad); }
.ui__card {
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 12px;
  padding: 13px 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.ui__qn { color: var(--ink-3); font-weight: 600; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ui__qt { font-weight: 600; font-size: 13px; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 10px; }
.ui__field { height: 38px; border-radius: 8px; background: #f3f3f6; border: 1px solid rgba(0,0,0,0.05); }
.ui__row { display: flex; gap: 7px; margin-top: auto; }
.ui__btn { padding: 7px 12px; border-radius: 8px; font-weight: 600; font-size: 10px; }
.ui__btn.pri { background: var(--blue); color: #fff; }
.ui__btn.sec { background: #ececf0; color: var(--ink-2); }

/* Phone variant of the UI */
.ui--phone { flex-direction: column; }
.ui--phone .ui__main { padding: 40px 16px 16px; gap: 13px; }
.ui--phone .ui__tabs {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 0 16px; border-top: 1px solid rgba(0,0,0,0.07); background: #fff;
}
.ui--phone .ui__tabs i { width: 18px; height: 18px; border-radius: 6px; background: #d6d6dc; }
.ui--phone .ui__tabs i.on { background: var(--grad); }

/* ─── Generic section spacing ──────────────────────────────────── */
.sec { padding: 110px 0; }
.sec--tight { padding: 80px 0; }
.sec__head { text-align: center; margin-bottom: 56px; }
.sec__head .lede { margin-top: 16px; }

/* ─── Big statement strip ──────────────────────────────────────── */
.statement {
  padding: 96px 0;
  text-align: center;
}
.statement p {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 900px;
  margin: 0 auto;
}
.statement p .muted { color: var(--ink-3); }

/* ─── Feature blocks (text + device) ───────────────────────────── */
.feature { padding: 110px 0; }
.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature--flip .feature__media { order: 2; }
.feature__text h2 { margin-bottom: 18px; }
.feature__text p { color: var(--ink-2); font-size: 1.15rem; line-height: 1.5; margin-bottom: 16px; }
.feature__text .link { margin-top: 6px; }
.feature__media { display: flex; justify-content: center; }

.minilist { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.minilist li { display: flex; align-items: center; gap: 11px; font-size: 1.05rem; color: var(--ink); }
.minilist .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); color: #fff; font-size: 0.7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ─── Bento grid ───────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.bento__card.span-3 { grid-column: span 3; }
.bento__card.span-2 { grid-column: span 2; }
.bento__card.span-4 { grid-column: span 4; }
.bento__card.dark { background: #1d1d1f; border-color: #1d1d1f; color: #f5f5f7; }
.bento__num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.bento__icon { font-size: 2rem; margin-bottom: 14px; }
.bento__card h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.bento__card p { color: var(--ink-2); font-size: 1rem; line-height: 1.45; margin-top: auto; }
.bento__card.dark p { color: #a1a1a6; }
.bento__areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.bento__areas span {
  font-size: 0.85rem; font-weight: 500; padding: 6px 12px; border-radius: 980px;
  background: rgba(0,0,0,0.05); color: var(--ink);
}

/* ─── Numbers strip ────────────────────────────────────────────── */
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.numbers__item strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700; letter-spacing: -0.045em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.numbers__item span { display: block; margin-top: 12px; color: var(--ink-2); font-size: 1.05rem; line-height: 1.4; }

/* ─── Video (dark) ─────────────────────────────────────────────── */
.film { padding: 120px 0; text-align: center; }
.video-wrap {
  position: relative;
  width: 100%; max-width: 880px; margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  position: absolute; inset: 0; z-index: 2; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(circle at 50% 45%, rgba(40,40,50,0.5), rgba(0,0,0,0.75));
  transition: background 0.3s;
}
.video-poster:hover { background: radial-gradient(circle at 50% 45%, rgba(40,40,50,0.35), rgba(0,0,0,0.6)); }
.video-poster__play {
  width: 78px; height: 78px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 1.5rem; padding-left: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video-poster__play:hover { transform: scale(1.08); background: rgba(255,255,255,0.26); }
.video-poster__label { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── Testimonials marquee ─────────────────────────────────────── */
.testi { padding: 110px 0; overflow: hidden; }
.testi__track { 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); }
.testi__row { display: flex; gap: 20px; width: max-content; animation: marquee 64s linear infinite; }
.testi__track:hover .testi__row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.testi__card {
  flex-shrink: 0; width: 340px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; display: flex; flex-direction: column; gap: 12px;
}
.testi__stars { color: #ff9f0a; font-size: 0.9rem; letter-spacing: 2px; }
.testi__card p { font-size: 1.0625rem; line-height: 1.5; color: var(--ink); letter-spacing: -0.01em; }
.testi__card p b { color: var(--blue); font-weight: 600; }
.testi__card cite { font-style: normal; font-weight: 600; color: var(--ink-2); font-size: 0.95rem; }

/* ─── Pricing ──────────────────────────────────────────────────── */
.pricing { padding: 110px 0; }
.price-card {
  max-width: 520px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 48px 44px; text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.07);
}
.price-card__badge {
  display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--blue);
  background: rgba(0,113,227,0.1); padding: 6px 14px; border-radius: 980px; margin-bottom: 22px;
}
.price-card__was { color: var(--ink-3); font-size: 1.05rem; margin-bottom: 4px; }
.price-card__was s { color: #d0392b; }
.price-card__now { font-size: clamp(3rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-card__now span { font-size: 1.4rem; font-weight: 500; color: var(--ink-3); letter-spacing: -0.02em; }
.price-card__note { color: var(--ink-3); font-size: 0.9rem; margin: 8px 0 26px; }
.price-card .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.price-card__feats { list-style: none; text-align: left; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 13px; }
.price-card__feats li { display: flex; align-items: center; gap: 12px; font-size: 1.0625rem; color: var(--ink); }
.price-card__feats .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); color: #fff; font-size: 0.7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ─── Guarantee ────────────────────────────────────────────────── */
.guarantee { padding: 80px 0; text-align: center; }
.guarantee__inner { max-width: 640px; margin: 0 auto; }
.guarantee__seal {
  width: 84px; height: 84px; margin: 0 auto 24px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg); border: 2px solid rgba(0,113,227,0.3);
  box-shadow: 0 10px 30px rgba(0,113,227,0.12);
}
.guarantee__seal strong { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.guarantee__seal span { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-top: 1px; }
.guarantee h2 { margin-bottom: 14px; }
.guarantee p { color: var(--ink-2); font-size: 1.15rem; line-height: 1.5; }

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq { padding: 110px 0; }
.faq__list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); text-align: left;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--blue); }
.faq__icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--blue); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__item.open .faq__a { max-height: 420px; }
.faq__a p { padding: 0 4px 28px; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.6; }

/* ─── Final CTA (dark) ─────────────────────────────────────────── */
.final { padding: 130px 0 140px; text-align: center; overflow: hidden; }
.final .display { margin-bottom: 22px; }
.final .lede { color: #a1a1a6; margin: 0 auto 34px; max-width: 560px; }
.final__device { margin-top: 80px; display: flex; justify-content: center; }
.final__device .laptop { width: min(640px, 90vw); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--bg-soft); color: var(--ink-3); font-size: 0.85rem; padding: 44px 0; }
.footer__top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.footer__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-size: 1rem; letter-spacing: -0.02em; }
.footer__brand .nav__logo-dot { width: 15px; height: 15px; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: var(--ink-2); transition: color 0.2s; }
.footer__links a:hover { color: var(--ink); }
.footer__fine { padding-top: 20px; line-height: 1.6; }

/* ─── Scroll reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .testi__row { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .feature__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .feature--flip .feature__media { order: 0; }
  .feature__text .minilist { align-items: center; }
  .minilist li { justify-content: center; }
  .bento__card.span-3, .bento__card.span-2, .bento__card.span-4 { grid-column: span 6; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card.span-3, .bento__card.span-2 { grid-column: span 1; }
  .bento__card.span-4 { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav__menu { display: none; }
  .sec, .feature, .testi, .pricing, .faq, .film { padding: 72px 0; }
  .hero { padding: 56px 0 0; }
  .hero__stage .phone { position: relative; right: auto; bottom: auto; margin-top: -40px; margin-left: 40%; }
  .hero__stage { flex-direction: column; align-items: center; }
  .numbers { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: 1fr; }
  .bento__card.span-4 { grid-column: span 1; }
}

@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .cta-pair { gap: 16px; }
  .price-card { padding: 36px 26px; }
}
