/* ============================================================
   BC1 — Building a Company of 1
   Stylesheet v2

   Design direction — "one stroke"
   ------------------------------------------------------------
   The whole page hangs off a single vertical hairline in the
   left margin. It begins at the top of the hero as the stem of
   a numeral 1 and ends in the footer on the foot of that same 1,
   above the mark. One person, one line, one company.

   Ground is cool Bristol chalk, not warm cream; display type is
   a heavy tight grotesque in sentence case; body copy is set in
   a serif — the inverse of the usual pairing, because what this
   programme produces is a record of work, not a pitch.
   ============================================================ */

/* ---- 1. Tokens ------------------------------------------- */
:root {
  /* Colour */
  --slate:        #10161F;   /* ink — dark bands, all headings */
  --slate-raise:  #19212C;   /* raised surface on dark */
  --slate-line:   #2A3542;   /* hairline on dark */
  --slate-mute:   #8E9AAA;   /* secondary text on dark */
  --chalk:        #E7ECF1;   /* primary ground — cool, mineral */
  --paper:        #F7F9FB;   /* alternate ground + panels */
  --rule:         #C9D2DC;   /* hairline on light */
  --body-ink:     #3E4A5A;   /* body copy on light */
  --orange:       #C03A00;   /* BC1 orange — the only heat */
  --orange-deep:  #932C00;
  --ember:        #FF6A2B;   /* the orange, for dark grounds only */
  --sky:          #9FCFFA;   /* Bristol rooftop sky, used sparingly */

  /* Type */
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cond:    "Helvetica Neue", "Arial Narrow", "Liberation Sans Narrow", Helvetica, Arial, sans-serif;
  --font-body:    Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Liberation Serif", "Times New Roman", serif;

  --t-xs:  0.7rem;
  --t-sm:  clamp(0.8rem, 0.77rem + 0.14vw, 0.88rem);
  --t-0:   clamp(0.98rem, 0.95rem + 0.16vw, 1.06rem);
  --t-1:   clamp(1.1rem, 1.03rem + 0.34vw, 1.32rem);
  --t-2:   clamp(1.32rem, 1.13rem + 0.85vw, 2.05rem);
  --t-3:   clamp(1.85rem, 1.32rem + 2.5vw, 4.05rem);
  --t-4:   clamp(2.9rem, 1.72rem + 5.6vw, 7.4rem);

  /* Measure */
  --wrap-w:  1240px;
  --gutter:  clamp(1.5rem, 4vw, 3rem);
  --rail:    clamp(1.9rem, 6vw, 5.5rem);
  --band-y:  clamp(4rem, 7vw, 6.5rem);
  --radius:  2px;

  /* The stroke */
  --rail-line: #B6C2D0;
  --rail-x: max(var(--gutter), calc((100% - var(--wrap-w)) / 2 + var(--gutter)));
  --one-h: clamp(64px, 9vw, 116px);
  --one-flag: clamp(14px, 1.9vw, 24px);
  --one-w: 5px;   /* the numeral's stem */
  --stroke: 3px;  /* the same stroke, borrowed as a rule */
}

/* ---- 2. Base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--chalk);
  color: var(--body-ink);
  font-family: var(--font-body);
  font-size: var(--t-0);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.04;
  letter-spacing: -0.032em;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
strong { font-weight: 700; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--slate); color: #fff; padding: 0.8rem 1.25rem;
  font-family: var(--font-cond); font-stretch: 82%;
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.band--dark :focus-visible, .site-footer :focus-visible { outline-color: var(--ember); }

[id] { scroll-margin-top: 88px; }

/* ---- 3. The stroke --------------------------------------- */
/* Every band paints the same hairline at the same x, so the
   line reads as one continuous stroke down the whole page.   */
.band { position: relative; padding-block: var(--band-y); }
.band::before {
  content: "";
  position: absolute; left: var(--rail-x); top: 0; bottom: 0;
  width: 1.5px; background: var(--rail-line);
}

/* Every band is the rail column plus one body column. Anything
   that needs two columns nests a .duo inside the body. */
.band-grid { display: grid; grid-template-columns: var(--rail) minmax(0, 1fr); }
.band-body { min-width: 0; }
.rail { position: relative; }

.duo { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) {
  .duo--wide { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); column-gap: clamp(2rem, 5vw, 4rem); align-items: start; }
}
@media (min-width: 940px) {
  .duo--hero { grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr); column-gap: clamp(2rem, 5vw, 4.5rem); align-items: end; }
}
@media (min-width: 980px) {
  .duo--split { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); column-gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
  .duo--split-top { align-items: start; }
}

/* Section tick: a short crossbar where each band begins */
.rail-tick {
  position: absolute; left: 0; top: 0.62em;
  width: 13px; height: 1.5px; background: var(--rail-line);
  transition: width 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.35s ease;
}
.band.is-current .rail-tick { width: 30px; background: var(--orange); }
.band--dark.is-current .rail-tick { background: var(--ember); }

/* The numeral: an orange stem + flag at the very top of the page,
   tapering into the hairline that carries on to the footer. */
.band--start::before { top: var(--one-h); }
.rail-one {
  position: absolute; left: var(--rail-x); top: 0;
  width: var(--one-w); height: var(--one-h);
  background: var(--orange);
  transform-origin: top;
}
.rail-one::before {
  content: "";
  position: absolute; right: 100%; top: 4%;
  width: var(--one-flag); height: 21%;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 62%, 0 100%, 0 38%);
}

/* Terminal: the foot of the 1, where the stroke stops. */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute; left: var(--rail-x); top: 0;
  height: clamp(46px, 6vw, 80px); width: 1.5px;
  background: var(--slate-line);
}
.rail-end {
  position: absolute; left: var(--rail-x); top: clamp(46px, 6vw, 80px);
  transform: translateX(-38%);
  width: clamp(22px, 3vw, 30px); height: var(--one-w);
  background: var(--ember);
}

/* ---- 4. Type components ---------------------------------- */
.label {
  display: block;
  font-family: var(--font-cond); font-stretch: 82%;
  font-size: var(--t-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--body-ink);
}
.band--dark .label { color: var(--slate-mute); }

.eyebrow { margin-bottom: 1.5rem; color: var(--orange); }
.band--dark .eyebrow { color: var(--ember); }

h2.head {
  font-size: var(--t-3);
  max-width: 21ch;
}
.band--dark h2.head, .band--dark h3 { color: #fff; }
.accent { color: var(--orange); }
.band--dark .accent { color: var(--ember); }

.lede {
  font-size: var(--t-1); line-height: 1.5;
  max-width: 44ch; margin-top: 1.4rem;
}
.band--dark .lede { color: #C6CEDA; }

.head-row { display: grid; gap: clamp(1.2rem, 3vw, 2.5rem); }
@media (min-width: 900px) {
  .head-row { grid-template-columns: 1.08fr 0.92fr; align-items: end; gap: clamp(2rem, 5vw, 4.5rem); }
  .head-row .lede { margin-top: 0; margin-bottom: 0.4rem; }
}

.note {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-2); line-height: 1.22; letter-spacing: -0.026em;
  margin-top: clamp(2.4rem, 4.5vw, 3.6rem);
  padding-top: 1.6rem; border-top: 1.5px solid var(--slate);
  color: var(--slate);
}
.band--dark .note { color: #fff; border-top-color: var(--slate-line); }
.note strong { color: var(--orange); }
.band--dark .note strong { color: var(--ember); }

.data {
  font-family: var(--font-cond); font-stretch: 82%;
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 700; letter-spacing: 0.01em;
}

/* ---- 5. Buttons ------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-cond); font-stretch: 82%;
  font-size: var(--t-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--radius);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); }
.btn-outline { border-color: var(--slate); color: var(--slate); }
.btn-outline:hover { background: var(--slate); color: var(--chalk); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.6rem 1.1rem; letter-spacing: 0.12em; }
.btn-block { width: 100%; }
.band--dark .btn-primary { background: var(--orange); }
.band--dark .btn-primary:hover { background: var(--ember); color: var(--slate); }

/* ---- 6. Header ------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--chalk) 88%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s ease;
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .site-header { background: rgba(231, 236, 241, 0.92); }
}
.site-header.is-stuck { border-bottom-color: var(--rule); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 70px; }

.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--slate); }
.logo-type { display: grid; }
.logo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.34rem; letter-spacing: -0.045em; line-height: 1;
}
/* The wordmark's "1" is drawn, not typeset — the same flag-and-stem the page
   rail is built from. Its stem descends past the baseline, pointing at the
   stroke that starts just below the header. */
.logo-one {
  display: inline-block; height: 1em; width: auto;
  vertical-align: -0.286em; margin-left: 0.07em;
  fill: var(--orange);
}
.logo-sub {
  font-family: var(--font-cond); font-stretch: 82%;
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.17em;
  font-weight: 700; line-height: 1; margin-top: 4px; color: var(--body-ink);
}

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.9vw, 1.8rem); }
.site-nav a:not(.btn) {
  position: relative;
  font-family: var(--font-cond); font-stretch: 82%;
  font-size: var(--t-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  text-decoration: none; color: var(--slate);
  padding: 0.4rem 0;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.site-nav a:not(.btn):hover::after,
.site-nav a.is-active:not(.btn)::after { transform: scaleX(1); }
.site-nav a.is-active:not(.btn) { color: var(--orange); }

.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; height: 1.5px; background: var(--slate); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset: 100% 0 auto 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--chalk); border-bottom: 1.5px solid var(--rule);
    padding: 0.25rem var(--gutter) 1.4rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.95rem 0; border-bottom: 1px solid var(--rule); font-size: var(--t-0); }
  .site-nav a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 1.1rem; }
}

/* ---- 7. Hero --------------------------------------------- */
.band--start { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }

.hero-h1 {
  font-size: var(--t-4);
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.hero-h1 .hero-line { display: block; }
.hero-h1 em { font-style: normal; color: var(--orange); }

.hero-brief { padding-bottom: 0.4rem; }
.hero-claim {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-2); line-height: 1.15; letter-spacing: -0.03em;
  color: var(--slate); max-width: 24ch; margin-bottom: 0.9rem;
}
.hero-sub { max-width: 46ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 460px) { .hero-actions .btn { flex: 1 1 100%; } }

.hero-figure { margin: clamp(2.5rem, 5vw, 4rem) 0 0; }
.hero-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 66% 50%; }
@media (min-width: 720px)  { .hero-figure img { aspect-ratio: 2 / 1; object-position: 50% 50%; } }
@media (min-width: 1100px) { .hero-figure img { aspect-ratio: 1580 / 576; } }

.facts { display: grid; gap: 0; margin-top: clamp(2rem, 4vw, 3rem); }
.facts li { padding: 1.1rem 0; border-top: 1px solid var(--rule); }
.facts li:first-child { border-top: 1.5px solid var(--slate); }
.facts .fact-v {
  display: block; font-size: var(--t-1);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.026em; color: var(--slate);
}
.facts .fact-k { margin-top: 0.15rem; }
@media (min-width: 560px) {
  .facts { grid-template-columns: repeat(2, 1fr); column-gap: clamp(1.5rem, 4vw, 2.5rem); }
  .facts li { border-top: 1.5px solid var(--slate); }
}
@media (min-width: 940px) {
  .facts { grid-template-columns: repeat(4, 1fr); column-gap: clamp(1rem, 2.5vw, 2rem); }
}

/* ---- 8. Dark bands --------------------------------------- */
.band--dark {
  --rail-line: var(--slate-line);
  background: var(--slate); color: #C6CEDA;
}
/* The last dark band runs straight into the footer, so it needs
   less of a tail of its own. */
.band--tail { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.band--paper { background: var(--paper); }

/* ---- 9. Evidence table (why now) ------------------------- */
.evidence { margin-top: clamp(2.5rem, 5vw, 4rem); }
.evidence li {
  display: grid; gap: 0.5rem clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--slate-line);
}
.evidence li:last-child { border-bottom: 1px solid var(--slate-line); }
.evidence-fig {
  font-family: var(--font-cond); font-stretch: 82%;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: clamp(3rem, 7vw, 4.6rem); font-weight: 700;
  line-height: 0.85; letter-spacing: -0.04em; color: var(--ember);
}
.evidence-claim { font-size: var(--t-1); line-height: 1.45; color: #fff; margin: 0; max-width: 32ch; }
.evidence-src { color: var(--slate-mute); align-self: end; }
@media (min-width: 780px) {
  .evidence li { grid-template-columns: minmax(0, 9rem) minmax(0, 1fr) minmax(0, 8rem); align-items: start; }
  .evidence-claim { padding-top: 0.15rem; }
  .evidence-src { text-align: right; padding-top: 0.4rem; }
}

.pull {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-2); line-height: 1.22; letter-spacing: -0.028em;
  color: #fff; display: grid; gap: 1rem clamp(2rem, 5vw, 4.5rem);
}
.pull p { margin: 0; }
.pull span { color: var(--ember); }
@media (min-width: 900px) { .pull { grid-template-columns: 1fr 1fr; } }

/* ---- 10. Sequence (build / prove / commercialise) -------- */
.sequence { display: grid; gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); }
.sequence li { padding: 1.5rem 0 0; border-top: 1.5px solid var(--slate); }
.sequence .label { color: var(--orange); }
.sequence h3 { font-size: var(--t-2); margin: 0.7rem 0 0.6rem; }
.sequence p { color: var(--body-ink); }
@media (min-width: 820px) {
  .sequence { grid-template-columns: repeat(3, 1fr); column-gap: clamp(1.5rem, 3.5vw, 3rem); }
}
@media (max-width: 819px) {
  .sequence li { padding-bottom: 1.5rem; }
  .sequence li:last-child { border-bottom: 1.5px solid var(--slate); }
}

/* ---- 11. Photo + list ------------------------------------ */
.duo figure { margin: 0; }
.duo figure img { width: 100%; object-fit: cover; }

.figure-room img { aspect-ratio: 4 / 5; object-position: 55% 45%; }
.figure-harri img { aspect-ratio: 3 / 4; object-position: 60% 28%; }
.figure-harri { position: sticky; top: 92px; }
@media (max-width: 979px) { .figure-harri { position: static; } }
figcaption { margin-top: 0.85rem; }

.rows { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); }
.rows li { padding: 1.3rem 0; border-top: 1px solid var(--rule); }
.rows li:last-child { border-bottom: 1px solid var(--rule); }
.rows h3 { font-size: var(--t-1); letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.rows p { color: var(--body-ink); }
.band--dark .rows li { border-color: var(--slate-line); }

.quote {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding-left: clamp(1.1rem, 2.5vw, 1.8rem);
  border-left: var(--stroke) solid var(--orange);
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-1); line-height: 1.32; letter-spacing: -0.022em;
  color: var(--slate); max-width: 42ch;
}

/* ---- 12. The six Mondays --------------------------------- */
.schedule { margin-top: clamp(2.5rem, 5vw, 4rem); }
.schedule li {
  display: grid; gap: 0.35rem clamp(1.2rem, 3vw, 2.5rem);
  padding: clamp(1.2rem, 2.5vw, 1.7rem) 0;
  border-top: 1px solid var(--rule);
  transition: background-color 0.2s ease;
}
.schedule li:first-child { border-top: 1.5px solid var(--slate); }
.schedule-when { display: grid; gap: 0.1rem; align-content: start; }
.schedule-date {
  font-family: var(--font-cond); font-stretch: 82%; font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: var(--t-1); letter-spacing: -0.005em;
  color: var(--slate); transition: color 0.2s ease;
}
.schedule-week { font-size: var(--t-xs); letter-spacing: 0.17em; }
.schedule li:hover .schedule-date { color: var(--orange); }
.schedule h3 { font-size: var(--t-2); letter-spacing: -0.028em; }
.schedule-out { margin: 0; color: var(--body-ink); max-width: 52ch; }
.schedule-out b {
  font-family: var(--font-cond); font-stretch: 82%; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--t-xs);
  color: var(--slate); margin-right: 0.55rem;
}
@media (min-width: 760px) {
  .schedule li { grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr); }
  .schedule-date { padding-top: 0.35rem; }
}
@media (min-width: 1060px) {
  .schedule li { grid-template-columns: minmax(0, 8.5rem) minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: baseline; }
  .schedule-out { grid-column: 3; }
}

.schedule .ship {
  background: var(--slate); color: #fff;
  border-top: 1.5px solid var(--slate);
  padding-block: clamp(1.5rem, 3vw, 2rem);
  padding-inline: 0;
}
@media (min-width: 760px) {
  /* Bleeds a little past the column so the last row reads as a full stop. */
  .schedule .ship {
    margin-inline: calc(-1 * clamp(0.75rem, 1.5vw, 1.25rem));
    padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
  }
}
.schedule .ship h3 { color: #fff; }
.schedule .ship .schedule-date { color: var(--sky); }
.schedule .ship .schedule-week { color: var(--slate-mute); }
.schedule .ship .schedule-out { color: #C6CEDA; }
.schedule .ship .schedule-out b { color: #fff; }
.schedule .ship:hover .schedule-date { color: var(--ember); }

.sessions {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap;
  gap: 0.4rem clamp(1rem, 2.5vw, 2rem);
}
.sessions li { color: var(--body-ink); }
.sessions b { color: var(--slate); }

/* ---- 13. Routes ------------------------------------------ */
.routes { display: grid; gap: 1px; margin-top: clamp(2.5rem, 5vw, 4rem); background: var(--rule); }
@media (min-width: 820px) { .routes { grid-template-columns: 1fr 1fr; } }
.route {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-top: var(--stroke) solid var(--slate);
  transition: border-color 0.25s ease;
}
.route:hover { border-top-color: var(--orange); }
.band--paper .route { background: #fff; }
.route h3 { font-size: var(--t-2); margin: 0.8rem 0 0.7rem; }
.route p { color: var(--body-ink); margin-bottom: 1.2rem; }

.ticks { display: grid; gap: 0.65rem; }
.ticks li { position: relative; padding-left: 1.7rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 0.85rem; height: 1.5px; background: var(--orange);
}
.ticks--rows { gap: 0; }
.ticks--rows li {
  font-size: var(--t-1); color: var(--slate);
  padding: 1.05rem 0 1.05rem 2rem;
  border-top: 1px solid var(--rule);
}
.ticks--rows li:first-child { border-top: 1.5px solid var(--slate); }
.ticks--rows li:last-child { border-bottom: 1px solid var(--rule); }
.ticks--rows li::before { top: 1.65em; width: 1.1rem; }

/* ---- 14. Investment panel -------------------------------- */
.invest {
  background: var(--slate); color: #C6CEDA;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border-radius: var(--radius);
}
.invest .big {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-1); line-height: 1.32; letter-spacing: -0.022em; color: #fff;
}
.invest .big .accent { color: var(--ember); }
.invest .small { font-size: var(--t-sm); color: var(--slate-mute); margin-bottom: 1.6rem; }
.duo--gap-top { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---- 15. Apply ------------------------------------------- */
.steps { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); }
.steps li {
  display: grid; grid-template-columns: 2.6rem 1fr; align-items: baseline;
  gap: 0.5rem; padding: 0.95rem 0; border-top: 1px solid var(--slate-line);
  color: #fff; font-size: var(--t-1);
}
.steps li:last-child { border-bottom: 1px solid var(--slate-line); }
.steps .step-n { color: var(--ember); }

.form {
  background: var(--slate-raise);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.form .label { color: #fff; }
.field { margin-bottom: 1.35rem; border: 0; padding: 0; }
.field label, .field legend { display: block; margin-bottom: 0.5rem; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--t-0);
  color: #fff; padding: 0.8rem 0.95rem;
  background: #0E141C; border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  transition: border-color 0.18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #7E8A9A; }
.field input:focus, .field textarea:focus { border-color: var(--ember); outline: none; }
.field textarea { resize: vertical; min-height: 6.5rem; }
.field.has-error input, .field.has-error textarea { border-color: #E4694F; }
.error { color: #F0917B; font-size: var(--t-sm); margin: 0.45rem 0 0; }

fieldset.field { margin-bottom: 1.7rem; }
.radios { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; }
.radios label { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0; color: #C6CEDA; }
.radios input { accent-color: var(--orange); width: 1.05rem; height: 1.05rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--t-sm); color: var(--slate-mute); margin: 1rem 0 0; }
.form-status { margin: 0.9rem 0 0; font-size: var(--t-sm); min-height: 1.4em; }
.form-status.is-ok  { color: var(--sky); }
.form-status.is-err { color: #F0917B; }

/* ---- 16. Footer ------------------------------------------ */
.site-footer {
  background: var(--slate); color: var(--slate-mute);
  padding-block: clamp(3.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 820px) {
  .duo--footer { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(2rem, 5vw, 4rem); align-items: start; }
}
.footer-logo { color: #fff; }
.footer-logo .logo-one { fill: var(--ember); }
.footer-logo .logo-sub { color: var(--slate-mute); }
.footer-nav { display: grid; gap: 0.6rem; margin-top: 1.6rem; }
@media (min-width: 820px) { .footer-nav { margin-top: 0; } }
.footer-nav a { text-decoration: none; color: #C6CEDA; }
.footer-nav a:hover { color: var(--ember); }
.footer-legal { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.4rem; border-top: 1px solid var(--slate-line); }
.footer-legal p { font-size: var(--t-sm); max-width: 64ch; }
.footer-legal .copyright { color: #6E7A8A; margin: 0.6rem 0 0; }

/* ---- 17. Motion ------------------------------------------ */
/* Scoped to .js so nothing is hidden if scripts never run. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Page-load sequence: the stroke draws down, then the headline
   rises line by line, then the brief and the facts. */
@keyframes draw-down { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.js .rail-one { animation: draw-down 0.8s cubic-bezier(0.3, 0.8, 0.2, 1) 0.05s both; }
.js .band--start::before { animation: draw-down 1.6s cubic-bezier(0.3, 0.8, 0.2, 1) 0.4s both; transform-origin: top; }
.js .band--start .hero-eyebrow,
.js .band--start .hero-line,
.js .band--start .hero-brief,
.js .band--start .hero-figure,
.js .band--start .facts { animation: rise-in 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.js .band--start .hero-eyebrow { animation-delay: 0.12s; }
.js .band--start .hero-line:nth-child(1) { animation-delay: 0.20s; }
.js .band--start .hero-line:nth-child(2) { animation-delay: 0.29s; }
.js .band--start .hero-line:nth-child(3) { animation-delay: 0.38s; }
.js .band--start .hero-brief  { animation-delay: 0.48s; }
.js .band--start .hero-figure { animation-delay: 0.58s; }
.js .band--start .facts       { animation-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .rail-one, .js .band--start::before,
  .js .band--start .hero-eyebrow, .js .band--start .hero-line,
  .js .band--start .hero-brief, .js .band--start .hero-figure,
  .js .band--start .facts { animation: none; }
  .btn:active { transform: none; }
  .rail-tick { transition: none; }
}

/* ---- 18. Print ------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .hero-actions, .form, .rail-one, .rail-end { display: none; }
  .band::before, .site-footer::before { display: none; }
  body { background: #fff; color: #000; }
  .band--dark, .band--paper, .invest, .schedule .ship, .site-footer { background: #fff !important; color: #000 !important; }
  .band--dark h2.head, .band--dark h3, .evidence-claim, .pull, .steps li, .invest .big { color: #000 !important; }
  .band-grid, .duo { grid-template-columns: 1fr !important; }
  .rail { display: none; }
}
