/* ==========================================================================
   AIYourOps — Cobalt consulting grid
   Tokens and layout follow the approved design reference. Radius 0 everywhere,
   no shadows, one gradient (the pricing bar).
   ========================================================================== */

/* --- Fonts (self-hosted, latin subset) ---------------------------------- */

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-var-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/ibm-plex-mono-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ink: #111827;
  --body: #363B48;
  --muted: #656B78;
  --muted-light: #6E7583;
  --hairline: #D9DEE8;
  --primary: #2457E6;
  --primary-light: #8FACFF;
  --secondary: #B85C00;
  --secondary-light: #FFAC68;
  --white: #FCFDFF;
  --band: #F2F5FB;
  --surface: #F7F9FD;
  --footer-muted: #9CA4B3;

  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1280px;
  --pad: clamp(20px, 4.5vw, 60px);
  --sec-y: clamp(50px, 6.5vw, 96px);
  --sec-gap: clamp(30px, 4vw, 50px);
  --col-gap: clamp(22px, 3.5vw, 52px);
  --head-gap: clamp(22px, 4vw, 54px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Base ---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  /* the sticky header is 64px — keep anchor targets clear of it */
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--primary); }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }

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

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

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

/* A full-bleed band: the wrapper spans the viewport, the inner container stays
   on the 1280px grid. No 100vw arithmetic — that overflows by the scrollbar. */
.band { background: var(--band); }

.section { padding-block: var(--sec-y); }

.section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
}

/* Section header: mono eyebrow with the 110px cobalt tick, H2 beside it */
.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--head-gap);
  align-items: baseline;
}

.eyebrow {
  flex: 0 0 110px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  border-top: 3px solid var(--primary);
  padding-top: 12px;
}

.section__head h2 {
  flex: 1 1 470px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.032em;
  font-weight: 700;
}

.meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--muted-light);
}

.pullquote {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
  letter-spacing: -.02em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.btn--solid { background: var(--ink); color: var(--white); }
.btn--solid:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn--outline { border: 1px solid var(--ink); font-weight: 400; }
.btn--outline:hover { background: var(--ink); color: var(--white); }

/* Final CTA buttons: full width, trailing arrow, label nudges right on hover */
.btn--wide {
  height: 54px;
  font-size: 15px;
  justify-content: space-between;
  transition: background .22s ease, color .22s ease, padding .22s ease;
}
.btn--wide:hover { padding: 0 18px 0 26px; transform: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}

.site-header .container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.logo img {
  width: 14px;
  height: 18px;
  flex: 0 0 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-size: 13.5px;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 15px;
  background: var(--ink);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .22s ease;
}
.site-nav__cta:hover { background: var(--primary); color: var(--white); }

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

.hero {
  padding: clamp(46px, 7vw, 92px) 0 clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(38px, 5vw, 66px);
}

.hero__top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 54px);
  align-items: flex-end;
}

.hero__lead-col {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(46px, 7.2vw, 94px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 700;
}

.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.52;
  color: var(--body);
  max-width: 560px;
}

.hero__side {
  flex: 0 1 330px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__side p { font-size: 14.5px; line-height: 1.6; color: var(--body); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Hero pipeline diagram */
.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.2vw, 30px);
  align-items: stretch;
}

.pipeline__col {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pipeline__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
}

.pipeline__link {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pipeline__dot { width: 8px; height: 8px; }
.pipeline__dot--primary { background: var(--primary); }
.pipeline__dot--secondary { background: var(--secondary); }

.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.task {
  border: 1px solid var(--hairline);
  padding: 9px 10px;
  font-size: 12px;
  color: var(--body);
}

.buildout {
  border: 1px solid var(--ink);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.buildout__sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--primary);
}

.buildout__row {
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.buildout__row span:last-child {
  font-family: var(--mono);
  color: var(--muted-light);
  font-size: 10.5px;
}

.outcomes { display: flex; flex-direction: column; gap: 7px; }

.outcome {
  border: 1px solid var(--secondary);
  padding: 9px 10px;
  font-size: 12px;
  color: var(--secondary);
  display: flex;
  gap: 8px;
}

.outcomes__note {
  padding: 8px 1px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-light);
}

/* --- 01 Problem ---------------------------------------------------------- */

.problem__body {
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  align-items: center;
}

.scatter {
  flex: 1 1 380px;
  height: 280px;
  position: relative;
  background-image: radial-gradient(#E4E8F1 1px, transparent 1px);
  background-size: 22px 22px;
}

.scatter__chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 7px 10px;
  font-size: 11.5px;
  color: var(--body);
}

.scatter__caption {
  position: absolute;
  right: 0;
  bottom: -4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted-light);
}

.problem__points {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 30px);
}

.problem__points > p { font-size: 16px; line-height: 1.6; color: var(--body); }

.problems { display: flex; flex-direction: column; gap: 18px; }

.problem-item { display: flex; gap: 14px; }

.problem-item__key {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--primary);
  padding-top: 4px;
}

.problem-item h3 { font-size: 18px; letter-spacing: -.02em; font-weight: 700; }
.problem-item p { font-size: 14px; line-height: 1.55; color: var(--body); }
.problem-item > div { display: flex; flex-direction: column; gap: 5px; }

/* --- 02 Process (Gantt) --------------------------------------------------- */

.gantt { display: flex; flex-direction: column; }

.gantt__head {
  display: flex;
  gap: 10px;
  padding-bottom: 9px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--muted-light);
}

.gantt__head span:first-child { flex: 0 0 clamp(120px, 17vw, 190px); }
.gantt__head span:last-child { flex: 1; }

.gantt__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.gantt__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gantt__step {
  flex: 0 0 clamp(120px, 17vw, 190px);
  display: flex;
  gap: 9px;
  align-items: baseline;
}

.gantt__num { font-family: var(--mono); font-size: 10.5px; color: var(--primary); }
.gantt__num--secondary { color: var(--secondary); }
.gantt__name { font-size: 15.5px; font-weight: 700; letter-spacing: -.02em; }

.gantt__track {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gantt__bar {
  height: 16px;
  background: var(--ink);
  transform-origin: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.gantt__bar span {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--white);
  letter-spacing: .1em;
}

.gantt__bar--1 { width: 5%; min-width: 12px; padding-right: 0; }
.gantt__bar--2 { width: 9%; min-width: 20px; padding-right: 0; }
.gantt__bar--3 { width: 34%; }
.gantt__bar--4 { width: 48%; }
.gantt__bar--5 {
  width: 100%;
  max-width: 240px;
  background: repeating-linear-gradient(90deg, var(--secondary) 0 9px, var(--band) 9px 15px);
  border: 1px solid var(--secondary);
  padding-right: 0;
}

.gantt__desc { font-size: 13.5px; color: var(--body); }

.process__quote {
  max-width: 780px;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.4;
  letter-spacing: -.02em;
}

/* --- 03 Use cases -------------------------------------------------------- */

.usecases .section__inner { gap: clamp(34px, 4.5vw, 58px); }

.featured {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 48px);
  align-items: flex-start;
}

.featured__text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.label-primary {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--primary);
}

.featured__text h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 700;
}

.featured__text > p { font-size: 15px; line-height: 1.58; color: var(--body); }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 4px;
}

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value { font-size: 26px; font-weight: 700; letter-spacing: -.03em; }
.stat__value--secondary { color: var(--secondary); }

.featured__figure {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare { display: flex; border: 1px solid var(--ink); }

.compare__col {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare__col--before { border-right: 1px solid var(--hairline); }
.compare__col--after { background: var(--surface); }
.compare__col--after .meta { color: var(--secondary); }

.compare__list { display: flex; flex-direction: column; gap: 6px; }

.compare__list li {
  font-size: 12.5px;
  color: var(--body);
  padding: 6px 0;
  border-bottom: 1px dotted var(--hairline);
}

.compare__list li:last-child { border-bottom: none; }

.compare__col--after .compare__list li {
  color: var(--ink);
  display: flex;
  gap: 8px;
}

.compare__col--after .compare__list li::before {
  content: '✓';
  color: var(--secondary);
}

/* Secondary use-case cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(28px, 3.5vw, 44px);
}

.card { display: flex; flex-direction: column; gap: 12px; }

.card h3 {
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 700;
}

.card p, .card li { font-size: 13.5px; line-height: 1.5; color: var(--body); }
.card ul { display: flex; flex-direction: column; gap: 7px; }

.card__outcome {
  border-left: 2px solid var(--secondary);
  padding-left: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--secondary);
}

.card__outcome .meta {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  letter-spacing: .16em;
}

/* card diagrams */
.flow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}

.flow__box {
  flex: 1;
  height: 34px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.flow__box--out { border-color: var(--secondary); color: var(--secondary); }
.flow__arrow { color: var(--primary); font-size: 13px; }

.funnel {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 0;
}

.funnel__row { display: flex; align-items: center; gap: 8px; }
.funnel__row .meta { flex: 0 0 62px; letter-spacing: normal; }
.funnel__bar { flex: 1; height: 12px; background: var(--ink); }
.funnel__split { flex: 1; display: flex; }
.funnel__split span:first-child { width: 12%; height: 12px; background: var(--primary); }
.funnel__split span:last-child {
  flex: 1;
  height: 12px;
  border: 1px dashed var(--hairline);
  border-left: none;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 12px 0;
}

.tiles span { height: 26px; border: 1px solid var(--hairline); }

.tiles__merged {
  grid-column: 1 / -1;
  border-color: var(--secondary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--secondary);
}

/* --- 04 Ownership -------------------------------------------------------- */

.ownership__body {
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  align-items: center;
}

.boundary-wrap { flex: 1 1 400px; }

.boundary {
  border: 2px solid var(--ink);
  padding: clamp(18px, 2.4vw, 26px);
  position: relative;
}

.boundary__label {
  position: absolute;
  top: -9px;
  left: 18px;
  background: var(--white);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--ink);
}

.boundary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 7px;
}

.boundary__grid span {
  border: 1px solid var(--hairline);
  padding: 9px 10px;
  font-size: 11.5px;
  color: var(--body);
}

.boundary__grid .is-capability { border-color: var(--secondary); color: var(--secondary); }

.boundary__outside {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 0 18px;
}

.boundary__outside::before {
  content: '';
  width: 1px;
  height: 30px;
  background: var(--primary);
  flex: 0 0 1px;
}

.boundary__outside div { display: flex; flex-direction: column; gap: 3px; }
.boundary__outside strong { font-size: 12.5px; font-weight: 700; }

.boundary__outside .meta {
  font-size: 10px;
  letter-spacing: .1em;
}

.principles {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.principles > p { font-size: 15.5px; line-height: 1.6; color: var(--body); }
.principles ul { display: flex; flex-direction: column; gap: 12px; }
.principles li { display: flex; gap: 12px; align-items: baseline; }

.principles li::before {
  content: '✕';
  color: var(--primary);
  font-family: var(--mono);
  font-size: 12px;
}

.principles b { font-size: 14.5px; font-weight: 700; }
.principles span { font-size: 14px; color: var(--body); }

.statement {
  background: var(--ink);
  color: var(--white);
  padding: clamp(26px, 3.5vw, 44px) clamp(22px, 3vw, 40px);
}

.statement p {
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.26;
  letter-spacing: -.028em;
  max-width: 900px;
}

/* --- 05 Engagement ------------------------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(22px, 3vw, 44px);
}

.service { display: flex; flex-direction: column; gap: 11px; }
.service h3 { font-size: 19px; letter-spacing: -.02em; font-weight: 700; }
.service p { font-size: 14.5px; line-height: 1.56; color: var(--body); }

/* Rules of increasing length encode escalating commitment. */
.service__rule { height: 3px; background: var(--ink); }
.service__rule--1 { width: 26px; }
.service__rule--2 { width: 60px; }
.service__rule--3 {
  width: 100px;
  background: repeating-linear-gradient(90deg, var(--secondary) 0 8px, var(--white) 8px 13px);
}

.pricing {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  align-items: flex-end;
}

.pricing__main {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted-light);
}

.pricing__range {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pricing__range span:first-child,
.pricing__range span:last-child {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -.04em;
}

.pricing__range span:nth-child(2) { font-size: 20px; color: var(--muted-light); }

.pricing__scale { display: flex; flex-direction: column; gap: 7px; }

/* The one gradient in the design: blue-black into cobalt. */
.pricing__bar {
  height: 14px;
  background: linear-gradient(90deg, var(--ink), var(--primary));
  transform-origin: left;
}

.pricing__ends {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--muted-light);
}

.pricing > p {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* --- 06 Difference ------------------------------------------------------- */

.compare-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.compare-cols__col {
  padding: clamp(18px, 2.4vw, 28px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-cols__col--dim { opacity: .8; }
.compare-cols__col:first-child { padding-left: 0; }
.compare-cols__col + .compare-cols__col--dim { border-left: 1px solid var(--hairline); }

.compare-cols__col--ours {
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--primary);
}

.compare-cols__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  /* --muted would land at 3.5:1 once the column's .8 opacity is applied */
  color: var(--body);
}

.compare-cols__col--ours .compare-cols__label { color: var(--primary-light); }

.compare-cols ul { display: flex; flex-direction: column; gap: 9px; }
.compare-cols li { display: flex; gap: 10px; font-size: 13.5px; color: var(--body); }
.compare-cols li::before { content: '—'; color: var(--muted-light); }

.compare-cols__col--ours li { color: var(--white); }
.compare-cols__col--ours li::before { content: '✓'; color: var(--secondary-light); }

/* --- 07 Who we are ------------------------------------------------------- */

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
}

.founder {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founder__portrait {
  height: 230px;
  background: var(--hairline);
  overflow: hidden;
}

.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__portrait--wang img { object-position: 47% 10%; }
.founder__portrait--jack img { object-position: 50% 22%; }

.founder__text { display: flex; flex-direction: column; gap: 7px; }
.founder__text .label-primary { letter-spacing: .16em; }
.founder__text h3 { font-size: 19px; letter-spacing: -.02em; font-weight: 700; }
.founder__text p { font-size: 14px; line-height: 1.56; color: var(--muted); }

/* In-prose link: the underline carries the affordance, since site links are
   ink-coloured and only turn cobalt on hover. */
.founder__text a { text-decoration: underline; text-underline-offset: 2px; }

.bring {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bring__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--muted-light);
}

.bring ul { display: flex; flex-direction: column; gap: 10px; }

.bring li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--hairline);
}

.bring li:last-child { padding-bottom: 0; border-bottom: none; }

/* --- Final CTA ----------------------------------------------------------- */

.cta {
  padding: clamp(56px, 7vw, 110px) 0 clamp(50px, 6vw, 90px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-end;
}

.cta__text {
  flex: 1 1 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta h2 {
  font-size: clamp(34px, 5.4vw, 70px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 700;
}

.cta__text p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--body);
  max-width: 520px;
}

.cta__actions {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__email {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  padding-top: 4px;
}

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

.site-footer {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.site-footer .container {
  padding-block: clamp(34px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 60px);
  justify-content: space-between;
}

.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--primary-light); }

.site-footer__brand {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__brand p:first-of-type { font-size: 14px; }
.site-footer__brand p:last-of-type { font-size: 13px; color: var(--footer-muted); }

.site-footer__col {
  flex: 0 1 200px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.site-footer__col .meta { color: var(--footer-muted); }

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

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes taskIn { 0%, 100% { opacity: .75; } 18%, 82% { opacity: 1; } }
@keyframes travel {
  0% { transform: translateX(-10px); opacity: 0; }
  18%, 82% { opacity: 1; }
  100% { transform: translateX(46px); opacity: 0; }
}
@keyframes sweep {
  0% { transform: translateY(0); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateY(150px); opacity: 0; }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(var(--dx, 3px), var(--dy, -3px)); }
}
@keyframes barGrow { 0% { transform: scaleX(.06); } 55%, 100% { transform: scaleX(1); } }

.hero__eyebrow { animation: riseIn .7s var(--ease) both; }
.hero h1 { animation: riseIn .8s var(--ease) .09s both; }
.hero__lead { animation: riseIn .8s var(--ease) .2s both; }

.task { animation: taskIn 5.4s ease-in-out infinite; }
.task:nth-child(2) { animation-delay: .3s; }
.task:nth-child(3) { animation-delay: .6s; }
.task:nth-child(4) { animation-delay: .9s; }
.task:nth-child(5) { animation-delay: 1.2s; }
.task:nth-child(6) { animation-delay: 1.5s; }

.pipeline__dot { animation: travel 2.6s linear infinite; }
.pipeline__dot--secondary { animation-delay: 1.3s; }

.buildout__sweep { animation: sweep 3.8s ease-in-out infinite; }

.scatter__chip { animation: drift 7s ease-in-out infinite; }
.scatter__chip:nth-child(1) { --dx: 4px;  --dy: -5px; left: 4%;  top: 10%; animation-duration: 7s; }
.scatter__chip:nth-child(2) { --dx: -5px; --dy: 4px;  left: 44%; top: 2%;  animation-duration: 8.4s; animation-delay: .5s; }
.scatter__chip:nth-child(3) { --dx: 5px;  --dy: 5px;  left: 12%; top: 36%; animation-duration: 6.6s; animation-delay: 1s; }
.scatter__chip:nth-child(4) { --dx: -4px; --dy: -4px; left: 56%; top: 32%; animation-duration: 7.8s; animation-delay: 1.4s; }
.scatter__chip:nth-child(5) { --dx: 4px;  --dy: -3px; left: 2%;  top: 66%; animation-duration: 7.2s; animation-delay: .8s; }
.scatter__chip:nth-child(6) { --dx: -5px; --dy: 3px;  left: 40%; top: 76%; animation-duration: 8s;   animation-delay: 1.8s; }
.scatter__chip:nth-child(7) { --dx: 3px;  --dy: 4px;  left: 68%; top: 58%; animation-duration: 6.9s; animation-delay: 2.2s; }

.gantt__bar { animation: barGrow 1.1s var(--ease) both; }
.gantt__bar--2 { animation-duration: 1.1s; animation-delay: .1s; }
.gantt__bar--3 { animation-duration: 1.2s; animation-delay: .2s; }
.gantt__bar--4 { animation-duration: 1.3s; animation-delay: .3s; }
.gantt__bar--5 { animation-duration: 1.4s; animation-delay: .4s; }
.pricing__bar { animation: barGrow 1.4s var(--ease) both; }

/* --- Scroll reveal -------------------------------------------------------
   Content is visible by default. Only when JS is running (html.js) do we hide
   it and hand it to the observer — so a JS failure or a crawler that does not
   execute scripts still sees the full page.
   ------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}

.js .reveal.is-in { opacity: 1; transform: translateY(0); }

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

/* --- Responsive ---------------------------------------------------------- */

/* When the pipeline row wraps, a lone connector square would be stranded
   beside nothing. */
@media (max-width: 1180px) {
  .pipeline__link { display: none; }
}

@media (max-width: 560px) {
  .compare { flex-direction: column; }
  .compare__col--before { border-right: none; border-bottom: 1px solid var(--hairline); }
  .compare-cols__col, .compare-cols__col:first-child { padding-inline: 0; }
  .compare-cols__col + .compare-cols__col--dim { border-left: none; border-top: 1px solid var(--hairline); }
  .compare-cols__col--ours { padding-inline: clamp(16px, 2vw, 24px); }
}
