/* =====================================================================
   Excel Security Services — homepage sample v2
   Mobile-first. Content is visible without JS; JS only enhances.
   ===================================================================== */

:root {
  --ink: #0B0B0C;
  --ink-2: #141416;
  --ink-3: #1E1E21;
  --paper: #F4F2EC;
  --paper-2: #EAE7DE;
  --card: #FFFFFF;
  --yellow: #FFE600;
  --yellow-deep: #E6CF00;
  --text-dim: #B9B7AF;
  --text-ink-dim: #55534C;
  --line-d: rgba(244, 242, 236, .12);
  --line-l: rgba(11, 11, 12, .1);

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;
  --f-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(18px, 4vw, 56px);
  --sec: clamp(72px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0; background: var(--ink); color: var(--paper);
  font-family: var(--f-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-display); text-wrap: balance; }
p { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 12px; top: -80px; z-index: 200; background: var(--yellow); color: var(--ink); padding: 10px 14px; font-weight: 700; border-radius: 10px; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1320px; margin-inline: auto; padding-inline: var(--gutter); }
.light { background: var(--paper); color: var(--ink); }
.center { text-align: center; margin-inline: auto; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--f-body); font-weight: 700; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: #8A7A00; margin-bottom: 16px;
}
.eyebrow-y { color: var(--yellow); }
.h2 {
  font-weight: 800; font-variation-settings: "wdth" 108;
  font-size: clamp(32px, 5.2vw, 64px); line-height: 1; letter-spacing: -.028em;
  max-width: 20ch;
}
.h2.center { max-width: 22ch; }
.h2 em, .hero-h1 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.light .h2 em { color: #8A7A00; }
.h2 em { color: var(--yellow); }
.lead { font-size: clamp(16px, 1.35vw, 18px); line-height: 1.7; max-width: 58ch; }
.light .lead { color: var(--text-ink-dim); }
.lead { color: var(--text-dim); }
.sub { margin-top: 14px; color: var(--text-ink-dim); font-size: 15px; }

/* ---------- pills ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-family: var(--f-body); font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .4s var(--ease);
}
.pill:hover { transform: translateY(-2px); }
.pill-sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.pill-y { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(255, 230, 0, .55); }
.pill-y:hover { background: #FFF06A; box-shadow: 0 16px 40px -14px rgba(255, 230, 0, .7); }
.pill-ink { background: var(--ink); color: var(--paper); }
.pill-ink:hover { background: #2A2A2E; }
.pill-glass { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.pill-glass:hover { background: rgba(255,255,255,.16); }
.round {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-d); background: transparent; cursor: pointer;
  font-size: 18px; transition: background .3s, color .3s, border-color .3s;
}
.round:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #3DDC84; flex: none; animation: live 2s infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(61,220,132,.6); } 70% { box-shadow: 0 0 0 9px rgba(61,220,132,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); } }

/* ---------- header ---------- */
.hdr {
  position: fixed; z-index: 60; top: 12px; left: 12px; right: 12px;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 10px 10px 18px; border-radius: 999px;
  transition: background .45s var(--ease), box-shadow .45s, border-color .45s;
  border: 1px solid transparent;
}
.hdr.is-solid {
  background: rgba(14, 14, 16, .72); border-color: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 12px 40px -18px rgba(0,0,0,.6);
}
.hdr-logo img { height: 34px; width: auto; }
.hdr-nav { display: none; }
.hdr-end { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hdr-call { display: none; }
.burger {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  display: grid; place-content: center; gap: 6px; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 40px; padding: 110px var(--gutter) 40px;
}
.menu[hidden] { display: none; }
.menu-nav { display: flex; flex-direction: column; }
.menu-nav a {
  font-family: var(--f-display); font-weight: 800; font-variation-settings: "wdth" 110;
  font-size: clamp(36px, 9vw, 64px); line-height: 1.15; letter-spacing: -.03em; text-decoration: none;
  border-bottom: 1px solid var(--line-d); padding: 8px 0;
}
.menu-nav a:hover { color: var(--yellow); }
.menu-call { display: flex; flex-direction: column; text-decoration: none; color: var(--text-dim); }
.menu-call strong { font-family: var(--f-display); font-size: 30px; color: var(--yellow); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: 120px var(--gutter) 110px; overflow: hidden; isolation: isolate; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(11,11,12,.45) 0%, rgba(11,11,12,.72) 70%, rgba(11,11,12,.9) 100%),
    linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.25) 35%, rgba(11,11,12,.8) 100%);
}
.hero-frame {
  position: absolute; z-index: -1; inset: clamp(10px, 2vw, 22px); border: 1px solid rgba(255, 230, 0, .22); border-radius: var(--r-lg);
  pointer-events: none;
}
.hero-content { max-width: 1240px; display: grid; justify-items: center; }
.hero-mark { width: 58px; height: auto; margin-bottom: 26px; filter: drop-shadow(0 8px 24px rgba(255,230,0,.35)); }
.hero-h1 {
  font-weight: 800; font-variation-settings: "wdth" 112;
  font-size: clamp(44px, 7.6vw, 116px); line-height: .92; letter-spacing: -.04em; color: #fff;
  margin-bottom: 26px;
}
.hero-h1 > span { display: block; }
.hero-h1 em { color: var(--yellow); font-size: 1.04em; }
.hero-sub { max-width: 54ch; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.5vw, 19px); margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 20px;
}
.hero-scroll span { position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--yellow); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* intro: only when JS is running */
.js .hero-rise, .js .hero-mark { opacity: 0; transform: translateY(26px); }
.js.ready .hero-mark, .js.ready .hero-rise { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.js.ready .hero-rise:nth-of-type(1) { transition-delay: .15s; }
.js.ready .hero-h1 .hero-rise:nth-child(1) { transition-delay: .25s; }
.js.ready .hero-h1 .hero-rise:nth-child(2) { transition-delay: .37s; }
.js.ready .hero-sub { transition-delay: .5s; }
.js.ready .hero-cta { transition-delay: .62s; }

/* ---------- marquee ---------- */
.marquee { background: var(--yellow); color: var(--ink); overflow: hidden; padding: 16px 0; border-block: 1px solid rgba(0,0,0,.1); }
.marquee-track { display: flex; width: max-content; gap: 28px; align-items: center; will-change: transform; }
.marquee-track span { font-family: var(--f-display); font-weight: 800; font-variation-settings: "wdth" 115; font-size: clamp(18px, 2.2vw, 28px); letter-spacing: -.01em; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { font-style: normal; font-size: 16px; }
.no-js-marquee .marquee-track { animation: marq 40s linear infinite; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { padding: var(--sec) 0 calc(var(--sec) * .6); }
.stats-row {
  list-style: none; margin: 56px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.stats-row li {
  background: var(--card); border-radius: var(--r-md); padding: 26px 22px; text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 20px 40px -30px rgba(0,0,0,.25);
}
.stats-row strong { font-family: var(--f-display); font-weight: 900; font-variation-settings: "wdth" 118; font-size: clamp(44px, 6vw, 76px); line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.stats-row sup { font-family: var(--f-display); font-weight: 800; font-size: clamp(22px, 2.6vw, 34px); color: #8A7A00; vertical-align: top; top: .2em; position: relative; }
.stats-row span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--text-ink-dim); font-weight: 600; }

/* ---------- story ---------- */
.story { padding: calc(var(--sec) * .4) 0 var(--sec); }
.story-grid { display: grid; gap: 40px; align-items: center; }
.story-card { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 40px 80px -40px rgba(0,0,0,.45); }
.story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.story-card:hover img { transform: scale(1.05); }
.chip-dark {
  position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; flex-direction: column;
  background: rgba(11,11,12,.72); color: #fff; border-radius: var(--r-sm); padding: 14px 18px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1);
}
.chip-dark strong { font-family: var(--f-display); font-size: 17px; }
.chip-dark span { font-size: 13px; color: var(--text-dim); }
.story-copy .h2 { margin-bottom: 22px; max-width: 18ch; }
.facts { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.facts li { border-top: 2px solid var(--ink); padding-top: 12px; display: flex; flex-direction: column; }
.facts strong { font-family: var(--f-display); font-size: 18px; }
.facts span { font-size: 13px; color: var(--text-ink-dim); line-height: 1.4; }

/* ---------- expanding panels ---------- */
.panels { padding: 0 0 calc(var(--sec) * .5); }
.xpanels {
  margin-top: 44px; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.xpanels::-webkit-scrollbar { display: none; }
.xp {
  position: relative; flex: 0 0 78%; height: 480px; border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  scroll-snap-align: center; background: var(--ink); color: #fff; outline-offset: 4px;
}
.xp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.xp-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.85) 100%); }
.xp-label { display: none; }
.xp-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; display: grid; gap: 12px; justify-items: start; }
.xp-body h3 { font-weight: 800; font-variation-settings: "wdth" 110; font-size: 28px; letter-spacing: -.02em; }
.xp-body p { font-size: 15px; color: rgba(255,255,255,.82); max-width: 42ch; }

/* ---------- service cards ---------- */
.svc { padding: 40px 0 var(--sec); }
.svc-grid { display: grid; gap: 16px; }
.card { background: var(--card); border-radius: var(--r-md); overflow: hidden; box-shadow: 0 30px 60px -44px rgba(0,0,0,.4); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(0,0,0,.5); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-badge {
  position: absolute; left: 16px; bottom: -20px; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-size: 18px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.35); border: 3px solid var(--card);
}
.card-body { padding: 34px 22px 24px; display: grid; gap: 10px; justify-items: start; }
.card-body h3 { font-weight: 800; font-variation-settings: "wdth" 104; font-size: 21px; letter-spacing: -.015em; }
.card-body p { font-size: 14.5px; color: var(--text-ink-dim); line-height: 1.6; margin-bottom: 8px; }
.svc-more { margin-top: 40px; display: grid; justify-items: center; gap: 18px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chips span { padding: 9px 16px; border-radius: 999px; background: var(--paper-2); font-size: 13.5px; font-weight: 600; }

/* ---------- horizontal scroll ---------- */
.hz { background: var(--ink); padding: var(--sec) 0; overflow: hidden; }
.hz-head { margin-bottom: 44px; }
.hz-view { overflow-x: auto; scrollbar-width: none; padding-inline: var(--gutter); }
.hz-view::-webkit-scrollbar { display: none; }
.hz.hz-flow .hz-view { overflow: visible; }
.hz-track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.hz-card { position: relative; margin: 0; width: min(72vw, 360px); aspect-ratio: 3 / 4.2; border-radius: var(--r-md); overflow: hidden; background: var(--ink-3); }
.hz-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hz-card:hover img { transform: scale(1.06); }
.hz-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85)); }
.hz-card figcaption {
  position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 20px;
  font-family: var(--f-display); font-weight: 800; font-variation-settings: "wdth" 108; font-size: 22px; line-height: 1.1; letter-spacing: -.015em;
}
.hz-card figcaption span { display: block; font-family: var(--f-body); font-size: 12px; letter-spacing: .2em; color: var(--yellow); margin-bottom: 6px; }

/* ---------- opposite rows ---------- */
.rows { background: var(--ink); padding: 0 0 var(--sec); overflow: hidden; }
.rows-head { margin-bottom: 40px; }
.row { display: flex; gap: 12px; width: max-content; will-change: transform; margin-bottom: 12px; }
.row img { height: clamp(220px, 32vw, 460px); width: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-sm); }
.row[data-row="1"] { transform: translateX(-30%); }

/* ---------- monitoring band ---------- */
.band { position: relative; padding: var(--sec) 0; overflow: hidden; isolation: isolate; }
.band-bg { position: absolute; inset: 0; z-index: -1; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; animation: kb 22s ease-in-out infinite alternate; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.82) 50%, rgba(11,11,12,.6) 100%); }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.14) translate(-2%, -1%); } }
.band-grid { display: grid; gap: 40px; }
.band-copy .h2 { margin-bottom: 20px; max-width: 18ch; }
.band-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; align-self: center; }
.band-list li {
  display: grid; gap: 2px; padding: 20px 22px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.band-list strong { font-family: var(--f-display); font-size: 19px; color: var(--yellow); }
.band-list span { color: var(--text-dim); font-size: 14.5px; }

/* ---------- process ---------- */
.process { padding: var(--sec) 0; }
.steps { list-style: none; margin: 56px 0 0; padding: 0; display: grid; gap: 14px; counter-reset: s; }
.step { position: relative; background: var(--card); border-radius: var(--r-md); padding: 30px 26px; box-shadow: 0 30px 60px -48px rgba(0,0,0,.4); }
.step-n {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; margin-bottom: 20px;
  background: var(--ink); color: var(--yellow); font-family: var(--f-display); font-weight: 800; font-size: 19px;
}
.step h3 { font-weight: 800; font-variation-settings: "wdth" 104; font-size: 23px; letter-spacing: -.015em; margin-bottom: 8px; }
.step p { color: var(--text-ink-dim); font-size: 15px; }

/* ---------- voices (3D stack) ---------- */
.voices { padding: var(--sec) 0; background: var(--ink-2); }
.voices-grid { display: grid; gap: 48px; align-items: center; }
.voices-head .h2 { margin-bottom: 28px; max-width: 16ch; }
.stack-ctrl { display: flex; gap: 10px; }
.stack { position: relative; height: 380px; perspective: 1400px; }
.stack-card {
  position: absolute; inset: 0; margin: 0; padding: clamp(26px, 4vw, 44px); border-radius: var(--r-lg);
  background: var(--paper); color: var(--ink); display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
  transition: transform .8s var(--ease), opacity .8s var(--ease), filter .8s;
  transform-origin: 50% 100%;
}
.stack-card blockquote {
  margin: 0; font-family: var(--f-display); font-weight: 700; font-variation-settings: "wdth" 100;
  font-size: clamp(21px, 2.3vw, 30px); line-height: 1.25; letter-spacing: -.015em;
}
.stack-card figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line-l); padding-top: 16px; }
.stack-card figcaption strong { font-size: 16px; }
.stack-card figcaption span { font-size: 13.5px; color: var(--text-ink-dim); }
/* static fallback: cards listed, not stacked */
html:not(.js) .stack { height: auto; display: grid; gap: 14px; }
html:not(.js) .stack-card { position: relative; }

/* ---------- coverage ---------- */
.coverage { padding: var(--sec) 0; }
.cities { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.city { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: #fff; background: var(--ink); }
.city img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.city::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.85)); }
.city:hover img { transform: scale(1.07); }
.city-in { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 16px; display: grid; gap: 2px; }
.city-tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); font-weight: 700; }
.city h3 { font-weight: 800; font-variation-settings: "wdth" 110; font-size: clamp(22px, 2.8vw, 34px); letter-spacing: -.02em; }
.city-go { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; }

/* ---------- founder ---------- */
.founder { padding: var(--sec) 0; background: var(--ink); }
.founder-grid { display: grid; gap: 40px; align-items: center; }
.founder-card { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; max-height: 640px; }
.founder-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.founder-quote {
  margin: 0 0 30px; font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(32px, 4.4vw, 58px); line-height: 1.08; letter-spacing: -.01em; color: #fff;
}
.founder-name { font-family: var(--f-display); font-weight: 800; font-size: 24px; display: flex; flex-direction: column; margin-bottom: 30px; }
.founder-name span { font-family: var(--f-body); font-weight: 500; font-size: 14px; color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { padding: var(--sec) 0; }
.faq-grid { display: grid; gap: 40px; }
.faq .h2 { margin-bottom: 18px; }
.faq-list { display: grid; gap: 10px; }
.faq details { background: var(--card); border-radius: var(--r-sm); padding: 0 22px; box-shadow: 0 20px 40px -36px rgba(0,0,0,.35); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 36px 20px 0; position: relative;
  font-family: var(--f-display); font-weight: 700; font-variation-settings: "wdth" 100; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-2); font-size: 18px;
  transition: transform .4s var(--ease), background .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--yellow); }
.faq details p { padding: 0 0 22px; color: var(--text-ink-dim); max-width: 60ch; }

/* ---------- quote builder ---------- */
.quote { background: var(--yellow); color: var(--ink); padding: var(--sec) 0; }
.quote .eyebrow { color: rgba(11,11,12,.6); }
.quote .lead { color: #3A3A32; }
.quote-grid { display: grid; gap: 40px; }
.quote .h2 em { color: var(--ink); }
.qb { background: var(--card); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 36px); display: grid; gap: 22px; box-shadow: 0 50px 90px -50px rgba(0,0,0,.45); }
.qb-step { border: 0; margin: 0; padding: 0; min-width: 0; }
.qb-step legend { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 17px; margin-bottom: 12px; padding: 0; }
.qb-step legend span { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--yellow); display: grid; place-items: center; font-size: 13px; }
.qb-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.qb-opts button {
  min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-l); background: var(--paper);
  font-weight: 600; font-size: 14.5px; cursor: pointer; transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease);
}
.qb-opts button:hover { border-color: var(--ink); }
.qb-opts button[aria-pressed="true"] { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.qb-urgent { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-radius: var(--r-sm); background: #FFF3F0; border: 1px solid #F3B8A8; }
.qb-urgent[hidden] { display: none; }
.qb-urgent strong { color: #9B2A12; }
.qb-fields { display: grid; gap: 10px; }
.qb-fields label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.qb-fields input { min-height: 50px; border-radius: 12px; border: 1px solid var(--line-l); background: var(--paper); padding: 0 16px; font: inherit; font-size: 16px; }
.qb-fields input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.qb-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-l); }
.qb-sum { font-size: 14px; color: var(--text-ink-dim); font-weight: 600; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); padding: calc(var(--sec) * .7) 0 110px; }
.ftr-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 56px; border-bottom: 1px solid var(--line-d); }
.ftr-cta h2 { font-weight: 800; font-variation-settings: "wdth" 110; font-size: clamp(30px, 4.6vw, 58px); letter-spacing: -.03em; line-height: 1; max-width: 16ch; }
.ftr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; padding: 56px 0; }
.ftr-brand { grid-column: 1 / -1; }
.ftr-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.ftr-brand p { color: var(--text-dim); }
.ftr h3 { font-family: var(--f-body); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; font-weight: 700; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--yellow); }
.ftr-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line-d); font-size: 13px; color: var(--text-dim); }

/* ---------- mobile bar ---------- */
.mbar {
  position: fixed; z-index: 50; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr; gap: 8px; padding: 8px; border-radius: 999px;
  background: rgba(14,14,16,.82); border: 1px solid rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.mbar a { min-height: 48px; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; text-decoration: none; color: #fff; background: rgba(255,255,255,.08); }
.mbar .mbar-q { background: var(--yellow); color: var(--ink); }

/* ---------- reveal (JS only; fail-safe in main.js) ---------- */
.js .reveal.pre { opacity: 0; transform: translateY(40px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1.2s var(--ease); }

/* =====================================================================
   Tablet
   ===================================================================== */
@media (min-width: 720px) {
  .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cities { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ftr-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .ftr-brand { grid-column: auto; }
  .qb-fields { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   Desktop
   ===================================================================== */
@media (min-width: 1024px) {
  .hdr { top: 16px; left: 24px; right: 24px; }
  .hdr-nav { display: flex; gap: 4px; margin-left: 28px; }
  .hdr-nav a { padding: 10px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600; text-decoration: none; color: rgba(255,255,255,.82); transition: background .3s, color .3s; }
  .hdr-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .hdr-call { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; text-decoration: none; padding: 0 10px; }
  .burger, .mbar { display: none; }
  .ftr { padding-bottom: 40px; }

  .story-grid { grid-template-columns: .95fr 1.05fr; gap: 80px; }
  .xpanels { overflow: visible; height: 560px; }
  .xp { flex: 1 1 0; height: 100%; transition: flex-grow .9s var(--ease); scroll-snap-align: none; }
  .xp.is-open { flex-grow: 4.2; }
  .xp:not(.is-open) img { filter: grayscale(.35) brightness(.8); }
  .xp:not(.is-open) .xp-body { opacity: 0; transform: translateY(20px); pointer-events: none; }
  .xp .xp-body { transition: opacity .6s var(--ease) .15s, transform .8s var(--ease) .15s; }
  .xp-label {
    display: block; position: absolute; left: 22px; bottom: 26px; z-index: 1;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-weight: 800; font-variation-settings: "wdth" 108; font-size: 24px; letter-spacing: -.01em; white-space: nowrap;
    transition: opacity .4s;
  }
  .xp.is-open .xp-label { opacity: 0; }
  .xp.is-open:hover img { transform: scale(1.04); }

  .band-grid { grid-template-columns: 1.2fr .8fr; gap: 80px; }
  .voices-grid { grid-template-columns: .85fr 1.15fr; gap: 80px; }
  .stack { height: 420px; }
  .founder-grid { grid-template-columns: .8fr 1.2fr; gap: 90px; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; }
  .quote-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
  .quote-head { position: sticky; top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-video { display: none; }
  .hero-media { background: url("assets/hero-poster.webp") center / cover; }
}

.stars { color: #C9A800; font-size: 20px; letter-spacing: 3px; margin-bottom: 14px; }

/* =====================================================================
   Mobile hero: the video carries the screen, copy sits at the bottom
   ===================================================================== */
@media (max-width: 1023px) and (max-aspect-ratio: 4/5) {
  .hero {
    place-items: end center;
    padding: 96px 20px calc(96px + env(safe-area-inset-bottom));
  }
  .hero-video { transform: none; }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,0) 18%, rgba(11,11,12,0) 38%, rgba(11,11,12,.72) 66%, rgba(11,11,12,.96) 100%);
  }
  .hero-frame { inset: 8px; border-radius: 22px; }
  .hero-mark { width: 44px; margin-bottom: 16px; }
  .hero-h1 { font-size: clamp(40px, 11.5vw, 60px); margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 22px; }
  .hero-cta { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta .pill { padding: 0 12px; font-size: 14px; min-height: 50px; }
  .hero-scroll { display: none; }
}

/* small phones: header must never overflow, shield mark stays off the face */
@media (max-width: 479px) {
  .hdr { left: 8px; right: 8px; top: 8px; padding: 8px 8px 8px 14px; gap: 8px; }
  .hdr-logo img { height: 28px; }
  .hdr-end { gap: 6px; }
  .hdr-end .pill-sm { min-height: 40px; padding: 0 14px; font-size: 13.5px; }
  .burger { width: 40px; height: 40px; }
}
@media (max-width: 1023px) and (max-aspect-ratio: 4/5) {
  .hero-mark { display: none; }
  .hero .eyebrow { font-size: 10px; letter-spacing: .14em; }
}

/* v20 (19 Sep): phones - the home hero's two buttons leave room for the floating chat button (bottom-right) */
@media (max-width: 719px) { .hero .hero-cta { padding-right: 50px; } }

/* v29 · back/forward buttons for the two home sliders. Phones and tablets only - on a desktop
   the panels are all visible and the "where we work" track moves with the page scroll. */
.sctrl { display: none; }
@media (max-width: 1023px) {
  .sctrl { display: flex; gap: 12px; margin: 6px 0 18px; }
  .hz-head .sctrl { margin: 18px 0 0; }
  .sctrl-left { justify-content: flex-start; }
  .sctrl-right { justify-content: flex-end; }
  .sctrl-btn { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; }
  .sctrl-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .sctrl-btn[disabled] { opacity: .35; pointer-events: none; }
  .hz .sctrl-btn { border-color: rgba(255,255,255,.35); color: #fff; }
}

/* v31 · the phone call bar appears once you start reading, not over the hero */
.mbar { transition: transform .32s var(--ease), opacity .32s var(--ease); }
.mbar[hidden] { display: grid; }               /* keep it laid out, just out of the way */
.mbar.is-away { transform: translateY(calc(100% + 24px)); opacity: 0; pointer-events: none; }
.mbar a { background: rgba(255,255,255,.10); }
.mbar .hc-ico { color: #3DDC84; }
@media (prefers-reduced-motion: reduce) { .mbar { transition: none; } }

/* v32 · phones: one call to action in the hero (Call, with the number). The header keeps Get a Quote. */
.cta-num { display: none; }
@media (max-width: 719px) {
  .hero .hero-cta .cta-quote, .ph .ph-cta .cta-quote { display: none; }
  /* one centred button; the old right gutter was there to clear the chat bubble, which the
     single button no longer reaches */
  .hero .hero-cta, .ph .ph-cta { display: grid; grid-template-columns: 1fr; justify-items: center; padding-right: 0 !important; }
  .hero .hero-cta .cta-call, .ph .ph-cta .cta-call { width: 100%; max-width: 340px; justify-content: center; gap: 10px; }
  .cta-247 { display: none; }
  .cta-num { display: inline; }
}

