/* ==========================================================================
   LocalHiveSeo — "HEX MARKS THE SPOT" · Asphalt & Honey
   One glyph (the hex-pin), flat ink + honey + blueprint line. No gradients,
   no glass, no shadows. Light = day shift, dark = night shift.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */

:root {
  /* Day shift */
  --bg: #F6F2E9;
  --surface: #FDFBF5;
  --surface-2: #EFE9DB;
  --ink: #191713;
  --muted: #5C564A;
  --divider: #D8D1C0;
  --honey: #E89B0C;
  --blueprint: #235789;
  --verified: #2F6B3A;
  --on-honey: #191713;
  --footer-bg: #191713;
  --footer-ink: #EFE9DC;
  --footer-muted: #A69C88;

  --font-display: "Cabinet Grotesk", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Supreme", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --wrap: 1160px;
  --pad: clamp(18px, 4vw, 40px);
  --sect: clamp(72px, 10vw, 128px);
  --line: 1.5px;
}

[data-theme="dark"] {
  /* Night shift */
  --bg: #141310;
  --surface: #1C1A16;
  --surface-2: #232019;
  --ink: #EFE9DC;
  --muted: #A69C88;
  --divider: #38342B;
  --honey: #FFB84D;
  --blueprint: #7FA9D4;
  --verified: #7BC188;
  --on-honey: #141310;
  --footer-bg: #0E0D0B;
  --footer-ink: #EFE9DC;
  --footer-muted: #A69C88;
}

/* No-JS fallback: honour OS preference even without the inline script. */
@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --bg: #141310;
    --surface: #1C1A16;
    --surface-2: #232019;
    --ink: #EFE9DC;
    --muted: #A69C88;
    --divider: #38342B;
    --honey: #FFB84D;
    --blueprint: #7FA9D4;
    --verified: #7BC188;
    --on-honey: #141310;
    --footer-bg: #0E0D0B;
  }
  html:not([data-theme]) .logo-word .lw-honey { color: #FFB84D; }
}

/* ---------- 2. Reset / base ---------- */

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

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-variant-numeric: lining-nums;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }

img, svg { display: block; }

a { color: var(--blueprint); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2.5px; }

:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}
.contact :focus-visible { outline-color: var(--on-honey); }

::selection { background: var(--honey); color: var(--on-honey); }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px;
  font: 700 0.85rem var(--font-body);
  text-decoration: none;
}
.skip-link:focus-visible { top: 12px; }

/* thin honey scroll-progress bar, above the sticky header */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 90;
  background: var(--honey);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

section { scroll-margin-top: 84px; }

/* Numbers: always tabular */
.fig, .pkg-price, .pin-num, .lad-top, .lad-delta, .rank-mono, .rank-big,
.tl-when, .sec-num, .case-meta, .pin-row-label, .cta-note, .roi-note {
  font-variant-numeric: tabular-nums lining-nums;
}

/* ---------- 3. The hex-pin glyph ---------- */

.hp { display: inline-block; fill: none; }

/* line mode default; individual uses override */
.hp use { pointer-events: none; }

.li-pin, .eb-pin, .cell-pin { width: 11px; height: 14px; }

/* ---------- 4. Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  border-bottom: var(--line) solid var(--divider);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.logo-mark {
  width: 22px; height: 27.5px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round;
  color: var(--ink);
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}
.lw-ink { color: var(--ink); }
.lw-honey { color: var(--honey); }
/* Honey caps at this weight/size qualify as large graphic text in dark mode;
   in light mode reinforce with ink underline-free but darker tone via mix: */
:root:not([data-theme="dark"]) .lw-honey,
/* darker honey-brown so 16px bold caps pass 4.5:1 on the bone background */
html[data-theme="light"] .lw-honey { color: #926005; } /* 4.8:1 on bone — AA */

.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font: 500 0.92rem var(--font-body);
  color: var(--ink);
  text-decoration: none;
}
.site-nav a:hover { color: var(--blueprint); text-decoration: underline; text-underline-offset: 4px; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-cta {
  font: 700 0.9rem var(--font-body);
  color: var(--ink);
  text-decoration: none;
  border: var(--line) solid var(--ink);
  padding: 8px 16px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--ink); color: var(--bg); }

.theme-toggle {
  position: relative;
  isolation: isolate;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  background: var(--surface-2);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.toggle-pin { width: 15px; height: 19px; stroke: currentColor; stroke-width: 2.4; fill: none; }
[data-theme="dark"] .toggle-pin { fill: var(--honey); stroke: var(--honey); stroke-width: 1; }
.theme-toggle:hover::before { background: var(--divider); }

/* ---------- 5. Hero ---------- */

.hero {
  border-bottom: var(--line) solid var(--divider);
  padding-block: clamp(48px, 7vw, 96px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 0.78rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eb-pin { fill: var(--honey); stroke: var(--ink); stroke-width: 1.4; flex: none; }

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 13ch;
}
/* guard: keep the unbreakable "Google Maps." inside the left column while
   the hero is still two-column but the viewport is narrow */
@media (min-width: 901px) and (max-width: 1150px) {
  .hero-h1 { font-size: clamp(2.75rem, 6.8vw, 6rem); }
}

/* Honey rule under "Google Maps." — draws in on load. */
.hl {
  background-image: linear-gradient(var(--honey), var(--honey));
  background-repeat: no-repeat;
  background-size: 100% 0.14em;
  background-position: 0 96%;
  padding-bottom: 0.04em;
}
[data-theme="dark"] .hl { color: var(--honey); }

@media (prefers-reduced-motion: no-preference) {
  .js .hero-h1 .hl {
    background-size: 0% 0.14em;
    animation: rule-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
  }
}
@keyframes rule-in { to { background-size: 100% 0.14em; } }

.hero-sub {
  margin-top: 26px;
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--muted);
}

.hero-cta-row { margin-top: 34px; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 16px 34px;
  font: 700 1.02rem var(--font-body);
  color: var(--on-honey);
  text-decoration: none;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--honey);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
  transition: transform 150ms ease;
}
.btn:hover::before { transform: scaleY(1.06); }

/* honey sheen sweep + 2px lift on hover — flat, no heavy shadow */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.32) 50%, transparent 58%);
  transform: translateX(-101%);
}
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 180ms ease; }
  .btn:hover, .btn:focus-visible { transform: translateY(-2px); }
  .btn:hover::after, .btn:focus-visible::after {
    transform: translateX(101%);
    transition: transform 480ms ease;
  }
  .header-cta { transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
  .header-cta:hover { transform: translateY(-2px); }
}

.cta-note {
  margin-top: 18px;
  font: 400 0.78rem var(--font-mono);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.7;
}

/* Hero map-pack sketch */
.hero-viz { min-width: 0; }
.map-pack { width: 100%; height: auto; max-width: 520px; margin-left: auto; }

.map-pack .streets path {
  stroke: var(--blueprint);
  stroke-width: 1.2;
  stroke-dasharray: 4 8;
  fill: none;
  opacity: 0.45;
}
.map-pack .draw {
  fill: var(--surface);
  stroke: var(--blueprint);
  stroke-width: 1.5;
}
.map-pack .row1 .draw { fill: none; stroke: var(--ink); stroke-width: 1.7; }
.row1-fill { fill: var(--honey); }
.row1 use { fill: var(--on-honey); }
.rank-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  fill: var(--on-honey);
}
.rank-mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 19px;
  fill: var(--muted);
}
.bar { stroke-linecap: round; stroke-width: 7; }
.bar-ink { stroke: var(--on-honey); opacity: 0.85; }
.bar-ink.dim { opacity: 0.45; }
.bar-bp { stroke: var(--blueprint); opacity: 0.4; }
.bar-bp.dim { opacity: 0.22; }

@media (prefers-reduced-motion: no-preference) {
  .js .map-pack .streets path { animation: fade-in 0.9s ease 0.1s backwards; }
  .js .map-pack .draw {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw-line 0.9s ease-out 0.15s forwards;
  }
  .js .map-pack .row1-fill { animation: fade-in 0.45s ease 0.75s backwards; }
  .js .map-pack .bar { animation: fade-in 0.45s ease 0.9s backwards; }
  .js .map-pack .rank-mono { animation: fade-in 0.45s ease 0.9s backwards; }
  .js .map-pack .pin-drop { animation: pin-drop 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.25) 1s backwards; }
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes fade-in { from { opacity: 0; } }
@keyframes pin-drop {
  from { transform: translateY(-28px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ---------- 6. Sections & wayfinding ---------- */

.section { padding-block: var(--sect); }
.section--band {
  background: var(--surface);
  border-block: var(--line) solid var(--divider);
}

.sec-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 3.5vw, 36px);
}
.sec-mark {
  position: relative;
  width: 34px; height: 42.5px;
  flex: none;
  color: var(--blueprint);
}
.sec-mark .hp {
  width: 100%; height: 100%;
  stroke: currentColor; stroke-width: 1.7; fill: none;
}
.sec-num {
  position: absolute;
  inset: 8% 0 38% 0;
  display: grid;
  place-items: center;
  font: 700 0.72rem var(--font-mono);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.sec-label {
  font: 500 0.78rem var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sec-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.sec-h2--statement {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 20ch;
}

.prose { margin-top: clamp(20px, 3vw, 30px); }
.prose p { max-width: 65ch; }
.prose p + p { margin-top: 1.1em; }
.prose.lead { color: var(--ink); opacity: 0.74; font-size: 1.1rem; max-width: 58ch; }
.prose.closing { color: var(--ink); opacity: 0.7; margin-top: clamp(26px, 4vw, 40px); }

.uline {
  text-decoration: underline;
  text-decoration-color: var(--honey);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-top: 1.2em;
}

/* ---------- 7. 02 How it works ---------- */

.steps {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  position: relative;
}
/* dashed route line behind the step markers */
.steps::before {
  content: "";
  position: absolute;
  top: 26px; left: 4%; right: 4%;
  border-top: 1.5px dashed var(--blueprint);
  opacity: 0.5;
}
.step { position: relative; }
.step-mark {
  position: relative;
  display: block;
  width: 44px; height: 55px;
  color: var(--blueprint);
  background: var(--bg);
  margin-bottom: 16px;
}
.section--band .step-mark { background: var(--surface); }
.step-mark .hp {
  width: 100%; height: 100%;
  stroke: currentColor; stroke-width: 1.7; fill: none;
}
.step--build .step-mark { color: var(--ink); }
.step--build .step-mark .hp { fill: var(--honey); stroke: var(--ink); stroke-width: 1.4; }
.step-mark span {
  position: absolute;
  inset: 8% 0 38% 0;
  display: grid;
  place-items: center;
  font: 700 1rem var(--font-mono);
  color: var(--ink);
}
.step-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.step-num {
  display: block;
  font: 500 0.72rem var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.step p { color: var(--muted); font-size: 0.98rem; }
.step--build p { color: var(--ink); }

.build-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: var(--line) solid var(--divider);
  background: var(--surface-2);
  display: grid;
  gap: 8px;
}
.build-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 0.8rem var(--font-mono);
}
.li-pin { fill: var(--honey); stroke: var(--ink); stroke-width: 1.6; flex: none; }

/* ---------- 8. 03 Results — metric cards ---------- */

.cases {
  margin-top: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.case {
  border: var(--line) solid var(--divider);
  border-top: 3px solid var(--honey);
  background: var(--surface);
  padding: clamp(18px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case--lead { grid-column: span 2; }
.case--legal { grid-column: 1 / -1; }

.case-content { display: flex; flex-direction: column; }
.case-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.case-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}
.case-loc { font: 500 0.78rem var(--font-mono); color: var(--muted); }
.case-meta {
  margin-top: 6px;
  font: 500 0.72rem var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blueprint);
}
.case-body { margin-top: 12px; font-size: 0.98rem; }
.fig { font: 700 0.92em var(--font-mono); white-space: nowrap; }

/* count-up: brief honey flash when a metric finishes counting */
@media (prefers-reduced-motion: no-preference) {
  .m-after.count-done { animation: count-flash 0.6s ease; }
}
@keyframes count-flash {
  0%   { color: var(--honey); }
  100% { color: var(--ink); }
}

/* metric banner — labeled before→after, the proof up top */
.case-metric {
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--divider);
}
.m-label {
  display: block;
  font: 500 0.66rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.m-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  line-height: 1;
}
.m-before {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--muted);
  text-decoration-thickness: 2px;
}
.m-arrow {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blueprint);
  line-height: 1;
}
.m-after {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.m-delta {
  margin-top: 11px;
  font: 700 0.82rem var(--font-mono);
  color: var(--verified);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- 9. 04 Packages — tier staircase ---------- */

.bill-toggle {
  margin-top: clamp(26px, 4vw, 40px);
  display: inline-flex;
  border: var(--line) solid var(--ink);
}
.bill-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 700 0.9rem var(--font-body);
  padding: 11px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bill-toggle button[aria-pressed="true"] {
  background: var(--honey);
  color: var(--on-honey);
}
.tog-rec {
  font: 500 0.62rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 2px 6px;
}

.pkg-stairs {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.pkg {
  margin-top: var(--lift, 0px);
  border: var(--line) solid var(--divider);
  border-top: 3px solid var(--divider);
  background: var(--surface);
  padding: 22px 18px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.section--band .pkg { background: var(--bg); }
.pkg--exec {
  border-color: var(--ink);
  border-top: 3px solid var(--honey);
}
.pkg-flag {
  position: absolute;
  top: -15px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--honey);
  color: var(--on-honey);
  font: 700 0.66rem var(--font-mono);
  letter-spacing: 0.12em;
  padding: 5px 10px;
}
.pkg-flag .hp { width: 10px; height: 12.5px; fill: currentColor; }
.pkg-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.pkg-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.pkg--exec .pkg-price { color: var(--ink); }
.pkg-desc {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.pkg--exec .pkg-desc { color: var(--ink); }

/* package hover lift — subtle, flat; gated behind no-preference below */
.pkg:hover { border-color: var(--honey); }
.pkg--exec:hover { border-color: var(--honey); }
@media (prefers-reduced-motion: no-preference) {
  .pkg { transition: transform 180ms ease, border-color 180ms ease; }
  .pkg:hover { transform: translateY(-4px); }
}

/* per-package spec list — sibling of .build-list: bordered box, mono rows */
.pkg-spec {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: var(--line) solid var(--divider);
  background: var(--surface-2);
  display: grid;
  gap: 7px;
}
.section--band .pkg-spec { background: var(--surface); }
.pkg--exec .pkg-spec { border-color: var(--ink); }
.ps-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.ps-row dt {
  font: 500 0.66rem var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.ps-row dd {
  margin: 0;
  font: 700 0.78rem var(--font-mono);
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
}
.ps-note {
  display: block;
  font: 400 0.62rem var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* one-off vs monthly */
.oneoff { margin-top: clamp(44px, 6vw, 64px); max-width: 760px; }
.sub-h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.2;
  max-width: 30ch;
}
#p-oneoff, #p-monthly {
  border-left: 3px solid transparent;
  padding-left: 14px;
  margin-left: -17px;
  transition: border-color 200ms ease;
}
#packages[data-bill="monthly"] #p-monthly,
#packages[data-bill="oneoff"] #p-oneoff {
  border-left-color: var(--honey);
}
.tag-rec {
  font: 500 0.68rem var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verified);
  border: 1px solid var(--verified);
  padding: 1px 6px;
  white-space: nowrap;
}

.roi-note {
  margin-top: clamp(26px, 4vw, 36px);
  border: var(--line) solid var(--divider);
  border-left: 3px solid var(--honey);
  background: var(--surface-2);
  padding: 18px 20px;
  font: 400 0.82rem var(--font-mono);
  line-height: 1.75;
  max-width: 62ch;
}
.section--band .roi-note { background: var(--bg); }

.section-cta { margin-top: clamp(24px, 4vw, 32px); }

/* ---------- 10. 05 Timeline — surveyor's baseline ---------- */

.timeline {
  margin-top: clamp(40px, 6vw, 60px);
  position: relative;
}
.tl-track {
  position: absolute;
  top: 13px; left: 0; right: 0;
  height: 2px;
  background: var(--divider);
}
.tl-progress {
  display: block;
  height: 100%;
  background: var(--honey);
  transform-origin: left center;
  transform: scaleX(1);
}
.tl-rows {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 36px);
}
.tl-row { position: relative; }
.tl-pin {
  display: block;
  width: 22px; height: 27.5px;
  margin-bottom: 14px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.tl-pin .hp {
  width: 100%; height: 100%;
  fill: var(--honey); stroke: var(--ink); stroke-width: 1.6;
}
.tl-when {
  font: 700 0.82rem var(--font-mono);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.tl-what { font-size: 0.94rem; color: var(--muted); max-width: 30ch; }

@media (prefers-reduced-motion: no-preference) {
  .js .tl-progress { transition: transform 1.4s cubic-bezier(0.3, 0.6, 0.2, 1) 0.2s; }
  .js .timeline:not(.in) .tl-progress { transform: scaleX(0); }
}

/* ---------- 11. 06 Industries — the honeycomb ---------- */

.trades {
  --cell-gap: 8px;
  list-style: none;
  margin: clamp(36px, 5vw, 54px) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  max-width: 980px;
  padding: 0 2%;
}
.trades li {
  grid-column: span 2;
  position: relative;
  aspect-ratio: 173 / 200;
  margin-bottom: -27%;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--divider);
  cursor: default;
}
/* honeycomb: rows of 5 / 6 / 5 — offset rows (5 cells) start at col 2 */
.trades li:nth-child(1)  { grid-column: 2 / span 2; }
.trades li:nth-child(12) { grid-column: 2 / span 2; }
.trades li:last-child { margin-bottom: 0; }

.trades li > span {
  position: absolute;
  inset: var(--line);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 26% 16%;
  font: 500 0.86rem var(--font-display);
  line-height: 1.25;
  transition: background 150ms ease, color 150ms ease;
}
.cell-pin { fill: none; stroke: var(--muted); stroke-width: 2; transition: all 150ms ease; }
.trades li:hover > span,
.trades li:focus-visible > span {
  background: var(--honey);
  color: var(--on-honey);
}
.trades li:hover .cell-pin,
.trades li:focus-visible .cell-pin {
  fill: var(--on-honey);
  stroke: var(--on-honey);
}
.trades li:focus-visible { outline: none; }
.trades li:focus-visible > span { box-shadow: inset 0 0 0 2px var(--ink); }

/* ---------- 12. 07 FAQ ---------- */

.faq {
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 760px;
  border-top: var(--line) solid var(--divider);
}
.qa { border-bottom: var(--line) solid var(--divider); }
.qa summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::marker { content: ""; }
.qa-pin {
  flex: none;
  width: 15px; height: 19px;
  transition: transform 200ms ease;
}
.qa-pin .hp {
  width: 100%; height: 100%;
  fill: none; stroke: var(--blueprint); stroke-width: 2.2;
}
.qa[open] .qa-pin { transform: rotate(90deg); }
.qa[open] .qa-pin .hp { fill: var(--honey); stroke: var(--ink); stroke-width: 1.6; }
.q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.25;
}
.qa summary:hover .q { color: var(--blueprint); }
.a {
  padding: 0 4px 24px 31px;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- 13. 08 Contact — the honey band ---------- */

.contact {
  background: var(--honey);
  color: var(--on-honey);
}
.contact .sec-mark { color: var(--on-honey); }
.contact .sec-num,
.contact .sec-label,
.contact .prose.lead { color: var(--on-honey); }
.contact .prose.lead { opacity: 0.85; }
.contact-email {
  margin-top: clamp(30px, 5vw, 48px);
}
.contact-email a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 3.6vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--on-honey);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}
.contact-email a:hover { text-decoration-thickness: 5px; }

/* ---------- 14. Footer — asphalt ---------- */

.footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding-block: clamp(48px, 7vw, 72px);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.footer .logo-mark { color: var(--footer-ink); }
.footer .lw-ink { color: var(--footer-ink); }
.footer .lw-honey { color: #FFB84D; }
.footer-line { font-size: 0.92rem; max-width: 70ch; }
.footer-line + .footer-line { margin-top: 10px; }
.footer-line.placeholder {
  font: 400 0.78rem var(--font-mono);
  color: var(--footer-muted);
}
.footer-optout {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--footer-muted);
  max-width: 70ch;
  line-height: 1.7;
}
.footer-copy {
  margin-top: 26px;
  font: 400 0.75rem var(--font-mono);
  color: var(--footer-muted);
}
.footer :focus-visible { outline-color: #FFB84D; }

/* ---------- 15. Mobile sticky CTA ---------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: var(--line) solid var(--divider);
  transform: translateY(110%);
  transition: transform 300ms ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  white-space: normal;
}

/* ---------- 16. Scroll reveals ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 450ms ease, transform 450ms ease;
  }
  .js [data-reveal].in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 17. Reduced motion: static end-states ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- 18. Responsive ---------- */

@media (max-width: 1080px) {
  .pkg-stairs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .pkg { margin-top: 0; }
  .pkg--exec { grid-column: span 2; }
  .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case--lead { grid-column: span 2; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-h1 { max-width: 14ch; }
  .map-pack { max-width: 440px; margin-left: 0; margin-top: 8px; }
  .map-pack .streets { display: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before {
    top: 0; bottom: 0; left: 21px; right: auto;
    border-top: 0;
    border-left: 1.5px dashed var(--blueprint);
  }
}

@media (max-width: 760px) {
  .cases { grid-template-columns: 1fr; }
  /* fix: spanning cards were forcing an implicit 2nd column on phones */
  .case--lead, .case--legal { grid-column: auto; }

  /* spec rows need the full width — stack the package cards */
  .pkg-stairs { grid-template-columns: 1fr; gap: 18px; }
  .pkg--exec { grid-column: auto; }
  .pkg-spec { padding: 12px 14px; }
  .ps-note { display: inline; margin-left: 6px; }

  .sticky-cta { display: block; }

  .timeline .tl-track {
    top: 0; bottom: 0; left: 10px; right: auto;
    width: 2px; height: auto;
  }
  .tl-progress {
    width: 100%; height: 100%;
    transform-origin: top center;
    transform: scaleY(1);
  }
  @media (prefers-reduced-motion: no-preference) {
    .js .timeline:not(.in) .tl-progress { transform: scaleY(0); }
  }
  .tl-rows { grid-template-columns: 1fr; gap: 28px; }
  .tl-row { padding-left: 40px; }
  .tl-pin { position: absolute; left: 0; top: 0; margin: 0; }
  .tl-what { max-width: 60ch; }

  /* honeycomb: rows of two, offset */
  .trades { grid-template-columns: repeat(5, minmax(0, 1fr)); max-width: 100%; padding: 0; }
  .trades li { margin-bottom: -27%; }
  .trades li:nth-child(4n+1) { grid-column: 1 / span 2; }
  .trades li:nth-child(4n+2) { grid-column: 3 / span 2; }
  .trades li:nth-child(4n+3) { grid-column: 2 / span 2; }
  .trades li:nth-child(4n)   { grid-column: 4 / span 2; }
  .trades li > span { font-size: 0.78rem; padding: 26% 14%; gap: 6px; }

  .oneoff #p-oneoff, .oneoff #p-monthly { margin-left: 0; padding-left: 12px; }
}

@media (max-width: 480px) {
  .header-cta { padding: 7px 12px; font-size: 0.82rem; }
  .logo-word { font-size: 0.94rem; }
  .btn { padding: 15px 26px; font-size: 0.98rem; white-space: normal; text-align: center; }
  .hero { padding-block: 40px 56px; }
  .hero-sub { margin-top: 20px; }

  .bill-toggle { width: 100%; }
  .bill-toggle button { flex: 1; justify-content: center; padding: 11px 10px; }
}
