/* ============================================================================
   FitPhoneAI · brand.css, shared design system
   Single source of truth for the masterbrand site (fitphone.ai) + app pages.
   Plain CSS, no build step. Tokens + primitives lifted from the design canvas
   (tokens.css / primitives.jsx). Colour mapping follows the committed
   claude-design.md §3: masterbrand=purple, cockpit=teal, studiocrew=amber.
   ========================================================================== */

/* ── Tokens ────────────────────────────────────────────────────────────── */
:root {
  /* ink & paper */
  --ink:        #0B1220;
  --ink-2:      #141C2E;
  --ink-3:      #1E2740;
  --paper:      #F4F2EE;
  --bone:       #FAF8F4;
  --quill:      #5B6573;
  --quill-2:    #8A93A1;
  --hairline:   #E5E1D8;
  --hairline-2: #D8D2C5;

  /* brand colours */
  --masterbrand:  #7B61FF;   /* purple, fitphone.ai parent (primary accent) */
  --masterbrand-d: #5C3FE8;
  --cockpit:      #1FE0C2;   /* teal, Cockpit product cross-links */
  --cockpit-d:    #0FB89F;
  --studiocrew:   #FFCE54;   /* amber, StudioCrew product cross-links */
  --studiocrew-d: #E5A82B;
  --comms:        #FFCE54;   /* amber, comms-layer callouts ONLY */
  --comms-d:      #E5A82B;
  --legacy:       #00345b;   /* navy, heritage lockups only, never hero */

  /* utility */
  --live: #2ECC71;
  --warn: #E76F51;

  /* type */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --text:    'Hanken Grotesk', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* radius, buttons stay sharp at 8px (no pills) */
  --r-sm: 6px;  --r: 10px;  --r-lg: 16px;  --r-xl: 24px;  --r-pill: 999px;
  --r-btn: 8px;

  /* tracking */
  --t-tight: -0.03em;
  --t-display: -0.025em;
  --t-eyebrow: 0.12em;

  /* layout */
  --container: 1240px;
  --section-y: 96px;
  --measure: 60ch;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--text);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; letter-spacing: var(--t-display); line-height: 1.02; text-wrap: balance; }
p { text-wrap: pretty; }

/* ── Accessibility ─────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--masterbrand); outline-offset: 2px; border-radius: 2px; }
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 16px;
  border-radius: var(--r-sm); font-family: var(--mono); font-size: 13px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-y) 0; }
.section--tight { padding: 72px 0; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink-2 { background: var(--ink-2); color: var(--paper); }
.section--bone { background: var(--bone); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.measure { max-width: var(--measure); }
@media (max-width: 640px) { .container { padding: 0 20px; } :root { --section-y: 64px; } }

/* ── Mono atoms: eyebrow + bracket ─────────────────────────────────────── */
.eyebrow, .bracket {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: var(--t-eyebrow); text-transform: uppercase; color: var(--quill);
}
.bracket { white-space: nowrap; }
.bracket::before { content: "[ "; opacity: .55; }
.bracket::after  { content: " ]"; opacity: .55; }
.section--ink .eyebrow, .section--ink .bracket { color: rgba(244,242,238,.55); }
.eyebrow--comms, .bracket--comms { color: var(--comms-d); }
.section--ink .eyebrow--comms, .section--ink .bracket--comms { color: var(--comms); }
.mono { font-family: var(--mono); }
.quill { color: var(--quill); }
.section--ink .quill { color: rgba(244,242,238,.7); }

/* ── Type scale ────────────────────────────────────────────────────────── */
.h1 { font-size: clamp(44px, 8vw, 92px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.94; }
.h2 { font-size: clamp(30px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.0; }
.h3 { font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.025em; line-height: 1.02; }
.lede { font-family: var(--text); font-size: clamp(17px, 1.6vw, 20px); color: var(--quill); line-height: 1.5; font-weight: 400; }
.section--ink .lede { color: rgba(244,242,238,.7); }

/* ── Lockup (logo) ─────────────────────────────────────────────────────── */
.lockup { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.lockup__mark { width: 30px; height: 30px; flex: none; }
.lockup__word { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
.lockup__tld { color: var(--masterbrand); }
.lockup--invert { color: var(--paper); }
.lockup--sm .lockup__mark { width: 25px; height: 25px; }
.lockup--sm .lockup__word { font-size: 19px; }

/* ── Signal device (five receding bars, single colour, fading) ─────────── */
.signal { display: flex; flex-direction: column; gap: 4px; width: 80px; color: currentColor; }
.signal i { display: block; height: 6px; border-radius: 2px; background: currentColor; }
.signal i:nth-child(1) { width: 100%; opacity: 1; }
.signal i:nth-child(2) { width: 78%;  opacity: .72; }
.signal i:nth-child(3) { width: 56%;  opacity: .54; }
.signal i:nth-child(4) { width: 34%;  opacity: .36; }
.signal i:nth-child(5) { width: 18%;  opacity: .22; }
.signal--sm { width: 40px; gap: 3px; }

/* ── Buttons (sharp 8px, never pill) ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--text); font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  padding: 11px 18px; border-radius: var(--r-btn); border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }
.btn--lg { padding: 14px 22px; font-size: 15px; }
.btn--sm { padding: 8px 14px; font-size: 12px; }

/* primary = masterbrand purple, light text (purple needs light text for contrast) */
.btn--primary { background: var(--masterbrand); color: var(--paper); border-color: var(--masterbrand); }
.btn--primary:hover { background: var(--masterbrand-d); border-color: var(--masterbrand-d); }
/* secondary = subtle outline */
.btn--secondary { background: transparent; color: var(--ink); border-color: rgba(11,18,32,.18); }
.btn--secondary:hover { border-color: var(--ink); }
/* ghost = currentColor outline */
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; opacity: .85; }
.btn--ghost:hover { opacity: 1; }
/* product-accent fills carry ink text (teal/amber have enough contrast with ink) */
.btn--cockpit { background: var(--cockpit); color: var(--ink); border-color: var(--cockpit); }
.btn--studiocrew { background: var(--studiocrew); color: var(--ink); border-color: var(--studiocrew); }
/* on ink surfaces, secondary flips to a light outline */
.section--ink .btn--secondary { color: var(--paper); border-color: rgba(244,242,238,.28); }
.section--ink .btn--secondary:hover { border-color: var(--paper); }

/* ── DataChip (mono stat tag) ──────────────────────────────────────────── */
.datachip { display: inline-flex; align-items: baseline; gap: 8px; padding: 8px 12px; border: 1px solid var(--hairline-2); border-radius: var(--r-sm); background: rgba(255,255,255,.5); }
.datachip__label { font-family: var(--mono); font-size: 10px; letter-spacing: var(--t-eyebrow); text-transform: uppercase; color: var(--quill); }
.datachip__value { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--ink); }
.section--ink .datachip { background: var(--ink-2); border-color: var(--ink-3); }
.section--ink .datachip__value { color: var(--paper); }
.section--ink .datachip__label { color: var(--quill-2); }

/* ── Stat (display number + mono label) ────────────────────────────────── */
.stat__n { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.4vw, 34px); letter-spacing: var(--t-display); color: var(--ink); line-height: 1; }
.stat__l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--quill); margin-top: 6px; }
.section--ink .stat__n { color: var(--paper); }
.section--ink .stat__l { color: rgba(244,242,238,.55); }

/* ── Transcript fragment ───────────────────────────────────────────────── */
.transcript { font-family: var(--mono); font-size: 12px; line-height: 1.55; color: var(--ink); display: grid; grid-template-columns: 52px 1fr; gap: 6px 14px; align-items: start; }
.transcript .ts { color: var(--quill-2); }
.transcript .who { color: var(--quill); }
.transcript--dark { color: var(--paper); }
.transcript--dark .ts { color: rgba(244,242,238,.45); }
.transcript--dark .who { color: rgba(244,242,238,.6); }

/* ── Browser chrome ────────────────────────────────────────────────────── */
.browser { border: 1px solid var(--hairline-2); border-radius: 14px; overflow: hidden; background: var(--bone); box-shadow: 0 24px 60px -20px rgba(11,18,32,.18); }
.browser__bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--hairline); background: #fff; }
.browser__dots { display: inline-flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser__dots i:nth-child(1) { background: var(--warn); }
.browser__dots i:nth-child(2) { background: var(--comms); }
.browser__dots i:nth-child(3) { background: var(--live); }
.browser__url { flex: 1; font-family: var(--mono); font-size: 11px; color: var(--quill); background: var(--paper); border-radius: 6px; padding: 5px 12px; letter-spacing: .02em; }

/* ── Phone chrome ──────────────────────────────────────────────────────── */
.phone { width: 320px; max-width: 100%; border-radius: 36px; background: var(--ink); padding: 8px; box-shadow: 0 30px 60px -20px rgba(11,18,32,.35), 0 0 0 1px rgba(11,18,32,.6); }
.phone__screen { border-radius: 28px; overflow: hidden; background: var(--paper); aspect-ratio: 320 / 640; }

/* ── PhotoSlot (striped placeholder) ───────────────────────────────────── */
.photoslot { display: flex; align-items: center; justify-content: center; border-radius: 14px; border: 1px solid var(--hairline-2); color: var(--quill); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; min-height: 240px; background: repeating-linear-gradient(135deg, rgba(11,18,32,.06) 0 8px, rgba(11,18,32,.03) 8px 16px); }
.photoslot--dark { color: rgba(244,242,238,.5); border-color: rgba(244,242,238,.1); background: repeating-linear-gradient(135deg, rgba(244,242,238,.06) 0 8px, rgba(244,242,238,.03) 8px 16px); }

/* ── Site nav ──────────────────────────────────────────────────────────── */
.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(244,242,238,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--hairline); }
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.site-nav__links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.site-nav__links a { color: var(--ink); opacity: .85; transition: opacity .15s ease; }
.site-nav__links a:hover { opacity: 1; }
.site-nav__sep { color: var(--hairline-2); }
.site-nav__links a.cockpit { color: var(--cockpit-d); font-weight: 500; opacity: 1; }
.site-nav__links a.studiocrew { color: var(--studiocrew-d); font-weight: 500; opacity: 1; }
.site-nav__links a.muted { color: var(--quill); }
.site-nav__cta { display: flex; align-items: center; gap: 8px; }
/* mobile: wrap the nav links onto a second full-width row (no-JS, always reachable) */
@media (max-width: 900px) {
  .site-nav__inner { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .site-nav__links { order: 3; flex-basis: 100%; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-start; padding-top: 12px; margin-top: 2px; border-top: 1px solid var(--hairline); font-size: 15px; }
  .site-nav__cta { margin-left: auto; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 80px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero__flag { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__flag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--masterbrand); box-shadow: 0 0 0 4px rgba(123,97,255,.15); flex: none; }
.hero__title { margin-bottom: 24px; }
.hero__title .muted { color: var(--quill); }
.hero__lede { max-width: 520px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline-2); }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 48px 0 56px; } }

/* hero device, live transcript card */
.devicecard { background: var(--ink); color: var(--paper); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.devicecard__signal { position: absolute; top: 24px; right: 24px; color: var(--masterbrand); opacity: .3; }
.devicecard__head { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; position: relative; }
.devicecard__live { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 12px var(--live); }
.devicecard__head .mono { font-size: 11px; letter-spacing: var(--t-eyebrow); text-transform: uppercase; color: rgba(244,242,238,.7); }
.devicecard__timer { margin-left: auto; font-family: var(--mono); font-size: 13px; color: rgba(244,242,238,.7); }
.devicecard__foot { display: flex; gap: 8px; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(244,242,238,.1); }
.devicecard__foot .mono { color: var(--paper); font-family: var(--mono); font-size: 13px; }

/* ── Section heading block ─────────────────────────────────────────────── */
.section-head { margin-bottom: 48px; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head .bracket, .section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head__aside { font-size: 15px; color: var(--quill); max-width: 340px; line-height: 1.5; flex: none; }
.section--ink .section-head__aside { color: rgba(244,242,238,.7); }
@media (max-width: 820px) { .section-head--split { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* ── Comms cards (the three products) ──────────────────────────────────── */
.comms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .comms-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.comms-card { background: var(--paper); border: 1px solid var(--hairline-2); border-radius: 14px; padding: 32px; min-height: 280px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.comms-card:hover { border-color: var(--comms); transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(11,18,32,.4); }
.comms-card__signal { position: absolute; top: 24px; right: 24px; color: var(--comms); }
.comms-card__name { font-size: clamp(26px, 3vw, 32px); letter-spacing: -.025em; line-height: 1; }
.comms-card__agent { font-family: var(--text); font-weight: 500; font-size: 14px; color: var(--quill); }
.comms-card__line { font-size: 14px; color: var(--quill); line-height: 1.5; margin-bottom: auto; }
.comms-card__foot { display: flex; align-items: baseline; gap: 12px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.comms-card__stat { font-family: var(--display); font-size: 36px; font-weight: 700; letter-spacing: -.025em; color: var(--ink); line-height: 1; }
.comms-card__statlabel { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--quill); }
.comms-card__more { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--masterbrand); display: inline-flex; align-items: center; gap: 6px; }
.comms-card:hover .comms-card__more { gap: 9px; }

/* ── Doorway cards (Cockpit / StudioCrew) ──────────────────────────────── */
.doorways { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 760px) { .doorways { grid-template-columns: 1fr; } }
.doorway { background: var(--ink); border-radius: 18px; padding: 40px; display: flex; flex-direction: column; gap: 20px; min-height: 340px; position: relative; overflow: hidden; border: 1px solid var(--ink-3); transition: transform .18s ease, border-color .18s ease; }
.doorway:hover { transform: translateY(-3px); }
.doorway__bgsignal { position: absolute; right: -20px; bottom: -20px; width: 280px; opacity: .12; }
.doorway__top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; }
.doorway__tag { font-family: var(--mono); font-size: 11px; letter-spacing: var(--t-eyebrow); text-transform: uppercase; padding: 4px 10px; border: 1px solid currentColor; border-radius: 4px; }
.doorway__body { margin-top: auto; position: relative; }
.doorway__name { font-size: clamp(36px, 5vw, 48px); letter-spacing: -.03em; color: var(--paper); line-height: 1; }
.doorway__tagline { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--paper); margin-top: 8px; letter-spacing: -.02em; }
.doorway__line { font-size: 14px; color: rgba(244,242,238,.65); line-height: 1.55; margin-top: 14px; max-width: 380px; }
.doorway__cta { font-family: var(--mono); font-size: 13px; margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; }
.doorway--cockpit { color: var(--cockpit); }
.doorway--cockpit:hover { border-color: var(--cockpit); }
.doorway--studiocrew { color: var(--studiocrew); }
.doorway--studiocrew:hover { border-color: var(--studiocrew); }

/* ── Voice sample cards ────────────────────────────────────────────────── */
.voice-row { display: flex; gap: 16px; flex-wrap: wrap; }
.voice-card { flex: 1; min-width: 200px; padding: 18px 16px; background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 10px; }
.voice-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.voice-card__avatar { width: 36px; height: 36px; border-radius: 50%; flex: none; background: repeating-linear-gradient(135deg, var(--comms) 0 4px, var(--comms-d) 4px 8px); opacity: .9; }
.voice-card__name { font-family: var(--text); font-weight: 600; font-size: 14px; color: var(--paper); }
.voice-card__meta { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: rgba(244,242,238,.5); }
.voice-card audio { width: 100%; height: 34px; }

/* ── Pull-quote card ───────────────────────────────────────────────────── */
.pullquotes { display: flex; flex-direction: column; gap: 12px; }
.pullquote { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 12px; padding: 22px 24px; }
.pullquote__ts { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,206,84,.7); margin-bottom: 10px; }
.pullquote__text { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; color: var(--paper); }
.pullquote__by { font-family: var(--mono); font-size: 11px; color: rgba(244,242,238,.55); margin-top: 12px; letter-spacing: .04em; }

/* ── CTA strip (masterbrand purple) ────────────────────────────────────── */
.cta-strip { background: var(--masterbrand); color: var(--paper); }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 64px 0; }
.cta-strip h2 { color: var(--paper); max-width: 640px; line-height: .98; }
.cta-strip .btn { background: var(--ink); color: var(--comms); border-color: var(--ink); }
.cta-strip .btn:hover { background: #000; }
@media (max-width: 760px) { .cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 24px; } }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(244,242,238,.6); padding: 56px 0 32px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(244,242,238,.1); }
.site-footer__tagline { margin-top: 16px; max-width: 280px; font-size: 13px; line-height: 1.5; color: rgba(244,242,238,.6); }
.site-footer__col h4 { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: var(--t-eyebrow); text-transform: uppercase; color: rgba(244,242,238,.4); margin-bottom: 12px; }
.site-footer__col a { display: block; font-size: 13px; color: rgba(244,242,238,.7); padding: 4px 0; transition: color .15s ease; }
.site-footer__col a:hover { color: var(--paper); }
.site-footer__col a.cockpit:hover { color: var(--cockpit); }
.site-footer__col a.studiocrew:hover { color: var(--studiocrew); }
.site-footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-family: var(--mono); font-size: 12px; color: rgba(244,242,238,.4); }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ========================================================================
   Product / feature page components (calls · reception · whatsapp)
   ====================================================================== */

/* generic two-column split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split--top { align-items: start; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* pill eyebrow */
.pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: var(--t-eyebrow); text-transform: uppercase; color: var(--masterbrand); border: 1px solid var(--hairline-2); border-radius: var(--r-pill); padding: 6px 12px; }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.section--ink .pill { color: var(--comms); border-color: var(--ink-3); }

/* stat band (problem section) */
.statband { display: flex; flex-wrap: wrap; gap: 40px; padding-top: 28px; border-top: 1px solid var(--hairline-2); }
.section--ink .statband { border-top-color: var(--ink-3); }

/* checked feature list */
.feature-list { display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--quill); line-height: 1.5; }
.feature-list li::before { content: "\2713"; flex: none; color: var(--masterbrand); font-weight: 700; }
.section--ink .feature-list li { color: rgba(244,242,238,.78); }

/* 3-step how-it-works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding-top: 18px; border-top: 2px solid var(--hairline-2); }
.section--ink .step { border-top-color: var(--ink-3); }
.step__n { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--masterbrand); margin-bottom: 12px; }
.step__t { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin-bottom: 8px; }
.step__b { color: var(--quill); font-size: 15px; line-height: 1.55; }
.section--ink .step__b { color: rgba(244,242,238,.7); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 16px; } }

/* benefits grid */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit { background: var(--bone); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 24px; }
.benefit__t { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; margin-bottom: 6px; }
.benefit__b { color: var(--quill); font-size: 14px; line-height: 1.55; }
@media (max-width: 680px) { .benefits { grid-template-columns: 1fr; } }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing--single { grid-template-columns: minmax(0, 480px); justify-content: center; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pricing--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin: 0 auto; }
@media (max-width: 760px) { .pricing--two { grid-template-columns: 1fr; max-width: 460px; } }
.price-card { background: var(--bone); border: 1px solid var(--hairline-2); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.price-card--featured { border-color: var(--masterbrand); box-shadow: 0 24px 60px -34px rgba(123,97,255,.6); }
.price-card__badge { position: absolute; top: -11px; left: 30px; background: var(--masterbrand); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-sm); }
.price-card__name { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--quill); }
.price-card__price { font-family: var(--display); font-weight: 800; font-size: 46px; letter-spacing: -.03em; line-height: 1; }
.price-card__price .per { font-family: var(--text); font-weight: 500; font-size: 16px; color: var(--quill); letter-spacing: 0; }
.price-card__meta { font-family: var(--mono); font-size: 11px; color: var(--quill); letter-spacing: .03em; }
.price-card .feature-list { margin: 6px 0 4px; }
.price-card .btn { margin-top: auto; }

/* FAQ, no-JS <details> accordion */
.faq { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--display); font-weight: 700; font-size: clamp(17px, 2vw, 19px); letter-spacing: -.01em; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-weight: 400; color: var(--masterbrand); font-size: 22px; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 0 22px; color: var(--quill); line-height: 1.6; max-width: 68ch; }

/* WhatsApp phone thread */
.wa { display: flex; flex-direction: column; height: 100%; background: #ECE5DD; }
.wa__head { display: flex; align-items: center; gap: 10px; background: #075E54; color: #fff; padding: 12px 14px; flex: none; }
.wa__avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.25); flex: none; }
.wa__name { font-family: var(--text); font-weight: 600; font-size: 14px; line-height: 1.1; }
.wa__status { font-size: 10px; opacity: .8; }
.wa__body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.wa-bubble { max-width: 82%; padding: 8px 11px; border-radius: 12px; font-family: var(--text); font-size: 13px; line-height: 1.4; box-shadow: 0 1px 1px rgba(11,18,32,.08); }
.wa-bubble--in { background: #fff; color: var(--ink); align-self: flex-start; border-top-left-radius: 3px; }
.wa-bubble--out { background: #DCF8C6; color: var(--ink); align-self: flex-end; border-top-right-radius: 3px; }
.wa-note { align-self: center; background: rgba(11,18,32,.06); color: var(--quill); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; padding: 5px 10px; border-radius: var(--r-pill); margin-top: 4px; text-align: center; }

/* prose paragraphs */
.prose p { color: var(--quill); line-height: 1.6; margin-bottom: 14px; max-width: 60ch; }
.prose p:last-child { margin-bottom: 0; }
.section--ink .prose p { color: rgba(244,242,238,.72); }

/* compact cross-sell row */
.crosssell { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 680px) { .crosssell { grid-template-columns: 1fr; } }
.crosssell a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: var(--bone); border: 1px solid var(--hairline-2); border-radius: var(--r-lg); transition: border-color .18s ease, transform .18s ease; }
.crosssell a:hover { border-color: var(--masterbrand); transform: translateY(-2px); }
.crosssell__name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.crosssell__line { font-size: 13px; color: var(--quill); margin-top: 2px; }
.crosssell__arrow { font-family: var(--mono); color: var(--masterbrand); flex: none; }

/* customer logo wall (social proof), swap name spans for <img> when logos uploaded */
.logowall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 36px; }
.logowall__item { font-family: var(--display); font-weight: 700; font-size: clamp(16px, 2vw, 20px); letter-spacing: -.02em; color: var(--quill-2); white-space: nowrap; transition: color .15s ease; }
.logowall__item:hover { color: var(--ink); }
.logowall a { display: inline-flex; }
.logowall img { height: 30px; width: auto; opacity: .65; filter: grayscale(1); transition: opacity .15s ease, filter .15s ease; }
.logowall a:hover img { opacity: 1; filter: none; }
.section--ink .logowall__item { color: rgba(244,242,238,.6); }
.section--ink .logowall__item:hover { color: var(--paper); }

/* auto-scrolling logo marquee (infinite, seamless) */
.marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; align-items: center; width: max-content; animation: fp-marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 34px; width: auto; margin: 0 30px; opacity: .62; filter: grayscale(1); flex: none; -webkit-user-drag: none; }
@keyframes fp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee__track img[aria-hidden="true"] { display: none; }
}
