/* ==========================================================================
   ADWISEN — Corporate Operating System
   Design tokens, base, components, sections
   ========================================================================== */

/* @font-face slots for licensed Gotham (uncomment and add files under assets/fonts/)
@font-face { font-family: "Gotham"; src: url("../fonts/Gotham-Book.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Gotham"; src: url("../fonts/Gotham-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Gotham"; src: url("../fonts/Gotham-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
*/
:root {
  /* Palette: machined steel + brass */
  /* Adwisen brand book v2: Metallic Cool Navy #243646 (Pantone 7546C), gold Pantone 871C #857550,
     Warm Gray #D6D1CA, Cool Gray #A7A8A9, Black #212221. Deep ground #0F1623 per client. */
  --navy: #243646;
  --bg-0: #0b111a;   /* deepest: page ground */
  --bg-1: #0F1623;   /* client deep navy: panels, cards, footer */
  --bg-2: #1a2634;   /* raised surfaces, between deep navy and brand navy */
  --bg-3: #243646;   /* brand navy: bars, borders, hover surfaces */
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #ffffff;
  --text-2: #d6d1ca;        /* Adwisen Warm Gray */
  --text-3: #a7a8a9;        /* Adwisen Cool Gray */
  --gold: #c9a961;          /* site gold (brand Pantone 871C #857550 is a print foil; too dull on screen) */
  --brass: #c9a961;
  --brass-2: #e3c887;
  --brass-dim: rgba(201,169,97,0.14);
  --steel: #a7a8a9;
  --ok: #6fbf9a;

  /* Brand: Gotham (primary), Neulis Alt (headers), Verdana (fallback). Montserrat stands in for Gotham
     until the client supplies licensed Gotham webfonts; drop them into the @font-face slots below. */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Gotham", "Montserrat", Verdana, -apple-system, sans-serif;
  --font-mono: "Gotham", "Montserrat", Verdana, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  /* subtle grain */
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.container { width: min(var(--container), 100% - var(--gutter)*2); margin-inline: auto; position: relative; z-index: 1; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--line { border-top: 1px solid var(--line); }

/* Typography */
.eyebrow {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--brass); }
.h-display { font-family: var(--font-display); font-size: clamp(40px, 6vw, 84px); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }
.h-display em { font-style: italic; color: var(--brass-2); }
.h1 { font-family: var(--font-display); font-size: clamp(36px, 4.6vw, 60px); font-weight: 400; letter-spacing: -0.02em; }
.h2 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 48px); font-weight: 400; letter-spacing: -0.015em; }
.h3 { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); font-weight: 400; }
.h4 { font-size: 18px; font-weight: 600; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-2); line-height: 1.6; }
.muted { color: var(--text-2); }
.mono { font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.brass { color: var(--brass); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid transparent; transition: all .2s ease-in-out; white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease-in-out; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--brass); color: #0a0f18; border-color: var(--brass); }
.btn--primary:hover { background: var(--brass-2); border-color: var(--brass-2); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-2); }
.btn--link { padding: 0; border: 0; color: var(--brass); background: none; }
.btn--link:hover { color: var(--brass-2); }
.btn--lg { padding: 18px 28px; font-size: 14px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); background: var(--bg-0); position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 36px; gap: 20px; }
.topbar .status { display: inline-flex; align-items: center; gap: 8px; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(111,191,154,.15); }
.topbar .links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--brass); }
@media (max-width: 800px) { .topbar .links { display: none; } }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,24,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.logo--footer img { height: 96px; }
.logo .mark { width: 34px; height: 34px; border: 1px solid var(--brass); display: grid; place-items: center; color: var(--brass); font-family: var(--font-mono); font-size: 13px; }
.logo span small { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-3); margin-top: -2px; }
.nav { display: flex; gap: 6px; }
.nav a { padding: 10px 11px; font-size: 13.5px; white-space: nowrap; color: var(--text-2); border-radius: var(--radius); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active { color: var(--brass-2); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 11px 18px; }
.burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
@media (max-width: 1000px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: flex; }
}
.mobile-nav {
  position: fixed; inset: 0; z-index: 70; background: var(--bg-0); padding: 24px var(--gutter);
  transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column;
}
.mobile-nav.open { transform: none; }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a.item { font-family: var(--font-display); font-size: 34px; padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.mobile-nav a.item .mono { align-self: center; }
.mobile-nav .btn { margin-top: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 112px); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
.hero__grid .filter { margin-top: 24px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(201,169,97,.10), transparent 60%),
    linear-gradient(to bottom, transparent, var(--bg-0) 95%),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(to bottom, #000 30%, transparent 100%);
}
.hero__copy .h-display { margin: 0 0 28px; max-width: 12ch; }
.hero__copy .lead { max-width: 52ch; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 32px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__meta div { font-size: 13px; color: var(--text-2); }
.hero__meta strong { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--text-3); text-transform: uppercase; margin-bottom: 4px; }

/* Segmentation panel: "The Filter" */
.filter {
  border: 1px solid var(--line-strong); background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  position: relative;
}
.filter__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.filter__head .mono { color: var(--text-2); }
.filter__item {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center;
  padding: 22px 20px; border-bottom: 1px solid var(--line); transition: background .25s;
  position: relative;
}
.filter__item:last-child { border-bottom: 0; }
.filter__item:hover { background: rgba(201,169,97,.05); }
.filter__item .idx { font-family: var(--font-mono); font-size: 12px; color: var(--brass); }
.filter__item h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.filter__item p { margin: 0; font-size: 14px; color: var(--text-2); }
.filter__item .go { width: 36px; height: 36px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .25s; color: var(--text-2); }
.filter__item:hover .go { border-color: var(--brass); color: var(--brass); transform: translateX(3px); }
.filter__item::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--brass); transform: scaleY(0); transition: transform .25s var(--ease); transform-origin: top; }
.filter__item:hover::after { transform: scaleY(1); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy .h-display { max-width: none; }
}

/* Logo strip */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); padding: 28px 0; overflow: hidden; }
.logos .container { display: flex; align-items: center; gap: 40px; }
.logos .mono { flex: none; }
.logos__track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 22s linear infinite; }
.logos__track span { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--bg-1); }
.stat { padding: 36px 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 60px); line-height: 1; color: var(--brass-2); }
.stat__num sup { font-size: .45em; vertical-align: top; top: .3em; position: relative; margin-left: 2px; }
.stat__label { margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); }
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ==========================================================================
   Pillars (services / verticals)
   ========================================================================== */
.section__head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head .h2 { max-width: 20ch; }
.section__head p { max-width: 48ch; margin: 0; }
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; } }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar {
  background: var(--bg-1); padding: 32px 28px 28px; display: flex; flex-direction: column; min-height: 380px;
  position: relative; transition: background .3s; overflow: hidden;
}
.pillar:hover { background: var(--bg-2); }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .idx { font-family: var(--font-mono); font-size: 11px; color: var(--brass); letter-spacing: .14em; margin-bottom: 40px; display: flex; justify-content: space-between; }
.pillar h3 { font-size: 22px; font-weight: 600; margin-bottom: 14px; line-height: 1.2; }
.pillar p { color: var(--text-2); font-size: 15px; }
.pillar ul { list-style: none; margin: 0 0 24px; padding: 0; font-size: 14px; color: var(--text-2); }
.pillar li { padding: 8px 0; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.pillar li::before { content: "—"; color: var(--brass); }
.pillar .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } .pillar { min-height: 0; } }

/* ==========================================================================
   Three-column "Navigating Complexity"
   ========================================================================== */
.complex { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 56px; }
.complex__models { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.model { background: var(--bg-1); padding: 24px; }
.model h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.model p { margin: 0; color: var(--text-2); font-size: 15px; }
.complex .body p { color: var(--text-2); }
.complex .body p:first-child { color: var(--text); font-size: 18px; }
@media (max-width: 1000px) { .complex { grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   Case study split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); overflow: hidden; }
.split__panel { padding: clamp(36px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.split__panel--dark { background: var(--bg-1); }
.split__panel--accent { background: linear-gradient(160deg, #1a1a1a, #0F1623); border-left: 1px solid var(--line); }
.split__visual { position: relative; min-height: 420px; background: var(--bg-2); border-left: 1px solid var(--line); overflow: hidden; }
.split__visual img { width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: grayscale(1) contrast(1.1); }
.split__visual .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-1), transparent 40%); }
.split .h2 { margin-bottom: 20px; max-width: 18ch; }
.split .lead { margin-bottom: 32px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__visual, .split__panel--accent { border-left: 0; border-top: 1px solid var(--line); } }

/* Infographic: timeline */
.infographic { position: absolute; inset: 0; padding: clamp(28px,4vw,56px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.tl { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: center; font-size: 13px; }
.tl .mono { color: var(--text-2); }
.tl .bar { height: 30px; background: var(--bg-3); border: 1px solid var(--line-strong); position: relative; overflow: hidden; }
.tl .bar i { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--brass), var(--brass-2)); width: 0; transition: width 1.2s var(--ease); }
.tl .bar b { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 11px; color: #0a0f18; mix-blend-mode: normal; font-weight: 600; }
.tl.is-in .bar i { width: var(--w); }
.tl--muted .bar i { background: var(--text-3); }
.tl--muted .bar b { color: var(--bg-0); }
.infographic .note { margin-top: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: .1em; text-transform: uppercase; }

/* Value points */
.values { list-style: none; margin: 0 0 32px; padding: 0; border-top: 1px solid var(--line); }
.values li { display: grid; grid-template-columns: 1fr 24px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.values li span:first-child { color: var(--text-2); }
.values li span:last-child { font-weight: 600; }
.values li .arr { color: var(--brass); text-align: center; }

/* ==========================================================================
   Methodology cards
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line); background: var(--bg-1); padding: 32px 28px; position: relative;
  transition: transform .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card .num { font-family: var(--font-display); font-size: 44px; color: var(--brass-dim); color: rgba(201,169,97,.3); line-height: 1; margin-bottom: 28px; }
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.card p { color: var(--text-2); font-size: 15px; margin: 0; }
.card .tag { position: absolute; top: 20px; right: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); border: 1px solid var(--line); padding: 4px 8px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* Process rail */
.rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.rail div { padding: 22px 16px 0; border-right: 1px solid var(--line); position: relative; }
.rail div:last-child { border-right: 0; }
.rail div::before { content: ""; position: absolute; top: -1px; left: 0; width: 40px; height: 1px; background: var(--brass); }
.rail .mono { display: block; margin-bottom: 6px; color: var(--brass); }
.rail p { margin: 0; font-size: 14px; }
@media (max-width: 800px) { .rail { grid-template-columns: repeat(2, 1fr); } .rail div { border-bottom: 1px solid var(--line); padding-bottom: 18px; } }

/* ==========================================================================
   Bridge (Setup -> Capital upsell)
   ========================================================================== */
.bridge { border: 1px solid var(--line); background: linear-gradient(90deg, var(--bg-1), rgba(201,169,97,.06)); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 32px 36px; }
.bridge h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 6px; }
.bridge p { margin: 0; color: var(--text-2); }
@media (max-width: 760px) { .bridge { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.faq__side { position: sticky; top: 110px; align-self: start; }
.faq__tabs { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.faq__tabs button {
  width: 100%; text-align: left; padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between;
  color: var(--text-2); font-size: 15px; transition: color .2s;
}
.faq__tabs button:hover { color: var(--text); }
.faq__tabs button.active { color: var(--brass-2); }
.faq__tabs button .mono { color: var(--text-3); }
.faq__group { display: block; margin-bottom: 56px; scroll-margin-top: 110px; }
.faq__group:last-child { margin-bottom: 0; }
.faq__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 18px; display: flex; align-items: baseline; gap: 14px; }
.faq__title .mono { color: var(--brass); }
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; padding: 24px 0; display: grid; grid-template-columns: 1fr 32px; gap: 20px; align-items: center;
  font-size: 18px; font-weight: 500; color: var(--text); transition: color .2s;
}
.acc__q:hover { color: var(--brass-2); }
.acc__q .plus { width: 32px; height: 32px; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: all .25s; }
.acc__q .plus::before, .acc__q .plus::after { content: ""; position: absolute; background: currentColor; transition: transform .25s; }
.acc__q .plus::before { width: 12px; height: 1px; }
.acc__q .plus::after { width: 1px; height: 12px; }
.acc__item.open .acc__q .plus { border-color: var(--brass); color: var(--brass); }
.acc__item.open .acc__q .plus::after { transform: rotate(90deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a > div { padding: 0 48px 28px 0; color: var(--text-2); font-size: 16px; }
.acc__a .btn--link { margin-top: 8px; font-size: 12px; }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; gap: 32px; } .faq__side { position: static; } }

/* ==========================================================================
   Testimonial / trust
   ========================================================================== */
.quote { margin: 0; border-left: 2px solid var(--brass); padding-left: 32px; max-width: 820px; }
.quote p { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 34px); line-height: 1.3; }
.quote footer { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

/* ==========================================================================
   Insights
   ========================================================================== */
.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.insight { background: var(--bg-1); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; transition: background .3s; }
.insight:hover { background: var(--bg-2); }
.insight h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
.insight .meta { display: flex; justify-content: space-between; }
.insight .btn--link { margin-top: auto; font-size: 12px; }
@media (max-width: 900px) { .insights { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--brass); color: #0a0f18; padding: clamp(56px, 7vw, 96px) 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0 1px, transparent 1px 80px); pointer-events: none; }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band .h2 { color: #0a0f18; max-width: 16ch; }
.cta-band p { color: rgba(0,0,0,.65); max-width: 46ch; }
.cta-band .btn--dark { background: #0a0f18; color: var(--brass-2); border-color: #0a0f18; }
.cta-band .btn--dark:hover { background: #1e2838; }
.cta-band .btn--outline { border-color: rgba(0,0,0,.4); color: #0a0f18; }
.cta-band .btn--outline:hover { border-color: #0a0f18; background: rgba(0,0,0,.05); }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) { .cta-band .container { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--bg-1); border-top: 1px solid var(--line); padding: 64px 0 28px; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--text-2); transition: color .2s; }
.footer a:hover { color: var(--brass-2); }
.footer .about p { color: var(--text-2); max-width: 36ch; margin-top: 18px; }
.footer address { font-style: normal; color: var(--text-2); line-height: 1.7; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 20px; flex-wrap: wrap; color: var(--text-3); font-size: 12px; }
.footer__bottom .partner { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); display: inline-flex; align-items: center; gap: 8px; }
.footer__bottom .partner:hover { color: var(--brass); }
.footer__bottom .partner::before { content: ""; width: 6px; height: 6px; border: 1px solid currentColor; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Quote / Mandate modal ("The Gate")
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,8,14,.78); backdrop-filter: blur(6px); }
.modal__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(560px, 100%); background: var(--bg-1); border-left: 1px solid var(--line-strong);
  overflow-y: auto; transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column;
}
.modal.open .modal__panel { transform: none; }
.modal__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 32px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--bg-1); z-index: 2; }
.modal__close { width: 40px; height: 40px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 18px; }
.modal__close:hover { border-color: var(--brass); color: var(--brass); }
.modal__body { padding: 32px; }

/* Wizard */
.wizard__progress { display: flex; gap: 6px; margin-bottom: 28px; }
.wizard__progress i { flex: 1; height: 2px; background: var(--bg-3); }
.wizard__progress i.done { background: var(--brass); }
.wizard__step { display: none; }
.wizard__step.active { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wizard h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.wizard .hint { color: var(--text-2); margin-bottom: 24px; font-size: 15px; }
.choice { display: grid; gap: 10px; }
.choice label {
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 16px 18px; border: 1px solid var(--line-strong);
  cursor: pointer; transition: all .2s; background: var(--bg-2);
}
.choice label:hover { border-color: var(--brass); }
.choice label b { display: block; font-weight: 600; font-size: 15px; }
.choice label small { display: block; color: var(--text-2); font-size: 13px; margin-top: 2px; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice input:checked + label, .choice label:has(input:checked) { border-color: var(--brass); background: var(--brass-dim); }
.choice .chk { width: 18px; height: 18px; border: 1px solid var(--line-strong); border-radius: 50%; position: relative; }
.choice label:has(input:checked) .chk { border-color: var(--brass); }
.choice label:has(input:checked) .chk::after { content: ""; position: absolute; inset: 4px; background: var(--brass); border-radius: 50%; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text); padding: 14px 16px; font: inherit; font-size: 15px; border-radius: var(--radius);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brass); }
.field textarea { min-height: 110px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wizard__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.wizard__done { text-align: center; padding: 32px 0; }
.wizard__done .mark { width: 64px; height: 64px; border: 1px solid var(--brass); margin: 0 auto 20px; display: grid; place-items: center; color: var(--brass); font-size: 24px; }
.referral { margin-top: 20px; border: 1px dashed var(--brass); padding: 18px; background: var(--brass-dim); }
.referral b { display: block; margin-bottom: 4px; }
.referral p { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }

/* ==========================================================================
   Page hero (interior)
   ========================================================================== */
.page-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 0%, rgba(201,169,97,.08), transparent 60%); pointer-events: none; }
.page-hero .h1 { max-width: 16ch; margin-bottom: 20px; }
.page-hero .lead { max-width: 60ch; }
.crumbs { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 28px; display: flex; gap: 12px; }
.crumbs a:hover { color: var(--brass); }

/* Service detail rows */
.svc { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 48px; padding: clamp(40px, 5vw, 72px) 0; border-bottom: 1px solid var(--line); }
.svc:last-child { border-bottom: 0; }
.svc .idx { font-family: var(--font-display); font-size: 40px; color: rgba(201,169,97,.35); line-height: 1; }
.svc h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.svc .desc { color: var(--text-2); }
.svc ul.spec { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.svc ul.spec li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.svc ul.spec li .mono { color: var(--text-3); }
.svc .actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .svc { grid-template-columns: 1fr; gap: 20px; } .svc .idx { font-size: 28px; } }

/* Checklist / blueprint */
.blueprint { border: 1px solid var(--line); background: var(--bg-1); padding: 28px; }
.blueprint h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; font-weight: 500; }
.blueprint ol { margin: 0; padding: 0; list-style: none; counter-reset: bp; }
.blueprint li { counter-increment: bp; display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; align-items: baseline; }
.blueprint li::before { content: counter(bp, decimal-leading-zero); font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.blueprint li .mono { color: var(--ok); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-card { border: 1px solid var(--line); background: var(--bg-1); padding: 32px; margin-bottom: 20px; }
.contact-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.contact-card p, .contact-card address { color: var(--text-2); font-style: normal; margin: 0; line-height: 1.7; }
.contact-card a { color: var(--brass-2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Partner page */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tier { background: var(--bg-1); padding: 32px 28px; }
.tier .mono { color: var(--brass); margin-bottom: 20px; display: block; }
.tier .pct { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--brass-2); }
.tier p { color: var(--text-2); font-size: 14px; margin: 14px 0 0; }
@media (max-width: 800px) { .tiers { grid-template-columns: 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logos__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 12px var(--gutter); background: rgba(10,15,24,.9); backdrop-filter: blur(10px); border-top: 1px solid var(--line); display: none; }
@media (max-width: 700px) { .sticky-cta { display: block; } body { padding-bottom: 72px; } }

/* ---- Additions used by main.js ---- */
.header.is-scrolled .container { height: 64px; }
.header.is-scrolled .logo img { height: 30px; }
.header .container { transition: height .3s var(--ease); }
[data-words] .w, [data-words-scroll] .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
[data-words] .w > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
[data-words].is-in .w > span { transform: none; }
.shake { animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.sticky-cta { transform: translateY(100%); transition: transform .35s var(--ease); }
.sticky-cta.show { transform: none; }

/* Rotator (differentiators) */
.rot { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.rot__stage { position: relative; min-height: 300px; border: 1px solid var(--line); background: var(--bg-1); padding: 40px; }
.rot__item { position: absolute; inset: 40px; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.rot__item.active { opacity: 1; transform: none; pointer-events: auto; }
.rot__item .mono { color: var(--brass); margin-bottom: 18px; display: block; }
.rot__item h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 14px; }
.rot__item p { color: var(--text-2); margin: 0; }
.rot__ctrl { display: flex; align-items: center; gap: 14px; position: absolute; right: 24px; bottom: 24px; }
.rot__ctrl button { width: 40px; height: 40px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .2s; }
.rot__ctrl button:hover { border-color: var(--brass); color: var(--brass); }
.rot__count { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: .1em; }
.rot__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rot__list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 40px 1fr; gap: 12px; color: var(--text-2); font-size: 15px; }
.rot__list li .mono { color: var(--text-3); }
@media (max-width: 900px) { .rot { grid-template-columns: 1fr; } .rot__stage { min-height: 340px; } }

/* Problem / solution table */
.ps { border-top: 1px solid var(--line); }
.ps__row { display: grid; grid-template-columns: 60px 1fr 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; transition: background .2s; }
.ps__row:hover { background: rgba(255,255,255,.015); }
.ps__row .mono { padding-top: 6px; }
.ps__row h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.ps__row .prob { color: var(--text-2); font-size: 15px; }
.ps__row .sol { color: var(--text); font-size: 15px; padding-left: 20px; border-left: 1px solid var(--brass); }
@media (max-width: 800px) { .ps__row { grid-template-columns: 1fr; gap: 12px; } .ps__row .sol { padding-left: 0; border-left: 0; padding-top: 10px; border-top: 1px dashed var(--line-strong); } }

/* Small phones: sticky CTA takes over, keep burger visible */
@media (max-width: 600px) {
  .header__cta .btn--primary { display: none; }
  .logo span small { display: none; }
  .topbar .status { font-size: 10px; }
}

/* When Motion drives reveals, disable the CSS transition version */
.has-motion .reveal { opacity: 1; transform: none; transition: none; }

/* Buttons and button-like controls: symmetric hover in/out */
.btn, .btn *, .filter__item .go, .modal__close, .rot__ctrl button, .acc__q .plus, .choice label { transition: all .2s ease-in-out; }

/* Action rows: consistent primary + secondary spacing */
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Header intro: logo, nav links and buttons fade/drop in on load */
@keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.header .logo, .header .nav a, .header__cta .btn, .header .burger {
  opacity: 0; animation: navIn .7s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(.1s + var(--i, 0) * .06s);
}
@media (prefers-reduced-motion: reduce) { .header .logo, .header .nav a, .header__cta .btn, .header .burger { opacity: 1; animation: none; } }

.footer__bottom .credit { color: var(--text-3); font-size: 12px; }
.footer__bottom .credit strong { font-weight: 500; color: var(--text-2); }
.footer__bottom .credit:hover strong { color: var(--brass-2); }

/* Chamber of Commerce credential */
.cred__mark { display: inline-grid; place-items: center; width: 26px; height: 18px; border: 1px solid var(--brass); color: var(--brass); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; vertical-align: middle; margin-right: 6px; }
.hero__meta .cred { color: var(--text); }
.cred-strip { color: var(--brass-2); flex: none; padding-right: 40px; border-right: 1px solid var(--line); }
.footer__cred { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--text-2); font-size: 13px; line-height: 1.6; }
.footer__cred small { color: var(--text-3); font-size: 11px; }
@media (max-width: 800px) { .cred-strip { display: none; } }

/* ==========================================================================
   Hero lead form
   ========================================================================== */
.leadform { border: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(22,30,45,.92), rgba(15,22,35,.94)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.leadform::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brass), var(--brass-2), var(--brass)); }
.leadform__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 26px 18px; border-bottom: 1px solid var(--line); }
.leadform__kicker { color: var(--ok); display: block; margin-bottom: 8px; }
.leadform__title { font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 30px); font-weight: 400; line-height: 1.1; }
.leadform__clock { flex: none; width: 60px; height: 60px; border: 1px solid var(--brass); border-radius: 50%; display: grid; place-items: center; align-content: center; color: var(--brass-2); line-height: 1; }
.leadform__clock .mono { color: var(--brass-2); font-size: 18px; letter-spacing: 0; }
.leadform__clock small { font-family: var(--font-mono); font-size: 8px; letter-spacing: .2em; color: var(--text-3); margin-top: 3px; }
.leadform__form { padding: 22px 26px 24px; }
.leadform__form .field { margin-bottom: 14px; }
.leadform__form .field input { padding: 13px 14px; font-size: 14px; }
.leadform__form .field input::placeholder { color: var(--text-3); }
.leadform__form .btn--block { margin-top: 6px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; text-align: center; padding: 11px 8px; border: 1px solid var(--line-strong); background: var(--bg-2); font-size: 13px; font-weight: 500; color: var(--text-2); transition: all .2s ease-in-out; white-space: nowrap; }
.seg label:hover span { border-color: var(--brass); color: var(--text); }
.seg input:checked + span { border-color: var(--brass); background: var(--brass-dim); color: var(--brass-2); }
.leadform__trust { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 12px; color: var(--text-3); }
.leadform__trust li { display: inline-flex; align-items: center; gap: 7px; }
.leadform__trust li::before { content: ""; width: 5px; height: 5px; background: var(--ok); border-radius: 50%; }
.leadform__done { padding: 48px 26px; text-align: center; }
.leadform__done .mark { width: 56px; height: 56px; border: 1px solid var(--brass); margin: 0 auto 18px; display: grid; place-items: center; color: var(--brass); font-size: 22px; }
.leadform__done h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.leadform__done p { color: var(--text-2); margin: 0; }
.field input.is-error { border-color: #d66; }
@media (max-width: 480px) { .seg { grid-template-columns: 1fr; } .leadform__form .field--row { grid-template-columns: 1fr; gap: 0; } }

/* ==========================================================================
   Human touch: photo, faces, team, founder note
   ========================================================================== */
.hero__photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__photo img, .hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .7; filter: grayscale(.35) contrast(1.05); }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } .hero__photo { background: url('../video/hero-poster.jpg') center 40% / cover no-repeat; opacity: .5; } }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-0) 0%, rgba(10,15,24,.8) 30%, rgba(10,15,24,.15) 55%, rgba(10,15,24,0) 100%), linear-gradient(to bottom, rgba(10,15,24,.45) 0%, rgba(10,15,24,0) 35%, rgba(10,15,24,0) 65%, var(--bg-0) 100%); }
.hero__bg { z-index: 0; }
.hero .container { z-index: 1; }

.faces { display: flex; flex: none; }
.faces img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-1); margin-left: -10px; filter: grayscale(.2); }
.faces img:first-child { margin-left: 0; }
.leadform__who { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.leadform__who p { margin: 0; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.leadform__who strong { color: var(--text); font-weight: 600; }

.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person { border: 1px solid var(--line); background: var(--bg-1); padding: 28px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out; }
.person:hover { border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.person__photo { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); filter: grayscale(1) contrast(1.05); transition: filter .5s ease-in-out; box-shadow: 0 0 0 6px var(--bg-2); }
.person:hover .person__photo { filter: none; }
.person__body { display: flex; flex-direction: column; gap: 6px; }
.person__body h3 { font-family: var(--font-display); font-size: 24px; }
.person__body .mono { color: var(--brass); }
.person__body p { color: var(--text-2); font-size: 15px; margin: 8px 0 0; }
.person__li { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); transition: all .2s ease-in-out; }
.person__li:hover { border-color: var(--brass); color: var(--brass); }
.roster { margin-top: 20px; border: 1px solid var(--line); background: var(--bg-1); }
.roster__head { display: flex; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.roster__list { list-style: none; margin: 0; padding: 8px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 32px; }
.roster__list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.roster__list li:nth-last-child(-n+4) { border-bottom: 0; }
.roster__list img, .roster__init { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; filter: grayscale(1); border: 1px solid var(--line); }
.roster__init { display: grid; place-items: center; font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); background: var(--bg-2); }
.roster__list b { display: block; font-weight: 600; }
.roster__list small { color: var(--text-3); font-size: 12px; }
@media (max-width: 1000px) { .partners { grid-template-columns: 1fr; } .roster__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .roster__list { grid-template-columns: 1fr; } }

.founder { display: grid; grid-template-columns: 1fr 1.1fr; border: 1px solid var(--line); background: var(--bg-1); overflow: hidden; }
.founder__photo { position: relative; min-height: 420px; }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) contrast(1.05); opacity: .9; }
.founder__caption { position: absolute; left: 20px; bottom: 20px; padding: 8px 12px; background: rgba(10,15,24,.8); border: 1px solid var(--line-strong); }
.founder__body { padding: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.founder__text { font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.45; color: var(--text); font-weight: 300; }
.founder__sig { display: flex; flex-direction: column; gap: 4px; margin: 20px 0 28px; }
.sig { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--brass-2); }
@media (max-width: 900px) { .note { grid-template-columns: 1fr; } .founder__photo { min-height: 280px; } }

.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.quote__by img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; filter: grayscale(.3); border: 1px solid var(--line-strong); }
.quote__by span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); line-height: 1.7; }
.quote__by strong { color: var(--text); letter-spacing: .06em; }

@media (max-width: 1180px) { .header__cta .btn--ghost { display: none; } }

/* Hero accreditation badge */
.hero__badge { display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border: 1px solid var(--line-strong); background: rgba(15,22,35,.7); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 28px; transition: all .2s ease-in-out; }
.hero__badge:hover { border-color: var(--brass); color: var(--brass-2); }
.hero__badge .cred__mark { margin: 0; }

/* ==========================================================================
   Hero: fit the first viewport
   ========================================================================== */
.hero { padding: clamp(28px, 4vh, 56px) 0 clamp(36px, 5vh, 72px); min-height: calc(100vh - 112px); display: flex; align-items: center; }
.hero > .container { width: min(var(--container), 100% - var(--gutter)*2); }
.hero__copy .h-display { font-size: clamp(38px, 5.4vw, 72px); margin-bottom: 20px; }
.hero__copy .lead { font-size: clamp(16px, 1.2vw, 18px); margin-bottom: 28px; }
.hero__badge { margin-bottom: 20px; }
.hero__meta { margin-top: 32px; padding-top: 20px; }
.leadform__head { padding: 20px 24px 14px; }
.leadform__title { font-size: clamp(20px, 1.8vw, 24px); }
.leadform__form { padding: 18px 24px 20px; }
.leadform__form .field { margin-bottom: 12px; }
.leadform__form .field input { padding: 11px 13px; }
.leadform__form .btn--block { padding: 15px 22px; }
.leadform__who { margin-top: 12px; padding-top: 12px; }
.leadform__trust { margin-top: 12px; }
@media (max-height: 820px) and (min-width: 961px) {
  .hero__meta { display: none; }
  .leadform__clock { display: none; }
  .hero__copy .h-display { font-size: clamp(34px, 4.6vw, 60px); }
}

/* ==========================================================================
   Light section (brand white + warm gray) to break the dark rhythm
   ========================================================================== */
.section--light { background: #ffffff; color: var(--navy); border-top: 1px solid var(--line); }
.section--light::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(36,54,70,.05) 0 1px, transparent 1px 80px); pointer-events: none; mask-image: linear-gradient(to bottom, #000, transparent 70%); }
.section--light .h2, .section--light h3, .section--light h4 { color: var(--navy); }
.section--light .eyebrow { color: var(--gold); }
.section--light .eyebrow::before { background: var(--gold); }
.section--light .complex .body p { color: #4a5866; }
.section--light .complex .body p:first-child { color: var(--navy); font-weight: 500; }
.section--light .complex__models { background: rgba(36,54,70,.12); border-color: rgba(36,54,70,.12); }
.section--light .model { background: #f3f1ed; }               /* Adwisen Warm Gray, lightened */
.section--light .model h4 { color: var(--gold); }
.section--light .model p { color: #4a5866; }
.section--light .btn--ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.section--light .btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.section--light [data-words-scroll] .w > span { color: var(--navy); }

/* ==========================================================================
   Footer social row
   ========================================================================== */
.social { list-style: none; margin: 0; padding: 20px 0 0; display: flex; gap: 10px; flex-wrap: wrap; }
.social a { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 8px; display: grid; place-items: center; color: var(--text-2); transition: all .2s ease-in-out; }
.social a:hover { border-color: var(--brass); color: var(--brass-2); transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }

/* Lead form select */
.select { position: relative; }
.select select { width: 100%; appearance: none; -webkit-appearance: none; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text); padding: 13px 40px 13px 14px; font: inherit; font-size: 14px; border-radius: var(--radius); cursor: pointer; transition: border-color .2s ease-in-out; }
.select select:focus { outline: 0; border-color: var(--brass); }
.select::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select select option { background: var(--bg-1); color: var(--text); }

/* Light section: stronger contrast */
.section--light .model { background: var(--navy); }
.section--light .model h4 { color: var(--brass-2); }
.section--light .model p { color: #ffffff; }
.section--light .complex__models { background: rgba(255,255,255,.14); border-color: var(--navy); box-shadow: 0 24px 60px rgba(36,54,70,.18); }
.section--light .complex .body p { color: #33424f; }
.section--light .eyebrow { color: var(--navy); }
.section--light .eyebrow::before { background: var(--navy); }
.section--light .complex__models { background: rgba(255,255,255,.22); }

/* CTA row under a section */
.cta-row { margin-top: 24px; border: 1px solid var(--line); background: linear-gradient(90deg, var(--bg-1), rgba(201,169,97,.06)); display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 28px 32px; }
.cta-row h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
.cta-row p { margin: 0; color: var(--text-2); }
@media (max-width: 760px) { .cta-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Events (light section)
   ========================================================================== */
.section--events .lead { color: #33424f; }
.event { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.event__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
.event__photo { margin: 0; overflow: hidden; background: #e9e5de; border: 1px solid rgba(36,54,70,.12); aspect-ratio: 4 / 5; }
.event__photo--tall { aspect-ratio: 4 / 5.6; }
.event__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.event:hover .event__photo img { transform: scale(1.03); }
.event__meta { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.event__meta > div { display: flex; flex-direction: column; gap: 6px; }
.event__meta .mono { color: #5b6a78; }
.event__date { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid var(--navy); color: var(--navy); line-height: 1; flex: none; }
.event__date b { font-family: var(--font-display); font-size: 26px; font-weight: 400; }
.event__date small { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }
.event__tag { align-self: flex-start; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 8px; background: var(--navy); color: var(--brass-2); }
.event__body h3 { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px); color: var(--navy); margin-bottom: 14px; line-height: 1.15; }
.event__body p { color: #33424f; }
.event__facts { list-style: none; margin: 8px 0 24px; padding: 0; border-top: 1px solid rgba(36,54,70,.15); }
.event__facts li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(36,54,70,.15); font-size: 14px; }
.event__facts span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #5b6a78; padding-top: 2px; }
.event__facts strong { color: var(--navy); font-weight: 500; }
.section--events .btn--ghost { border-color: var(--navy); color: var(--navy); }
.section--events .btn--ghost:hover { background: var(--navy); color: #fff; }
@media (max-width: 960px) { .event { grid-template-columns: 1fr; } .event__photo, .event__photo--tall { aspect-ratio: 4 / 5; } }
@media (max-width: 560px) { .event__media { grid-template-columns: 1fr; } .event__facts li { grid-template-columns: 1fr; gap: 4px; } }

/* Responsive review fixes */
.hero__copy, .hero__grid > * { min-width: 0; }
.hero__badge { white-space: normal; line-height: 1.4; }
@media (max-width: 600px) {
  .hero__badge { font-size: 10px; padding: 7px 10px 7px 8px; gap: 8px; }
  .hero__copy .h-display { font-size: clamp(34px, 11vw, 44px); }
  .hero__meta { gap: 18px 24px; }
  .hero { min-height: 0; }
  .topbar .status { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
}

/* Testimonial on small screens: tighter inset, smaller type, stacked attribution */
@media (max-width: 700px) {
  .quote { padding-left: 16px; border-left-width: 2px; }
  .quote p { font-size: clamp(19px, 5.4vw, 24px); line-height: 1.35; margin-bottom: 20px; }
  .quote__by { align-items: flex-start; gap: 12px; }
  .quote__by img { width: 38px; height: 38px; }
  .quote__by span { font-size: 10px; letter-spacing: .1em; line-height: 1.6; }
}
