/* ============================================
   HAYMAKER — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600&family=Inter:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================
   Custom Properties
   ============================================ */
:root {
  /* Brand Colors */
  --hm-red:          #C41C1C;
  --hm-red-deep:     #9B1515;
  --hm-black:        #111111;
  --hm-white:        #FFFFFF;

  /* UI Surfaces */
  --hm-surface-1:    #1E1E1E;
  --hm-surface-2:    #242424;
  --hm-surface-3:    #333333;
  --hm-surface-4:    #222222;

  /* Text */
  --hm-text-primary:   #FFFFFF;
  --hm-text-secondary: #D8D8D8;
  --hm-text-tertiary:  #999999;
  --hm-text-muted:     #7A7A7A;
  --hm-text-inactive:  #444444;

  /* Semantic */
  --hm-green:        #6DB86D;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   48px;
  --space-2xl:  64px;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container-max:  1160px;
  --container-pad:  48px;
  --section-pad-v:  96px;
  --nav-height:     64px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--hm-black);
  color: var(--hm-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad-v) 0;
}

.section-sm {
  padding: 64px 0;
}

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.grid-2-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Three-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Four-column stat grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--hm-black);
  border-bottom: 0.5px solid var(--hm-surface-4);
}

/* Container inside nav must fill full width so space-between works correctly */
.nav > .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-white);
  flex-shrink: 0;
}

.nav-logo .red {
  color: var(--hm-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hm-text-tertiary);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--hm-white);
}

.nav-cta {
  font-weight: 500 !important;
  color: var(--hm-white) !important;
  background: var(--hm-red);
  padding: 7px 18px !important;
  border-radius: 6px;
  margin-left: 8px;
  transition: background 0.15s ease !important;
}

.nav-cta:hover {
  background: var(--hm-red-deep) !important;
  color: var(--hm-white) !important;
}

/* ============================================
   Typography
   ============================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--hm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.eyebrow-red {
  color: var(--hm-red);
}

/* Display — Bebas Neue, ALL CAPS, hero */
.headline-display {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--hm-text-primary);
  text-transform: uppercase;
}

/* Large — Bebas Neue, section headlines */
.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--hm-text-primary);
  text-transform: uppercase;
}

/* Medium — Bebas Neue, sub-section headlines */
.headline-md {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 0.97;
  letter-spacing: 0.01em;
  color: var(--hm-text-primary);
  text-transform: uppercase;
}

/* Small — Oswald, component titles */
.headline-sm {
  font-family: var(--font-ui);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--hm-text-primary);
}

.body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--hm-text-secondary);
  line-height: 1.75;
}

.body-md {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--hm-text-secondary);
  line-height: 1.75;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--hm-text-muted);
  line-height: 1.65;
}

.red { color: var(--hm-red); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--hm-red);
  color: var(--hm-white);
}
.btn-primary:hover { background: var(--hm-red-deep); }

.btn-secondary {
  background: var(--hm-surface-2);
  color: var(--hm-text-tertiary);
  border: 0.5px solid var(--hm-surface-3);
}
.btn-secondary:hover {
  color: var(--hm-text-primary);
  border-color: var(--hm-text-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--hm-text-muted);
  border: 0.5px solid var(--hm-surface-3);
}
.btn-ghost:hover {
  color: var(--hm-text-primary);
  border-color: var(--hm-text-tertiary);
}

.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

/* ============================================
   Divider
   ============================================ */
.divider {
  border: none;
  border-top: 0.5px solid var(--hm-surface-4);
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--hm-surface-1);
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 12px;
  padding: 24px;
}

.stat-card {
  background: var(--hm-surface-1);
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 10px;
  padding: 20px 22px;
}

/* ============================================
   Stat Numbers
   ============================================ */
.stat-number {
  font-family: var(--font-ui);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--hm-text-primary);
  line-height: 1;
}

.stat-number-sm {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 500;
  color: var(--hm-text-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--hm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ============================================
   Proof Bar
   ============================================ */
.proof-bar {
  border-top: 0.5px solid var(--hm-surface-4);
  border-bottom: 0.5px solid var(--hm-surface-4);
  padding: 22px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.proof-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hm-text-muted);
  letter-spacing: 0.04em;
}

.proof-dot {
  color: var(--hm-surface-3);
  font-size: 13px;
}

/* ============================================
   Steps
   ============================================ */
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  font-family: var(--font-ui);
  font-size: 56px;
  font-weight: 500;
  color: var(--hm-surface-3);
  line-height: 1;
  padding-top: 2px;
}

.step-title {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 600;
  color: var(--hm-text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--hm-text-primary);
  line-height: 1.75;
}

/* ============================================
   Blockquote
   ============================================ */
blockquote {
  border-left: 2px solid var(--hm-red);
  padding: 4px 0 4px 24px;
}

blockquote p {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--hm-text-secondary);
  line-height: 1.75;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  color: var(--hm-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   Feature List (dot + title + sub)
   ============================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hm-red);
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--hm-text-primary);
  margin-bottom: 3px;
}

.feature-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--hm-text-muted);
  line-height: 1.5;
}

/* ============================================
   Image Placeholder (swap for real images)
   ============================================ */
.img-placeholder {
  background: var(--hm-surface-1);
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

.img-placeholder-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--hm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--hm-surface-2);
  border: 0.5px solid var(--hm-surface-3);
  padding: 3px 8px;
  border-radius: 4px;
}

.img-placeholder-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--hm-text-muted);
  line-height: 1.5;
}

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 80px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 0.5px solid var(--hm-surface-4);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--hm-text-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--hm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--hm-text-tertiary);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--hm-white);
}

.footer-bottom {
  border-top: 0.5px solid var(--hm-surface-4);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  font-size: 12px;
  color: var(--hm-text-muted);
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.text-red { color: var(--hm-red); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.flex-row     { display: flex; flex-direction: row; }
.flex-center  { align-items: center; }
.flex-between { justify-content: space-between; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }
.gap-xl       { gap: var(--space-xl); }

/* ============================================
   Responsive Stat Grids (used in place of inline styles)
   ============================================ */
.stat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Prevent numbers like "10–15" from line-breaking */
.stat-number,
.stat-number-sm {
  white-space: nowrap;
}

/* Responsive line-break helper — visible only on mobile */
.br-mobile {
  display: none;
}

/* ============================================
   Hero Split Layout
   ============================================ */
.hero-main {
  padding: calc(var(--nav-height) + 72px) 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - var(--nav-height) - 120px);
}

/* Scale headline down to fit left column */
.hero-headline--split {
  font-size: clamp(28px, 3vw, 44px) !important;
}

/* ── Right panel ── */
.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--hm-surface-1);
  aspect-ratio: 4 / 5;
  max-height: calc(100svh - var(--nav-height) - 120px);
  align-self: stretch;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide,
.hero-stat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-slide.active,
.hero-stat-slide.active {
  opacity: 1;
}

/* Stat slides */
.hero-stat-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  background: var(--hm-surface-1);
}

.hero-stat-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--hm-red);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 130px);
  line-height: 1;
  color: var(--hm-text-primary);
  margin-bottom: 14px;
}

.hero-stat-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--hm-text-tertiary);
}

/* Progress dots */
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.35s, transform 0.35s;
  cursor: pointer;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* Mobile */
@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }

  .hero-visual {
    aspect-ratio: 16 / 9;
    max-height: 280px;
    align-self: auto;
  }

  .hero-stat-slide {
    padding: 28px 24px;
  }

  .hero-stat-number {
    font-size: clamp(56px, 12vw, 80px);
  }
}

/* ============================================
   Hero body — headline + body as a column, constrained to ~60% on desktop
   ============================================ */
.hero-body {
  max-width: 760px;
}

/* ============================================
   Mobile Nav CTA (hidden on desktop, shown on mobile)
   ============================================ */
.nav-mobile-cta {
  display: none;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
  :root {
    --container-pad: 32px;
    --section-pad-v: 72px;
  }

  .nav-links {
    gap: 24px;
  }

  .grid-2,
  .grid-2-center {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

/* Mobile */
@media (max-width: 640px) {
  :root {
    --container-pad: 20px;
    --section-pad-v: 56px;
  }

  .hero-main {
    padding-top: calc(var(--nav-height) + 32px) !important;
    padding-bottom: 72px !important;
  }

  /* Responsive line-break: show on mobile */
  .br-mobile {
    display: block;
    line-height: 0;
    content: '';
  }

  /* Nav — hide links, show Apply CTA */
  .nav-links {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 6px;
  }

  /* Grid resets */
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .stat-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Steps */
  .step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-number {
    font-size: 36px;
  }

  /* Proof bar */
  .proof-bar-inner {
    gap: 10px;
    row-gap: 6px;
  }

  .proof-dot {
    display: none;
  }

  /* Buttons */
  .btn-lg {
    font-size: 14px;
    padding: 12px 22px;
  }

  /* Blockquote */
  blockquote p {
    font-size: 15px;
  }

  /* Cards */
  .card {
    padding: 20px;
  }

  /* Body text */
  .body-lg {
    font-size: 16px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .headline-display {
    font-size: clamp(44px, 13vw, 72px);
  }

  .headline-lg {
    font-size: clamp(34px, 10.5vw, 56px);
  }

  .nav-logo {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .stat-grid-2 {
    grid-template-columns: 1fr 1fr; /* keep pairs side by side */
  }
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-d1 { transition-delay: 0.08s; }
.js-enabled .reveal-d2 { transition-delay: 0.16s; }
.js-enabled .reveal-d3 { transition-delay: 0.24s; }
.js-enabled .reveal-d4 { transition-delay: 0.32s; }
.js-enabled .reveal-d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal,
  .js-enabled .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Nav scrolled state */
.nav-scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(17, 17, 17, 0.94) !important;
  border-bottom-color: var(--hm-surface-3) !important;
}

/* ============================================
   Who Does What Diagram
   ============================================ */
.wdw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}

.wdw-col {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
}

.wdw-you {
  border-right: 0.5px solid var(--hm-surface-3);
  background: var(--hm-surface-1);
}

.wdw-haymaker {
  background: var(--hm-surface-2);
}

.wdw-head {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hm-text-tertiary);
  margin-bottom: 24px;
}

.wdw-haymaker .wdw-head {
  color: var(--hm-red);
}

.wdw-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.wdw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--hm-text-secondary);
  line-height: 1.5;
}

.wdw-item::before {
  content: '';
  width: 4px;
  min-width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hm-text-inactive);
}

.wdw-haymaker .wdw-item::before {
  background: var(--hm-red);
}

.wdw-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hm-surface-3);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--hm-text-secondary);
}

.wdw-haymaker .wdw-foot {
  color: var(--hm-text-primary);
  font-size: 18px;
}

@media (max-width: 640px) {
  .wdw-grid {
    grid-template-columns: 1fr;
  }
  .wdw-you {
    border-right: none;
    border-bottom: 0.5px solid var(--hm-surface-3);
  }
}

/* ============================================
   Time Bar Diagram
   ============================================ */
.time-bars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

.time-bar-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.time-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.time-bar-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hm-text-muted);
}

.time-bar-value {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--hm-text-tertiary);
  white-space: nowrap;
}

.time-bar-track {
  height: 7px;
  background: var(--hm-surface-2);
  border-radius: 4px;
  overflow: hidden;
}

.time-bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.9s cubic-bezier(0, 0, 0.2, 1);
}

.time-bar-row.visible .time-bar-fill {
  width: var(--bar-w, 0%);
}

.time-bar-fill-gray  { background: var(--hm-text-tertiary); }
.time-bar-fill-red   { background: var(--hm-red); }
.time-bar-fill-dim   { background: var(--hm-surface-3); width: 6px !important; }

/* ============================================
   Footer Legal Links
   ============================================ */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 12px;
  color: var(--hm-text-muted);
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: var(--hm-text-tertiary);
}

.footer-legal-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--hm-surface-1);
  border-top: 0.5px solid var(--hm-surface-3);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0, 0, 0.2, 1);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner--hidden {
  transform: translateY(100%);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-banner-title {
  color: var(--hm-text-primary);
  font-weight: 600;
  margin-right: 4px;
}

.cookie-banner-body {
  color: var(--hm-text-muted);
}

.cookie-banner-body a {
  color: var(--hm-text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.cookie-banner-body a:hover {
  color: var(--hm-white);
}

/* ============================================
   Accessibility — Text Color Corrections
   Minimum contrast on #111111 background
   ============================================ */
:root {
  /* Override muted text to pass WCAG AA */
  --hm-text-muted:     #888888; /* was #7A7A7A — now 4.74:1 on #111111 */
  --hm-text-inactive:  #555555; /* was #444444 — improved for decorative use */
}

/* ============================================
   Scroll Progress Bar
   ============================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--hm-red);
  z-index: 201;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ============================================
   Page Transition Overlay
   ============================================ */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--hm-black);
  z-index: 9000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
#page-transition.pt-loaded {
  opacity: 0;
}

/* Custom cursor removed — using native browser cursor */
#cursor-dot { display: none; }

/* ============================================
   Button Enhancements — Scale States
   ============================================ */
.btn {
  transition: background 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--hm-red-deep);
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
  transition-duration: 0.05s;
}

.btn-ghost {
  color: var(--hm-white);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background: var(--hm-white);
  color: var(--hm-black);
  border-color: var(--hm-white);
  transform: scale(1.02);
}

.btn-ghost:active {
  transform: scale(0.98);
  transition-duration: 0.05s;
}

/* ============================================
   Nav Link Underline Animation
   ============================================ */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hm-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ============================================
   Nav Hide/Show on Scroll
   ============================================ */
.nav {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.nav-hidden {
  transform: translateY(-100%);
}

/* ============================================
   Red Block — Noise Texture
   ============================================ */
.section-red {
  position: relative;
  overflow: hidden;
}

.section-red::after {
  content: '';
  position: absolute;
  inset: 0;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.section-red > .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   Red Block Scale Entrance
   ============================================ */
.js-enabled .reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-enabled .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   Proof Bar — Infinite Scroll Ticker
   ============================================ */
.proof-bar {
  overflow: hidden;
}

.proof-bar > .container {
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.proof-bar-track {
  display: flex;
  width: max-content;
  animation: proof-ticker 30s linear infinite;
}

.proof-bar-track:hover {
  animation-play-state: paused;
}

.proof-bar-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 14px;
  white-space: nowrap;
}

@keyframes proof-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   Mobile Menu Overlay
   ============================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 160;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--hm-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #111111;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 32px) 24px 48px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin-bottom: 40px;
}

.mobile-menu-links li {
  border-bottom: 0.5px solid var(--hm-surface-1);
  transform: translateX(-24px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-menu.is-open .mobile-menu-links li {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu-links li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu-links li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-links li:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-links a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 11vw, 52px);
  color: var(--hm-white);
  padding: 14px 0;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.mobile-menu-links a:hover {
  color: var(--hm-text-tertiary);
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--hm-red);
  color: var(--hm-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 8px;
  transition: background 0.15s ease;
  opacity: 0;
  transform: translateY(12px);
  transition: background 0.15s ease, opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s;
}

.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-cta:hover {
  background: var(--hm-red-deep);
}

@media (max-width: 640px) {
  .nav-hamburger {
    display: flex;
  }

  /* Hide the simple Apply CTA — hamburger takes over */
  .nav-mobile-cta {
    display: none !important;
  }
}

/* ============================================
   Hero Headline Reveal (line-by-line clip)
   ============================================ */
.hero-line-wrap {
  display: block;
  overflow: hidden;
}

.js-enabled .hero-line-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.js-enabled .hero-reveal-ready .hero-line-inner {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .hero-line-inner {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-content {
  max-width: 760px;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 0.97;
  letter-spacing: 0.01em;
  color: var(--hm-text-primary);
  text-transform: uppercase;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-top: 40px;
  border-top: 0.5px solid var(--hm-surface-3);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  color: var(--hm-text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 16px;
  color: var(--hm-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-content li {
  font-size: 16px;
  color: var(--hm-text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

.policy-content strong {
  color: var(--hm-text-primary);
  font-weight: 500;
}

.policy-content a {
  color: var(--hm-text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--hm-white);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 8px;
  overflow: hidden;
}

.policy-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hm-text-muted);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 0.5px solid var(--hm-surface-3);
  background: var(--hm-surface-2);
}

.policy-table td {
  padding: 12px 16px;
  color: var(--hm-text-secondary);
  border-bottom: 0.5px solid var(--hm-surface-2);
  line-height: 1.5;
  vertical-align: top;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-meta {
  font-size: 13px;
  color: var(--hm-text-muted);
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .policy-table {
    font-size: 13px;
  }
  .policy-table th,
  .policy-table td {
    padding: 10px 12px;
  }
}

/* ============================================
   Red Block Section
   ============================================ */
.section-red {
  background: var(--hm-red);
  padding: var(--section-pad-v) 0;
}

.section-red-headline {
  font-family: var(--font-ui);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--hm-white);
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 680px;
}

.section-red-body {
  max-width: 560px;
}

.section-red-body p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-red-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Source Sections (Process page)
   ============================================ */
.source-num {
  font-family: var(--font-ui);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--hm-red);
  line-height: 1;
  margin-bottom: 20px;
}

/* Alternating layout — 01/03 left, 02 right on desktop */
.source-block {
  max-width: 680px;
}

.source-block-alt {
  max-width: 680px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 960px) {
  .source-block-alt {
    margin-left: 0;
  }
}

/* ============================================
   Section with Alt Background
   ============================================ */
.section-alt {
  padding: var(--section-pad-v) 0;
  background: var(--hm-surface-1);
}

/* ============================================
   Week Timeline (Process page)
   ============================================ */
.week-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  margin-bottom: 48px;
}

.week-day {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-top: 0.5px solid var(--hm-surface-4);
  align-items: baseline;
}

.week-day:last-child {
  border-bottom: 0.5px solid var(--hm-surface-4);
}

.week-day-label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--hm-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.week-day-copy {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--hm-text-secondary);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .week-day {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ============================================
   Logo Lockup
   ============================================ */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-lockup-centered {
  justify-content: center;
}

.logo-badge {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hm-text-tertiary);
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 6px;
  padding: 9px 18px;
  background: var(--hm-surface-1);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .logo-lockup {
    gap: 8px;
  }
  .logo-badge {
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* ============================================
   Three Sources Callouts
   ============================================ */
.sources-callout {
  padding: 28px 24px;
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 12px;
  background: var(--hm-surface-1);
}

.sources-num {
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  color: var(--hm-red);
  line-height: 1;
  margin-bottom: 16px;
}

.sources-title {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
  color: var(--hm-text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sources-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--hm-text-secondary);
  line-height: 1.7;
}

/* ============================================
   Video Cards
   ============================================ */
.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(160deg, #1C1C1C 0%, #111111 60%, #0D0D0D 100%);
  aspect-ratio: 9 / 16;
  display: block;
  text-decoration: none;
}

.video-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover .video-card-thumb {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.95) 0%,
    rgba(17, 17, 17, 0.3) 45%,
    rgba(17, 17, 17, 0.08) 100%
  );
  transition: background 0.3s ease;
}

.video-card:hover .video-card-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.98) 0%,
    rgba(17, 17, 17, 0.55) 55%,
    rgba(17, 17, 17, 0.2) 100%
  );
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--hm-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-card:hover .video-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  flex-shrink: 0;
}

.video-card-views {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--hm-white);
  background: rgba(17, 17, 17, 0.72);
  border-radius: 4px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.video-card-platform {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--hm-text-muted);
  background: rgba(17, 17, 17, 0.72);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 7px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 14px 16px;
}

.video-card-athlete {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--hm-white);
  line-height: 1.3;
  margin-bottom: 3px;
}

.video-card-sport {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--hm-text-tertiary);
  line-height: 1.3;
}

/* ============================================
   Work Grid (work.html)
   ============================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ============================================
   Featured Work Strip (index.html)
   ============================================ */
.work-strip-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--container-pad));
  padding: 0 var(--container-pad) 4px;
}

.work-strip-scroll::-webkit-scrollbar {
  display: none;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  min-width: 900px;
}

@media (max-width: 640px) {
  .work-strip {
    grid-template-columns: repeat(6, 140px);
    gap: 8px;
    min-width: auto;
  }
}

/* ============================================
   Brand Strip
   ============================================ */
.brand-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-tile {
  background: var(--hm-surface-1);
  border: 0.5px solid var(--hm-surface-3);
  border-radius: 8px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  transition: border-color 0.2s ease;
}

.brand-tile:hover {
  border-color: var(--hm-text-inactive);
}

.brand-tile img {
  height: 26px;
  width: auto;
  filter: grayscale(1) brightness(0.55);
  transition: filter 0.25s ease;
  display: block;
}

.brand-tile:hover img {
  filter: grayscale(0.2) brightness(0.85);
}

/* ============================================
   Video Modal
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--hm-surface-1);
  border: 0.5px solid var(--hm-surface-3);
  transform: scale(0.93) translateY(8px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.is-open .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  border: 0.5px solid rgba(255,255,255,0.15);
  color: var(--hm-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-body);
  transition: background 0.15s ease;
}

.video-modal-close:hover {
  background: var(--hm-red);
}

.video-modal-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
}

.video-modal-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .video-modal {
    padding: 0;
    align-items: flex-end;
  }
  .video-modal-content {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 88vh;
  }
}

/* ============================================
   Work Page Hero Stats Bar
   ============================================ */
.work-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.work-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-stat-number {
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 500;
  color: var(--hm-white);
  line-height: 1;
}

.work-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--hm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 640px) {
  .work-stats {
    gap: 24px;
  }
  .work-stat-number {
    font-size: 26px;
  }
}

/* ============================================
   Hover Lifts & Card Effects
   ============================================ */
.story-stat-item,
.today-stat {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: default;
}

.story-stat-item:hover,
.today-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  background: var(--hm-surface-2);
}

.team-card {
  transition: transform 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.ian-strip__slide {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.ian-strip__slide:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.story-collage__img {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.story-collage__img:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  z-index: 3 !important;
}
