/* ============================================================
   BUZZ — style.css
   Dark theme: #0A0A0A canvas · #F4FF01 accent · #2878F4 primary CTA
   Fonts: Bassig (display, self-hosted; single weight, slant is built into the
          drawing, so never apply font-style: italic or a bold weight to it)
          Helvetica system stack (body) · system mono (labels)
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1C1C1C;
  --line: rgba(255, 255, 255, 0.10);
  --yellow: #F4FF01;
  --yellow-dim: #C8D100;
  --blue: #2878F4;
  --blue-hover: #1B5FD0;
  --white: #FFFFFF;
  --text: #C9C9C9;
  --muted: #9C9C9C;
  --danger: #FF6B6B;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Bassig", "Arial Narrow", Impact, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --header-h: 72px;
  --radius: 10px;
  --container: 1180px;
}

/* ---------- Display webfont ---------- */
@font-face {
  font-family: "Bassig";
  src: url("../assets/fonts/Bassig.0f7e2b5e9d2d.woff2") format("woff2"),
       url("../assets/fonts/Bassig.89bab1e98ced.woff") format("woff"),
       url("../assets/fonts/Bassig.084040f6663a.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Component display rules (e.g. .stats-bar { display: grid }) must never
   override the hidden attribute. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
html.anim { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, blockquote, address { margin: 0; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--yellow); color: #0A0A0A;
  padding: 12px 20px; font-weight: 700; text-decoration: none;
  border-radius: 0 0 8px 8px; transition: top 0.2s;
}
.skip-link:focus-visible { top: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
}

/* ---------- Typography ---------- */
/* Bassig carries its own slant and ships in one weight — no italic, no bold.
   It is also much wider than the old condensed face, so the display scale
   below is sized for it. */
h1, h2, .step-num, .stat-num {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.5rem); text-wrap: balance; }
h2 { font-size: clamp(1.375rem, 2.9vw, 2.125rem); }
h3 { color: var(--white); font-size: 1.25rem; line-height: 1.3; }
.hl { color: var(--yellow); }

.kicker { color: var(--yellow); margin-bottom: 16px; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 6vw, 64px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px;
  border: 0; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-body);
  /* 19px bold on #2878F4 = WCAG large text, 4.16:1 passes AA */
  font-size: 1.1875rem; font-weight: 700; line-height: 1.2;
  text-decoration: none; text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(40, 120, 244, 0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--white); }
.btn-lg { min-height: 56px; padding: 14px 36px; }
.btn-block { width: 100%; }
.btn[disabled] { background: var(--surface-2); color: #8E8E8E; cursor: not-allowed; transform: none; box-shadow: none; }

.text-cta {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  color: var(--yellow); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.text-cta:hover { border-bottom-color: var(--yellow); }
.text-cta span { transition: transform 0.2s; }
.text-cta:hover span { transform: translateX(4px); }

/* ---------- Icons (inline SVG sprite) ---------- */
.icon {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.mq-bolt { width: 15px; height: 15px; color: var(--yellow); margin: 0 10px; vertical-align: -1px; }
.diff-mark { width: 16px; height: 16px; margin-top: 5px; }
.s-icon, .step-icon { color: var(--yellow); width: 22px; height: 22px; }
.tile-icon { width: 26px; height: 26px; color: var(--yellow); stroke-width: 1.8; }

/* ---------- Service mockups (decorative product surfaces) ---------- */
.mock { width: 100%; border-radius: 12px; }
.mock-serp {
  background: #FFFFFF; color: #1F1F1F;
  padding: 18px 20px; font-size: 0.8rem; line-height: 1.45;
  align-self: center; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.serp-tag { font-weight: 700; font-size: 0.68rem; color: #1F1F1F; margin: 0 0 4px; }
.serp-title { color: #1A0DAB; font-size: 0.98rem; font-weight: 500; margin: 0; }
.serp-url { color: #006621; font-size: 0.72rem; margin: 0 0 5px; }
.serp-desc { color: #4D5156; margin: 0 0 12px; }
.serp-cta {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #DADCE0; border-radius: 999px; padding: 6px 14px;
  color: #1A73E8; font-weight: 600; font-size: 0.76rem;
}
.serp-cta .icon { width: 14px; height: 14px; }

.service-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(20px, 3vw, 40px); align-items: center; }
.service-split .service-body { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (max-width: 767px) { .service-split { grid-template-columns: 1fr; } }

/* Google first, then social; both share a stage sized by the copy. */
.service-featured .service-split { width: 100%; grid-template-columns: 1fr 1fr; padding-top: 24px; align-items: stretch; }
.service-split > * { min-width: 0; }
.ads-scene { position: relative; isolation: isolate; width: 100%; max-width: 470px; margin-inline: auto; overflow: hidden; font-size: .75rem; line-height: 1.4; }
.ads-channel-grid { position: absolute; inset: 2px 8px 62px; }
.ads-google-channel, .ads-social-channel { position: absolute; inset: 0; min-width: 0; display: flex; flex-direction: column; transform-origin: center; }
.ads-social-channel { opacity: 0; }
.ads-channel-title { font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 1rem; line-height: 1.1; text-transform: uppercase; color: var(--yellow); margin: 0 0 10px; }
.ads-search { border: 1px solid #E8E8E8; flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: center; padding: 10px 15px; border-radius: var(--radius); box-shadow: none; }
.ads-search-heading { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.ads-google { width: 18px; height: 18px; flex-shrink: 0; }
.ads-search-heading .serp-tag { margin: 0; font-size: .6rem; }
.ads-search .serp-title { font-family: var(--font-display); font-weight: 400; font-style: normal; text-transform: uppercase; font-size: .83rem; line-height: 1.2; margin-bottom: 5px; }
.ads-search .serp-url { font-size: .62rem; margin-bottom: 4px; }
.ads-search .serp-desc { font-size: .66rem; line-height: 1.3; margin-bottom: 6px; }
.ads-search .serp-cta { align-self: flex-start; padding: 4px 9px; font-size: .65rem; gap: 5px; }
.ads-search .serp-cta .icon { width: 12px; height: 12px; }
.ads-social-platforms { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 7px; }
.ads-platform { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 0; padding: 7px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.ads-platform img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.ads-platform-name { font-family: var(--font-body); font-size: .7rem; font-weight: 600; color: var(--white); }
.ads-social-caption { font-family: var(--font-body); color: var(--text); font-size: .65rem; margin-top: 7px; text-align: center; }
.ads-signals { position: absolute; inset: auto 0 0; height: 53px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
.ads-signal { --signal-delay: 0s; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; min-height: 0; gap: 4px; padding: 4px 2px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; color: var(--white); }
.ads-signal:nth-child(2) { --signal-delay: .4s; }
.ads-signal:nth-child(3) { --signal-delay: .8s; }
.ads-signal:nth-child(4) { --signal-delay: 1.2s; }
.ads-signal-label { font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: .6rem; line-height: 1.2; text-transform: uppercase; }
.ads-signal-icon { position: relative; display: grid; place-items: center; width: 28px; height: 24px; color: var(--yellow); }
.ads-signal-icon .icon { width: 21px; height: 21px; stroke-width: 1.6; }
.ads-signal-icon::after { content: "↑"; position: absolute; right: -9px; top: 1px; color: var(--yellow); font-family: var(--font-body); font-size: 13px; }
.ads-scene.is-ready .ads-google-channel { animation: ads-google-sequence 8s cubic-bezier(.22,.7,.25,1) infinite; }
.ads-scene.is-ready .ads-social-channel { animation: ads-social-sequence 8s cubic-bezier(.22,.7,.25,1) infinite; }
.ads-scene.is-ready .ads-signal { animation: ads-kpi-appear 4s ease both infinite; animation-delay: var(--signal-delay); }
.ads-scene.is-ready .ads-signal-icon { animation: ads-signal-rise 4s ease-out infinite; animation-delay: var(--signal-delay); }
.ads-scene.is-ready:not(.is-active) * { animation-play-state: paused; }
@keyframes ads-google-sequence {
  0%, 40%, 100% { opacity: 1; transform: translateY(0) scale(1); }
  47% { opacity: 0; transform: translateY(-24px) scale(.97); }
  48%, 93% { opacity: 0; transform: translateY(24px) scale(.97); }
}
@keyframes ads-social-sequence {
  0%, 46% { opacity: 0; transform: translateY(24px) scale(.97); }
  53%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  97%, 100% { opacity: 0; transform: translateY(-24px) scale(.97); }
}
@keyframes ads-kpi-appear {
  0%, 100% { opacity: 0; transform: translateY(10px); }
  14%, 72% { opacity: 1; transform: translateY(0); }
  88% { opacity: 0; transform: translateY(-7px); }
}
@keyframes ads-signal-rise {
  0%, 24%, 100% { transform: translateY(2px); }
  65%, 85% { transform: translateY(-4px); }
}
@media (max-width: 767px) {
  .service-featured .service-split { grid-template-columns: 1fr; padding-top: 0; gap: 24px; }
  .ads-scene { max-width: 410px; height: 238px; }
  .ads-search { padding: 9px 12px; }
  .ads-platform img { width: 30px; height: 30px; }
}
@media (max-width: 380px) {
  .ads-channel-grid { inset-inline: 2px; }
  .ads-search .serp-title { font-size: .74rem; }
  .ads-search .serp-desc { font-size: .6rem; }
  .ads-signal-label { font-size: .43rem; }
}
@media (min-width: 768px) and (max-width: 1050px), (max-width: 480px) {
  .ads-platform { flex-direction: column; gap: 3px; padding: 5px; }
  .ads-platform img { width: 27px; height: 27px; }
  .ads-platform-name { font-size: .57rem; }
  .ads-signal-label { font-size: .48rem; }
}
@media (max-width: 380px) { .ads-signal-label { font-size: .39rem; } }
/* Static fallback keeps both channels visible without extending the stage. */
.ads-scene:not(.is-ready) .ads-channel-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 12px; }
.ads-scene:not(.is-ready) .ads-google-channel, .ads-scene:not(.is-ready) .ads-social-channel { position: static; opacity: 1; }
.ads-scene:not(.is-ready) .serp-desc, .ads-scene:not(.is-ready) .serp-cta { display: none; }
.ads-scene:not(.is-ready) .serp-title { font-size: .65rem; }
.ads-scene:not(.is-ready) .ads-platform { flex-direction: column; gap: 3px; padding: 4px; }
.ads-scene:not(.is-ready) .ads-platform-name { display: none; }
.ads-scene:not(.is-ready) .ads-platform img { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) {
  .ads-scene.is-ready .ads-google-channel, .ads-scene.is-ready .ads-social-channel,
  .ads-scene.is-ready .ads-signal, .ads-scene.is-ready .ads-signal-icon { animation: none; }
  .ads-channel-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 12px; }
  .ads-google-channel, .ads-social-channel { position: static; opacity: 1; transform: none; }
  .ads-search .serp-desc, .ads-search .serp-cta { display: none; }
  .ads-search .serp-title { font-size: .65rem; }
  .ads-platform { padding: 4px; }
  .ads-platform-name { display: none; }
  .ads-platform img { width: 22px; height: 22px; }
}

/* Conversion website demo: visit -> estimate request -> new inquiry. */
.web-scene { position: relative; width: 100%; height: 204px; flex-shrink: 0; font-family: var(--font-body); line-height: 1.35; isolation: isolate; }
.web-browser { position: absolute; inset: 0 42px 0 0; border: 1px solid #FFFFFF26; border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.web-browser-bar { height: 27px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 10px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .56rem; background: var(--surface-2); }
.web-browser-bar > .icon { width: 11px; height: 11px; }
.web-window-dots { display: flex; gap: 3px; }
.web-window-dots i { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }
.web-viewport { position: absolute; inset: 27px 0 0; overflow: hidden; }
.web-screen { position: absolute; inset: 0; padding: 13px 58px 13px 13px; }
.web-brand { position: relative; z-index: 1; display: block; font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: .58rem; text-transform: uppercase; color: var(--yellow); }
.web-headline { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 1.15rem; line-height: 1.1; color: var(--white); text-transform: uppercase; margin: 13px 0 6px; }
.web-subline { position: relative; z-index: 1; display: block; font-size: .57rem; color: var(--text); }
.web-landing { isolation: isolate; }
.web-hero-image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.web-landing::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #0A0A0AEF 0%, #0A0A0ABC 34%, #0A0A0A40 66%, #0A0A0A0A 100%); }
.web-landing .web-headline { text-shadow: 0 1px 5px #0008; }
.web-landing .web-subline { color: var(--white); text-shadow: 0 1px 3px #000; }
.web-action { position: absolute; left: 13px; bottom: 13px; width: min(185px, calc(100% - 70px)); display: flex; align-items: center; justify-content: space-between; gap: 6px; min-height: 28px; padding: 6px 9px; background: var(--yellow); color: var(--bg); font-family: var(--font-body); font-size: .62rem; font-weight: 700; border-radius: 5px; }
.web-action > span { font-size: .85rem; line-height: 1; }
.web-form, .web-success { opacity: 0; }
.web-form-title { font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 1rem; line-height: 1.15; text-transform: uppercase; color: var(--white); margin: 12px 0 10px; }
.web-fields { display: grid; grid-template-columns: 1.2fr 1fr; gap: 7px; }
.web-fields > span { min-width: 0; padding: 6px 8px; border: 1px solid var(--line); border-radius: 5px; color: var(--white); font-size: .65rem; }
.web-fields small { display: block; font-size: .49rem; color: var(--muted); margin-bottom: 3px; }
.web-zip { display: inline-block; clip-path: inset(0); }
.web-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--surface); }
.web-success-icon { display: grid; place-items: center; width: 35px; height: 35px; background: var(--yellow); color: var(--bg); border-radius: 8px; }
.web-success-icon .icon { width: 23px; height: 23px; }
.web-success .web-form-title { max-width: 100%; margin: 12px 0 6px; }
.web-cursor { position: absolute; z-index: 3; bottom: 13px; left: min(158px, 60%); width: 21px; height: 25px; opacity: 0; pointer-events: none; }
.web-phone { position: absolute; z-index: 4; right: 0; bottom: 0; width: 87px; height: 158px; border: 2px solid #555; border-radius: 14px; background: var(--bg); overflow: hidden; }
.web-phone-speaker { position: absolute; top: 5px; left: calc(50% - 11px); width: 22px; height: 3px; border-radius: 3px; background: #555; }
.web-mobile-home { position: absolute; inset: 18px 7px 8px; }
.web-mobile-home .web-brand { font-size: .43rem; }
.web-mobile-photo { display: block; width: 100%; height: 37px; object-fit: cover; object-position: 78% 25%; margin: 8px 0 7px; border-radius: 4px; }
.web-mobile-headline { font-family: var(--font-display); font-weight: 400; font-style: normal; text-transform: uppercase; font-size: .61rem; line-height: 1.2; color: var(--white); }
.web-mobile-cta { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px 2px; border-radius: 4px; font-size: .5rem; font-weight: 700; background: var(--blue); color: var(--white); }
.web-mobile-cta .icon { width: 10px; height: 10px; }
.web-mobile-success { position: absolute; inset: 18px 4px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: var(--bg); color: var(--yellow); font-family: var(--font-display); font-weight: 400; font-style: normal; text-transform: uppercase; font-size: .68rem; text-align: center; opacity: 0; }
.web-mobile-success .icon { width: 25px; height: 25px; }
.web-scene.is-ready .web-landing { animation: web-visit 9s ease-in-out infinite; }
.web-scene.is-ready .web-mobile-home { animation: web-mobile-view 9s ease-in-out infinite; }
.web-scene.is-ready .web-form { animation: web-request 9s ease-in-out infinite; }
.web-scene.is-ready .web-success, .web-scene.is-ready .web-mobile-success { animation: web-converted 9s ease-in-out infinite; }
.web-scene.is-ready .web-cursor { animation: web-pointer 9s ease-in-out infinite; }
.web-scene.is-ready .web-zip { animation: web-type 9s steps(5, end) infinite; }
.web-scene.is-ready:not(.is-active) * { animation-play-state: paused; }
@keyframes web-visit {
  0%, 25%, 100% { opacity: 1; transform: translateY(0); }
  32%, 92% { opacity: 0; transform: translateY(-10px); }
}
@keyframes web-request {
  0%, 27%, 100% { opacity: 0; transform: translateY(10px); }
  34%, 59% { opacity: 1; transform: translateY(0); }
  66%, 96% { opacity: 0; transform: translateY(-10px); }
}
@keyframes web-mobile-view {
  0%, 61%, 100% { opacity: 1; }
  69%, 91% { opacity: 0; }
}
@keyframes web-converted {
  0%, 61%, 100% { opacity: 0; transform: translateY(10px); }
  69%, 91% { opacity: 1; transform: translateY(0); }
}
@keyframes web-pointer {
  0%, 7%, 35%, 43%, 68%, 100% { opacity: 0; transform: translate(24px, 20px); }
  14%, 21%, 50%, 57% { opacity: 1; transform: translate(0, 0); }
  24%, 60% { opacity: 1; transform: translate(0, 0) scale(.8); }
  28%, 64% { opacity: 0; transform: translate(0, 0); }
}
@keyframes web-type { 0%, 36%, 100% { clip-path: inset(0 100% 0 0); } 49%, 96% { clip-path: inset(0); } }
@media (min-width: 768px) and (max-width: 1000px), (max-width: 380px) {
  .web-browser { right: 28px; }
  .web-phone { width: 72px; height: 147px; }
  .web-screen { padding: 11px 58px 11px 11px; }
  .web-headline { font-size: .87rem; }
  .web-hero-image { object-position: 85% 28%; }
  .web-subline { font-size: .5rem; max-width: 90%; }
  .web-action { left: 11px; font-size: .52rem; padding-inline: 6px; }
  .web-form-title { font-size: .76rem; }
  .web-fields { gap: 5px; }
  .web-fields > span { padding: 5px; font-size: .58rem; }
  .web-mobile-headline { font-size: .5rem; }
  .web-mobile-home .web-brand { font-size: .36rem; }
}
@media (prefers-reduced-motion: reduce) {
  .web-scene.is-ready .web-landing, .web-scene.is-ready .web-mobile-home,
  .web-scene.is-ready .web-form, .web-scene.is-ready .web-success,
  .web-scene.is-ready .web-mobile-success, .web-scene.is-ready .web-cursor,
  .web-scene.is-ready .web-zip { animation: none; }
}

/* Lead attribution demo: named form leads, campaign attribution and booked jobs. */
.track-scene { position: relative; width: 100%; height: 204px; flex-shrink: 0; overflow: hidden; border: 1px solid #FFFFFF26; border-radius: var(--radius); background: var(--surface); font-family: var(--font-body); line-height: 1.35; }
.track-header { height: 31px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 12px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.track-header > span:first-child { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: .66rem; text-transform: uppercase; color: var(--white); }
.track-header .icon { width: 13px; height: 13px; color: var(--yellow); }
.track-header > span:last-child { font-size: .55rem; color: var(--muted); }
.track-events { position: absolute; inset: 37px 14px 73px; }
.track-path, .track-step { position: absolute; inset: 0; }
.track-path-social { opacity: 0; }
.track-step { display: flex; align-items: center; gap: 12px; opacity: 0; }
.track-step-source { opacity: 1; }
.track-event-icon { display: grid; place-items: center; flex-shrink: 0; width: 37px; height: 37px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); color: var(--yellow); }
.track-event-icon .icon { width: 21px; height: 21px; stroke-width: 1.7; }
.track-event-check { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.track-event-copy { min-width: 0; }
.track-event-title { display: block; font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 1rem; line-height: 1.2; text-transform: uppercase; color: var(--white); margin-bottom: 7px; }
.track-event-detail { display: block; font-size: .63rem; color: var(--muted); }
.track-event-source { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-bottom: 6px; font-size: .66rem; font-weight: 600; color: var(--white); }
.track-event-source > span { color: var(--text); font-weight: 400; font-size: .59rem; }
.track-source-logo { width: 15px; height: 15px; flex-shrink: 0; }
.track-booked-label { display: block; font-size: .6rem; color: var(--yellow); margin-top: 6px; }
.track-form-received { display: flex; align-items: center; gap: 4px; margin-top: 7px; color: var(--yellow); font-size: .59rem; }
.track-form-received .icon { width: 12px; height: 12px; }
.track-metrics { position: absolute; bottom: 12px; left: 14px; right: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 9px; border-top: 1px solid var(--line); }
.track-metric { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.track-metric + .track-metric { border-left: 1px solid var(--line); }
.track-number { position: relative; display: block; height: 26px; width: 100%; font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 1.45rem; line-height: 1; color: var(--white); }
.track-number > span { position: absolute; inset: 0; text-align: center; }
.track-count-middle, .track-count-after { opacity: 0; }
.track-bookings .track-number { color: var(--yellow); }
.track-metric-label { font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: .57rem; line-height: 1.1; text-transform: uppercase; color: var(--text); }
.track-scene.is-ready .track-path-search { animation: track-search-path 18s steps(1, end) infinite; }
.track-scene.is-ready .track-path-social { animation: track-social-path 18s steps(1, end) infinite; }
.track-scene.is-ready .track-step-new { animation: track-arrival 9s ease-in-out infinite; }
.track-scene.is-ready .track-step-source { animation: track-attribution 9s ease-in-out infinite; }
.track-scene.is-ready .track-step-booked { animation: track-booked 9s ease-in-out infinite; }
.track-scene.is-ready .track-forms .track-count-before { animation: track-forms-before 18s steps(1, end) infinite; }
.track-scene.is-ready .track-forms .track-count-middle { animation: track-forms-middle 18s steps(1, end) infinite; }
.track-scene.is-ready .track-forms .track-count-after { animation: track-forms-after 18s steps(1, end) infinite; }
.track-scene.is-ready .track-bookings .track-count-before { animation: track-jobs-before 18s steps(1, end) infinite; }
.track-scene.is-ready .track-bookings .track-count-middle { animation: track-jobs-middle 18s steps(1, end) infinite; }
.track-scene.is-ready .track-bookings .track-count-after { animation: track-jobs-after 18s steps(1, end) infinite; }
.track-scene.is-ready:not(.is-active) * { animation-play-state: paused; }
@keyframes track-search-path { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes track-social-path { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
@keyframes track-arrival { 0%, 25%, 100% { opacity: 1; transform: translateY(0); } 33%, 94% { opacity: 0; transform: translateY(-9px); } }
@keyframes track-attribution { 0%, 27%, 100% { opacity: 0; transform: translateY(9px); } 35%, 57% { opacity: 1; transform: translateY(0); } 65%, 96% { opacity: 0; transform: translateY(-9px); } }
@keyframes track-booked { 0%, 61%, 100% { opacity: 0; transform: translateY(9px); } 69%, 94% { opacity: 1; transform: translateY(0); } }
@keyframes track-forms-before { 0%, 100% { opacity: 1; } 7% { opacity: 0; } }
@keyframes track-forms-middle { 0%, 57%, 100% { opacity: 0; } 7% { opacity: 1; } }
@keyframes track-forms-after { 0%, 100% { opacity: 0; } 57% { opacity: 1; } }
@keyframes track-jobs-before { 0%, 100% { opacity: 1; } 35% { opacity: 0; } }
@keyframes track-jobs-middle { 0%, 85%, 100% { opacity: 0; } 35% { opacity: 1; } }
@keyframes track-jobs-after { 0%, 100% { opacity: 0; } 85% { opacity: 1; } }
@media (min-width: 768px) and (max-width: 1000px), (max-width: 380px) {
  .track-events { inset-inline: 10px; }
  .track-step { gap: 8px; }
  .track-event-icon { width: 31px; height: 31px; }
  .track-event-icon .icon { width: 18px; height: 18px; }
  .track-event-title { font-size: .76rem; }
  .track-event-detail { font-size: .54rem; }
  .track-event-source { font-size: .58rem; gap: 4px; }
  .track-event-source > span { font-size: .5rem; }
  .track-booked-label, .track-form-received { font-size: .53rem; }
  .track-metrics { inset-inline: 10px; }
  .track-metric-label { font-size: .47rem; }
}
@media (prefers-reduced-motion: reduce) {
  .track-scene.is-ready .track-path, .track-scene.is-ready .track-step,
  .track-scene.is-ready .track-metric .track-number > span { animation: none; }
}

/* ---------- Geo chips / about points ---------- */
.geo-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.geo-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
}
.geo-chip .icon { width: 14px; height: 14px; color: var(--yellow); }
.about-points { margin-bottom: 24px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; padding-block: 13px; border-top: 1px solid var(--line); }
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points .icon { color: var(--yellow); margin-top: 3px; }
.about-points strong { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo-link { display: inline-flex; align-items: center; min-height: 44px; }
.logo-img { width: 124px; height: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav ul a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 10px 14px;
  color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.9375rem;
  border-radius: 8px;
}
.main-nav ul a:hover { color: var(--white); background: var(--surface); }
.nav-cta { margin-left: 12px; min-height: 44px; padding: 8px 20px; }

.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; border-radius: 8px;
}
.menu-bar { width: 24px; height: 2px; background: var(--white); transition: transform 0.2s, opacity 0.2s; }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px clamp(20px, 5vw, 48px);
  overflow-y: auto;
}
.mobile-menu ul { margin-bottom: 32px; }
.mobile-menu ul a {
  display: flex; align-items: center; min-height: 56px;
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  text-transform: uppercase; font-size: 1.375rem; color: var(--white);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-menu ul a:hover { color: var(--yellow); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--bg);
}
/* Mobile/tablet: the video flows AFTER the copy as a framed brand banner (never behind text) */
.hero-media {
  position: relative;
  margin-top: 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}
.hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { display: none; }
.hero-inner { width: 100%; }
.hero-copy { max-width: 720px; }
.eyebrow { color: var(--yellow); margin-bottom: 20px; }
.hero-title { margin-bottom: 20px; }
.hero-sub { font-size: 1.1875rem; max-width: 56ch; margin-bottom: 28px; }
.hero-sub strong { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 14px; }
.hero-note { font-size: 0.9375rem; color: var(--muted); margin-bottom: clamp(28px, 4vh, 48px); }

.stats-bar {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 5vw, 64px);
  justify-content: start;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: clamp(1.375rem, 2.4vw, 1.75rem); color: var(--yellow); }
.stat-label { font-size: 0.875rem; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: var(--bg);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
.marquee-track span {
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  font-size: 1.0625rem; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em;
}
.marquee-track em { font-style: normal; color: var(--yellow); padding: 0 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-alt { background: var(--surface); }
.section-alt .service-card,
.section-alt .qualifier-card { background: var(--bg); }

/* Background graphics — SVG decorations */
.results-seal {
  display: none;
}

/* BUZZ seal — small accent under the About headline, left edge flush with the title */
#about .results-seal {
  display: block;
  width: 100%;
  max-width: 132px;
  aspect-ratio: 1;
  margin-top: 32px;
  background-image: url("../assets/graphics/seal-buzz.cccd44719d21.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  pointer-events: none;
}
/* Mobile: the seal moves beside the headline instead of under it */
@media (max-width: 767px) {
  #about .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "kicker kicker"
      "title  seal";
    align-items: center;
    column-gap: 14px;
  }
  #about .section-head .kicker { grid-area: kicker; }
  #about .section-head h2 { grid-area: title; min-width: 0; }
  #about .results-seal {
    grid-area: seal;
    margin-top: 0;
    width: clamp(64px, 20vw, 84px);
    max-width: none;
  }
}
#results {
  position: relative;
  overflow: hidden;
}
#results > .container {
  position: relative;
  z-index: 1;
}

#services::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -15%;
  width: 900px;
  height: 900px;
  background-image: url("../assets/graphics/design-12.4a0fd30f2776.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
#services {
  position: relative;
  overflow: hidden;
}
#services > .container {
  position: relative;
  z-index: 1;
}

#industries::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -15%;
  width: 900px;
  height: 900px;
  background-image: url("../assets/graphics/design-11.009c1c998729.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
#industries {
  position: relative;
  overflow: hidden;
}
#industries > .container {
  position: relative;
  z-index: 1;
}

#how-it-works {
  position: relative;
  overflow: hidden;
}
#how-it-works > .container {
  position: relative;
  z-index: 1;
}

#about {
  position: relative;
  overflow: hidden;
}
#about > .container {
  position: relative;
  z-index: 1;
}

/* ---------- Pitch video section ---------- */
.pitch {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 62% 46% at 50% 58%, rgba(244, 255, 1, 0.07), transparent 70%),
    var(--bg);
}
.pitch-inner { position: relative; z-index: 1; text-align: center; }
.pitch .section-head { margin-inline: auto; max-width: 860px; }
.pitch-title { font-size: clamp(2.5rem, 6.5vw, 4.75rem); }
.pitch-sub { margin-top: 18px; font-size: 1.125rem; color: var(--text); }

.pitch-bolts { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pbolt {
  position: absolute;
  color: var(--yellow);
  fill: currentColor;
  opacity: var(--o, 0.2);
  animation: bolt-flicker 4s ease-in-out infinite;
}
.pb1 { width: 300px; height: 300px; top: -4%;  left: -4%;  --o: 0.07; transform: rotate(-14deg); animation-duration: 5.2s; }
.pb2 { width: 90px;  height: 90px;  top: 12%;  left: 12%;  --o: 0.22; transform: rotate(10deg);  animation-delay: 0.7s; }
.pb3 { width: 48px;  height: 48px;  top: 30%;  left: 6%;   --o: 0.35; transform: rotate(-24deg); animation-delay: 1.6s; animation-duration: 3.1s; }
.pb4 { width: 380px; height: 380px; bottom: -8%; right: -5%; --o: 0.06; transform: rotate(18deg);  animation-duration: 6s; }
.pb5 { width: 110px; height: 110px; top: 16%;  right: 10%; --o: 0.2;  transform: rotate(22deg);  animation-delay: 1.1s; }
.pb6 { width: 56px;  height: 56px;  top: 40%;  right: 5%;  --o: 0.32; transform: rotate(-12deg); animation-delay: 2.3s; animation-duration: 3.6s; }
.pb7 { width: 70px;  height: 70px;  bottom: 14%; left: 9%; --o: 0.24; transform: rotate(16deg);  animation-delay: 0.4s; animation-duration: 4.6s; }
.pb8 { width: 40px;  height: 40px;  bottom: 26%; right: 16%; --o: 0.3; transform: rotate(-30deg); animation-delay: 1.9s; animation-duration: 2.8s; }
@keyframes bolt-flicker {
  0%, 100% { opacity: var(--o, 0.2); }
  8%  { opacity: calc(var(--o, 0.2) * 0.25); }
  12% { opacity: var(--o, 0.2); }
  46% { opacity: calc(var(--o, 0.2) * 2.2); }
  54% { opacity: var(--o, 0.2); }
}
@media (max-width: 767px) {
  .pb1 { width: 170px; height: 170px; }
  .pb4 { width: 210px; height: 210px; }
  .pb2, .pb5 { width: 64px; height: 64px; }
}

.pitch-player {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244, 255, 1, 0.4);
  box-shadow: 0 0 90px rgba(244, 255, 1, 0.14), 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #000;
}
.pitch-player video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.pitch-play {
  position: absolute; top: 50%; left: 50%;
  width: 88px; height: 88px;
  transform: translate(-50%, -50%);
  border: 0; border-radius: 50%; cursor: pointer;
  background: var(--yellow); color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(244, 255, 1, 0.18), 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pitch-play:hover { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 16px rgba(244, 255, 1, 0.22), 0 12px 40px rgba(0, 0, 0, 0.5); }
.pitch-play .icon { width: 34px; height: 34px; margin-left: 4px; }
.pitch-note { color: var(--yellow); margin-top: 20px; }
.pitch-cta { margin-top: 32px; }

@media (prefers-reduced-motion: reduce) {
  .pbolt, .proof-bolt { animation: none; }
  .pitch-play { transition: none; }
}

/* ---------- Proof (testimonial) ---------- */
.section-proof { padding-block: clamp(48px, 7vw, 88px); }
.proof-card {
  margin: 0;
  transition: border-color 0.25s;
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
}
/* Seal: stamps in when the card is revealed, then its text ring keeps turning.
   Everything below has a static final state without html.anim. */
.proof-mark {
  position: relative;
  width: clamp(112px, 13vw, 156px); aspect-ratio: 1;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.proof-card:hover .proof-mark { transform: rotate(8deg) scale(1.06); }
.proof-seal { display: block; width: 100%; height: 100%; overflow: visible; transform: rotate(-8deg); }
.seal-ring { transform-box: view-box; transform-origin: 960px 540px; }
.proof-mark::after { /* impact ring */
  content: ""; position: absolute; inset: 0;
  border: 2px solid var(--blue); border-radius: 50%;
  opacity: 0; pointer-events: none;
}
.proof-bolt {
  position: absolute; color: var(--yellow);
  opacity: var(--o, 0.6);
}
.pbl1 { width: 22%; height: 22%; top: -8%; right: -10%; --o: 0.9; transform: rotate(14deg); }
.pbl2 { width: 14%; height: 14%; bottom: 2%; left: -14%; --o: 0.6; transform: rotate(-20deg); }
.pbl3 { width: 10%; height: 10%; top: 18%; left: -12%; --o: 0.45; transform: rotate(8deg); }

html.anim .proof-card .proof-seal,
html.anim .proof-card .proof-bolt { opacity: 0; }
html.anim .proof-card.in .proof-seal { animation: seal-stamp 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both; }
html.anim .proof-card.in .proof-mark::after { animation: seal-shock 0.8s ease-out 0.55s both; }
html.anim .proof-card.in .seal-ring { animation: seal-spin 24s linear 1s infinite; }
html.anim .proof-card.in .proof-bolt { animation: bolt-flicker 3.6s ease-in-out infinite; }
html.anim .proof-card.in .pbl1 { animation-delay: 0.7s; }
html.anim .proof-card.in .pbl2 { animation-delay: 1.3s; animation-duration: 4.4s; }
html.anim .proof-card.in .pbl3 { animation-delay: 1.9s; animation-duration: 2.9s; }

@keyframes seal-stamp {
  0%   { opacity: 0; transform: scale(1.9) rotate(-38deg); }
  55%  { opacity: 1; transform: scale(0.9) rotate(-4deg); }
  78%  { transform: scale(1.04) rotate(-9deg); }
  100% { opacity: 1; transform: scale(1) rotate(-8deg); }
}
@keyframes seal-shock {
  0%   { opacity: 0.8; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.7); }
}
@keyframes seal-spin { to { transform: rotate(360deg); } }

.proof-kicker { margin-bottom: 14px; }
.proof-quote p { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--white); line-height: 1.5; max-width: 64ch; }
/* Highlighted phrases. Static by default (no JS / reduced motion). */
.proof-quote mark {
  color: #0A0A0A; padding-inline: 0.12em; border-radius: 3px;
  background: linear-gradient(var(--yellow), var(--yellow)) no-repeat 0 60% / 100% 90%;
}
/* Scroll-reading: main.js splits the quote into words (.is-reading) and lights
   them up in order as the visitor scrolls; each phrase gets the highlighter
   sweep when the reading reaches its last word. */
.proof-quote .is-reading .w { color: rgba(255, 255, 255, 0.25); transition: color 0.3s; }
.proof-quote .is-reading .w.lit { color: var(--white); }
.proof-quote .is-reading mark {
  background-size: 0% 90%;
  transition: background-size 0.6s cubic-bezier(0.6, 0, 0.2, 1);
}
.proof-quote .is-reading mark .w.lit { color: var(--yellow); }
.proof-quote .is-reading mark.on { background-size: 100% 90%; }
.proof-quote .is-reading mark.on .w.lit { color: #0A0A0A; transition-delay: 0.2s; }
.proof-progress { /* reading progress bar under the quote */
  height: 2px; margin-top: 18px; max-width: 64ch;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.proof-progress span {
  display: block; height: 100%; width: 100%;
  background: var(--yellow); transform-origin: left; transform: scaleX(0);
  transition: transform 0.2s linear;
}
.proof-cite { margin-top: 16px; color: var(--muted); font-size: 0.9375rem; }
.proof-cite strong { color: var(--white); }
.proof-meta { display: block; margin-top: 4px; font-size: 0.75rem; }
.proof-card:hover { border-color: rgba(244, 255, 1, 0.5); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(244, 255, 1, 0.5); }
.service-featured { grid-column: span 2; border-color: rgba(244, 255, 1, 0.35); }
.service-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--yellow); color: #0A0A0A;
  padding: 6px 12px; border-radius: 6px; font-weight: 700;
}
.service-card h3 { font-family: var(--font-display); font-style: normal; font-weight: 400; text-transform: uppercase; font-size: 1.0625rem; display: flex; align-items: center; gap: 12px; }
.service-card p { max-width: 60ch; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li {
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--line); color: var(--muted);
  padding: 6px 12px; border-radius: 999px;
}
.service-card .text-cta { margin-top: auto; }
.service-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px; }
.service-cta-note { font-family: var(--font-body); font-size: .75rem; color: var(--muted); }

/* ---------- Difference ---------- */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.diff-col { border-radius: 16px; padding: clamp(24px, 4vw, 40px); background: var(--surface); border: 1px solid var(--line); }
.diff-fix { border: 1px solid rgba(244, 255, 1, 0.5); }
.diff-title { color: var(--muted); margin-bottom: 24px; }
.diff-fix .diff-title { color: var(--yellow); }
.diff-list li { display: flex; gap: 14px; align-items: flex-start; padding-block: 12px; border-top: 1px solid var(--line); }
.diff-list li:first-child { border-top: 0; }
.diff-mark { color: #9C9C9C; font-size: 0.9375rem; line-height: 1.8; flex-shrink: 0; }
.diff-mark-yes { color: var(--yellow); }
.diff-fix .diff-list li { color: var(--white); }

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.industries-grid li {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 16px 20px; text-align: center;
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  text-transform: uppercase; font-size: 1.25rem; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: border-color 0.25s;
}
.industries-grid li:hover { border-color: rgba(244, 255, 1, 0.4); }
.qualifier-card {
  border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.qualifier-card p { max-width: 62ch; }
.qualifier-card strong { color: var(--white); }

/* ---------- How it works ---------- */
.hiw-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.steps-list { margin: 0 0 36px; padding: 0; list-style: none; counter-reset: step; }
.steps-list li { display: flex; gap: 24px; padding-block: 24px; border-top: 1px solid var(--line); }
.step-num { font-size: 1.5rem; color: var(--yellow); min-width: 58px; }
.steps-list h3 { margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.hiw-media video {
  width: 100%; border-radius: 16px; border: 1px solid var(--line);
  aspect-ratio: 9 / 16; object-fit: cover;
}

/* ---------- About ---------- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.about-body p { margin-bottom: 20px; font-size: 1.125rem; }
.about-body p:first-child { color: var(--white); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 44px;
  cursor: pointer; list-style: none;
  padding: 18px 0;
  font-weight: 700; color: var(--white); font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--yellow); font-size: 1.5rem; font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0 20px; max-width: 60ch; }
.faq-cta-row { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---------- Contact / booking ---------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-intro { margin-top: 16px; font-size: 1.125rem; }
.contact-facts { margin-bottom: 32px; }
.contact-facts li { display: flex; gap: 12px; padding-block: 8px; align-items: flex-start; }
.contact-facts .icon { color: var(--yellow); margin-top: 3px; width: 18px; height: 18px; }
.contact-summary {
  background: var(--bg); border: 1px solid rgba(244, 255, 1, 0.4); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 32px;
}
.contact-summary h3 { color: var(--yellow); font-size: 0.8125rem; margin-bottom: 10px; }
.contact-summary p { color: var(--white); }
.contact-details { display: flex; flex-direction: column; gap: 6px; color: var(--muted); }
.contact-details a { color: var(--white); text-decoration: none; display: inline-flex; align-items: center; min-height: 32px; }
.contact-details a:hover { color: var(--yellow); }

.contact-panel {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
}
.step-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.step-label { color: var(--yellow); }
.progress { height: 4px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress-bar { display: block; height: 100%; background: var(--blue); border-radius: 999px; transition: width 0.4s; }
.progress-bar.half { width: 50%; }
.progress-bar.full { width: 100%; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.field .optional { color: var(--muted); font-weight: 400; }
.field-check label {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.8125rem; font-weight: 400; color: var(--text); line-height: 1.5; cursor: pointer;
}
.field-check input[type="checkbox"] {
  width: 20px; height: 20px; min-height: 0; flex-shrink: 0; margin: 1px 0 0; padding: 0;
  accent-color: var(--blue); cursor: pointer;
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  background: var(--surface); color: var(--white);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s;
}
.field textarea { resize: vertical; min-height: 88px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9C9C9' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.field-error, .form-error { color: var(--danger); font-size: 0.875rem; margin-top: 6px; }
.form-error { margin-top: 16px; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.consent-note { font-size: 0.8125rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.consent-note a { color: var(--text); }
#form-submit { margin-top: 8px; }

.panel-title { font-family: var(--font-display); font-style: normal; font-weight: 400; text-transform: uppercase; font-size: 1.1875rem; margin-bottom: 8px; }
.panel-sub { color: var(--muted); margin-bottom: 20px; }
.panel-sub.small { font-size: 0.875rem; margin-top: 16px; margin-bottom: 0; }
.panel-sub.small a { color: var(--white); }
.tz-note { color: var(--yellow); margin-bottom: 20px; }

.calendar-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; margin-bottom: 24px; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { color: var(--white); }
.cal-arrow {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--surface); color: var(--white); border: 1px solid var(--line);
  cursor: pointer; font-size: 1.125rem;
}
.cal-arrow:hover { border-color: var(--white); }
.cal-arrow[disabled] { color: #8E8E8E; cursor: not-allowed; border-color: var(--line); }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase; color: var(--muted); text-align: center; padding: 6px 0; }
.cal-day {
  min-height: 44px; border-radius: 8px;
  background: transparent; color: var(--white); border: 1px solid transparent;
  cursor: pointer; font-size: 0.9375rem; font-family: var(--font-body);
}
.cal-day:hover:not([disabled]) { background: var(--surface-2); }
.cal-day[disabled] { color: #8E8E8E; cursor: not-allowed; background: transparent; }
.cal-day.selected { background: var(--blue); color: var(--white); font-weight: 700; }
.cal-day.today { border-color: var(--line); }

.cal-slots { background: var(--surface); border-radius: 12px; padding: 20px; min-height: 280px; position: relative; }
.cal-slots::after { /* scroll affordance over the slot list */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28px;
  background: linear-gradient(rgba(20,20,20,0), var(--surface));
  border-radius: 0 0 12px 12px; pointer-events: none;
}
.slots-title { color: var(--white); margin-bottom: 14px; }
.slots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-height: 320px; overflow-y: auto; padding-bottom: 4px; }
.slot-btn {
  min-height: 44px; border-radius: 8px;
  background: var(--bg); color: var(--white); border: 1px solid var(--line);
  cursor: pointer; font-size: 0.9375rem; font-family: var(--font-body);
}
.slot-btn:hover { border-color: var(--white); }
.slot-btn.selected { background: var(--blue); border-color: var(--blue); font-weight: 700; }
.slots-empty, .slots-loading { color: var(--muted); font-size: 0.9375rem; grid-column: 1 / -1; }
.panel-actions { display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap; }
.panel-actions .btn { flex: 1; min-width: 160px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}
.footer-logo { width: 108px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9375rem; max-width: 34ch; }
.footer-nav ul { display: flex; flex-direction: column; }
.footer-nav a, .footer-contact a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--text); text-decoration: none; font-size: 0.9375rem;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact span { color: var(--muted); font-size: 0.9375rem; padding-block: 10px; }
.footer-legal {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--line);
  padding-block: 20px;
  color: var(--muted); font-size: 0.875rem;
}
.footer-legal ul { display: flex; gap: 8px; }
.footer-legal a { display: inline-flex; align-items: center; min-height: 44px; padding-inline: 8px; color: var(--muted); }
.footer-legal a:hover { color: var(--white); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: none;
  transform: translateY(0);
  transition: transform 0.3s;
}
.sticky-cta.hidden-cta { transform: translateY(110%); }

/* ---------- Reveal animations (only when JS enables them) ---------- */
html.anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
html.anim .reveal.in { opacity: 1; transform: none; }

/* ---------- Screenshot QA mode (?shot=1) ---------- */
html.shot .hero { min-height: 720px; }

/* ---------- Anchor offset ---------- */
section[id], [id="top"] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 900px) {
  /* Desktop hero: copy left, video panel right (absolute to .hero, beside the text) */
  .hero-media {
    position: absolute; top: 0; right: 0; bottom: 0; left: auto;
    width: 42%; margin: 0; border: 0; border-radius: 0; aspect-ratio: auto;
  }
  .hero-overlay {
    display: block; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.35) 30%, rgba(10,10,10,0.15) 100%);
  }
}

@media (max-width: 899px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .about-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  /* how-it-works keeps the video beside the steps on tablet; it only stacks on mobile */
  .hiw-layout { grid-template-columns: 1.35fr 0.65fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 767px) {
  body { padding-bottom: 76px; } /* room for sticky CTA */
  .hero-actions { display: none; } /* CTA in sticky bar at bottom */
  /* Video stacks under the steps, spanning the full column so its edges
     line up with the steps and the CTA instead of floating centered. */
  .hiw-layout { grid-template-columns: 1fr; }
  .hiw-media { max-width: none; margin-inline: 0; }
  .hiw-media video { aspect-ratio: 16 / 11; }
  .steps-list li { gap: 14px; padding-block: 20px; }
  .step-num { min-width: 38px; font-size: 1.125rem; }
  .steps-list h3 { font-size: 1.125rem; gap: 8px; }
  .step-icon { width: 18px; height: 18px; }
  .sticky-cta { display: block; }
  .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; }
  .service-badge { position: static; align-self: flex-start; order: -1; }
  .proof-card { grid-template-columns: 1fr; gap: 16px; }
  .proof-mark { width: 84px; margin-left: 12px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .industries-grid li { font-size: 1rem; padding: 18px 8px 16px; overflow-wrap: anywhere; }
  .calendar-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 8px); padding-bottom: 32px; }
  .hero-media { margin-top: 28px; }
  .hero-sub { font-size: 1.0625rem; margin-bottom: 22px; }
  .hero-note { margin-bottom: 20px; }
  .stats-bar { gap: 16px; padding-top: 18px; grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 1.1875rem; }
  .stat-label { font-size: 0.75rem; }
  .marquee-track span { font-size: 0.8125rem; }
  .qualifier-card { flex-direction: column; align-items: flex-start; }
  .qualifier-card .btn { width: 100%; }
  .panel-actions .btn { min-width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.anim { scroll-behavior: auto; }
  html.anim .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .btn, .text-cta span, .sticky-cta { transition: none; }
}
