/* ============================================================
   HAMICHA — single page
   Tokens
   ============================================================ */
:root{
  --brand-bg: #0A0A0B;
  --brand-fg: #F5F5F2;
  --brand-muted: #6B6B6B;
  --brand-line: #1c1c1e;
  --brand-accent: #D7FF00; /* neon yellow — brighter, more electric */
  --font-display: "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Inter", system-ui, sans-serif;

  --pad-x: clamp(20px, 4vw, 64px);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html, body{ background: var(--brand-bg); color: var(--brand-fg); font-family: var(--font-body); }
body{ overflow-x: clip; }
html{ -webkit-font-smoothing: antialiased; }
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

/* Hide native cursor when custom cursor is shown */
@media (pointer: fine){
  body{ cursor: none; }
  a, button{ cursor: none; }
}

/* Lenis */
html.lenis, html.lenis body{ height: auto; }
.lenis.lenis-smooth{ scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior: contain; }

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor-dot, .cursor-ring{
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  will-change: transform;
}
.cursor-dot{ width: 6px; height: 6px; background: var(--brand-accent); border-radius: 50%; }
.cursor-ring{
  width: 36px; height: 36px; border: 1px solid rgba(245,245,242,0.5);
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), border-color 0.2s;
}

/* ============================================================
   Reveal helpers
   ============================================================ */
.word-mask{ display: inline-block; overflow: hidden; vertical-align: bottom; line-height: 1; }
.word-mask .word{ display: inline-block; will-change: transform; }

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  /* Own compositing layer so smooth scroll can't drag the bar with the page. */
  transform: translate3d(0,0,0);
  will-change: transform;
  transition: backdrop-filter 0.3s, background 0.3s, padding 0.3s;
}
.nav.lenis-top{
  background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0) 100%);
}
.nav:not(.lenis-top){
  background: rgba(10,10,11,0.55);
  backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav .wordmark{
  font-family: var(--font-display);
  font-weight: 900; font-size: 18px; letter-spacing: 0.04em;
}
.nav .nav-logo{
  display: inline-flex; align-items: center;
}
.nav .nav-logo img{
  height: 44px; width: auto;
  display: block;
  transition: transform 0.3s;
}
.nav .nav-logo:hover img{ transform: rotate(15deg); }
.nav .links{ display: flex; gap: 28px; align-items: center; }
.nav .links a{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.85;
}
.nav .actions{ display: flex; gap: 10px; }
.pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--brand-accent); color: #0a0a0b;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pill.ghost{ background: transparent; color: var(--brand-fg); border: 1px solid rgba(255,255,255,0.16); }
.pill:hover{ transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
/* Pin container — taller than the viewport so the hero can stay
   sticky while the user scrolls through the photo→map morph. */
.hero-pin{
  position: relative;
  height: 300vh;
}
.hero{
  position: sticky; top: 0;
  min-height: 100vh; min-height: 100svh;
  height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: radial-gradient(120% 80% at 50% 30%, #18181a 0%, #0a0a0b 60%);
}
.hero-stage{
  position: absolute; inset: 0;
  display: flex; align-items: end; justify-content: center;
  padding-top: 80px;
}
.hero-crest{
  position: absolute; left: 50%; top: 50%;
  width: min(92vmin, 1100px); height: auto;
  z-index: 0;
  opacity: 0.18;
  margin-left: calc(min(92vmin, 1100px) / -2);
  margin-top:  calc(min(92vmin, 1100px) / -2);
  --crest-scale: 1;
  transform: translateZ(0) rotate(0deg) scale(var(--crest-scale));
  animation: crest-spin 180s linear infinite;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transition: none;
}
@keyframes crest-spin{
  from { transform: translateZ(0) rotate(0deg)   scale(var(--crest-scale)); }
  to   { transform: translateZ(0) rotate(360deg) scale(var(--crest-scale)); }
}
@media (prefers-reduced-motion: reduce){
  .hero-crest{ animation: none; }
}
/* Morocco map — sits behind the photo, fades in as the user scrolls.
   Centered + sized to roughly match the crest watermark. */
.hero-map{
  position: absolute; left: 50%; top: 50%;
  width: min(72vmin, 760px); height: auto;
  margin-left: calc(min(72vmin, 760px) / -2);
  margin-top:  calc(min(72vmin, 760px) / -2);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(230,255,26,0.18));
  transform: translateZ(0);
  will-change: opacity;
}
/* Quote that fades in once the map+crest morph is complete.
   Sits in the middle of the Morocco map. */
.hero-quote{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: justify;
  text-justify: inter-word;
  opacity: 0;
  pointer-events: none;
  width: min(48vmin, 460px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-quote-line{
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
  color: #ffffff;
  hyphens: none;
}
.hero-quote-line strong{
  font-weight: 700;
  color: #f2ff00;
  text-shadow:
    0 0 8px rgba(242, 255, 0, 0.55),
    0 0 18px rgba(242, 255, 0, 0.35);
}

/* Hand-signature image. Sits on top of the Morocco map, revealed in
   tandem with the bio: on desktop the bio shifts left and the signature
   fades in to its right; on mobile the bio flies left out of frame and
   the signature lands centered. Position/opacity are driven by JS in
   initHeroScroll() via the --sig-shift / --sig-opacity / --quote-shift
   custom properties. */
.hero-signature{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(calc(-50% + var(--sig-shift, 30vmin)), -50%) rotate(-3deg);
  width: min(46vmin, 440px);
  height: auto;
  z-index: 3;
  opacity: var(--sig-opacity, 0);
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transition: none;
}
.hero-quote{
  /* JS-driven horizontal offset on top of the centering translate. */
  transform: translate(calc(-50% + var(--quote-shift, 0px)), -50%);
}

@media (max-width: 760px){
  .hero-signature{
    /* On mobile the signature lands centered (no rightward offset). */
    transform: translate(-50%, -50%) rotate(-3deg);
    width: min(70vmin, 360px);
  }
}
.hero-photo{
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 92%; width: auto; max-width: none;
  z-index: 1;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.6));
}
.hero canvas.gl{
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none;
}
.hero canvas.gl-gloves{
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 5; pointer-events: auto;
}
.hero-grid{
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background:
    linear-gradient(transparent 0 calc(100% - 1px), rgba(255,255,255,0.04) 100%) 0 0/100% 80px,
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(255,255,255,0.04) 100%) 0 0/80px 100%;
  mix-blend-mode: screen; opacity: 0.6;
}

.hero-copy{
  position: relative; z-index: 5;
  padding: 120px var(--pad-x) 56px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 24px;
  pointer-events: none;
}
.hero-copy *{ pointer-events: auto; }
.hero-meta-left{
  align-items: flex-start !important;
}
.hero-name{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 16vw, 280px);
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-meta{
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,245,242,0.7);
}
.hero-meta .num{ color: var(--brand-accent); font-weight: 700; font-size: 14px; }

.hero-bottom{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding: 0 var(--pad-x) 24px;
  display: flex; justify-content: center; align-items: center; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,245,242,0.6);
  pointer-events: none;
}
.hero-bottom .scroll-hint{
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-bottom .scroll-hint::before{
  content: ""; width: 28px; height: 1px; background: var(--brand-accent);
  display: inline-block;
  animation: dash 1.6s ease-in-out infinite;
}
@keyframes dash{
  0%, 100%{ transform: scaleX(1); }
  50%{ transform: scaleX(0.4); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee{
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: var(--brand-bg);
  overflow: hidden;
}
.marquee .track{
  display: flex; gap: 48px; padding: 22px 0;
  animation: scroll 40s linear infinite;
  white-space: nowrap; align-items: center;
}
.marquee .track > *{ flex: 0 0 auto; }
.marquee.reverse .track{ animation-direction: reverse; }
.marquee .item{
  font-family: var(--font-display); font-weight: 900; font-size: 36px;
  letter-spacing: -0.02em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee .item .star{ color: var(--brand-accent); font-size: 22px; }
@keyframes scroll{ to { transform: translateX(-50%); } }

/* ============================================================
   Sections common
   ============================================================ */
section{ padding: 120px var(--pad-x); }
.section-head{
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 56px; align-items: end;
}
.section-eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand-accent);
}
.section-eyebrow::before{
  content: ""; display: inline-block; width: 18px; height: 1px;
  background: var(--brand-accent); vertical-align: middle; margin-right: 12px;
}
.section-title{
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9; letter-spacing: -0.03em; text-transform: uppercase;
  margin-top: 16px;
}
.section-lead{
  font-family: var(--font-body); font-size: 18px; line-height: 1.55;
  max-width: 38ch; color: rgba(245,245,242,0.78);
}

/* ============================================================
   RECORD — bento
   ============================================================ */
.bento{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.tile{
  position: relative;
  background: #111114; border: 1px solid var(--brand-line);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.tile .label{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(245,245,242,0.5); text-transform: uppercase;
}
.tile .big{
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 8vw, 140px); letter-spacing: -0.03em; line-height: 0.85;
}
.tile.tile-record{ grid-column: span 6; grid-row: span 2; }
.tile.tile-record .big{ font-size: clamp(80px, 10vw, 200px); color: var(--brand-accent); }
.tile.tile-ko{ grid-column: span 3; grid-row: span 1; }
.tile.tile-streak{ grid-column: span 3; grid-row: span 1; }
.tile.tile-recent{ grid-column: span 6; grid-row: span 1; padding: 0; }
.tile.tile-video{ grid-column: span 6; grid-row: span 2; padding: 0; }
.tile.tile-bio{ grid-column: span 6; grid-row: span 1; }

.recent-list{ display: grid; grid-template-rows: repeat(3, 1fr); height: 100%; }
.recent-row{
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center;
  padding: 0 24px; border-bottom: 1px solid var(--brand-line);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
}
.recent-row:last-child{ border-bottom: 0; }
.recent-row .res{ color: var(--brand-accent); font-weight: 700; }
.recent-row .name{ color: rgba(245,245,242,0.85); text-transform: uppercase; }
.recent-row .meta{ color: rgba(245,245,242,0.5); font-size: 11px; }

.tile.tile-video{
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, rgba(230,255,26,0.08), transparent 40%),
    repeating-linear-gradient(45deg, #111114 0 12px, #0d0d10 12px 24px);
}
.tile.tile-video .play{
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--brand-accent); color: #0a0a0b;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900;
  transition: transform 0.2s;
}
.tile.tile-video:hover .play{ transform: scale(1.06); }
.tile.tile-video .vid-meta{
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(245,245,242,0.7); text-transform: uppercase;
}

@media (max-width: 900px){
  .bento{ grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .tile{ grid-column: span 6 !important; grid-row: span 1 !important; }
  .tile.tile-record{ grid-row: span 2 !important; }
  .tile.tile-video{ grid-row: span 2 !important; }
}

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; }
.fight-list{ border-top: 1px solid var(--brand-line); }
.fight-row{
  display: grid; grid-template-columns: 90px 1fr auto auto;
  gap: 24px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--brand-line);
  position: relative;
  transition: padding-left 0.3s ease;
}
.fight-row:hover{ padding-left: 16px; }
.fight-row::before{
  content: ""; position: absolute; left: 0; top: 50%; transform: translate(-100%, -50%) scaleX(0);
  transform-origin: right center;
  width: 12px; height: 1px; background: var(--brand-accent);
  transition: transform 0.3s;
}
.fight-row:hover::before{ transform: translate(0, -50%) scaleX(1); }
.fight-row .date{
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
}
.fight-row .date small{
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--brand-muted);
  font-weight: 400; margin-top: 4px;
}
.fight-row .opp{
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.fight-row .loc{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(245,245,242,0.6); text-transform: uppercase;
}
.fight-row .badge{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 10px; border: 1px solid var(--brand-line);
  border-radius: 999px;
}
.fight-row .badge.next{ border-color: var(--brand-accent); color: var(--brand-accent); }
.fight-row .badge.tba{ color: var(--brand-muted); }

.fight-preview{
  position: sticky; top: 120px; align-self: start;
  border: 1px solid var(--brand-line);
  background: #0e0e10;
  padding: 32px; min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0.5; transition: opacity 0.3s, border-color 0.3s;
}
.fight-preview.is-active{ opacity: 1; border-color: var(--brand-accent); }
.fight-preview .country{
  width: 100%; height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-accent);
}
.fight-preview .country svg{
  width: 100%; height: 100%; max-width: 280px;
}
.fight-preview .fp-title{
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.fight-preview .fp-sub{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(245,245,242,0.7); text-transform: uppercase; margin-top: 8px;
}

@media (max-width: 900px){
  .calendar{ grid-template-columns: 1fr; }
  .fight-preview{ position: static; }
}

/* ============================================================
   ACHTER DE HANDSCHOENEN — horizontal scroll
   ============================================================ */
.h-scroll{ height: 100vh; overflow: hidden; position: relative; }
.h-scroll-inner{
  display: flex; gap: 24px; height: 100%; align-items: center;
  padding: 0 var(--pad-x);
  will-change: transform;
}
.h-card{
  flex: 0 0 80vw; max-width: 540px;
  aspect-ratio: 9 / 16;
  max-height: 88vh;
  background: #111114; border: 1px solid var(--brand-line);
  position: relative; overflow: hidden;
}
.h-card .h-img{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.6s ease;
}
.h-card .h-yt{
  position: absolute;
  top: 50%; left: 50%;
  height: 102%;
  width: 320%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: auto;
}
.h-card--video{ background: #000; }

/* Mobile fallback for YouTube embeds (some videos block embed playback on mobile).
   Shows a static poster + play button; tap opens YouTube. */
.h-card .h-yt-fallback{
  position: absolute; inset: 0;
  display: none;
  text-decoration: none;
  background: #000;
}
.h-card .h-yt-fallback img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.h-card .h-yt-fallback .h-yt-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 0 24px rgba(215,255,0,0.35);
}
@media (max-width: 900px), (pointer: coarse){
  /* Only cards that ship a fallback swap to the poster on mobile.
     Other YouTube cards keep the iframe behaviour. */
  .h-card:has(.h-yt-fallback) .h-yt{ display: none; }
  .h-card .h-yt-fallback{ display: block; }
}
.h-card:hover .h-img{ transform: scale(1.04); }
.h-card .h-meta{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.h-card .h-meta .h-title{
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.h-card .h-meta .h-sub{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(245,245,242,0.7); text-transform: uppercase;
}
.h-card .h-meta .h-fights{
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(245,245,242,0.78); text-transform: uppercase;
  line-height: 1.35;
}
.h-card .h-meta .h-fights li{ position: relative; padding-left: 10px; }
.h-card .h-meta .h-fights li::before{
  content: ""; position: absolute; left: 0; top: 6px;
  width: 4px; height: 4px; background: var(--brand-accent); border-radius: 50%;
}
/* placeholder image swatches */
.h-card.swatch-1 .h-img{ background: radial-gradient(60% 80% at 30% 30%, #2a2a2c, #0a0a0b); }
.h-card.swatch-2 .h-img{ background: radial-gradient(60% 80% at 70% 60%, #1d1d1f, #0a0a0b); }
.h-card.swatch-3 .h-img{ background: radial-gradient(60% 80% at 50% 40%, #232325, #0a0a0b); }
.h-card.swatch-4 .h-img{ background: radial-gradient(60% 80% at 40% 70%, #1f1f21, #0a0a0b); }
.h-card.swatch-5 .h-img{ background: radial-gradient(60% 80% at 60% 30%, #262628, #0a0a0b); }
.h-card.swatch-6 .h-img{ background: radial-gradient(60% 80% at 30% 60%, #1a1a1c, #0a0a0b); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners{ padding: 80px 0; border-top: 1px solid var(--brand-line); }
.partners .partner-row{ overflow: hidden; padding: 24px 0; }
.partners .partner-row .track{
  display: flex; gap: 80px; animation: scroll 35s linear infinite;
  white-space: nowrap; align-items: center;
}
.partners .partner-row.reverse .track{ animation-direction: reverse; }
.partners .logo{
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; letter-spacing: -0.01em; text-transform: uppercase;
  color: rgba(245,245,242,0.5);
  transition: color 0.2s;
}
.partners .logo:hover{ color: var(--brand-fg); }

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  padding: 120px var(--pad-x) 32px;
  border-top: 1px solid var(--brand-line);
  position: relative;
}
.footer-mark{
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  letter-spacing: -0.04em; line-height: 0.8;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--brand-accent) 0%, rgba(215,255,0,0.15) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 64px;
  white-space: nowrap; overflow: hidden;
}
.footer-grid{
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px;
  border-top: 1px solid var(--brand-line); padding-top: 32px;
}
.footer-grid h4{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--brand-muted); text-transform: uppercase; margin-bottom: 16px;
  font-weight: 400;
}
.footer-grid ul{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a{
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--brand-line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--brand-muted); text-transform: uppercase;
}

@media (max-width: 700px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav .links{ display: none; }
  .hero-name{ font-size: clamp(56px, 18vw, 120px); }
  .section-head{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    margin-bottom: 40px;
  }
  .section-title{ margin-top: 12px; font-size: clamp(56px, 14vw, 96px); }
  .section-lead{ font-size: 16px; line-height: 1.55; }
  section{ padding: 80px var(--pad-x); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  .marquee .track, .partner-row .track{ animation: none !important; }
}
