/* ============ tokens ============ */
:root {
  --ink: #0b0b0c;
  --ink-2: #141414;
  --ink-3: #1b1a18;
  --paper: #e8e4da;
  --silver: #9a958a;
  --faint: #5c584f;
  --crimson: #b3001b;
  --crimson-text: #ea6b7d; /* crimson is too dark for text on ink/-2/-3; this hits >=4.5:1 for small text, >=3:1 for large */
  --crimson-soft: rgba(179, 0, 27, 0.14);

  --font-display: "Libre Caslon Display", Georgia, serif;
  --font-body: "Libre Caslon Text", Georgia, serif;
  --font-type: "Special Elite", "Courier New", monospace;

  --text-base: clamp(1rem, 0.94rem + 0.3vw, 1.125rem);
  --text-statement: clamp(2.6rem, 1.4rem + 5vw, 5.5rem);
  --text-hero: clamp(2.2rem, 1rem + 5vw, 5rem);
  --text-h2: clamp(1.9rem, 1.3rem + 2.4vw, 3.2rem);

  --space-section: clamp(2.8rem, 1.8rem + 3.5vw, 5.5rem);
  --pad-x: clamp(1.2rem, 5vw, 5rem);
  --header-h: 4.4rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; }
img, video { max-width: 100%; display: block; }

/* fixed header overlays the hero on index; pages without a hero need clearance */
body:not(:has(.hero)) main { padding-top: var(--header-h); }

.gold-dot { color: var(--crimson-text); }

main a:not(.btn) {
  color: inherit;
  text-decoration-color: var(--crimson);
  text-underline-offset: 3px;
  transition: color 180ms var(--ease-out);
}
main a:not(.btn):hover { color: var(--crimson-text); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

::selection { background: var(--paper); color: var(--ink); }

/* ============ film texture overlays ============ */
.grain {
  position: fixed; inset: -100%; z-index: 5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  animation: grain 0.8s steps(8) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  12.5% { transform: translate(-3%, 2%); }
  25% { transform: translate(2%, -4%); }
  37.5% { transform: translate(-4%, -2%); }
  50% { transform: translate(3%, 3%); }
  62.5% { transform: translate(-2%, 4%); }
  75% { transform: translate(4%, -3%); }
  87.5% { transform: translate(-3%, -3%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}
.leader { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 45; background: rgba(232, 228, 218, 0.08); }
.leader i { display: block; height: 100%; width: 0; background: var(--crimson); transition: width 0.1s linear; }

/* ============ buttons ============ */
.btn {
  font-family: var(--font-type);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95em 1.7em;
  border-radius: 2px;
  border: 1px solid var(--faint);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  color: var(--paper);
  transition: background-color 220ms var(--ease-out),
              color 220ms var(--ease-out),
              border-color 220ms var(--ease-out),
              transform 220ms var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--crimson-text); outline-offset: 3px; }

.btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-primary:hover { background: var(--crimson); color: var(--paper); border-color: var(--crimson); }

.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(232, 228, 218, 0.28); }
.btn-ghost:hover { border-color: var(--crimson); color: var(--crimson-text); }

.btn-pill { background: var(--crimson); color: var(--paper); border-color: var(--crimson); padding: 0.7em 1.3em; font-size: 0.72rem; }
.btn-pill:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============ header / nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem var(--pad-x);
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 228, 218, 0.08);
  transition: background-color 300ms var(--ease-out),
              border-color 300ms var(--ease-out);
}
.site-header.transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.transparent .site-nav.open a:not(.btn) { color: var(--paper); }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-type);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark svg { width: 27px; height: 27px; color: var(--crimson); flex-shrink: 0; }
.wordmark span { transition: color 180ms var(--ease-out); }
.wordmark:hover span { color: var(--crimson-text); }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a:not(.btn) {
  color: var(--silver);
  text-decoration: none;
  font-family: var(--font-type);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 180ms var(--ease-out), color 180ms var(--ease-out);
}
.site-nav a:not(.btn):hover { opacity: 1; color: var(--crimson-text); }
.site-nav a[aria-current="page"] { opacity: 1; color: var(--crimson-text); }
@media (min-width: 761px) {
  .site-nav a:not(.btn) { position: relative; }
  .site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -4px;
    height: 1px;
    background: var(--crimson);
    transition: right 260ms var(--ease-out);
  }
  .site-nav a:not(.btn):hover::after,
  .site-nav a[aria-current="page"]::after { right: 0; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid rgba(232, 228, 218, 0.1);
    padding: 0.5rem var(--pad-x) 1.2rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.8rem 0; font-size: 0.78rem; }
  .site-nav .btn { margin-top: 0.8rem; }
}

/* ============ hero (index) ============ */
.hero { height: 200vh; position: relative; background: var(--ink); }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.55);
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,0.82) 0%, rgba(11,11,12,0.22) 45%, rgba(11,11,12,0.4) 100%);
}
.hero-copy {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(3rem, 8vh, 6rem);
  max-width: 44rem;
  color: var(--paper);
}
.hero-copy h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9);
  /* safety net: a single long word (e.g. "AUTOMATION.") can't wrap on its
     own and would otherwise run off-screen under font substitution, an
     unusual zoom level, or before the webfont has loaded */
  overflow-wrap: break-word;
  word-break: break-word;
}
.h-line { display: block; }
.assess-word { color: var(--crimson); }
@media (max-width: 480px) {
  .hero-copy h1 { font-size: clamp(1.6rem, 0.5rem + 6vw, 2.2rem); }
}
.hero-line {
  max-width: 34rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.02rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.55;
  color: var(--silver);
  margin-bottom: 2rem;
}
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero .btn-primary { background: var(--paper); color: var(--ink); }
.hero .btn-primary:hover { background: var(--crimson); color: var(--paper); }
.hero-ghost { color: var(--paper); border-color: rgba(232, 228, 218, 0.3); }
.hero-ghost:hover { border-color: var(--crimson); color: var(--crimson-text); }
/* staged reveal driven from main.js playback progress */
body.reveal-on .hero [data-rv] {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--crimson));
  animation: hint-drift 2.6s var(--ease-out) infinite;
}
@keyframes hint-drift {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 0.25; }
}

/* ============ proof strip (home, under hero) ============ */
.proof-strip {
  background: var(--ink-2);
  color: var(--paper);
  padding: var(--space-section) var(--pad-x) calc(var(--space-section) * 0.9);
  border-top: 1px solid rgba(232, 228, 218, 0.08);
  border-bottom: 1px solid rgba(232, 228, 218, 0.08);
}
.proof-title { color: var(--silver); margin-bottom: 0.9rem; }
.proof-note {
  max-width: 46rem;
  font-style: italic;
  color: var(--silver);
  font-size: 0.98rem;
  margin-bottom: 2.2rem;
}
/* bento: feature stat + three compact stats + tall quote rail */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "a a a a a b b b q q q q"
    "a a a a a c c c q q q q"
    "a a a a a d d d q q q q";
  gap: 1px;
  background: rgba(232, 228, 218, 0.1);
  border: 1px solid rgba(232, 228, 218, 0.1);
}
.proof-col {
  background: var(--ink-2);
  padding: clamp(1.2rem, 2.4vw, 2rem);
}
.p-a { grid-area: a; display: flex; flex-direction: column; justify-content: center; }
.p-b { grid-area: b; }
.p-c { grid-area: c; }
.p-d { grid-area: d; }
.p-q { grid-area: q; display: flex; flex-direction: column; justify-content: center; }
.p-a .proof-figure { font-size: clamp(4rem, 2.4rem + 6vw, 8rem); }
.proof-figure {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3rem);
  line-height: 1;
  color: var(--crimson-text);
  margin-bottom: 0.7rem;
}
.proof-label {
  font-family: var(--font-type);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver);
  margin-bottom: 0.9rem;
}
.proof-where {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.proof-desc { font-size: 0.9rem; color: var(--silver); max-width: 24rem; }
@media (max-width: 900px) {
  .proof-grid {
    grid-template-areas:
      "a a a a a a a a a a a a"
      "b b b b c c c c d d d d"
      "b b b b c c c c d d d d"
      "q q q q q q q q q q q q";
  }
}
@media (max-width: 620px) {
  .proof-grid {
    grid-template-areas: "a a a a a a a a a a a a" "b b b b b b b b b b b b"
      "c c c c c c c c c c c c" "d d d d d d d d d d d d" "q q q q q q q q q q q q";
  }
}

/* ============ marquee ============ */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(232, 228, 218, 0.1);
  background: var(--ink);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  font-family: var(--font-type);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}
.m-dot { color: var(--crimson-text); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ credentials (about) ============ */
.cred-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
  max-width: 62rem;
}
.cred-group h3 {
  font-family: var(--font-type);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--crimson-text);
  margin-bottom: 0.9rem;
}
.cred-group ul { list-style: none; }
.cred-group li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(232, 228, 218, 0.1);
}
.cred-group li:first-child { border-top: none; padding-top: 0; }
.cred-name { font-family: var(--font-display); font-size: 1rem; line-height: 1.3; color: var(--paper); }
.cred-meta { font-size: 0.8rem; color: var(--silver); margin-top: 0.2rem; }

/* ============ testimonials ============ */
.testimonials { padding: var(--space-section) var(--pad-x); }
.t-head { max-width: 44rem; margin-bottom: 2rem; }
.t-head h2 { font-size: var(--text-h2); margin-bottom: 0.8rem; }
.t-head p { color: var(--silver); }
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.8);
  transition: transform 600ms var(--ease-out), filter 600ms var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.045); filter: grayscale(1) contrast(1.08) brightness(0.92); }
.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.5;
  border-left: 1px solid var(--faint);
  padding-left: 1.1rem;
  margin-bottom: 1.3rem;
  flex: 1;
  color: var(--paper);
}
.t-name { font-weight: 400; font-family: var(--font-display); font-size: 1rem; color: var(--paper); }
.t-role { font-size: 0.82rem; color: var(--silver); margin-top: 0.15rem; }
.t-rel {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-type);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crimson-text);
}

/* quote rail inside the bento */
.p-q blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.5;
  border-left: 1px solid var(--faint);
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  color: var(--paper);
}
.p-q cite { font-style: normal; font-family: var(--font-type); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--silver); }

/* testimonial beside the closing CTA */
.close-quote {
  border-left: 1px solid var(--faint);
  padding-left: 1.3rem;
  margin-top: 2.4rem;
  max-width: 42rem;
}
.close-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  color: var(--paper);
}
.close-quote cite { font-style: normal; font-family: var(--font-type); font-size: 0.72rem; color: var(--silver); }

/* ============ the problem (home) ============ */
.problem { padding: var(--space-section) var(--pad-x); background: var(--ink); }
.problem-head { max-width: 44rem; }
.problem-head h2 { font-size: var(--text-h2); margin-bottom: 0.8rem; }
.problem-head p { color: var(--silver); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  margin: 2rem 0 1.8rem;
}
.problem-card {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  overflow: hidden;
}
/* cursor-tracked torch spotlight, pointer devices only */
@media (hover: hover) and (pointer: fine) {
  .spot::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
                rgba(232, 228, 218, 0.09), transparent 65%);
    transition: opacity 300ms var(--ease-out);
  }
  .spot:hover::before { opacity: 1; }
}
.problem-card p:not(.problem-quote) { font-size: 0.93rem; color: var(--silver); }
.problem-card .problem-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.26rem;
  line-height: 1.35;
  color: var(--paper);
  margin-bottom: 0.8rem;
}
.problem-cost {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-type);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crimson-text);
}
.problem-close { max-width: 42rem; font-size: 1.05rem; color: var(--silver); }

/* ============ benefits (home, detective framing) ============ */
.benefits { padding: var(--space-section) var(--pad-x); background: var(--ink-2); border-top: 1px solid rgba(232, 228, 218, 0.08); border-bottom: 1px solid rgba(232, 228, 218, 0.08); }
.benefits-head { max-width: 46rem; margin-bottom: 2.2rem; }
.benefits-head h2 { font-size: var(--text-h2); margin-bottom: 0.9rem; }
.benefits-head p { color: var(--silver); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; max-width: 42rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.benefit-card {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  overflow: hidden;
}
.benefit-label {
  font-family: var(--font-type);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--crimson-text);
  margin-bottom: 0.9rem;
}
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--paper); }
.benefit-card p { font-size: 0.93rem; color: var(--silver); }

/* ============ close (home) ============ */
.close-section {
  padding: var(--space-section) var(--pad-x);
  background: var(--ink-2);
  border-top: 1px solid rgba(232, 228, 218, 0.08);
}
.close-head { max-width: 44rem; margin-bottom: 2rem; }
.close-head h2 { font-size: var(--text-h2); margin-bottom: 0.8rem; }
.close-head p { color: var(--silver); }
.close-cta { margin-top: 2.2rem; }

/* ============ content blocks (home) ============ */
.blocks { padding: var(--space-section) var(--pad-x); display: grid; gap: clamp(2.2rem, 4vw, 4rem); background: var(--ink); }
.block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.block:nth-child(even) .block-media { order: 2; }
.block-media { border: 1px solid rgba(232, 228, 218, 0.1); }
.block-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ink-3);
  filter: grayscale(1) contrast(1.08) brightness(0.75);
}
.block-kicker {
  font-family: var(--font-type);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--crimson-text);
  margin-bottom: 0.7rem;
}
.block h2 { font-size: var(--text-h2); margin-bottom: 0.9rem; }
.block p { color: var(--silver); max-width: 32rem; margin-bottom: 1.4rem; }
.block p strong { color: var(--paper); font-weight: 400; font-family: var(--font-display); }
@media (max-width: 820px) {
  .block, .block:nth-child(even) { grid-template-columns: 1fr; }
  .block:nth-child(even) .block-media { order: 0; }
}

/* ============ page head (subpages) ============ */
.page-head { padding: clamp(1.4rem, 3vw, 2.6rem) var(--pad-x) 0; max-width: 52rem; }
.page-head h1 { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem); font-weight: 400; margin-bottom: 0.9rem; }
.page-head p { color: var(--silver); max-width: 36rem; }

/* ============ services / cards ============ */
.section { padding: calc(var(--space-section) * 0.55) var(--pad-x); }
.section-title {
  font-size: 0.78rem;
  font-family: var(--font-type);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
  margin-bottom: 1.8rem;
  min-height: 1.4em;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.card {
  background: var(--ink-3);
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}
.card-media { position: relative; aspect-ratio: 16 / 10; background: var(--ink-3); overflow: hidden; }
.card-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(0.72);
  transition: transform 600ms var(--ease-out);
}
.card:hover .card-media video { transform: scale(1.045); }
.card-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card-phase {
  font-family: var(--font-type);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--crimson-text);
  margin-bottom: 0.7rem;
}
.card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; color: var(--paper); }
.card-leave { font-size: 0.95rem; color: var(--silver); flex: 1; }
.card-price { font-family: var(--font-display); font-size: 1.15rem; margin: 1.1rem 0 0.5rem; color: var(--paper); }
.card-proof { font-size: 0.8rem; font-family: var(--font-type); color: var(--crimson-text); margin-bottom: 1.1rem; }
.card .btn { align-self: flex-start; margin-top: auto; }
.card-body .btn { margin-top: 1.1rem; }

/* ============ events list ============ */
.event-list { display: grid; gap: 1.2rem; max-width: 46rem; }
.event {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.6rem 1.6rem 1.7rem;
}
.event h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--paper); }
.event p { font-size: 0.95rem; color: var(--silver); margin-bottom: 1.1rem; }
.event .meta { font-family: var(--font-type); font-size: 0.72rem; color: var(--crimson-text); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.empty-state {
  border: 1px dashed rgba(232, 228, 218, 0.2);
  border-radius: 2px;
  padding: 2.2rem 1.6rem;
  max-width: 46rem;
  color: var(--silver);
}

/* ============ about ============ */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: calc(var(--space-section) * 0.6) var(--pad-x);
}
.about-intro img,
.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  background: var(--ink-3);
  filter: grayscale(1) contrast(1.06) brightness(0.8);
}
.about-intro .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  line-height: 1.45;
  color: var(--paper);
  margin-bottom: 1.2rem;
}
.about-intro p { color: var(--silver); margin-bottom: 1rem; max-width: 36rem; }
@media (max-width: 760px) { .about-intro { grid-template-columns: 1fr; } }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 1rem;
  max-width: 60rem;
}
.expertise-grid div {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.1rem 1.2rem;
}
.expertise-grid h3 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--paper); }
.expertise-grid p { font-size: 0.88rem; color: var(--silver); }

/* ============ manifesto ============ */
.manifesto {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--space-section) var(--pad-x);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(232, 228, 218, 0.08);
}
.manifesto-media { border: 1px solid rgba(232, 228, 218, 0.1); }
.manifesto-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.65);
}
.manifesto-copy h2 { font-size: var(--text-h2); margin-bottom: 1.6rem; }
.manifesto-copy p { color: var(--silver); margin-bottom: 1.1rem; max-width: 32rem; }
.manifesto-copy p:first-of-type {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--paper);
}
.manifesto-sign { color: var(--crimson-text); font-family: var(--font-type); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1.6rem; }
@media (max-width: 860px) { .manifesto { grid-template-columns: 1fr; } }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid rgba(232, 228, 218, 0.1);
  background: var(--ink);
  padding: 2.5rem var(--pad-x) 3.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-type);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--silver);
}
.site-footer a { color: var(--silver); }
.site-footer a:hover { color: var(--crimson-text); }

/* ============ drawer ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 60;
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
}
.drawer-overlay.open { opacity: 1; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(26rem, 92vw);
  background: var(--ink-2);
  color: var(--paper);
  z-index: 70;
  padding: 3.2rem 2.2rem;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 380ms var(--ease-out);
  box-shadow: -24px 0 64px -32px rgba(0, 0, 0, 0.7);
  border-left: 1px solid rgba(232, 228, 218, 0.1);
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.8rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--paper);
  line-height: 1;
}
.drawer-close:hover { color: var(--crimson-text); }
.drawer-kicker {
  font-family: var(--font-type);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--crimson-text);
  margin-bottom: 0.6rem;
}
.drawer-title { font-size: 1.8rem; margin-bottom: 0.8rem; }
.drawer-sub { font-size: 0.92rem; color: var(--silver); margin-bottom: 2rem; }
.drawer form { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer label {
  font-family: var(--font-type);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
  margin-top: 1rem;
}
.drawer input, .drawer textarea {
  font: inherit;
  color: var(--paper);
  padding: 0.7em 0.9em;
  border: 1px solid rgba(232, 228, 218, 0.2);
  border-radius: 2px;
  background: var(--ink-3);
  resize: vertical;
}
.drawer input:focus-visible, .drawer textarea:focus-visible {
  outline: 2px solid var(--crimson-text); outline-offset: 2px;
}
.drawer .btn { margin-top: 1.6rem; align-self: flex-start; }
.form-note { margin-top: 1rem; font-size: 0.85rem; font-style: italic; color: var(--silver); }

/* ============ track record (about) ============ */
.track-record { display: grid; gap: 1.2rem; max-width: 60rem; }
.track-record article {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.6rem 1.6rem 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 9rem) 1fr;
  gap: 1.4rem;
}
.track-record .stat {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--crimson-text);
  line-height: 1;
}
.track-record .stat-label { font-family: var(--font-type); font-size: 0.7rem; color: var(--silver); margin-top: 0.4rem; }
.track-record h3 { font-size: 1.15rem; margin-bottom: 0.35rem; color: var(--paper); }
.track-record p { font-size: 0.92rem; color: var(--silver); }
@media (max-width: 560px) {
  .track-record article { grid-template-columns: 1fr; }
}

/* ============ PRISM method block ============ */
.prism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr));
  gap: 1rem;
  max-width: 62rem;
  margin-top: 1.6rem;
}
.prism-grid div { text-align: left; }
.prism-letter {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--crimson-text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.prism-grid h3 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--paper); }
.prism-grid p { font-size: 0.85rem; color: var(--silver); }
.op30-callout {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-left: 1px solid var(--crimson);
  background: var(--crimson-soft);
  border-radius: 0 2px 2px 0;
  max-width: 42rem;
  font-size: 0.95rem;
  color: var(--paper);
}
.op30-callout strong { color: var(--crimson-text); font-family: var(--font-display); font-weight: 400; }

/* ============ FAQ ============ */
.faq-list { max-width: 46rem; display: grid; gap: 0.7rem; }
.faq-item {
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--crimson-text);
  font-family: var(--font-body);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 220ms var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.3rem; font-size: 0.92rem; color: var(--silver); }

/* ============ waste scorecard ============ */
.scorecard {
  max-width: 34rem;
  border: 1px solid rgba(232, 228, 218, 0.1);
  border-radius: 2px;
  background: var(--ink-3);
  padding: 1.8rem;
}
.scorecard form { display: grid; gap: 1rem; }
.scorecard-row { max-width: 52rem; margin: 0 auto; }
.scorecard-row form { grid-template-columns: repeat(3, 1fr); align-items: end; }
.scorecard-row form > button { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 640px) {
  .scorecard-row form { grid-template-columns: 1fr; }
}
.scorecard label { font-family: var(--font-type); font-size: 0.72rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.08em; }
.scorecard input {
  font: inherit;
  color: var(--paper);
  width: 100%;
  padding: 0.65em 0.8em;
  border: 1px solid rgba(232, 228, 218, 0.2);
  border-radius: 2px;
  background: var(--ink-2);
  margin-top: 0.35rem;
}
.scorecard-result {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(232, 228, 218, 0.2);
}
.scorecard-result .figure {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--crimson-text);
  display: block;
  margin: 0.3rem 0 0.9rem;
}

/* ============ coming soon stamp ============ */
.kicker-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.kicker-row .block-kicker, .kicker-row .section-title { margin-bottom: 0; }
.kicker-row:has(.block-kicker) { margin-bottom: 0.7rem; }
.kicker-row:has(.section-title) { margin-bottom: 1.8rem; }
.coming-soon {
  display: inline-block;
  margin-left: 0.7em;
  transform: rotate(-6deg);
  font-family: var(--font-type);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson-text);
  border: 1px solid var(--crimson);
  border-radius: 2px;
  padding: 0.25em 0.6em;
  white-space: nowrap;
  vertical-align: middle;
}

/* ============ typewriter labels ============ */
.tw { font-family: var(--font-type); }
.tw .caret { display: inline-block; width: 0.5em; border-bottom: 2px solid var(--crimson); transform: translateY(-0.1em); animation: caret 1s steps(2) infinite; margin-left: 2px; }
@keyframes caret { 50% { opacity: 0; } }
.tw.done .caret { display: none; }

/* ============ scroll reveal ============ */
body.reveal-on .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
body.reveal-on .rv.in { opacity: 1; transform: none; }
/* stagger siblings inside grids */
body.reveal-on .rv.in:nth-child(2) { transition-delay: 90ms; }
body.reveal-on .rv.in:nth-child(3) { transition-delay: 180ms; }

/* ============ motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-scroll-hint { animation: none; }
  .grain { animation: none; }
  .tw .caret { animation: none; }
  .card, .btn, .drawer, .drawer-overlay, .card-media video { transition: none; }
}

/* ============ ported peak13 asset components ============ */

/* section divider (asset 22) */
.divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 680px; margin: 0 auto; padding: 0 var(--pad-x);
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(232, 228, 218, 0.12); }
.divider svg { width: 24px; height: 24px; color: var(--crimson); flex: none; }

/* pricing ladder (asset 11) */
.price { display: grid; gap: 16px; max-width: 680px; margin-bottom: 2.6rem; }
.price-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 22px; align-items: center;
  border: 1px solid rgba(232, 228, 218, 0.14); background: var(--ink-2); padding: 18px 22px;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.price-row:hover { border-color: rgba(179, 0, 27, 0.55); transform: translateY(-3px); }
.price-row.hot { border-color: var(--crimson); }
.price-t { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; margin-bottom: 2px; }
.price-s { font-size: 0.82rem; color: var(--silver); line-height: 1.5; }
.price-n { font-family: var(--font-type); font-size: 1.45rem; white-space: nowrap; }
.price-n small { font-size: 0.65rem; color: var(--silver); letter-spacing: 0.1em; }
.price-row.hot .price-n { color: var(--crimson-text); }
.price-tag {
  display: inline-block; font-family: var(--font-type); font-size: 0.55rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson-text); margin-left: 10px;
}
@media (max-width: 600px) { .price-row { grid-template-columns: 1fr; gap: 10px; } }

/* receipt (asset 24) */
.audit-maths { display: flex; flex-wrap: wrap; gap: 2.6rem; align-items: flex-start; }
.audit-maths-copy { flex: 1; min-width: 16rem; max-width: 28rem; }
.audit-maths-copy p { margin-bottom: 1rem; }
.audit-maths-copy .small { font-size: 0.82rem; color: var(--silver); }
.rcpt {
  width: 330px; max-width: 100%; background: var(--ink-2);
  border: 1px solid rgba(232, 228, 218, 0.14); padding: 26px 24px 20px;
  font-family: var(--font-type); font-size: 12px; position: relative;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.rcpt:hover { border-color: rgba(179, 0, 27, 0.55); transform: translateY(-3px); }
.rcpt::after {
  content: ''; position: absolute; left: -1px; right: -1px; bottom: -12px; height: 12px;
  background: linear-gradient(-45deg, transparent 8px, var(--ink-2) 0) 0 0/16px 12px repeat-x,
              linear-gradient(45deg, transparent 8px, var(--ink-2) 0) 8px 0/16px 12px repeat-x;
}
.rcpt-h { text-align: center; font-family: var(--font-display); letter-spacing: 0.08em; font-size: 14px; text-transform: uppercase; margin-bottom: 4px; }
.rcpt-sub { text-align: center; color: var(--silver); font-size: 10px; letter-spacing: 0.06em; margin-bottom: 16px; }
.rcpt-line { border-top: 1px dashed rgba(232, 228, 218, 0.25); margin: 12px 0; }
.rcpt-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; }
.rcpt-row .m { color: var(--silver); white-space: nowrap; }
.rcpt-tot { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-body); font-weight: 700; font-size: 14px; margin-top: 4px; }
.rcpt-tot .figure { font-family: var(--font-type); font-size: 22px; color: var(--crimson-text); }
.rcpt-bar {
  height: 34px; margin: 16px 0 6px;
  background: repeating-linear-gradient(90deg, var(--paper) 0 2px, transparent 2px 5px, var(--paper) 5px 6px, transparent 6px 11px);
  opacity: 0.85;
}
.rcpt-foot { text-align: center; color: var(--silver); font-size: 9.5px; letter-spacing: 0.12em; }

/* timeline (asset 10) */
.tl { list-style: none; max-width: 560px; position: relative; padding-left: 30px; }
.tl::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: rgba(232, 228, 218, 0.14); }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -30px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); border: 1px solid rgba(232, 228, 218, 0.25); }
.tl-item.hot .tl-dot { background: var(--crimson); border-color: var(--crimson); }
.tl-when { font-family: var(--font-type); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 5px; }
.tl-t { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.tl-item.hot .tl-t { color: var(--crimson-text); }
.tl-s { font-size: 0.84rem; color: var(--silver); line-height: 1.55; }

/* session ticket (asset 29) */
.tix { display: flex; max-width: 640px; }
.tix-main, .tix-stub {
  background: var(--ink-2); border: 1px solid rgba(232, 228, 218, 0.14); padding: 24px 26px; position: relative;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.tix:hover .tix-main, .tix:hover .tix-stub { border-color: rgba(179, 0, 27, 0.55); transform: translateY(-3px); }
.tix-main {
  flex: 1; border-right: none;
  -webkit-mask: radial-gradient(circle 9px at 100% 50%, transparent 98%, #000);
  mask: radial-gradient(circle 9px at 100% 50%, transparent 98%, #000);
}
.tix-stub {
  width: 150px; border-left: 1px dashed var(--silver);
  display: grid; align-content: center; justify-items: center; gap: 8px; text-align: center;
  -webkit-mask: radial-gradient(circle 9px at 0% 50%, transparent 98%, #000);
  mask: radial-gradient(circle 9px at 0% 50%, transparent 98%, #000);
}
.tix-k { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--crimson-text); margin-bottom: 10px; font-family: var(--font-type); }
.tix-t { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
.tix-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; font-size: 0.76rem; color: var(--silver); margin-bottom: 18px; }
.tix-meta b { display: block; font-size: 0.84rem; font-family: var(--font-body); color: var(--paper); margin-top: 2px; }
.tix-no { font-family: var(--font-type); font-size: 24px; color: var(--crimson-text); }
.tix-stub .tix-brand { font-family: var(--font-type); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); }
.event-list .tix + .tix { margin-top: 1.4rem; }
@media (max-width: 560px) {
  .tix-stub { display: none; }
  .tix-main { mask: none; -webkit-mask: none; border-right: 1px solid rgba(232, 228, 218, 0.14); }
}

/* flip-dot readout (asset 23) */
.tick-canvas { display: block; margin: 0 auto 0.6rem; max-width: 100%; height: auto !important; }

/* donut chart (asset 16) */
.chart {
  border: 1px solid rgba(232, 228, 218, 0.14); background: var(--ink-2); padding: 26px 28px 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; max-width: 540px;
  margin: 2.4rem auto 0;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.chart:hover { border-color: rgba(179, 0, 27, 0.55); transform: translateY(-3px); }
.donut { position: relative; width: 170px; height: 170px; }
.donut svg { transform: rotate(-90deg); }
.donut .ring { stroke: rgba(232, 228, 218, 0.14); fill: none; }
.donut .seg { fill: none; }
.donut-mid { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.donut-n { font-family: var(--font-type); font-size: 30px; color: var(--crimson-text); line-height: 1; }
.donut-l { font-family: var(--font-type); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); margin-top: 6px; }
.dleg { display: grid; gap: 12px; }
.dleg-row { display: flex; align-items: center; gap: 12px; font-size: 0.86rem; }
.dleg-row i { width: 12px; height: 12px; border: 1px solid var(--paper); flex: none; }
.dleg-row.a i { background: var(--crimson); border-color: var(--crimson); }
.dleg-row.b i { background: var(--paper); }
.dleg-row.c i { background: var(--silver); border-color: var(--silver); }
.dleg-row.d i { background: transparent; }
.dleg-v { margin-left: auto; font-family: var(--font-type); font-size: 0.78rem; color: var(--silver); }
@media (max-width: 540px) { .chart { grid-template-columns: 1fr; justify-items: center; } }


/* ============ career timeline gantt (index proof strip) ============ */
.ct-timeline { max-width: 940px; margin: 0 auto; }
.ct-rows { display: grid; gap: 12px; }
.ct-row {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 24px;
  align-items: center;
}
.ct-label { min-width: 0; }
.ct-co { display: block; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.ct-role { display: block; color: var(--silver); font-size: 0.82rem; line-height: 1.35; margin-top: 2px; }
.ct-dates {
  display: block; font-family: var(--font-type); font-size: 0.64rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson-text); margin-top: 6px;
}
.ct-metric { display: block; font-size: 0.8rem; color: var(--silver); line-height: 1.5; margin-top: 8px; }
.ct-fig { font-family: var(--font-type); font-weight: 400; font-size: 1.15rem; color: var(--crimson-text); margin-right: 4px; }

.ct-track {
  position: relative; height: 46px;
  border: 1px solid rgba(232, 228, 218, 0.1);
  background:
    repeating-linear-gradient(90deg,
      rgba(232, 228, 218, 0.09) 0 1px,
      transparent 1px calc(100% / 7));
  background-color: rgba(11, 11, 12, 0.4);
}
.ct-bar {
  position: absolute; top: 7px; bottom: 7px;
  left: var(--start); width: var(--span);
  background: var(--crimson-soft);
  border: 1px solid var(--crimson);
  border-radius: 2px;
  min-width: 10px;
  transform-origin: left center;
}
.ct-award {
  position: absolute; top: -9px; left: -1px;
  font-size: 0.68rem; color: var(--crimson-text); line-height: 1;
  background: var(--ink-2); border: 1px solid var(--crimson); border-radius: 2px;
  padding: 2px 4px;
}
.ct-legend {
  font-size: 0.76rem; color: var(--silver); margin-top: 1.6rem;
  display: flex; align-items: center; gap: 8px;
}
.ct-legend .ct-award {
  position: static; background: none; border: none; padding: 0; font-size: 0.82rem;
}

.ct-foot { display: grid; grid-template-columns: minmax(200px, 300px) 1fr; gap: 24px; margin-top: 10px; }
.ct-axis { position: relative; height: 16px; }
.ct-axis span {
  position: absolute; transform: translateX(-50%);
  font-family: var(--font-type); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--silver);
}
.ct-axis span:first-child { transform: translateX(0); }
.ct-axis span:last-child { transform: translateX(-100%); }

/* bar grow on reveal, only when JS motion is active; no-JS shows full bars */
body.reveal-on .ct-timeline.rv .ct-bar { transform: scaleX(0); transition: transform 0.75s var(--ease-out); }
body.reveal-on .ct-timeline.rv .ct-bar > * { opacity: 0; transition: opacity 0.3s var(--ease-out) 0.4s; }
body.reveal-on .ct-timeline.rv.in .ct-bar { transform: scaleX(1); }
body.reveal-on .ct-timeline.rv.in .ct-bar > * { opacity: 1; }
body.reveal-on .ct-timeline.rv.in .ct-row:nth-child(2) .ct-bar { transition-delay: 0.12s; }
body.reveal-on .ct-timeline.rv.in .ct-row:nth-child(3) .ct-bar { transition-delay: 0.24s; }

.proof-quote { max-width: 760px; margin: 2.6rem auto 0; }
.proof-quote blockquote {
  font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--paper);
}
.proof-quote blockquote::before { content: "\201C"; color: var(--crimson-text); }
.proof-quote blockquote::after { content: "\201D"; color: var(--crimson-text); }
.proof-quote figcaption { margin-top: 1rem; font-size: 0.82rem; color: var(--silver); font-style: normal; }

@media (max-width: 640px) {
  .ct-row { grid-template-columns: 1fr; gap: 8px; }
  .ct-foot { grid-template-columns: 1fr; }
  .ct-track { height: 32px; }
  .ct-rows { gap: 20px; }
}
