/* ============================================================
   AGENTIC ADAM — agenticadam.dev
   "The editor's monitor" — the site is a cut in progress.
   Cream / ink / orange / green. Poster type. Timecode HUD.
   ============================================================ */

:root {
  --cream: #F8F7F3;
  --peach: #F9E9DA;
  --ink: #0D0503;
  --ink-soft: rgba(13, 5, 3, 0.66);
  --ink-faint: rgba(13, 5, 3, 0.38);
  --orange: #FF6900;
  --green: #22A756;
  --line: rgba(13, 5, 3, 0.14);
  --grot: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Archivo Black", "Archivo", "Helvetica Neue", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "Space Mono", Menlo, Monaco, monospace;
  --maxw: 1200px;
  --tl-h: 52px; /* bottom timeline height */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* kill horizontal pan — must live on BOTH html and body for iOS Safari */
html, body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

body {
  font-family: var(--grot);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--tl-h);
  background-image: radial-gradient(ellipse 1000px 700px at 94% -8%, var(--peach) 0%, rgba(249,233,218,0) 60%);
  background-repeat: no-repeat;
}

::selection { background: var(--orange); color: var(--cream); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); } 75% { transform: translate(-3%,-3%); }
  100% { transform: translate(2%,2%); }
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, opacity 0.3s ease;
  mix-blend-mode: multiply;
}
.cursor.is-hover { width: 44px; height: 44px; background: rgba(255,105,0,0.14); }
@media (hover: none) { .cursor { display: none; } }

/* ---------- mono bits ---------- */
.mono { font-family: var(--mono); }
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); flex: none;
}
.kicker--green::before { background: var(--green); }
.kicker--rec::before { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.15; } }

/* ---------- header ---------- */
.site-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  position: relative; z-index: 20;
}
.logo {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.logo .dot { color: var(--green); }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--ink); }
.nav a.nav-cta {
  color: var(--cream); background: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  transition: background 0.15s ease;
}
.nav a.nav-cta:hover { background: var(--orange); }

/* ---------- hero / viewfinder ---------- */
.hero {
  position: relative;
  padding: 56px 34px 64px;
  margin: 12px 0 0;
  min-height: 72vh;
  display: flex; flex-direction: column; justify-content: center;
}
/* viewfinder corner brackets */
.hero::before, .hero::after,
.hero .vf::before, .hero .vf::after {
  content: ""; position: absolute;
  width: 34px; height: 34px;
  border: 3px solid var(--ink);
}
.hero::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero::after { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero .vf::before { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero .vf::after { bottom: 0; right: 0; border-left: none; border-top: none; }

.hud { position: absolute; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-soft); text-transform: uppercase; }
.hud--tr { top: 16px; right: 22px; display: flex; align-items: center; gap: 8px; }
.hud--tr .rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #E5484D; animation: blink 1.1s steps(1) infinite; }
.hud--bl { bottom: 16px; left: 22px; }
.hud--br { bottom: 16px; right: 22px; color: var(--ink); }

.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(52px, 10.2vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 26px 0 30px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseup 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: 0.05s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.16s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.27s; }
@keyframes riseup { to { transform: translateY(0); } }

.hero h1 .ghost {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}
.hero h1 .serif {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--orange);
  font-size: 1.04em;
}
.hero h1 .tc-note {
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.1em;
  vertical-align: super;
  color: var(--ink-faint);
  -webkit-text-stroke: 0;
  margin-left: 10px;
}

.uline { position: relative; white-space: nowrap; }
.uline svg {
  position: absolute; left: -3%; bottom: -0.16em;
  width: 106%; height: 0.3em; overflow: visible;
}
.uline svg path {
  fill: none; stroke: var(--orange);
  stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  animation: draw 0.8s ease 0.75s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero .lede {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--ink-soft);
  max-width: 54ch;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 28px;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--orange); color: var(--cream); }
.btn--ghost { color: var(--ink); border: 2px solid var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

/* ---------- marquee ---------- */
.marquee {
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  overflow: hidden;
  padding: 13px 0;
  background: var(--cream);
}
.marquee--tilt {
  transform: rotate(-1.2deg);
  width: 106vw;
  margin: 26px 0 26px -3vw; /* overhang both edges so rotation shows no gaps; clipped by html/body */
}
.marquee__track {
  display: inline-flex; white-space: nowrap;
  animation: scroll-x 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--mono); font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); padding-right: 20px;
}
.marquee__track .sep { color: var(--orange); padding-right: 20px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* giant outline marquee */
.bigquee { overflow: hidden; padding: 10px 0 4px; border: none; background: transparent; }
.bigquee .marquee__track { animation-duration: 34s; }
.bigquee .marquee__track span {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 150px);
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  padding-right: 36px;
}
.bigquee .marquee__track span em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 0;
}

/* ---------- sections ---------- */
section { padding: 96px 0; position: relative; }
.sec-head { margin-bottom: 54px; }
.sec-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(36px, 5.6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin-top: 18px;
}
.sec-head h2 .ghost { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.sec-head h2 .serif { font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; color: var(--orange); }

/* ---------- services: the bin ---------- */
.bin { border-top: 2.5px solid var(--ink); }
.bin-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.05fr 60px;
  gap: 24px; align-items: center;
  padding: 30px 18px;
  border-bottom: 2.5px solid var(--ink);
  text-decoration: none; color: var(--ink);
  position: relative;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.bin-row:hover { background: var(--ink); color: var(--cream); padding-left: 30px; }
.bin-row .idx {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; color: var(--orange);
}
.bin-row .idx small { display: block; color: inherit; opacity: 0.5; margin-top: 3px; font-size: 10px; }
.bin-row h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 2.9vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1;
}
.bin-row p { font-size: 15px; opacity: 0.72; max-width: 46ch; }
.bin-row .go {
  font-family: var(--mono); font-size: 22px;
  justify-self: end;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  color: var(--orange);
}
.bin-row:hover .go { opacity: 1; transform: translateX(0); }

/* ---------- process ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step3 {
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 108px 26px 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step3:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: 6px 8px 0 var(--ink); }
.step3 .bignum {
  position: absolute; top: -26px; right: -8px;
  font-family: var(--display);
  font-size: 150px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(13,5,3,0.16);
  pointer-events: none;
}
.step3 .tag {
  position: absolute; top: 22px; left: 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 7px 12px; border-radius: 999px;
}
.step3:nth-child(2) .tag { background: var(--orange); }
.step3:nth-child(3) .tag { background: var(--green); }
.step3 h3 {
  font-family: var(--display); text-transform: uppercase;
  font-size: 24px; letter-spacing: -0.015em; margin-bottom: 10px;
}
.step3 p { font-size: 15px; color: var(--ink-soft); }

/* ---------- about / darling ---------- */
.about-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 64px; align-items: start; }
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 24px 0 30px;
  max-width: 20ch;
}
.pull mark {
  background: none; color: var(--orange);
}
.about p { font-size: 17px; color: var(--ink-soft); margin-bottom: 16px; max-width: 56ch; }
.about p strong { color: var(--ink); }

.portrait { margin: 0 0 26px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.portrait__ring {
  position: relative;
  width: min(230px, 60vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(var(--orange) 0 25%, var(--ink) 25% 50%, var(--green) 50% 75%, var(--ink) 75% 100%);
  transform: rotate(-2deg);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 7px 9px 0 rgba(13,5,3,0.16);
}
.portrait__ring:hover { transform: rotate(0deg) scale(1.03); }
.portrait__ring img {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
}
.portrait__cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}
.portrait__cap .rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #E5484D; animation: blink 1.1s steps(1) infinite; flex: none; }

.specs {
  list-style: none;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
}
.specs .specs-head {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px;
  display: flex; justify-content: space-between;
}
.specs .specs-head .g { color: var(--green); }
.specs li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 15px 20px;
  border-bottom: 1.5px solid var(--line);
  font-size: 14px;
}
.specs li:last-child { border-bottom: none; }
.specs .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); padding-top: 3px; }
.specs .v { font-weight: 700; text-align: right; }
.specs a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--orange); }
.specs a:hover { color: var(--orange); }

/* ---------- contact / slate ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-side .pull { font-size: clamp(24px, 2.8vw, 34px); max-width: 24ch; }
.contact-side p { font-size: 16px; color: var(--ink-soft); margin-bottom: 26px; max-width: 44ch; }
.email-link {
  font-family: var(--mono); font-size: 14px;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.email-link:hover { color: var(--orange); }

.slate {
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 12px 0 rgba(13,5,3,0.16);
}
.slate__clap {
  height: 26px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 26px, var(--cream) 26px 52px);
  border-bottom: 3px solid var(--cream);
}
.slate__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 26px 0;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,247,243,0.55);
}
.slate__head .g { color: var(--green); }
form.contact-form { display: grid; gap: 16px; padding: 18px 26px 28px; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,247,243,0.55);
}
.field input, .field select, .field textarea {
  font-family: var(--grot); font-size: 16px;
  color: var(--cream);
  background: rgba(248,247,243,0.07);
  border: 1.5px solid rgba(248,247,243,0.22);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none; width: 100%;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  background: rgba(248,247,243,0.11);
}
.field ::placeholder { color: rgba(248,247,243,0.35); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(248,247,243,0.4); }
.form-status { font-weight: 700; font-size: 15px; display: none; padding: 13px 17px; border-radius: 12px; }
.form-status.ok { display: block; background: rgba(34,167,86,0.18); color: #7BE3A6; border: 1.5px solid rgba(34,167,86,0.5); }
.form-status.err { display: block; background: rgba(255,105,0,0.15); color: #FFB37E; border: 1.5px solid rgba(255,105,0,0.5); }
/* no-JS success/error banners — revealed purely by URL anchor, zero JS required */
.form-status.form-banner { display: none; }
.form-status.form-banner:target { display: block; }
.slate .btn--primary { background: var(--orange); color: var(--cream); border: none; cursor: pointer; justify-self: start; }
.slate .btn--primary:hover { background: var(--cream); color: var(--ink); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--cream); padding: 8px 0 40px; margin-top: 40px; }
.site-foot .bigquee .marquee__track span { -webkit-text-stroke: 2px rgba(248,247,243,0.7); }
.site-foot .bigquee .marquee__track span em { color: var(--orange); }
.foot-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1.5px solid rgba(248,247,243,0.18);
}
.foot-row .fm { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,247,243,0.5); }
.foot-row a { color: rgba(248,247,243,0.8); text-decoration: none; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; }
.foot-row a:hover { color: var(--orange); }

/* ---------- bottom timeline scrubber ---------- */
.timeline {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--tl-h);
  background: var(--ink);
  z-index: 100;
  display: flex; align-items: stretch;
  border-top: 2.5px solid var(--ink);
}
.timeline__tc {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--cream);
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
  background: var(--ink);
  border-right: 1.5px solid rgba(248,247,243,0.2);
  white-space: nowrap;
}
.timeline__tc .rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #E5484D; animation: blink 1.1s steps(1) infinite; }
.timeline__track { position: relative; flex: 1; display: flex; }
.timeline__clip {
  flex: 1;
  border-right: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 0.15s ease, filter 0.15s ease;
  overflow: hidden; white-space: nowrap;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  background-clip: padding-box;
}
.timeline__clip:hover { opacity: 1; filter: brightness(1.08); }
.timeline__clip.c1 { background-color: var(--peach); }
.timeline__clip.c2 { background-color: var(--orange); color: var(--cream); }
.timeline__clip.c3 { background-color: var(--green); color: var(--cream); }
.timeline__clip.c4 { background-color: var(--cream); }
.timeline__clip.c5 { background-color: #E3A94D; }
.playhead {
  position: absolute; top: -2px; bottom: -2px;
  width: 3px; background: #E5484D;
  left: 0; z-index: 2; pointer-events: none;
}
.playhead::before {
  content: ""; position: absolute; top: -1px; left: -5px;
  border: 7px solid transparent; border-top-color: #E5484D;
}

/* ---------- reveals (hidden state only when JS is confirmed running) ---------- */
.reveal { transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(30px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero h1 .line > span { transform: none; }
  .uline svg path { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .bin-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .bin-row p { grid-column: 2; }
  .bin-row .go { display: none; }
  .steps3 { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .row2 { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 42px 18px 54px; min-height: 64vh; }
  .hero h1 { font-size: clamp(28px, 10vw, 52px); }
  .sec-head h2 { font-size: clamp(30px, 8.5vw, 72px); }
  .pull { font-size: clamp(24px, 7vw, 48px); }
  .specs .v { overflow-wrap: anywhere; }
  .nav a:not(.nav-cta) { display: none; }
  .timeline__tc { font-size: 10px; padding: 0 10px; }
  .timeline__clip { font-size: 8px; letter-spacing: 0.06em; }
}
