/* ==========================================================================
   VentureAscend site.css
   One stylesheet. No frameworks. Edit tokens in :root first.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/assets/fonts/bricolage-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/assets/fonts/bricolage-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('/assets/fonts/intertight-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('/assets/fonts/intertight-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrainsmono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrainsmono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  /* Ink and paper */
  --ink:          #0B1B33;
  --ink-2:        #4B5C74;
  --ink-3:        #6B7A90;
  --paper:        #FFFFFF;
  --paper-warm:   #FAF8F4;
  --paper-sand:   #F5F2EC;
  --line:         #E6E4DE;
  --line-soft:    #EFEDE7;

  /* Brand blue */
  --blue:         #1A4FD6;
  --blue-hover:   #143CA6;
  --blue-tint:    #EDF1FD;
  --navy:         #0E2748;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter Tight', -apple-system, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --step--1: 0.875rem;
  --step-0:  1.0625rem;
  --step-1:  1.375rem;
  --step-2:  1.875rem;
  --step-3:  2.5rem;
  --step-4:  3.5rem;

  /* Geometry */
  --radius:    10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Elevation, tinted with the ink so shadows sit in the palette */
  --shadow-xs: 0 1px 2px rgba(11, 27, 51, 0.05);
  --shadow-sm: 0 1px 2px rgba(11, 27, 51, 0.04), 0 2px 6px rgba(11, 27, 51, 0.05);
  --shadow-md: 0 2px 4px rgba(11, 27, 51, 0.04), 0 8px 20px rgba(11, 27, 51, 0.07);
  --shadow-lg: 0 4px 8px rgba(11, 27, 51, 0.05), 0 20px 48px rgba(11, 27, 51, 0.10);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --space:     clamp(4rem, 9vw, 7.5rem);
  --measure:   68ch;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --maxw:      1180px;
  --header-h:  64px;
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.033em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.125rem, 6.2vw, var(--step-4)); line-height: 1.02; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.75rem, 4.6vw, var(--step-3)); }
h3 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.022em; line-height: 1.25; }
h4 { font-size: var(--step-0); font-weight: 600; letter-spacing: 0; line-height: 1.35; }

p, li { max-width: var(--measure); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--blue-hover); }

strong { font-weight: 600; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout --------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space); border-top: 1px solid transparent; }
.section--warm { background: var(--paper-warm); }
.section--navy { background: var(--navy); color: #fff; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }
.section--navy p { color: #C9D4E4; }
.section--navy a { color: #fff; }

.grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }

@media (min-width: 900px) {
  .grid--8-4 { grid-template-columns: 8fr 4fr; align-items: start; }
  .grid--7-5 { grid-template-columns: 7fr 5fr; align-items: center; }
  .grid--5-7 { grid-template-columns: 5fr 7fr; align-items: center; }
  .grid--2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid--5-7 .order-first { order: -1; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.stack > * + * { margin-top: 1.25rem; }
.bleed { max-width: none; }

/* --- Type utilities ------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin: 0 0 1rem;
  display: block;
}
.section--navy .eyebrow { color: #8FA6C4; }

.lede { font-size: var(--step-1); line-height: 1.45; color: var(--ink-2); }
.section--navy .lede { color: #C9D4E4; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.num  { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.small { font-size: var(--step--1); color: var(--ink-2); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); max-width: 46rem; }
.section-head p { color: var(--ink-2); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.008em;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease),
              border-color 200ms var(--ease), box-shadow 200ms var(--ease),
              transform 200ms var(--ease);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, #2A5FE4 0%, var(--blue) 62%);
  color: #fff;
  border-color: var(--blue-hover);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #2559DE 0%, var(--blue-hover) 62%);
  border-color: var(--blue-hover);
  color: #fff;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn--secondary { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--secondary:hover { border-color: var(--ink-3); color: var(--ink); box-shadow: var(--shadow-sm); transform: translateY(-1px); }

.section--navy .btn--secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.section--navy .btn--secondary:hover { border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.text-link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--blue-hover); }

/* --- Pill link button ----------------------------------------------------- */

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem 0.5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(11, 27, 51, 0.05);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.btn-link::after {
  content: "\2192";
  font-size: 0.95em;
  line-height: 1;
  transition: transform 160ms ease;
}
.btn-link:hover {
  border-color: var(--ink);
  box-shadow: 0 2px 8px rgba(11, 27, 51, 0.10);
  transform: translateY(-1px);
}
.btn-link:hover::after { transform: translateX(3px); }
.btn-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.section--navy .btn-link,
.section--warm .btn-link { background: var(--paper); }
.card-foot { margin-top: auto; padding-top: 1.25rem; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease-out;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo .logo-mark { color: var(--blue); }

.nav { display: none; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav { display: flex; gap: clamp(1rem, 2.2vw, 1.75rem); align-items: center; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 150;
  padding: 1.25rem var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-out, visibility 150ms ease-out;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; }

.mobile-panel-top { display: flex; align-items: center; justify-content: space-between; height: calc(var(--header-h) - 20px); margin-bottom: 1.5rem; }

.mobile-panel nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.mobile-panel .btn { width: 100%; margin-top: 1.75rem; }

body.is-locked { overflow: hidden; }

/* --- Mobile sticky CTA ---------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
}
.sticky-cta .btn { width: 100%; }

@media (min-width: 900px) { .sticky-cta { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* --- Hero ----------------------------------------------------------------- */

.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem); }
.hero h1 { max-width: 15ch; }
.hero .lede { max-width: 46ch; margin-top: 1.25rem; }
.hero-aside { align-self: stretch; }

.hero--band {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.hero-grid { align-items: center; }
.hero-copy .btn-row { margin-top: 2rem; }

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  padding: 0;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: none;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.8125rem;
  line-height: 1.2;
  color: var(--ink-2);
}
.hero-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

.clientbar--hero {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Frames (work-product screenshots) ------------------------------------ */

.frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.frame-body { padding: 0; }
.frame img { width: 100%; height: auto; display: block; }
.frame-body--pad { padding: 0.75rem 0.75rem 0.25rem; }
.frame-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.cal-illus { display: block; width: 100%; height: auto; }
.frame-tag {
  margin-left: auto;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.frame-foot {
  margin: 0;
  padding: 0.5rem 0.9rem 0.85rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-2);
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  padding: 2rem 1.5rem;
  background: repeating-linear-gradient(
    45deg,
    var(--paper-warm),
    var(--paper-warm) 10px,
    #F4F2ED 10px,
    #F4F2ED 20px
  );
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.placeholder--sm { min-height: 120px; }
.placeholder--logo { min-height: 56px; padding: 1rem; }

/* --- Stats ---------------------------------------------------------------- */

.stats { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }

.stat { border-top: 1px solid var(--line); padding-top: 1rem; }
.stat .stat-figure {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  display: block;
  line-height: 1.1;
}
.stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin-top: 0.5rem;
  display: block;
}

/* --- Cards and panels ----------------------------------------------------- */

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--paper);
}
.panel--tint { background: var(--blue-tint); border-color: #D8E1FA; }
.panel--warm { background: var(--paper-warm); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
  padding: 1.5rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #DCD9D1; }
.card h3 { margin: 0; }
.card p { margin: 0; font-size: 0.9375rem; color: var(--ink-2); }
.card .card-foot { margin-top: auto; padding-top: 0.5rem; }

.blocks { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .blocks--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.block { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.block h3 { margin-bottom: 0.5rem; }
.block p { color: var(--ink-2); margin: 0; }

/* --- Steps ---------------------------------------------------------------- */

.steps { display: grid; gap: 1.75rem; counter-reset: step; }
@media (min-width: 900px) { .steps--5 { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 900px) { .steps--4 { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 640px) { .steps--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 900px) { .steps--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.step { border-top: 1px solid var(--line); padding-top: 1rem; }
.step-n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: var(--step-0); font-weight: 600; margin-bottom: 0.35rem; }
.step p { font-size: 0.9375rem; color: var(--ink-2); margin: 0; }

/* --- Tabs ----------------------------------------------------------------- */

.tabs-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  scrollbar-width: thin;
}
.tabs-list button {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 4px;
  margin-right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
}
.tabs-list button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--blue); }
.tabs-list button:hover { color: var(--ink); }

.tab-panel[hidden] { display: none; }

/* --- Tables --------------------------------------------------------------- */

.table-scroll { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 560px;
}
caption { text-align: left; font-size: var(--step--1); color: var(--ink-2); margin-bottom: 0.75rem; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}
tbody th { font-weight: 600; }
td.figure, th.figure { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.table-note { font-size: var(--step--1); color: var(--ink-2); margin-top: 1rem; }

/* --- Comparison ----------------------------------------------------------- */

.compare { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .compare { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
.compare-col { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2rem); }
.compare-col--ours { border-color: var(--blue); }
.compare-col h3 { margin-bottom: 1.25rem; }
.compare-list { list-style: none; margin: 0; padding: 0; }
.compare-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.compare-list li:last-child { border-bottom: 0; }
.compare-list .v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }

/* --- FAQ ------------------------------------------------------------------ */

.faq { border-top: 1px solid var(--line); max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.015em;
  line-height: 1.3;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 0 22px; }
.faq .answer p:first-child { font-weight: 600; color: var(--ink); }
.faq .answer p { color: var(--ink-2); }

/* --- Lists ---------------------------------------------------------------- */

.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.75rem; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 15px;
  height: 8px;
  border-left: 1.9px solid var(--blue);
  border-bottom: 1.9px solid var(--blue);
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.72);
  transform-origin: 30% 60%;
}
.section--navy .tick-list li::before { border-color: #7EA0E8; }
.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li { border-bottom: 1px solid var(--line); padding: 12px 0; }

/* --- Logos strip ---------------------------------------------------------- */

.logos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 640px) { .logos { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.logos > * { background: var(--paper); }

/* --- Client bar (names only, no logos) ------------------------------------ */
.clientbar {
  display: grid;
  gap: 1.25rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
}
.clientbar-label { margin: 0; white-space: nowrap; }
.clientbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
}
.clientbar-list li {
  position: relative;
  max-width: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.125rem, 3.4vw, 1.375rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Single row: label beside the names, hairline dividers between them. */
@media (min-width: 1024px) {
  .clientbar { grid-template-columns: auto 1fr; column-gap: 3rem; }
  .clientbar-list { flex-wrap: nowrap; column-gap: 2.75rem; }
  .clientbar-list li { font-size: 1.375rem; }
  .clientbar-list li + li::before {
    content: "";
    position: absolute;
    left: -1.375rem;
    top: -0.12em;
    height: 1.15em;
    width: 1px;
    background: var(--line);
  }
}

.stats--proof { margin-top: clamp(1.75rem, 4vw, 2.5rem); }
.stats--proof .stat { border-top: none; padding-top: 0; }
.stat-sub {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

/* --- Spec list + funnel (case studies) ------------------------------------ */

.spec-list { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.spec-list li {
  display: grid;
  gap: 0.15rem 1.5rem;
  max-width: none;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.spec-list li:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 640px) {
  .spec-list li { grid-template-columns: 12rem 1fr; align-items: baseline; }
}
.spec-list--tight li { padding: 0.6rem 0; }
.spec-list--tight li:first-child { border-top: none; }
@media (min-width: 640px) {
  .spec-list--tight li { grid-template-columns: 6.5rem 1fr; }
}
.spec-k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-2);
}
.spec-v { color: var(--ink); }

.funnel { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; counter-reset: none; }
.funnel li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
  max-width: none;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.funnel li + li { margin-top: 0.5rem; }
.funnel li:last-child { border-color: var(--blue); background: var(--blue-tint); }
.funnel-n {
  min-width: 3.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.funnel-l { flex: 1 1 12rem; color: var(--ink); }
.funnel-r {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

@media (min-width: 1024px) {
  .sticky-side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* --- Priced option cards (pricing) ---------------------------------------- */

.offer-grid { align-items: stretch; }
.offer-grid .panel { display: flex; flex-direction: column; }
.panel--featured {
  border-color: var(--blue);
  border-width: 1.5px;
  background: var(--blue-tint);
}
.price-fig {
  margin: 0.35rem 0 1.1rem;
  max-width: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-unit {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.price-add {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.price-add li {
  max-width: none;
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.price-add strong { color: var(--ink); }

/* --- Core offer callout (pricing) ---------------------------------------------- */

.offer-callout {
  border: 1px solid var(--blue);
  border-left-width: 3px;
  border-radius: var(--radius-lg);
  background: var(--blue-tint);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.offer-callout h3 { max-width: 30ch; margin-bottom: 1rem; font-size: var(--step-2); letter-spacing: -0.02em; }
.offer-callout p { max-width: 66ch; }
.offer-callout p + p { margin-top: 0.85rem; }

/* --- Team ----------------------------------------------------------------- */

.team { display: grid; gap: 2rem; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 900px) { .team { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.team-member {
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.team-member:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.member-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.team-member h3 { margin: 0 0 0.15rem; font-size: var(--step-0); }
.team-member p { font-size: 0.9375rem; }
.team-member .role { display: block; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-2); }
.member-mail { margin: auto 0 0; padding-top: 1.25rem; border-top: 1px solid var(--line); max-width: none; }
.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  word-break: break-all;
}
.mail-link::before {
  content: "";
  flex: none;
  width: 16px;
  height: 12px;
  border: 1.25px solid currentColor;
  border-radius: 2px;
  opacity: 0.55;
  background: linear-gradient(-45deg, transparent 46%, currentColor 46%, currentColor 54%, transparent 54%) no-repeat 50% 0 / 100% 60%;
}
.mail-link:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* --- Booking -------------------------------------------------------------- */


.label-opt { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.75rem; color: var(--ink-2); opacity: 0.8; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; gap: 1.25rem; max-width: 34rem; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 2px solid var(--blue); outline-offset: 1px; }

/* --- Callout / disqualifier ----------------------------------------------- */

.callout {
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
}
.callout .eyebrow { color: var(--ink); }

.notice {
  border-left: 2px solid var(--blue);
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: var(--step--1);
  color: var(--ink-2);
}

.placeholder-flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  background: #FFF6D6;
  border: 1px solid #E8D48A;
  border-radius: 3px;
  padding: 2px 6px;
  color: #5A4A12;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); font-weight: 500; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-contact-h { margin-top: 1.5rem; }
.footer-contact { margin: 0 0 0.5rem; max-width: none; }
.footer-contact a { color: var(--ink); text-decoration: none; font-size: 0.9375rem; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--ink); text-decoration: none; font-size: 0.9375rem; }
.footer-col a:hover { text-decoration: underline; }
.footer-meta {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

/* --- Breadcrumbs ---------------------------------------------------------- */

.crumbs { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); padding-top: 1.75rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }

/* --- Motion --------------------------------------------------------------- */

.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}


/* --- Motion --------------------------------------------------------------- */

@keyframes va-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.js-reveal .hero-copy > *,
.js-reveal .hero-aside {
  opacity: 0;
  animation: va-rise 700ms var(--ease) forwards;
}
.js-reveal .hero-copy > *:nth-child(1) { animation-delay: 60ms; }
.js-reveal .hero-copy > *:nth-child(2) { animation-delay: 130ms; }
.js-reveal .hero-copy > *:nth-child(3) { animation-delay: 200ms; }
.js-reveal .hero-copy > *:nth-child(4) { animation-delay: 270ms; }
.js-reveal .hero-copy > *:nth-child(5) { animation-delay: 340ms; }
.js-reveal .hero-aside { animation-delay: 260ms; }

.js-reveal .clientbar-list li {
  opacity: 0;
  animation: va-rise 600ms var(--ease) forwards;
  animation-delay: calc(420ms + var(--i, 0) * 80ms);
}

.hero-chips li { transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease); }
.hero-chips li:hover { border-color: var(--ink-3); box-shadow: var(--shadow-xs); }

.frame-shot { transition: transform 500ms var(--ease); }
.frame:hover .frame-shot { transform: scale(1.012); }

.site-header { transition: box-shadow 220ms var(--ease), background-color 220ms var(--ease); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.stat-figure { transition: none; }
.funnel li { transition: box-shadow 220ms var(--ease), transform 220ms var(--ease); }
.funnel li:hover { box-shadow: var(--shadow-sm); transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .hero-copy > *,
  .js-reveal .hero-aside,
  .js-reveal .clientbar-list li { opacity: 1; animation: none; }
  .btn:hover, .card:hover, .team-member:hover, .funnel li:hover { transform: none; }
  .frame:hover .frame-shot { transform: none; }
}
