/* ============================================================
   SECTIONS — Hero, Systems, Timeline, Paddock/Field, Footer
   Unified Light Grey Theme.
   ============================================================ */

/* 1. Loading Veil */
#loading-veil {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.veil-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 28rem;
  width: 90%;
  text-align: center;
}
.veil-silhouette-box {
  position: relative;
  width: 140px;
  height: 180px;
  overflow: hidden;
}
.veil-silhouette-bg,
.veil-silhouette-fill {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-mask-image: url('../assets/hero/person-alpha.webp');
  mask-image: url('../assets/hero/person-alpha.webp');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}
.veil-silhouette-bg {
  background-color: var(--surface-soft);
}
.veil-silhouette-fill {
  background-color: var(--accent);
  transform-origin: bottom center;
  transform: scaleY(0);
}
.veil-meter-track {
  width: 100%;
  height: 2px;
  background: var(--surface-soft);
  overflow: hidden;
}
.veil-meter-fill {
  height: 100%;
  background: var(--foreground);
  transform-origin: left center;
  transform: scaleX(0);
}
.veil-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: var(--foreground-muted);
}

/* 2. Masthead Nav */
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad-section-x);
  pointer-events: none;
}
.masthead > * { pointer-events: auto; }
.masthead-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .masthead-nav {
    display: none;
  }
}
.masthead-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-entrance);
}
.masthead-link:hover {
  color: var(--foreground);
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  cursor: pointer;
}
.masthead-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  color: var(--foreground);
  cursor: pointer;
}
@media (max-width: 768px) {
  .masthead-menu-toggle {
    display: flex;
  }
}
.brand-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.pulse-indicator {
  width: 6px;
  height: 6px;
  background: var(--status-live);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--status-live);
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* 3. Section 1: Hero Block */
.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--background);
}
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-canvas-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgb(250 250 249 / 0.85) 0%,
    rgb(250 250 249 / 0.20) 6%,
    transparent 12%
  );
}

.hero-hud-telemetry {
  position: absolute;
  top: 5.25rem;
  right: var(--pad-section-x);
  z-index: 25;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-muted);
  border-radius: 3px;
  padding: 0.55rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.hero-hud-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--foreground);
}
.hero-hud-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hero-hud-metrics {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--foreground-muted);
  font-variant-numeric: tabular-nums;
}
.hero-hud-status {
  color: var(--accent-text);
  font-weight: 700;
}

.hero-content-layer {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6.5rem var(--pad-section-x) 2.25rem;
  pointer-events: none;
}
.hero-content-layer > * { pointer-events: auto; }

.hero-main-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 28rem;
}
.hero-id-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 600;
}
.hero-title-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.35rem + 1.25vw, 2.5rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--foreground);
  font-weight: 700;
}
.hero-subtitle-role {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-role-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.01em;
  color: var(--foreground-muted);
  margin-top: 0.25rem;
  max-width: 26rem;
}
.hero-meta-bar span.hero-meta-item {
  color: var(--foreground);
  font-weight: 600;
}
.hero-meta-sep {
  color: var(--border-strong);
}

/* Floating Bottom Strip */
.hero-bottom-strip {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-muted);
}
.hero-metrics-cluster {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hero-metric-unit {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-metric-figure {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1;
  color: var(--foreground);
  letter-spacing: -0.02em;
}
.hero-metric-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.01em;
  color: var(--foreground-muted);
}
.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 4. Sticky Stack Containers */
.stack-layer {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: var(--layer-z, 1);
}
.stack-inner {
  width: 100%;
  height: 100%;
  transform-origin: center top;
}
.stack-shade {
  position: absolute;
  inset: 0;
  background: var(--background);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

/* 5. Section 2: Systems in Production */
.section-systems {
  position: relative;
  width: 100%;
  background: var(--surface-muted);
  color: var(--foreground);
  padding-bottom: 3.25rem;
  overflow: hidden;
}
.chequered-seam-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 20;
  pointer-events: none;
}
.systems-header-block {
  padding: 4rem var(--pad-section-x) 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
.systems-header-block.padded-compact {
  padding-top: 3rem;
}
.systems-header-block.no-padding {
  padding: 0;
}
.systems-title-lg {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  line-height: var(--leading-flat);
  text-transform: uppercase;
  color: var(--foreground);
}
.systems-sub-tag {
  font-family: var(--font-mono);
  font-size: var(--type-eyebrow);
  color: var(--foreground-muted);
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.systems-header-desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--foreground-muted);
  line-height: 1.55;
}

.halftone-stage-wrap {
  position: relative;
  width: 100%;
  max-width: 2560px;
  aspect-ratio: 2560 / 1440;
  margin: 0 auto;
  background: var(--surface-muted);
  overflow: hidden;
}
#halftone-canvas,
#circuit-trace-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#circuit-trace-canvas { pointer-events: none; }

.systems-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem var(--pad-section-x);
  position: relative;
  z-index: 10;
  max-width: 1680px;
  margin: 0 auto;
}
.systems-showcase-row {
  background: var(--surface-raised);
  border: 1px solid var(--border-muted);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.7fr 0.7fr;
  gap: 1.75rem;
  align-items: center;
  transition: transform var(--duration-fast) var(--ease-entrance), border-color var(--duration-fast) var(--ease-entrance), box-shadow var(--duration-fast) var(--ease-entrance);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.systems-showcase-row:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.systems-row-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.systems-row-thumb-wrap {
  width: 76px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  background: var(--surface-muted);
}
.systems-row-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.systems-row-heading {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.systems-row-company {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--foreground-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.systems-row-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.12;
}
.systems-row-center {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.systems-row-desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  line-height: 1.5;
  max-width: 68ch;
}
.systems-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.systems-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  text-align: right;
}
.systems-row-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.systems-row-metric-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.1;
}
.systems-row-metric-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--foreground-faint);
  letter-spacing: 0.01em;
}

/* 6. Section 3: Career Timeline */
.section-timeline {
  position: relative;
  width: 100%;
  background: var(--background);
  color: var(--foreground);
  padding: 3.25rem 0;
  overflow: hidden;
}
.timeline-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-section-x);
}
.timeline-rail-svg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 16px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}
.timeline-row {
  position: relative;
  width: 100%;
  margin-bottom: 1.75rem;
  transition: opacity var(--duration-plate) var(--ease-plate);
}
.timeline-row[data-frame="centre"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.timeline-row[data-frame="centre"]:nth-child(even) .timeline-copy-side {
  order: 2;
}
.timeline-row[data-frame="centre"]:nth-child(even) .timeline-plate-side {
  order: 1;
}
.timeline-year-huge {
  font-family: var(--font-display);
  font-size: var(--type-year);
  line-height: 0.9;
  color: var(--foreground);
  margin-bottom: 0.3rem;
}
.timeline-role-title {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.5vw, 1.35rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.timeline-desc-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--foreground-muted);
  max-width: 62ch;
}
.timeline-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

/* 7. Section 4: Video Console & Pipeline Deployment */
.section-field {
  position: relative;
  z-index: 20;
  width: 100%;
  background: var(--surface-muted);
  color: var(--foreground);
  padding: 3.25rem 0;
  overflow: hidden;
}
.contour-canvas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.field-container {
  position: relative;
  z-index: 10;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--pad-section-x);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.field-top-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.field-top-grid .video-console {
  width: 100%;
  max-width: 100%;
}
/* 7. Section 4: Tech Stacks & Engineering Domains (CV Aligned) */
.section-tech-stacks {
  position: relative;
  z-index: 20;
  width: 100%;
  background: var(--background);
  color: var(--foreground);
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--border-muted);
  overflow: hidden;
}
.tech-stacks-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-section-x);
}
.tech-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .tech-domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .tech-domains-grid {
    grid-template-columns: 1fr;
  }
}
.tech-domain-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: transform var(--duration-fast) var(--ease-entrance), border-color var(--duration-fast) var(--ease-entrance), box-shadow var(--duration-fast) var(--ease-entrance);
}
.tech-domain-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.tech-domain-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tech-domain-index {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--foreground-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tech-domain-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tech-domain-scope {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  line-height: 1.4;
}
.tech-domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tech-domain-tags .tag-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 0.3rem 0.55rem;
  background: var(--surface-muted);
  border: 1px solid var(--border-muted);
  color: var(--foreground);
  border-radius: 2px;
}
.tech-domain-context {
  border-top: 1px solid var(--border-muted);
  padding-top: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--foreground-faint);
  line-height: 1.5;
}
.tech-certifications-bar {
  margin-top: 1.5rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tech-cert-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--foreground);
  letter-spacing: 0.02em;
}
.tech-cert-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.tech-cert-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 0.35rem 0.7rem;
  background: var(--surface-muted);
  border: 1px solid var(--border-muted);
  border-radius: 2px;
  color: var(--foreground);
  font-weight: 600;
}

/* 8. Section 5: Footer & Direct Contact */
.section-footer {
  position: relative;
  z-index: 20;
  width: 100%;
  background: var(--background);
  border-top: 1px solid var(--border-muted);
  padding: 3rem 16px 16px;
  overflow: hidden;
}
.footer-inner-box {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--border-muted);
  color: var(--foreground);
  padding: 3rem var(--pad-section-x) 1.75rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}
.footer-top-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
.footer-cta-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--foreground-muted);
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.footer-cta-huge {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--foreground);
}
.footer-cta-huge span { color: var(--foreground-faint); }
.footer-action-buttons {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-header {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.01em;
  color: var(--foreground-faint);
  margin-bottom: 0.25rem;
}
.footer-nav-item {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--foreground-muted);
  transition: color var(--duration-fast) var(--ease-entrance), transform var(--duration-fast) var(--ease-entrance);
}
.footer-nav-item:hover {
  color: var(--foreground);
  transform: translateX(0.4rem);
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  border-top: 1px solid var(--border-muted);
  padding-top: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--foreground-faint);
}

/* Ultra-Wide container containment */
.hero-content-layer,
.systems-header-block,
.systems-showcase-list,
.field-container,
.footer-inner-box {
  max-width: 1680px;
  margin-inline: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  :root {
    --pad-section-x: 1.75rem;
  }
  .hero-content-layer {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .hero-hud-telemetry {
    top: 1.25rem;
    right: 5rem;
    font-size: 0.625rem;
    padding: 0.35rem 0.65rem;
  }
  .hero-bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 639px) {
  :root {
    --pad-section-x: 1.125rem;
  }
  .hero-hud-telemetry {
    display: none;
  }
  .hero-content-layer {
    padding-top: 4.75rem;
    padding-bottom: 1.5rem;
  }
  .hero-title-name {
    font-size: 1.625rem;
  }
  .hero-main-header {
    gap: 0.25rem;
    max-width: 100%;
  }
  .hero-meta-bar {
    gap: 0.25rem 0.5rem;
    font-size: 0.625rem;
  }
  .hero-metrics-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.25rem;
    width: 100%;
  }
  .timeline-row[data-frame="centre"] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .timeline-row[data-frame="centre"]:nth-child(even) .timeline-copy-side {
    order: 1;
  }
  .timeline-row[data-frame="centre"]:nth-child(even) .timeline-plate-side {
    order: 2;
  }
  .timeline-rail-svg {
    display: none;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
