/* Sisyphus Logistics — sisyphuslogistics.com
   Uphill freight. One route. No missed days.
   Palette and type per the company signage. */

:root {
  --navy: #1B3350;
  --hill: #132540;
  --oxblood: #54121A;
  --orange: #D97218;
  --steel: #8B97A6;
  --ink: #2A2E35;
  --muted: #5B6470;
  --panel: #F2F4F6;
  --line: #D8DDE3;
  --green: #1E7B34;
  --rec-red: #D9302C;
  --footer-divider: #2C4568;
  --strip-text: #C8D2DE;
  --font-display: "Archivo Narrow", "Arial Narrow", sans-serif;
  --font-body: Arimo, Arial, sans-serif;
  --font-mono: "Courier Prime", "Courier New", monospace;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #FFFFFF;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- anthem banner ---------- */

.anthem-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--hill);
  color: #FFFFFF;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 14px rgba(10, 18, 30, 0.4);
}
.anthem-banner .banner-copy { min-width: 0; }
.anthem-banner .banner-copy p { font-size: 13px; }
.anthem-banner .banner-actions { display: flex; gap: 12px; align-items: center; }
.btn-accept {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: #FFFFFF;
  background: var(--orange);
  border: none;
  padding: 9px 16px;
  cursor: pointer;
}
.btn-pause {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--strip-text);
  background: none;
  border: 1px solid #3A5372;
  padding: 8px 12px;
  cursor: pointer;
}
.anthem-banner.accepted { padding: 4px 24px; }
.anthem-banner.accepted .banner-copy p { font-size: 11px; }
.anthem-banner.accepted .btn-accept { display: none; }

/* ---------- header ---------- */

.site-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--navy);
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-glyph {
  width: 46px;
  height: 46px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  padding: 3px;
}
.brand-glyph img { position: absolute; inset: 3px; width: calc(100% - 6px); height: calc(100% - 6px); transition: opacity 0.5s ease; }
.brand-glyph .state-b { opacity: 0; }
.brand-glyph.flipped .state-a { opacity: 0; }
.brand-glyph.flipped .state-b { opacity: 1; }
.wordmark .word-a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: #FFFFFF;
  line-height: 1;
}
.wordmark .word-b {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 9px;
  color: #C8D2DE;
  line-height: 1;
  margin-top: 2px;
}
.site-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; padding: 11px 24px; }
.site-nav a { font-size: 14px; color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--navy); }
.site-nav a.active { color: var(--navy); font-weight: 700; }
.header-btns { display: flex; gap: 10px; align-items: center; }
.btn-track {
  font-size: 14px;
  color: #FFFFFF;
  background: var(--orange);
  text-decoration: none;
  padding: 10px 18px;
  display: inline-block;
}
.btn-report {
  font-size: 14px;
  color: var(--navy);
  background: #FFFFFF;
  text-decoration: none;
  padding: 10px 18px;
  display: inline-block;
}

/* ---------- shared blocks ---------- */

.page-title { padding: 48px 0 32px; }
.page-title h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--steel);
}
.eyebrow.confession { color: var(--orange); }
.mono-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--steel);
  margin-top: 10px;
}
.lede { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 10px; max-width: 760px; }

.btn-primary {
  font-size: 15px; color: #FFF; background: var(--navy);
  border: none; padding: 13px 22px; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-ghost {
  font-size: 15px; color: var(--navy); background: none;
  border: 1px solid var(--line); padding: 13px 22px; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-orange {
  font-size: 15px; color: #FFF; background: var(--orange);
  border: none; padding: 14px 26px; cursor: pointer; text-decoration: none; display: inline-block;
}

.hairline { border: 0; border-top: 1px solid var(--line); }

/* ---------- home ---------- */

.hero { display: flex; gap: clamp(24px, 5vw, 80px); align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero-copy { flex: 1; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 58px;
  line-height: 1.05;
  color: var(--navy);
}
.hero-copy .lede { margin: 24px 0; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 28px; }
.hero-motto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--orange);
}
.hero-figure { text-align: center; }
.hero-figure img { width: clamp(240px, 28vw, 380px); height: auto; margin: 0 auto; }
.fig-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  margin-top: 12px;
}

.stats-band { background: var(--panel); }
.stats-band .container { display: flex; justify-content: space-between; padding-top: 40px; padding-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.stat .value { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--navy); }
.stat .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); margin-top: 6px; }

.services { padding-top: 72px; padding-bottom: 72px; }
.services h2, .section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 24px;
}
.service-row {
  display: flex; gap: 40px; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-cell { width: clamp(220px, 28vw, 340px); flex-shrink: 0; }
.service-cell .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); }
.service-cell .code { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--steel); margin-top: 3px; }
.service-row p { font-size: 14px; line-height: 1.5; color: var(--muted); flex: 1; }
.service-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--orange); }

.testimonials { padding-top: 24px; padding-bottom: 72px; }
.quotes { display: flex; gap: 60px; }
.quote { flex: 1; }
.quote .stars { font-size: 16px; color: var(--orange); }
.quote blockquote { font-style: italic; font-size: 17px; line-height: 1.5; margin: 12px 0; }
.quote cite { font-family: var(--font-mono); font-style: normal; font-size: 12px; color: var(--steel); }

.cta-band { background: var(--hill); }
.cta-band .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 56px; padding-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: #FFF; }

/* ---------- tracker ---------- */

.status-card { border: 1px solid var(--line); padding: 40px; margin-bottom: 72px; }
.arriving { font-weight: 700; font-size: 22px; color: var(--green); }
.driver-line { font-size: 14px; color: var(--muted); margin: 8px 0 32px; }

.milestones { margin-bottom: 32px; }
.dots-row { display: flex; align-items: center; }
.dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; }
.dot.done { background: var(--navy); }
.dot.current { background: var(--orange); }
.dot.pending { background: #FFF; border: 2px solid var(--steel); }
.seg { flex: 1; height: 2px; }
.seg.done { background: var(--navy); }
.seg.pending { background: var(--line); }
.milestone-labels { position: relative; height: 16px; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); }
.milestone-labels .ml { position: absolute; top: 0; }
.milestone-labels .ml.current { color: var(--orange); }

.milestones-v { display: none; }
.milestones-v .step { display: flex; align-items: center; gap: 12px; }
.milestones-v .step .dot { width: 14px; height: 14px; }
.milestones-v .ml { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); }
.milestones-v .ml.current { color: var(--orange); }
.milestones-v .vseg { width: 2px; height: 16px; margin: 4px 0 4px 6px; }
.milestones-v .vseg.done { background: var(--navy); }
.milestones-v .vseg.pending { background: var(--line); }

.progress-bar { display: flex; height: 14px; margin-bottom: 8px; }
.progress-fill { flex: 1; background: var(--navy); }
.progress-gap { width: 11px; background: var(--panel); }
.progress-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; }
.progress-labels .pct { color: var(--navy); }
.progress-labels .recalc { color: var(--steel); }

.route-map { position: relative; background: var(--panel); height: 300px; margin: 32px 0; overflow: hidden; }
.route-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.live-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--navy); color: #FFF;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px;
  padding: 5px 10px; display: flex; align-items: center; gap: 6px;
}
.rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rec-red); display: inline-block; }
.map-label { position: absolute; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--steel); }
.lbl-base { left: 40px; bottom: 26px; }
.lbl-summit { right: 110px; top: 24px; }
.lbl-return { right: 24px; bottom: 26px; }
.lbl-origin { left: 80px; bottom: 12px; }
.lbl-hillsummit { right: 24px; top: 16px; }
.lbl-g100 { left: 10px; top: 8px; }
.lbl-g0 { left: 10px; bottom: 22px; }
.lbl-gaug { left: 64%; bottom: 4px; }
.lbl-gbak { left: 20%; top: 60%; }

.tracker-actions { display: flex; gap: 16px; }

/* ---------- fleet ---------- */

.fleet-body { display: flex; gap: 60px; padding-bottom: 72px; }
.fleet-main { flex: 1; }
.van-photo { border: 1px solid var(--line); }
.fleet-side { width: clamp(280px, 32vw, 420px); flex-shrink: 0; display: flex; flex-direction: column; gap: 28px; }
.unit-spec { border: 1px solid var(--line); padding: 22px 26px; }
.unit-spec h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 14px; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); font-size: 13px; }
.spec-row .k { color: var(--muted); }
.spec-row .v { font-family: var(--font-mono); font-size: 12px; color: var(--navy); }
.spec-row .v.green { color: var(--green); }

.tracking-section { padding-bottom: 72px; }
.tracking-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.live-chip {
  background: var(--navy); color: #FFF;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px;
  padding: 5px 10px; display: inline-flex; align-items: center; gap: 6px;
}
.hill-panel { position: relative; border: 1px solid var(--line); height: 360px; overflow: hidden; margin-bottom: 20px; }
.hill-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.telemetry-readout { position: absolute; top: 40px; left: 80px; }
.telemetry-readout .ascent { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy); }
.telemetry-readout .ro { font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-top: 6px; }
.pulse-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); }
.pulse-dot::before, .pulse-dot::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  background: rgba(217, 114, 24, 0.33);
  animation: pulse 2.4s ease-out infinite;
}
.pulse-dot::after { inset: -16px; background: rgba(217, 114, 24, 0.15); animation-delay: 1.2s; }
@keyframes pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

.graph-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); margin-bottom: 8px; }
.ascent-graph { position: relative; border: 1px solid var(--line); height: 210px; overflow: hidden; }
.ascent-graph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.graph-caption { font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-top: 8px; }

.cam-panel { position: relative; background: var(--panel); height: 240px; overflow: hidden; display: block; }
.cam-panel .cam-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #9FB3C8 0%, #C9D6E2 55%, #8A7F72 56%, #6E6357 100%);
}
.cam-panel .cam-rock {
  position: absolute; left: 30%; bottom: 18%; width: 40%; height: 55%;
  background: #7B7168;
  clip-path: polygon(15% 100%, 5% 55%, 22% 18%, 55% 0%, 85% 25%, 95% 70%, 80% 100%);
}
.cam-panel .cam-live { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cam-caption { font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-top: 8px; line-height: 1.5; }

/* ---------- founder ---------- */

.founder-top { display: flex; gap: 60px; padding: 48px 0; }
.founder-titles { flex: 1; }
.founder-titles h1 { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--navy); }
.founder-sub { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--oxblood); margin: 14px 0; }
.founder-doctrine, .founder-intro { font-size: 15px; line-height: 1.7; margin-top: 14px; }
.portrait-col { width: clamp(240px, 30vw, 380px); flex-shrink: 0; }
.portrait { position: relative; cursor: zoom-in; }
.portrait img { width: 100%; height: clamp(300px, 36vw, 460px); object-fit: cover; }
.expand-chip {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(0,0,0,0.7); color: #FFF;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  padding: 4px 10px;
}
.portrait-caption { font-family: var(--font-mono); font-size: 11px; line-height: 1.6; color: var(--steel); margin-top: 8px; }

.career { padding-bottom: 24px; }
.career-entry { margin-bottom: 26px; }
.career-entry .role-row { display: flex; align-items: baseline; gap: 12px; }
.career-entry h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--oxblood); }
.chip-current { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--orange); }
.career-entry p { font-size: 14px; line-height: 1.7; margin-top: 6px; }

.press-panel { border: 1px solid var(--line); padding: 26px 30px; margin-bottom: 72px; }
.press-panel .eyebrow { display: block; margin-bottom: 14px; }
.press-panel blockquote { font-size: 15px; line-height: 1.7; }
.press-panel blockquote p + p { margin-top: 14px; }
.press-panel cite {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: 11px; line-height: 1.6; color: var(--steel); margin-top: 14px;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(10, 16, 26, 0.92);
  display: none; align-items: center; justify-content: center; z-index: 50; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; width: auto; }

/* ---------- careers ---------- */

.listing-card { border: 1px solid var(--line); padding: 32px 36px; margin-bottom: 72px; }
.listing-head { display: flex; justify-content: space-between; align-items: center; }
.listing-head h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy); }
.chip-open {
  background: var(--panel); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1px; color: var(--orange); padding: 6px 12px;
}
.listing-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; color: var(--steel); margin: 14px 0 18px; }
.spec-line { display: flex; gap: 24px; margin-top: 14px; font-size: 14px; line-height: 1.5; }
.spec-line .key { width: 220px; flex-shrink: 0; font-weight: 700; color: var(--navy); }
.compliance { font-family: var(--font-mono); font-size: 12px; color: var(--steel); margin-top: 22px; }

/* ---------- report driver ---------- */

.report-body { display: flex; gap: 60px; padding-bottom: 56px; }
.report-form { flex: 1; border: 1px solid var(--line); padding: 32px 36px; }
.report-form h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); margin-bottom: 8px; }
.field input[type="date"], .field input[type="text"], .field textarea {
  width: 100%; border: 1px solid var(--line); padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  border-radius: 0; background: #FFF;
}
.field textarea { height: 140px; resize: vertical; }
.chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip-btn {
  font-size: 13px; padding: 9px 16px; cursor: pointer;
  border: 1px solid var(--line); background: #FFF; color: var(--muted);
}
.chip-btn.selected { background: var(--navy); color: #FFF; border-color: var(--navy); }
.chip-note { font-family: var(--font-mono); font-size: 11px; color: var(--steel); align-self: center; }
.form-actions { display: flex; gap: 14px; align-items: center; margin-top: 8px; }
.form-note { font-family: var(--font-mono); font-size: 11px; color: var(--steel); }

.report-side { width: clamp(260px, 30vw, 360px); flex-shrink: 0; }
.stats-panel { background: var(--panel); padding: 24px 26px; }
.stats-panel .stat { margin-bottom: 18px; }
.stats-panel .value { font-size: 32px; }
.stats-panel .label { font-size: 10px; }
.side-note { font-size: 13px; line-height: 1.6; color: var(--muted); margin-top: 18px; }

.sighting-log { padding-bottom: 72px; }
.log-entry { border-top: 1px solid var(--line); padding: 18px 0; }
.log-entry:last-of-type { border-bottom: 1px solid var(--line); }
.log-entry .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel); line-height: 1.5; }
.log-entry blockquote { font-style: italic; font-size: 15px; line-height: 1.6; margin-top: 8px; }

/* ---------- 404 ---------- */

.notfound { text-align: center; padding: 110px 24px; }
.notfound img { width: 160px; margin: 0 auto 18px; transform: scaleX(-1); }
.notfound .code { font-family: var(--font-display); font-weight: 700; font-size: 110px; color: var(--navy); line-height: 1; }
.notfound h1 { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--navy); margin: 12px 0; }
.notfound p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 520px; margin: 0 auto 18px; }
.notfound a { color: var(--orange); }

/* ---------- footer ---------- */

.site-footer { background: var(--navy); color: var(--strip-text); padding: 44px 24px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1140px; margin: 0 auto; }
.footer-brand .fb-word { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 3px; color: #FFF; }
.footer-brand .fb-motto { font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-top: 8px; }
.footer-brand .fb-since { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--steel); margin-top: 4px; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.fcol h4 { font-family: var(--font-mono); font-weight: 400; font-size: 11px; letter-spacing: 2px; color: var(--steel); margin-bottom: 10px; }
.fcol ul { list-style: none; }
.fcol li { font-size: 13px; margin-bottom: 10px; }
.fcol a { color: var(--strip-text); text-decoration: none; }
.footer-rule { border: 0; border-top: 1px solid var(--footer-divider); margin: 28px auto; max-width: 1140px; }
.legal { font-family: var(--font-mono); font-size: 11px; color: var(--steel); max-width: 1140px; margin: 0 auto; line-height: 1.8; }

/* ---------- mobile ---------- */

@media (max-width: 900px) {
  .header-row { padding: 10px 16px; }
  .site-nav { padding: 9px 16px; }
  .brand-glyph { width: 36px; height: 36px; }
  .wordmark .word-a { font-size: 18px; letter-spacing: 1px; }
  .wordmark .word-b { font-size: 9px; letter-spacing: 6px; }
  .site-nav { gap: 10px 14px; font-size: 12px; }
  .site-nav a { white-space: nowrap; }
  .btn-track, .btn-report { padding: 7px 10px; font-size: 12px; }
  .header-btns { gap: 6px; }

  .milestones-h { display: none; }
  .milestones-v { display: block; }
  .lbl-summit { right: 12px; top: 8px; }
  .lbl-return { display: none; }
  .lbl-base { left: 16px; bottom: 12px; }
  .live-badge { font-size: 8px; padding: 4px 8px; }
  .lbl-origin { left: 16px; bottom: 8px; font-size: 8px; }
  .lbl-hillsummit { right: 10px; top: 8px; font-size: 8px; }
  .lbl-gbak { font-size: 8px; }
  .lbl-gaug { bottom: 2px; }
  .lbl-g0 { bottom: 26px; }

  .hero { flex-direction: column; gap: 28px; padding-top: 36px; padding-bottom: 36px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .hero-motto { font-size: 14px; }
  .hero-figure img { width: 250px; }

  .stats-band .container { gap: 20px; }
  .stat { width: 40%; }
  .stat .value { font-size: 28px; }
  .stat .label { font-size: 9px; }

  .services { padding-top: 36px; padding-bottom: 36px; }
  .service-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 0; }
  .service-cell { width: auto; }
  .quotes { flex-direction: column; gap: 32px; }

  .page-title { padding: 28px 0 20px; }
  .page-title h1 { font-size: 28px; }
  .mono-meta { font-size: 9px; }

  .status-card { padding: 20px; margin-bottom: 32px; }
  .dots-row .dot { width: 14px; height: 14px; }
  .milestone-labels { font-size: 8px; }
  .route-map { height: 180px; }
  .tracker-actions { flex-direction: column; }
  .tracker-actions .btn-primary, .tracker-actions .btn-ghost { text-align: center; }

  .fleet-body { flex-direction: column; gap: 20px; padding-bottom: 32px; }
  .fleet-side { width: auto; }
  .hill-panel { height: 230px; }
  .telemetry-readout { top: 16px; left: 20px; }
  .telemetry-readout .ascent { font-size: 20px; }
  .telemetry-readout .ro { font-size: 9px; margin-top: 4px; }
  .ascent-graph { height: 140px; }
  .cam-panel { height: 180px; }

  .founder-top { flex-direction: row; gap: 14px; padding: 28px 0; }
  .founder-titles h1 { font-size: 28px; }
  .founder-sub { font-size: 15px; }
  .founder-doctrine, .founder-intro { font-size: 13px; line-height: 1.6; margin-top: 8px; }
  .portrait-col { width: 166px; }
  .portrait img { height: 200px; }
  .press-panel { padding: 16px 18px; margin-bottom: 32px; }
  .press-panel blockquote { font-size: 13px; }

  .listing-card { padding: 20px 18px; margin-bottom: 32px; }
  .listing-head h2 { font-size: 22px; }
  .chip-open { font-size: 8px; }
  .spec-line { flex-direction: column; gap: 2px; margin-top: 12px; }
  .spec-line .key { width: auto; }

  .report-body { flex-direction: column; gap: 20px; padding-bottom: 24px; }
  .report-form { padding: 20px 18px; }
  .report-side { width: auto; }
  .chips { flex-direction: column; }
  .chip-btn { width: 100%; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 32px; }
  .legal { font-size: 9px; }
}
