/* NUMA Sportswear — Design System
   Inspired by the Numa Induction Pack 2028 */

:root {
  --navy-950: #05070f;
  --navy-900: #0a0c1f;
  --navy-800: #101432;
  --navy-700: #1a1f44;
  --navy-600: #242a55;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.64);
  --text-soft: rgba(255, 255, 255, 0.82);
  --accent: #f4d03f;
  --accent-warm: #ff6a3d;
  --ok: #7cf1a7;
  --danger: #ff5572;
  --max-width: 1280px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy-900);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease), opacity 0.2s var(--ease); }
a:hover { color: var(--accent); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.8vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.15; }
h4 { font-size: 1.05rem; letter-spacing: 0.02em; }

.eyebrow {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.lede { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--text-soft); max-width: 60ch; }

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: clamp(3rem, 8vw, 7rem) 0; }

/* Alert strip (replaces Under Construction) */
.alert-strip {
  background: var(--accent);
  color: var(--navy-900);
  padding: 0.65rem 1rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  position: relative;
  z-index: 60;
}

.alert-strip a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.alert-strip a:hover { color: var(--navy-900); opacity: 0.75; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 12, 31, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
}
.nav-logo img { height: 28px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
}
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -26px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--text);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-cta:hover { background: var(--accent); color: var(--navy-900); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  color: var(--text);
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: currentColor;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--text); color: var(--navy-900); }
.btn-primary:hover { background: var(--accent); color: var(--navy-900); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: var(--navy-900); }
.btn-accent:hover { background: var(--text); color: var(--navy-900); transform: translateY(-2px); }

.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.05); color: var(--text); }

.btn svg { width: 14px; height: 14px; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 92vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,31,0.55) 0%, rgba(10,12,31,0.75) 55%, var(--navy-900) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  width: 100%;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-size: clamp(2.75rem, 7.5vw, 6.75rem);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 48ch;
  color: var(--text-soft);
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stats .stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Section header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.section-head h2 { max-width: 18ch; }
.section-head .lede { margin-top: 1rem; max-width: 46ch; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.product-card .product-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--navy-900);
}
.product-card .product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-card .product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  padding: 0.3rem 0.6rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  z-index: 2;
}
.product-card .product-tag.hot { background: var(--accent); color: var(--navy-900); border-color: var(--accent); }

.product-body { padding: 1.25rem 1.25rem 1.5rem; }
.product-division {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
}
.product-body h3 { margin-bottom: 0.5rem; }
.product-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.product-price { font-family: 'Archivo Black', sans-serif; font-size: 1.1rem; }
.product-meta .shop-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex; gap: 0.4rem; align-items: center;
}

/* Split block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Pixel portrait (scaled-up pixel art) */
.pixel-portrait {
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--navy-800);
  overflow: hidden;
  position: relative;
}
.pixel-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.pixel-portrait.framed {
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(244,208,63,0.08), transparent 60%),
    var(--navy-800);
}
.pixel-portrait.framed img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
}
.era {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.era-marker {
  width: 32px; height: 32px;
  border: 2px solid var(--accent);
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  border-radius: 50%;
  margin-top: 4px;
  z-index: 1;
}
.era-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.era-text h3 { margin-bottom: 0.4rem; }
.era-text .era-year {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}
.era-text .era-slogan {
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.era-text p { color: var(--text-muted); margin-bottom: 1rem; }
.era-media { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); }
.era-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25); }

/* CFO Hiring Banner */
.cfo-banner {
  background:
    linear-gradient(135deg, rgba(244,208,63,0.08), transparent 70%),
    var(--navy-800);
  border: 1px solid var(--accent);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cfo-banner::before {
  content: 'URGENT';
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--accent);
}
.cfo-banner h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.cfo-banner p { color: var(--text-muted); max-width: 55ch; margin-bottom: 0; }

/* Division cards */
.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.division-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s var(--ease);
}
.division-card:hover { border-color: var(--accent); }
.division-card .division-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.division-card h3 { margin-bottom: 0.8rem; }
.division-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.division-card ul { list-style: none; margin-bottom: 1.5rem; }
.division-card ul li {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.division-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Leadership / people grid */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.person {
  background: var(--navy-800);
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.3s var(--ease);
}
.person:hover { border-color: var(--line-strong); }
.person .avatar {
  width: 88px; height: 88px;
  border-radius: 4px;
  background: var(--navy-700);
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--text-muted);
  border: 1px solid var(--line-strong);
}
.person .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.person .name { font-weight: 700; font-size: 0.98rem; margin-bottom: 0.2rem; }
.person .title { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }
.person.vacant {
  border-color: var(--accent);
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(244,208,63,0.04) 8px,
      rgba(244,208,63,0.04) 16px
    ),
    var(--navy-800);
}
.person.vacant .avatar { border-color: var(--accent); color: var(--accent); }
.person.vacant .name { color: var(--accent); }
.person.vacant .vacancy-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Press cards */
.press-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.press-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.3s var(--ease);
}
.press-item:hover { padding-left: 0.5rem; }
.press-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.press-item h3 { font-size: 1.15rem; }
.press-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* Data tables (financials) */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th, .data-table td {
  padding: 0.9rem 1rem;
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.data-table th:first-child, .data-table td:first-child { text-align: left; }
.data-table thead th {
  background: var(--navy-800);
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.data-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.data-table .highlight { color: var(--accent); font-weight: 700; }
.data-table .muted { color: var(--text-muted); }

/* Footer */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--text-soft); font-size: 0.92rem; }
.footer ul a:hover { color: var(--accent); }
.footer-brand img { height: 32px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); max-width: 32ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

/* Page hero (non-home) */
.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero h1 { margin-bottom: 1rem; max-width: 20ch; }
.page-hero .lede { max-width: 60ch; margin-bottom: 1.5rem; }

/* Utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  padding: 2rem;
}
.card h3 { margin-bottom: 1rem; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 3rem 0;
}

.noisy-bg {
  position: relative;
}
.noisy-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.noisy-bg > * { position: relative; z-index: 1; }

/* Newsletter */
.newsletter {
  background:
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.newsletter h2 { max-width: 20ch; margin: 0 auto 1rem; }
.newsletter p { max-width: 48ch; margin: 0 auto 2rem; color: var(--text-muted); }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1rem;
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* Quote blocks */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 0 1.5rem 2rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.72rem; }

  .split, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .era-content { grid-template-columns: 1fr; }
  .era-media { order: -1; }

  .cfo-banner { grid-template-columns: 1fr; }
  .cfo-banner .btn { justify-self: start; }

  .press-item { grid-template-columns: 1fr; gap: 0.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.25rem; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .timeline::before { left: 11px; }
  .era { grid-template-columns: 40px 1fr; gap: 1rem; }
  .era-marker { width: 24px; height: 24px; font-size: 0.7rem; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.reveal {
  animation: fadeUp 0.8s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
