/* ==========================================================================
   SMRTWEBWORKS — main stylesheet
   --------------------------------------------------------------------------
   HOW TO EDIT
   - Brand colors, fonts, spacing live in :root below. Change them once here.
   - Sections are labeled with big comment banners so you can find things.
   - No build step. Save the file, re-upload, done.
   ========================================================================== */

/* ---------- 1. Font (self-hosted, no outside requests) ---------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2-variations"),
       url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Design tokens ---------- */
:root {
  /* Brand colors */
  --ink: #0a1e5e;         /* near-black: main dark background + body text */
  --ink-2: #112978;       /* raised dark surface */
  --ink-3: #22409a;       /* borders on dark */
  --chalk: #f4f5f9;       /* warm off-white: main light background */
  --paper: #fbfcfe;       /* lighter card surface */
  --orange: #ffc629;      /* SIGNAL ORANGE — buttons, highlights (use on dark or as a fill) */
  --orange-deep: #1d4ed8; /* orange for TEXT on light backgrounds (AA contrast) */
  --green: #37d67a;       /* "live" / incoming call */
  --muted: #4e5a70;       /* secondary text on light */
  --muted-dark: #b4c1e6;  /* secondary text on dark */
  --line: rgba(10, 30, 94, .14);
  --line-dark: rgba(255, 255, 255, .12);

  /* Type */
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --fs-display: clamp(2.75rem, 1.2rem + 7.2vw, 7.25rem);
  --fs-h2: clamp(2.1rem, 1.1rem + 4.2vw, 4.5rem);
  --fs-h3: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  --fs-lead: clamp(1.08rem, 1rem + .4vw, 1.3rem);

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 24px;
  --section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --header-h: 72px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- 3. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--chalk); color: var(--ink);
  font-family: var(--font); font-size: 1.0625rem; line-height: 1.6;
  font-stretch: 100%; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.05; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--orange); color: var(--ink); padding: .75rem 1rem; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- 4. Layout helpers ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--dark { background: var(--ink); color: var(--chalk); }
.section--paper { background: var(--paper); }
.section--orange { background: var(--orange); color: var(--ink); }
.grid-bg {
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px; background-position: -1px -1px;
}
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- 5. Typography ---------- */
.display, .h2 {
  font-stretch: 68%; font-weight: 850; text-transform: uppercase;
  letter-spacing: -.01em; line-height: .92;
}
.display { font-size: var(--fs-display); }
.h2 { font-size: var(--fs-h2); max-width: 18ch; }
.center .h2, .h2.center { margin-inline: auto; }
.h3 { font-size: var(--fs-h3); font-weight: 750; line-height: 1.15; font-stretch: 90%; }
.lead { font-size: var(--fs-lead); max-width: 60ch; color: var(--muted); }
.section--dark .lead { color: var(--muted-dark); }
.center .lead { margin-inline: auto; }
.hl { color: var(--orange-deep); }
.section--dark .hl, .hero .hl, .page-hero .hl, .nf .hl, .cta-band .hl { color: var(--orange); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 1.1rem; font-weight: 600;
}
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .side-card .eyebrow { color: var(--orange); }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: currentColor; border-radius: 2px; }
.center .eyebrow { justify-content: center; }
.fine { font-size: .82rem; color: var(--muted); }
.section--dark .fine { color: var(--muted-dark); }
.strike { position: relative; white-space: nowrap; }
.strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%; height: .1em;
  background: var(--orange); transform: rotate(-3deg) scaleX(var(--s, 1)); transform-origin: left;
  transition: transform .8s var(--ease) .3s;
}
.reveal .strike::after { --s: 0; }
.reveal.is-in .strike::after { --s: 1; }

/* ---------- 6. Buttons ---------- */
.btn {
  --bg: var(--orange); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid var(--bg);
  background: var(--bg); color: var(--fg); font-weight: 750; font-size: 1.02rem; line-height: 1.1;
  text-decoration: none; cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 0 0 0 rgba(255, 198, 41, 0);
}
.btn::before { /* shine sweep on hover */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(255, 198, 41, .7); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { box-shadow: none; background: rgba(127,127,127,.12); }
.btn--dark { --bg: var(--ink); --fg: var(--chalk); }
.btn--dark:hover { box-shadow: 0 10px 24px -8px rgba(0,0,0,.6); }
.btn--lg { min-height: 60px; padding: 1rem 1.9rem; font-size: 1.1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.center .btn-row { justify-content: center; }
.text-link { font-weight: 700; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: var(--orange); }

/* ---------- 7. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: var(--ink); color: var(--chalk);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-color: var(--line-dark); background: rgba(10, 30, 94, .9); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 850; font-stretch: 75%; font-size: 1.35rem; letter-spacing: .01em; }
.logo svg { width: 34px; height: 34px; flex: none; }
.logo b { color: var(--orange); font-weight: inherit; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a:not(.btn) {
  text-decoration: none; padding: .55rem .85rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  color: var(--muted-dark); transition: color .2s, background .2s;
}
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--chalk); background: rgba(255,255,255,.07); }
.header-cta { display: flex; align-items: center; gap: .5rem; }
.header-cta .btn { min-height: 44px; padding: .55rem 1.1rem; font-size: .95rem; }
.header-phone { text-decoration: none; font-weight: 700; font-size: .95rem; padding: .5rem .6rem; white-space: nowrap; }
.header-phone:hover { color: var(--orange); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-dark);
  background: transparent; cursor: pointer; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--chalk); border-radius: 2px; position: relative; transition: transform .3s var(--ease), background .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-phone { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); padding: 1rem var(--gutter) 1.5rem; border-bottom: 1px solid var(--line-dark);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .25s var(--ease);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { padding: 1rem .5rem; font-size: 1.15rem; border-radius: 8px; border-bottom: 1px solid var(--line-dark); }
}
@media (max-width: 420px) { .header-cta .btn { padding: .5rem .85rem; font-size: .88rem; } .logo { font-size: 1.15rem; } .logo svg { width: 28px; height: 28px; } }

/* ---------- 8. Hero ---------- */
.hero {
  background: var(--ink); color: var(--chalk); position: relative; overflow: hidden;
  padding: clamp(2.5rem, 2rem + 4vw, 5.5rem) 0 clamp(3.5rem, 3rem + 4vw, 6rem);
}
.hero::before { /* orange glow */
  content: ""; position: absolute; width: 60vmax; height: 60vmax; right: -20vmax; top: -25vmax;
  background: radial-gradient(closest-side, rgba(255, 198, 41, .28), transparent 70%); pointer-events: none;
}
.hero .grid-bg { position: absolute; inset: 0; opacity: .5; mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 { font-size: clamp(2.7rem, 1rem + 6vw, 6.4rem); }
.hero h1 .hl { display: block; }
.hero .lead { color: #c9cfd8; margin-bottom: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.5rem; list-style: none; font-size: .92rem; color: var(--muted-dark); }
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.hero-call { margin-top: 1rem; font-size: .95rem; color: var(--muted-dark); }
.hero-call a { color: var(--chalk); font-weight: 700; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---- Hero phone animation: a website builds itself, then calls roll in ---- */
.phone-stage { position: relative; display: grid; place-items: center; min-height: 560px; }
.phone {
  position: relative; width: 280px; height: 570px; border-radius: 46px; padding: 12px;
  background: linear-gradient(145deg, #2c333d, #0b0d10); box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), inset 0 0 0 2px #3a424e, 0 0 0 1px #000;
  transform: rotate(-4deg);
}
.phone-screen { position: relative; height: 100%; border-radius: 36px; overflow: hidden; background: #fff; color: var(--ink); }
.phone-notch { position: absolute; top: 10px; left: 50%; width: 92px; height: 26px; border-radius: 20px; background: #0b0d10; transform: translateX(-50%); z-index: 5; }
/* Stage 1: search bar with typed query */
.ps-search { position: absolute; inset: 48px 14px auto; height: 38px; border-radius: 20px; background: #f1f2f4; display: flex; align-items: center; padding: 0 14px; gap: 8px; font-size: 13px; color: #333; z-index: 3; animation: psSearchOut .5s var(--ease) 2.3s forwards; }
.ps-search svg { width: 14px; height: 14px; flex: none; }
.ps-typed { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border-right: 2px solid var(--orange); animation: psType 1.3s steps(16) .5s forwards, psCaret .6s step-end infinite; }
.ps-empty { position: absolute; inset: 100px 20px auto; text-align: center; font-size: 12px; color: #6b7280; animation: psSearchOut .4s var(--ease) 2.3s forwards; }
.ps-empty strong { display: block; font-size: 14px; color: #111; margin-bottom: 4px; }
@keyframes psType { to { width: 16ch; } }
@keyframes psCaret { 50% { border-color: transparent; } }
@keyframes psSearchOut { to { opacity: 0; transform: translateY(-10px); visibility: hidden; } }
/* Stage 2: site blocks build in */
.ps-site { position: absolute; inset: 0; padding: 48px 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.ps-site > * { opacity: 0; transform: translateY(14px) scale(.98); animation: psIn .55s var(--ease) forwards; }
.ps-nav { display: flex; justify-content: space-between; align-items: center; animation-delay: 2.6s !important; }
.ps-logo { font-weight: 850; font-stretch: 70%; font-size: 15px; text-transform: uppercase; }
.ps-logo i { color: var(--orange); font-style: normal; }
.ps-burger { width: 18px; height: 10px; border-block: 2px solid var(--ink); }
.ps-heroimg { height: 150px; border-radius: 14px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); animation-delay: 2.85s !important; }
.ps-heroimg::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 18px 18px; }
.ps-heroimg::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 92px; height: 92px; background: var(--orange); transform: rotate(45deg); }
.ps-heroimg span { position: absolute; left: 14px; bottom: 34px; z-index: 1; color: #fff; font-weight: 850; font-stretch: 70%; text-transform: uppercase; font-size: 24px; line-height: .92; }
.ps-chip { position: absolute; left: 14px; bottom: 12px; z-index: 1; font-style: normal; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--orange); padding: 3px 7px; border-radius: 4px; }
.ps-line { height: 10px; border-radius: 6px; background: #e4e6ea; animation-delay: 3.1s !important; }
.ps-line.short { width: 65%; animation-delay: 3.2s !important; }
.ps-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; animation-delay: 3.4s !important; }
.ps-btns b { display: grid; place-items: center; height: 38px; border-radius: 10px; font-size: 12px; background: var(--orange); color: var(--ink); }
.ps-btns b + b { background: var(--ink); color: #fff; }
.ps-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; animation-delay: 3.65s !important; }
.ps-tiles i { height: 62px; border-radius: 10px; background: #eef1f8; border: 1.5px solid #d5dcee; position: relative; }
.ps-tiles i::after { content: ""; position: absolute; left: 10px; top: 10px; width: 18px; height: 18px; border-radius: 6px; background: var(--orange); opacity: .85; }
.ps-map { flex: 1; min-height: 60px; border-radius: 12px; background:
  repeating-linear-gradient(45deg, #eef0f3 0 10px, #e6e9ed 10px 20px); position: relative; animation-delay: 3.9s !important; }
.ps-map::after { content: ""; position: absolute; left: 50%; top: 40%; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: translate(-50%, -50%) rotate(-45deg); }
@keyframes psIn { to { opacity: 1; transform: none; } }
/* Stage 3: incoming notifications (JS cycles text) */
.ps-toast {
  position: absolute; left: 10px; right: 10px; top: 44px; z-index: 6;
  display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 16px;
  background: rgba(24, 29, 36, .96); color: #fff; box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
  opacity: 0; transform: translateY(-120%);
}
.ps-toast.is-on { animation: toast 3.2s var(--ease) forwards; }
.ps-toast .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--green); display: grid; place-items: center; flex: none; color: var(--ink); }
.ps-toast .ic svg { width: 18px; height: 18px; }
.ps-toast small { display: block; font-size: 10px; color: #aeb6c2; text-transform: uppercase; letter-spacing: .08em; }
.ps-toast strong { font-size: 13px; line-height: 1.2; }
@keyframes toast { 0% { opacity: 0; transform: translateY(-120%); } 12%, 82% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(-40%); } }
/* Floating stat chips around the phone */
.chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: .6rem;
  background: var(--paper); color: var(--ink); border-radius: 16px; padding: .7rem .95rem;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.7); font-size: .85rem; line-height: 1.2; font-weight: 600;
  opacity: 0; animation: chipIn .6s var(--ease) forwards;
}
.chip b { display: block; font-size: 1.6rem; font-stretch: 70%; font-weight: 850; line-height: 1; }
.chip--calls { left: -4%; bottom: 18%; animation-delay: 4.3s; }
.chip--calls .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(55,214,122,.6); animation: pulse 1.6s infinite; }
.chip--live { right: -2%; top: 14%; animation-delay: 4.6s; background: var(--orange); }
@keyframes chipIn { from { opacity: 0; transform: translateY(12px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(55,214,122,0); } 100% { box-shadow: 0 0 0 0 rgba(55,214,122,0); } }
@media (max-width: 900px) {
  .phone-stage { min-height: 520px; margin-top: .5rem; }
  .phone { width: 250px; height: 510px; }
  .chip--calls { left: 0; } .chip--live { right: 0; }
}
@media (max-width: 400px) { .chip { font-size: .75rem; padding: .55rem .7rem; } .chip b { font-size: 1.3rem; } }

/* ---------- 9. Ticker (trades marquee) ---------- */
.ticker { background: var(--orange); color: var(--ink); overflow: hidden; border-block: 2px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.ticker ul { display: flex; list-style: none; }
.ticker li { padding: .95rem 1.3rem; font-weight: 850; font-stretch: 72%; text-transform: uppercase; font-size: 1.3rem; white-space: nowrap; display: flex; align-items: center; gap: 2.6rem; }
.ticker li::after { content: "✦"; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Problem / stats ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.stat-stack { display: grid; gap: 1rem; position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 860px) { .stat-stack { position: static; } }
.stat {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.6rem 1.4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center;
}
.stat .num { font-size: clamp(3.2rem, 2.5rem + 3vw, 5rem); font-weight: 850; font-stretch: 65%; line-height: .85; color: var(--orange-deep); }
.stat p { margin: 0; font-weight: 600; line-height: 1.35; }
.stat cite { display: block; font-style: normal; font-size: .78rem; color: var(--muted); font-weight: 400; margin-top: .35rem; }
.pain-list { list-style: none; display: grid; gap: .9rem; margin-top: 1.8rem; }
.pain-list li { display: grid; grid-template-columns: 38px 1fr; gap: .9rem; align-items: start; }
.pain-list .x { width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: var(--orange); display: grid; place-items: center; }
.pain-list .x svg { width: 18px; height: 18px; }
.pain-list strong { display: block; font-size: 1.08rem; }
.pain-list span { color: var(--muted); font-size: .98rem; }

/* ---------- 11. Before / After slider ---------- */
.ba { position: relative; margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--ink); background: #fff; box-shadow: 14px 14px 0 var(--ink); --pos: 50%; }
.ba-pane { display: grid; grid-template-columns: 1fr; min-height: 440px; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); background: #fff; }
.ba-label {
  position: absolute; top: 16px; z-index: 3; font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: 999px; font-weight: 700;
}
.ba-before .ba-label { left: 16px; background: var(--ink); color: #fff; }
.ba-after .ba-label { right: 16px; background: var(--orange); color: var(--ink); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; margin-left: -2px; background: var(--ink); z-index: 4; pointer-events: none; }
.ba-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--orange); border: 3px solid var(--ink);
  display: grid; place-items: center; font-weight: 900; font-size: 1.3rem; letter-spacing: -.1em; color: var(--ink);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }
.ba-range:focus-visible + .ba-handle::after { outline: 3px solid var(--orange); outline-offset: 4px; }
/* Mock search screen (shared) */
.serp { padding: 72px clamp(16px, 4vw, 48px) 32px; font-size: .95rem; height: 100%; width: 100%; max-width: 980px; margin-inline: auto; }
.serp-bar { display: flex; align-items: center; gap: .6rem; border: 1px solid #dadce0; border-radius: 999px; padding: .7rem 1.1rem; box-shadow: 0 2px 8px -4px rgba(0,0,0,.2); margin-bottom: 1.4rem; font-size: .95rem; }
.serp-bar svg { width: 16px; height: 16px; flex: none; color: #666; }
.serp-result { margin-bottom: 1.1rem; }
.serp-result .url { font-size: .78rem; color: #4d5156; }
.serp-result .t { color: #1a0dab; font-size: 1.1rem; font-weight: 500; display: block; }
.serp-result .d { color: #4d5156; font-size: .88rem; margin: .1rem 0 0; }
.serp-you { border: 2px dashed #d0d4da; border-radius: 16px; padding: 1rem; color: #6b7280; display: grid; grid-template-columns: 1fr 240px; gap: 1rem; align-items: center; }
.serp-you .nothing { min-height: 120px; border-radius: 10px; background: repeating-linear-gradient(45deg, #f1f2f4 0 10px, #e9ebee 10px 20px); display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: #8a919c; text-align: center; padding: .5rem; }
.serp-you strong { color: #111; }
.serp-you .warn { display: inline-block; margin-top: .3rem; font-size: .8rem; color: #b42318; font-weight: 700; }
.serp-win { border: 2px solid var(--ink); border-radius: 16px; padding: 1rem; display: grid; grid-template-columns: 1fr 240px; gap: 1rem; background: #fffdf8; }
.serp-win .t { color: var(--ink); font-weight: 800; }
.serp-win .tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0 .7rem; }
.serp-win .tags span { font-size: .75rem; background: #eef7f1; color: #146c3a; border-radius: 999px; padding: .15rem .55rem; font-weight: 700; }
.serp-win .acts { display: flex; gap: .5rem; flex-wrap: wrap; }
.serp-win .acts b { font-size: .8rem; border-radius: 999px; padding: .4rem .8rem; background: var(--orange); }
.serp-win .acts b + b { background: var(--ink); color: #fff; }
.serp-win .thumb { border-radius: 10px; background: linear-gradient(160deg, var(--ink), var(--ink-3)); position: relative; overflow: hidden; min-height: 120px; }
.serp-win .thumb::before { content: ""; position: absolute; left: 12px; bottom: 14px; width: 64px; height: 18px; border-radius: 9px; background: var(--orange); }
.serp-win .thumb::after { content: ""; position: absolute; left: 12px; top: 14px; width: 60%; height: 12px; border-radius: 4px; background: #fff; box-shadow: 0 20px 0 -2px rgba(255,255,255,.7), 0 38px 0 -3px rgba(255,255,255,.45); }
.ba-caption { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; font-size: .92rem; color: var(--muted); flex-wrap: wrap; }
@media (max-width: 640px) {
  .serp-win, .serp-you { grid-template-columns: 1fr; } .serp-win .thumb, .serp-you .nothing { min-height: 90px; order: -1; }
  .ba-pane { min-height: 560px; } .serp-result.fade { display: none; }
}

/* ---------- 12. Calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); margin-top: 3rem; }
.calc-inputs { background: var(--ink-2); padding: clamp(1.5rem, 3vw, 2.75rem); display: grid; gap: 2rem; align-content: start; }
.calc-out { background: var(--orange); color: var(--ink); padding: clamp(1.5rem, 3vw, 2.75rem); display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.field-range label { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-weight: 650; margin-bottom: .8rem; }
.field-range output { font-size: 1.8rem; font-weight: 850; font-stretch: 70%; color: var(--orange); min-width: 5ch; text-align: right; }
.field-range .help { font-size: .85rem; color: var(--muted-dark); margin: .5rem 0 0; }
input[type="range"].slider { -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: 99px; background: linear-gradient(90deg, var(--orange) var(--fill, 50%), var(--ink-3) var(--fill, 50%)); cursor: pointer; }
input[type="range"].slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--chalk); border: 4px solid var(--orange); box-shadow: 0 4px 10px rgba(0,0,0,.4); transition: transform .15s; }
input[type="range"].slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--chalk); border: 4px solid var(--orange); }
input[type="range"].slider:active::-webkit-slider-thumb { transform: scale(1.15); }
.calc-big { font-size: clamp(3rem, 2rem + 5vw, 5.75rem); font-weight: 850; font-stretch: 62%; line-height: .85; letter-spacing: -.01em; margin: .3rem 0 .6rem; font-variant-numeric: tabular-nums; }
.calc-out .label { font-family: var(--mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.calc-out p { margin: 0; font-weight: 600; }
.calc-payback { border-top: 2px solid rgba(10, 30, 94,.2); padding-top: 1rem; }
.calc-note { margin-top: 1rem; }
@media (max-width: 800px) { .calc { grid-template-columns: 1fr; } }

/* ---------- 13. Process steps ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; counter-reset: step; position: relative; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.8rem; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -24px rgba(10, 30, 94,.45); }
.step-num { font-size: 5.5rem; line-height: .8; font-weight: 850; font-stretch: 62%; color: transparent; -webkit-text-stroke: 2px var(--ink); margin-bottom: 1.2rem; display: block; }
.step:hover .step-num { color: var(--orange); -webkit-text-stroke-color: var(--orange); }
.step .when { font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; }
.step p { color: var(--muted); margin: .5rem 0 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- 14. Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; }
.feature { background: var(--ink); padding: 1.8rem 1.5rem; transition: background .3s; }
.feature:hover { background: var(--ink-2); }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(255, 198, 41,.14); color: var(--orange); display: grid; place-items: center; margin-bottom: 1.1rem; transition: transform .3s var(--ease); }
.feature:hover .ico { transform: rotate(-8deg) scale(1.08); }
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.feature p { font-size: .95rem; color: var(--muted-dark); margin: 0; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

/* ---------- 15. CTA band ---------- */
.cta-band { background: var(--orange); color: var(--ink); padding-block: clamp(3rem, 2rem + 4vw, 5rem); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(10, 30, 94,.06) 22px 44px); pointer-events: none; }
.cta-band .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(2rem, 1.2rem + 3.5vw, 3.75rem); margin: 0; max-width: 18ch; }
.cta-band p { margin: .6rem 0 0; font-weight: 600; }

/* ---------- 16. Cards (work / portfolio) ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.work-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 30px 50px -30px rgba(10, 30, 94,.55); }
.work-shot { position: relative; background: var(--ink); padding: 14px 14px 0; aspect-ratio: 16 / 11; overflow: hidden; }
.work-shot .bar { display: flex; gap: 5px; margin-bottom: 8px; }
.work-shot .bar i { width: 8px; height: 8px; border-radius: 50%; background: #3a424e; }
.work-shot img { width: 100%; border-radius: 8px 8px 0 0; transition: transform 1.6s var(--ease); transform-origin: top; }
.work-card:hover .work-shot img { transform: translateY(-18%); }
.work-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.work-body h3 { font-size: 1.2rem; margin: 0; }
.work-body p { margin: 0; color: var(--muted); font-size: .95rem; }
.tag { display: inline-block; align-self: flex-start; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; background: var(--ink); color: var(--chalk); border-radius: 999px; padding: .25rem .6rem; }
.tag--concept { background: transparent; color: var(--orange-deep); border: 1.5px solid currentColor; }
.work-card[hidden] { display: none; }
.work-card--empty { border: 2px dashed rgba(10, 30, 94,.3); background: transparent; justify-content: center; align-items: center; text-align: center; padding: 2.5rem 1.5rem; min-height: 320px; }
.work-card--empty .plus { width: 64px; height: 64px; border-radius: 50%; border: 2px dashed var(--orange-deep); display: grid; place-items: center; font-size: 2rem; color: var(--orange-deep); margin: 0 auto 1rem; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.filters button { border: 1.5px solid var(--ink); background: transparent; border-radius: 999px; padding: .55rem 1rem; font-weight: 650; cursor: pointer; min-height: 44px; transition: background .2s, color .2s; }
.filters button[aria-pressed="true"], .filters button:hover { background: var(--ink); color: var(--chalk); }

/* ---------- 17. Guarantee ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.seal { width: clamp(200px, 26vw, 300px); aspect-ratio: 1; position: relative; }
.seal svg.ring { width: 100%; height: 100%; animation: spin 24s linear infinite; }
.seal .core { position: absolute; inset: 22%; border-radius: 50%; background: var(--orange); color: var(--ink); display: grid; place-items: center; text-align: center; font-weight: 850; font-stretch: 65%; text-transform: uppercase; line-height: .9; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); box-shadow: inset 0 0 0 6px var(--ink), inset 0 0 0 9px var(--orange), inset 0 0 0 11px var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }
.checks { list-style: none; display: grid; gap: .7rem; margin: 1.5rem 0 2rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--orange); margin-top: .15rem; }
.section:not(.section--dark) .checks svg { color: var(--orange-deep); }
@media (max-width: 760px) { .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: center; } .guarantee .checks { justify-items: start; text-align: left; } .guarantee .btn-row { justify-content: center; } }

/* ---------- 18. Testimonials (placeholders) ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote { border: 2px dashed rgba(10, 30, 94,.28); border-radius: var(--radius-lg); padding: 1.7rem; background: rgba(255,255,255,.35); position: relative; }
.quote .ph { position: absolute; top: -12px; left: 18px; background: var(--chalk); padding: 0 .5rem; font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-deep); }
.quote blockquote { margin: 0 0 1.2rem; font-size: 1.1rem; font-weight: 600; line-height: 1.45; color: #6a717c; }
.quote figcaption { display: flex; align-items: center; gap: .8rem; font-size: .9rem; color: var(--muted); }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: repeating-linear-gradient(45deg, #ddd6c8 0 6px, #e9e3d6 6px 12px); flex: none; }

/* ---------- 19. Scarcity meter ---------- */
.slots { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem; background: var(--ink); color: var(--chalk); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.slots-meter { display: flex; gap: 6px; }
.slots-meter i { width: 26px; height: 40px; border-radius: 6px; background: var(--orange); }
.slots-meter i.taken { background: var(--ink-3); }
.slots p { margin: 0; flex: 1; min-width: 240px; }
.slots strong { color: var(--orange); }

/* ---------- 20. FAQ ---------- */
.faq { max-width: 860px; margin: 3rem auto 0; border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.35rem .25rem; font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 36px; height: 36px; flex: none; border-radius: 50%; border: 2px solid var(--ink); position: relative; transition: transform .3s var(--ease), background .2s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq summary .pm::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq details[open] summary .pm { background: var(--orange); border-color: var(--orange); }
.faq details[open] summary .pm::after { transform: translate(-50%, -50%) rotate(0); }
.faq summary:hover { color: var(--orange-deep); }
.faq .answer { padding: 0 3.5rem 1.5rem .25rem; color: #333a44; }
.faq .answer p:last-child { margin: 0; }

/* ---------- 21. Closing CTA ---------- */
.closer { text-align: center; overflow: hidden; }
.closer .display { font-size: clamp(2.6rem, 1.2rem + 6.5vw, 6.5rem); max-width: 14ch; margin-inline: auto; }
.closer .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- 22. Page hero (inner pages) ---------- */
.page-hero { background: var(--ink); color: var(--chalk); padding: clamp(3rem, 2rem + 5vw, 6.5rem) 0 clamp(3rem, 2rem + 4vw, 5rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: repeating-linear-gradient(-45deg, var(--orange) 0 14px, var(--ink) 14px 28px); }
.page-hero .display { font-size: clamp(2.6rem, 1.4rem + 5.5vw, 6rem); max-width: 15ch; }
.page-hero .lead { color: #c9cfd8; }

/* ---------- 23. Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; align-items: stretch; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(10, 30, 94,.5); }
.plan--pop { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.plan--pop .fine, .plan--pop .plan-for { color: var(--muted-dark); }
.plan-badge { position: absolute; top: -14px; left: 1.75rem; background: var(--orange); color: var(--ink); font-family: var(--mono); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px; }
.plan h2 { font-size: 1.5rem; font-stretch: 80%; text-transform: uppercase; font-weight: 850; margin-bottom: .2rem; }
.plan-for { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.price { display: flex; align-items: flex-start; gap: .2rem; font-weight: 850; font-stretch: 62%; line-height: .85; margin-bottom: .4rem; }
.price sup { font-size: 1.8rem; margin-top: .3rem; }
.price span { font-size: 4.5rem; }
.plan .checks { margin: 1.4rem 0 1.8rem; flex: 1; font-size: .98rem; }
.plan .checks li { font-weight: 500; }
.plan--pop .checks svg { color: var(--orange); }
.compare { width: 100%; border-collapse: collapse; margin-top: 2.5rem; font-size: .98rem; background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--ink); color: var(--chalk); font-size: .92rem; }
.compare thead th.us { background: var(--orange); color: var(--ink); }
.compare td.us { background: rgba(255, 198, 41,.08); font-weight: 650; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll .compare { min-width: 640px; }
.addon { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; margin-top: 2rem; background: var(--paper); }
.addon h3 { margin: 0 0 .3rem; }
.addon p { margin: 0; color: var(--muted); }
.addon .amt { font-size: 2.2rem; font-weight: 850; font-stretch: 65%; white-space: nowrap; }
@media (max-width: 600px) { .addon { grid-template-columns: 1fr; } }

/* ---------- 24. About ---------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; } }
.photo-ph { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: var(--ink); color: var(--muted-dark); display: grid; place-items: center; text-align: center; padding: 2rem; position: relative; overflow: hidden; border: 2px dashed rgba(255,255,255,.2); }
.photo-ph svg { width: 45%; opacity: .35; margin: 0 auto 1rem; }
.photo-ph span { font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value { border-top: 4px solid var(--orange); padding-top: 1.2rem; }
.value p { color: var(--muted-dark); margin: 0; }

/* ---------- 25. Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: 12px 12px 0 var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.field label .opt { font-weight: 400; color: var(--muted); font-size: .85rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem; border-radius: 12px; border: 1.5px solid #b9bec6; background: #fff;
  font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255, 198, 41,.35); }
.field input:user-invalid, .field select:user-invalid { border-color: #b42318; }
.hp { position: absolute; left: -9999px; }
.form-status { margin-top: 1rem; font-weight: 600; min-height: 1.5em; }
.form-status.error { color: #b42318; }
.form-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; margin-top: 1.4rem; }
.side-card { background: var(--ink); color: var(--chalk); border-radius: var(--radius-lg); padding: 2rem; }
.side-card h2 { font-size: 1.5rem; font-stretch: 80%; text-transform: uppercase; }
.side-card ol { padding-left: 1.2rem; margin: 0 0 1.5rem; display: grid; gap: .8rem; color: var(--muted-dark); }
.side-card ol strong { color: var(--chalk); }
.contact-lines { list-style: none; display: grid; gap: .8rem; border-top: 1px solid var(--line-dark); padding-top: 1.4rem; }
.contact-lines a { color: var(--chalk); font-weight: 700; text-decoration: none; }
.contact-lines a:hover { color: var(--orange); }
.contact-lines span { display: block; font-size: .8rem; color: var(--muted-dark); font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- 26. Prose (privacy) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1em; }
.prose li { margin-bottom: .4rem; }

/* ---------- 27. Footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-dark); padding: 4.5rem 0 7rem; border-top: 10px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo { color: var(--chalk); margin-bottom: 1rem; }
.site-footer h2 { font-size: .8rem; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--chalk); margin-bottom: 1rem; }
.site-footer ul { list-style: none; display: grid; gap: .5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .88rem; }
.soon { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; margin-top: 1rem; }
.soon::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
@media (min-width: 901px) { .site-footer { padding-bottom: 3rem; } }

/* ---------- 28. Mobile action bar (click-to-call) ---------- */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: .5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(10, 30, 94,.96); border-top: 1px solid var(--line-dark);
    transform: translateY(110%); transition: transform .35s var(--ease);
  }
  .mobile-bar.is-on { transform: none; }
  .mobile-bar .btn { min-height: 50px; padding: .6rem .8rem; font-size: .98rem; }
  .mobile-bar .btn--ghost { color: var(--chalk); }
}

/* ---------- 29. Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 30. 404 ---------- */
.nf { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; text-align: center; background: var(--ink); color: var(--chalk); padding: 4rem 0; }
.nf .code { font-size: clamp(7rem, 30vw, 16rem); font-weight: 900; font-stretch: 62%; line-height: .8; color: transparent; -webkit-text-stroke: 3px var(--orange); }

/* ---------- 31. Reduced motion: everything calm and fully visible ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .ticker-track { animation: none !important; }
  .seal svg.ring { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .ps-typed { width: 16ch; }
}

/* ---------- 32. Print ---------- */
@media print { .site-header, .mobile-bar, .ticker, .site-footer { display: none; } body { background: #fff; } }

/* ---------- 33. Small fixes ---------- */
.btn svg { width: 20px; height: 20px; flex: none; }
.closer .lead { margin-inline: auto; }
figure.quote { margin: 0; }
.header-cta .btn { white-space: nowrap; }
@media (max-width: 640px) { .ba-long { display: none; } }
@media (max-width: 420px) {
  .header-inner { gap: .5rem; }
  .header-cta { gap: .4rem; }
  .header-cta .btn { padding: .5rem .75rem; font-size: .85rem; min-height: 42px; }
  .logo { font-size: 1.05rem; gap: .45rem; }
  .nav-toggle { width: 42px; height: 42px; }
}
@media (max-width: 359px) { .header-cta .btn { display: none; } }
@media (max-width: 900px) { .phone-stage { max-width: 440px; margin-inline: auto; width: 100%; } }

/* ---------- 34. Copy-brief additions ---------- */
.cta-note { margin: .75rem 0 0; font-size: .9rem; color: var(--muted-dark); }
.closer .cta-note { margin-top: 1rem; }
.stat-note { margin: .5rem .25rem 0; font-size: .95rem; color: var(--muted); font-weight: 600; }
.calc-caveat { margin-top: .75rem !important; font-size: .88rem; font-weight: 500 !important; opacity: .85; }
.band-list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; margin-top: .9rem; font-weight: 700; }
.band-list li::before { content: "✓ "; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .perks { grid-template-columns: 1fr; } }
.perk { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--orange-deep); border-radius: var(--radius); padding: 1.6rem; }
.perk p { color: var(--muted); margin: .4rem 0 0; }
.section:not(.section--dark) .lead + .lead { margin-top: -.25rem; }

/* ---------- 35. Customer path: 01 search → 02 website → 03 contact ---------- */
.path-section { overflow: hidden; }
.path-grid { position: absolute; inset: 0; opacity: .45; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); }
.path-section .wrap { position: relative; }
.path { list-style: none; padding: 0; margin: 3.25rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.25rem; position: relative; --ui-border: #22367a; --ui-muted: #5b6b8f; }
/* thin yellow technical line linking the three steps */
.path-line { position: absolute; left: 28px; right: 28px; top: 27px; height: 2px; background: var(--orange); transform-origin: left center; pointer-events: none; }
.path-line::after { content: ""; position: absolute; right: -2px; top: -4px; border: 5px solid transparent; border-left: 8px solid var(--orange); border-right: 0; }
.js .path-line.reveal { opacity: 1; transform: scaleX(0); transition: transform 1.2s var(--ease) .2s; }
.js .path-line.reveal.is-in { transform: scaleX(1); }
.path-card { position: relative; display: flex; flex-direction: column; transition: transform .35s var(--ease); }
.path-card:hover { transform: translateY(-6px); }
.path-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.path-num { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: var(--ink); border: 2px solid var(--orange); font-size: 1.7rem; font-weight: 850; font-stretch: 62%; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--orange); }
.path-title { margin: 0; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 850; font-stretch: 68%; text-transform: uppercase; line-height: .95; letter-spacing: -.005em; background: var(--ink); padding-right: .6rem; position: relative; z-index: 1; }
.path-copy { margin: 1rem 0 0; color: var(--muted-dark); font-size: .98rem; }
/* shared visual frame */
.pv { position: relative; height: 300px; border-radius: 14px; border: 1.5px solid var(--ui-border); background: var(--ink-2); overflow: hidden; padding: 22px; display: flex; flex-direction: column; justify-content: center; transition: border-color .3s; }
.pv::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.pv > * { position: relative; }
.path-card:hover .pv { border-color: rgba(255,198,41,.55); }
.pv .ic { width: 14px; height: 14px; flex: none; }
.pv, .pv * { box-sizing: border-box; }
.pv [class^="sq-"], .pv [class^="br"], .pv [class^="qf"] { font-family: var(--font); }

/* --- 01 search --- */
.sq-bar { display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-radius: 10px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; border: 2px solid var(--orange); margin-bottom: 12px; }
.sq-typed { display: inline-block; overflow: hidden; white-space: nowrap; border-right: 2px solid var(--ink); width: 18ch; }
.sq-card { background: #fff; color: var(--ink); border-radius: 12px; border: 1.5px solid #c9d3ec; padding: 14px 14px 12px; box-shadow: 0 10px 0 -4px rgba(0,0,0,.25); }
.sq-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.sq-name { display: block; font-size: 17px; font-weight: 850; font-stretch: 70%; text-transform: uppercase; letter-spacing: .01em; line-height: 1.05; }
.sq-cat { display: block; font-size: 11.5px; color: var(--ui-muted); margin-top: 2px; }
.sq-pin { position: relative; width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: var(--orange); display: grid; place-items: center; flex: none; }
.sq-pin::after { content: ""; position: absolute; inset: -4px; border-radius: 11px; border: 2px solid var(--orange); opacity: 0; }
.sq-rating { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; }
.sq-rating b { font-size: 13px; } .sq-stars { color: #e0a800; letter-spacing: 1px; } .sq-count { color: var(--ui-muted); }
.sq-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 6px; font-size: 11.5px; color: var(--ui-muted); }
.sq-open { display: inline-flex; align-items: center; gap: 5px; color: #127a44; font-weight: 700; }
.sq-open i { width: 7px; height: 7px; border-radius: 50%; background: #1faa5c; }
.sq-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.sq-btn { display: flex; align-items: center; justify-content: center; gap: 6px; height: 34px; border-radius: 8px; border: 1.5px solid var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.sq-btn--hot { background: var(--orange); border-color: var(--orange); position: relative; }

/* --- 02 website --- */
.pv-site { justify-content: flex-start; padding-top: 26px; }
.br { background: #fff; border-radius: 12px; border: 1.5px solid #c9d3ec; overflow: hidden; color: var(--ink); box-shadow: 0 10px 0 -4px rgba(0,0,0,.25); }
.br-bar { display: flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; background: #eef1f8; border-bottom: 1px solid #d5dcee; }
.br-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c2cadf; }
.br-bar span { margin-left: 8px; flex: 1; height: 15px; border-radius: 5px; background: #fff; font-size: 9px; line-height: 15px; padding-left: 7px; color: var(--ui-muted); }
.br-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--ink); color: #fff; }
.br-logo { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 850; font-stretch: 70%; text-transform: uppercase; letter-spacing: .03em; }
.br-logo b { width: 12px; height: 12px; border-radius: 3px; background: var(--orange); }
.br-nav { display: flex; gap: 6px; } .br-nav i { width: 18px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.45); }
.br-hero { display: block; padding: 12px 12px 12px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: #fff; position: relative; overflow: hidden; }
.br-h1 { display: block; font-size: 24px; font-weight: 850; font-stretch: 66%; text-transform: uppercase; line-height: .9; position: relative; z-index: 1; }
.br-h1 em { font-style: normal; color: var(--orange); }
.br-sub { display: block; font-size: 9.5px; color: #c4cfee; margin-top: 5px; letter-spacing: .04em; }
.br-ctas { display: flex; gap: 6px; margin-top: 9px; }
.br-cta { display: inline-block; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 6px 9px; border-radius: 6px; background: var(--orange); color: var(--ink); position: relative; }
.br-cta--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.7); }
.br-svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 9px 10px 11px; }
.br-svcs span { display: flex; flex-direction: column; gap: 4px; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: 7px 7px 6px; border: 1.5px solid #d5dcee; border-radius: 7px; line-height: 1.1; }
.br-svcs .ic { color: var(--ink); width: 15px; height: 15px; }
.br-badge { position: absolute; right: 36px; top: 96px; display: flex; flex-direction: column; background: var(--orange); color: var(--ink); border-radius: 10px; padding: 7px 11px; border: 2px solid var(--ink); box-shadow: 0 6px 0 -2px rgba(0,0,0,.3); line-height: 1.1; }
.br-badge b { font-size: 16px; font-weight: 850; font-stretch: 70%; } .br-badge span { font-size: 10px; font-weight: 700; }

/* --- 03 contact --- */
.qf { background: #fff; color: var(--ink); border-radius: 12px; border: 1.5px solid #c9d3ec; padding: 14px; display: flex; flex-direction: column; gap: 7px; max-width: 280px; width: 100%; margin: 0 auto; box-shadow: 0 10px 0 -4px rgba(0,0,0,.25); }
.qf-title { font-size: 16px; font-weight: 850; font-stretch: 70%; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 2px; }
.qf-row { display: block; border: 1.5px solid #d5dcee; border-radius: 7px; padding: 4px 8px 5px; font-size: 12px; font-weight: 600; }
.qf-row small { display: block; font-size: 8.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ui-muted); }
.qf-half { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; border: 0; padding: 0; }
.qf-half > span { border: 1.5px solid #d5dcee; border-radius: 7px; padding: 4px 8px 5px; }
.qf-submit { position: relative; height: 36px; margin-top: 2px; }
.qf-btn, .qf-done { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.qf-btn { background: var(--orange); opacity: 0; }
.qf-done { background: #e8f7ee; color: #0f6b3a; border: 1.5px solid #9fdcb8; }
.qf-done .ic { width: 16px; height: 16px; background: #1faa5c; color: #fff; border-radius: 50%; padding: 2px; stroke-width: 3; }
.lead-badge { position: absolute; right: 14px; top: 16px; display: flex; align-items: center; gap: 7px; background: var(--ink); color: #fff; border: 2px solid var(--orange); border-radius: 8px; padding: 6px 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; box-shadow: 0 6px 0 -2px rgba(0,0,0,.3); }
.lead-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.pv-lead::after { content: ""; position: absolute; left: 22px; right: 22px; bottom: 16px; height: 3px; border-radius: 2px; background: var(--orange); transform-origin: left; }

/* --- one-time micro-animations (play when the card scrolls in; final state is the default) --- */
.path-card { --t0: calc(var(--d, 0s) + .5s); }
.path-card.is-in .sq-typed { animation: sqType 1s steps(18) var(--t0) both, sqCaret .7s step-end calc(var(--t0) + 1s) 3 both; }
.path-card.is-in .sq-card { animation: pvUp .6s var(--ease) calc(var(--t0) + .9s) both; }
.path-card.is-in .sq-rating { animation: pvFade .5s ease calc(var(--t0) + 1.3s) both; }
.path-card.is-in .sq-acts { animation: pvFade .5s ease calc(var(--t0) + 1.55s) both; }
.path-card.is-in .sq-pin::after { animation: pvPulse 1.2s ease-out calc(var(--t0) + 1.9s) 2; }
.path-card.is-in .br { animation: pvUp .7s var(--ease) var(--t0) both; }
.path-card.is-in .br-hero > * { animation: pvFade .5s ease calc(var(--t0) + .5s) both; }
.path-card.is-in .br-svcs span { animation: pvSlide .5s var(--ease) calc(var(--t0) + .8s) both; }
.path-card.is-in .br-svcs span:nth-child(2) { animation-delay: calc(var(--t0) + .9s); }
.path-card.is-in .br-svcs span:nth-child(3) { animation-delay: calc(var(--t0) + 1s); }
.path-card.is-in .br-badge { animation: pvBadge .5s var(--ease) calc(var(--t0) + 1.35s) both; }
.path-card.is-in .br-cta:first-child { animation: pvGlow 1.1s ease calc(var(--t0) + 1.8s) 1; }
.path-card.is-in .qf { animation: pvUp .6s var(--ease) var(--t0) both; }
.path-card.is-in .qf-btn { animation: qfBtn 1.6s ease calc(var(--t0) + .4s) both; }
.path-card.is-in .qf-done { animation: pvFade .4s ease calc(var(--t0) + 1.8s) both; }
.path-card.is-in .lead-badge { animation: pvBadgeSide .5s var(--ease) calc(var(--t0) + 2.1s) both; }
.path-card.is-in .pv-lead::after { animation: pvLine .7s var(--ease) calc(var(--t0) + 2.3s) both; }
@keyframes sqType { from { width: 0; } to { width: 18ch; } }
@keyframes sqCaret { 50% { border-color: transparent; } 100% { border-color: transparent; } }
@keyframes pvUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pvFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pvSlide { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
@keyframes pvBadge { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pvBadgeSide { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes pvPulse { 0% { opacity: .9; transform: scale(.9); } 100% { opacity: 0; transform: scale(1.35); } }
@keyframes pvGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,198,41,0); } 40% { box-shadow: 0 0 0 5px rgba(255,198,41,.35); } }
@keyframes qfBtn { 0% { opacity: 1; transform: none; } 45% { opacity: 1; transform: none; } 55% { opacity: 1; transform: scale(.95); } 70% { opacity: 1; transform: none; } 100% { opacity: 0; } }
@keyframes pvLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 960px) {
  .path { grid-template-columns: 1fr; gap: 2.5rem; max-width: 520px; padding-left: 0; }
  .path-line { left: 27px; right: auto; top: 28px; bottom: 60px; width: 2px; height: auto; transform-origin: top center; }
  .path-line::after { right: -4px; top: auto; bottom: -2px; border: 5px solid transparent; border-top: 8px solid var(--orange); border-bottom: 0; }
  .js .path-line.reveal { transform: scaleY(0); } .js .path-line.reveal.is-in { transform: scaleY(1); }
  .path-card .pv, .path-card .path-copy { margin-left: 72px; }
  .pv { height: 290px; padding: 18px; }
  .path-grid { opacity: .25; }
}
@media (max-width: 520px) {
  .path-card .pv, .path-card .path-copy { margin-left: 0; }
  .path-line { display: none; }
  .pv { height: auto; min-height: 270px; }
  .path-copy { font-size: 1rem; }
}
@media (max-width: 520px) {
  .path-card:not(:last-of-type)::after { content: ""; position: absolute; left: 27px; bottom: -34px; width: 2px; height: 26px; background: var(--orange); }
  .path-card:not(:last-of-type)::before { content: ""; position: absolute; left: 23px; bottom: -38px; border: 5px solid transparent; border-top: 7px solid var(--orange); border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) { .sq-typed { width: 18ch; } .js .path-line.reveal { transform: none; } }

/* ---------- 36. Feature card: secondary "AI search ready" disclosure ---------- */
.feat-more { margin-top: .9rem; border-top: 1px solid var(--line-dark); padding-top: .7rem; font-size: .86rem; color: var(--muted-dark); }
.feat-more summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); min-height: 32px; }
.feat-more summary::-webkit-details-marker { display: none; }
.feat-more summary::after { content: "+"; font-weight: 700; color: var(--orange); }
.feat-more[open] summary::after { content: "−"; }
.feat-more summary:hover { color: var(--chalk); }
.feat-more p { margin: .5rem 0 0; font-size: .86rem; }
.feat-more ul { list-style: none; padding: 0; margin: .6rem 0 0; display: grid; gap: .45rem; }
.feat-more li { line-height: 1.4; } .feat-more b { color: var(--chalk); font-weight: 700; }
.feat-more .feat-disclaim { font-style: italic; opacity: .85; }
