:root {
  --ink:     #0a0a0a;
  --surface: #111114;
  --bone:    #f3efe7;
  --dim:     rgba(243, 239, 231, 0.62);
  --faint:   rgba(243, 239, 231, 0.14);
  --line:    rgba(243, 239, 231, 0.10);
  --mint:    #6FE3B6;
  --yellow:  #FFD133;
  --blue:    #2F6FE0;
  --red:     #E63946;

  --font-display: "Bebas Neue", "Archivo Black", Impact, sans-serif;
  --font-body:    Inter, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--bone);
}
.nav-subscribe {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 2px;
  font-weight: 500;
}

/* ============================================================
   CROSSHAIRS
   ============================================================ */
.crosshair {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--faint);
}
.crosshair::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-0.5px);
}
.crosshair::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-0.5px);
}
.crosshair--tl { top: 28px;    left: 28px; }
.crosshair--tr { top: 28px;    right: 28px; }
.crosshair--bl { bottom: 28px; left: 28px; }
.crosshair--br { bottom: 28px; right: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 56px 104px;
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 48px;
}
.hero-meta-broadcast { display: inline; }
.hero-meta-broadcast-mobile { display: none; }

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

.speck {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.speck--1 {
  width: 6px; height: 6px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(111, 227, 182, 0.13);
  top: 90px;
  left: calc(50% - 140px);
}
.speck--2 {
  width: 8px; height: 8px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 209, 51, 0.13);
  top: 120px;
  right: calc(50% - 160px);
}
.speck--3 {
  width: 5px; height: 5px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(47, 111, 224, 0.13);
  top: 300px;
  left: calc(50% - 200px);
}
.speck--4 {
  width: 6px; height: 6px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.13);
  top: 320px;
  right: calc(50% - 180px);
}

.hero-tagline-block {
  text-align: center;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0;
  font-weight: 400;
}
.hero-canvas {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone) 58%, var(--yellow) 58%, var(--yellow) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.hero-subhead {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--dim);
  max-width: 560px;
  margin: 32px auto 0;
  line-height: 1.5;
  text-align: center;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 26px;
  border: 1.5px solid var(--bone);
  color: var(--bone);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.btn-outline:hover {
  background: var(--bone);
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--bone);
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-block;
}
.ticker-diamond {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 160px 56px;
  border-bottom: 1px solid var(--line);
}
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
}
.eyebrow--mint .eyebrow-dot {
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(111, 227, 182, 0.25);
}
.eyebrow--red .eyebrow-dot {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.25);
}
.eyebrow--yellow .eyebrow-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 209, 51, 0.25);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--dim);
}

.about-body {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-headline {
  font-family: var(--font-display);
  font-size: 128px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0;
  font-weight: 400;
}
.about-crown {
  position: relative;
  display: inline-block;
}
.about-squiggle {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 14px;
}
.about-chip {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--yellow);
  padding: 5px 10px;
  border: 1px solid var(--yellow);
  text-transform: uppercase;
}
.about-bio {
  margin: 40px auto 0;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.55;
  color: var(--bone);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--ink);
  padding: 96px 56px 48px;
}
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.footer-mantra {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.footer-logo {
  width: 110px;
  height: 110px;
  margin-bottom: 28px;
  object-fit: contain;
}
.footer-mantra-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.18em;
  color: var(--dim);
  line-height: 1;
  text-transform: uppercase;
}

.footer-cards {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}
.footer-card {
  flex: 1;
  padding: 20px 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.footer-card-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.45);
}
.footer-card-link {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--bone);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-card-link .footer-card-link-text {
  padding-bottom: 2px;
}
.footer-card-link--yellow .footer-card-link-text {
  border-bottom: 2px solid var(--yellow);
}
.footer-card-link--red .footer-card-link-text {
  border-bottom: 2px solid var(--red);
}

.footer-play {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--red);
  flex-shrink: 0;
}
.footer-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
}

.footer-mark {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  margin-bottom: 32px;
}
.footer-mark span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--dim);
  padding: 5px 10px;
  border: 1px solid var(--line);
  text-transform: uppercase;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.55);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 96px 56px;
}
.legal-container {
  max-width: 880px;
  margin: 0 auto;
}
.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--bone);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.legal-effective {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.legal-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--bone);
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.legal-body h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 32px;
  margin-bottom: 8px;
}
.legal-body a {
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
  text-decoration: none;
}
.legal-body p {
  margin: 0 0 16px;
}

/* ============================================================
   MOBILE (<= 640px)
   ============================================================ */
@media (max-width: 640px) {
  .nav {
    padding: 18px 20px;
  }
  .nav-logo {
    width: 36px;
    height: 36px;
  }
  .nav-wordmark {
    font-size: 18px;
  }

  .crosshair {
    width: 14px;
    height: 14px;
  }
  .crosshair--tl { top: 14px;    left: 14px; }
  .crosshair--tr { top: 14px;    right: 14px; }
  .crosshair--bl { bottom: 14px; left: 14px; }
  .crosshair--br { bottom: 14px; right: 14px; }

  .hero {
    padding: 36px 20px 64px;
  }
  .hero-meta {
    margin-bottom: 28px;
  }
  .hero-meta-broadcast { display: none; }
  .hero-meta-broadcast-mobile { display: inline; }

  .hero-logo-wrap { margin-bottom: 16px; }
  .hero-logo {
    width: 220px;
    height: 220px;
  }
  .speck--1 { top: 60px;  left: calc(50% - 40px); }
  .speck--2 { top: 80px;  right: calc(50% - 60px); }
  .speck--3 { top: 180px; left: calc(50% - 60px); }
  .speck--4 { top: 200px; right: calc(50% - 40px); }

  .hero-tagline { font-size: 44px; }
  .hero-subhead {
    font-size: 14px;
    max-width: 320px;
    margin-top: 22px;
  }
  .hero-cta-wrap { margin-top: 32px; }
  .btn-outline {
    padding: 14px 22px;
    font-size: 12px;
  }
  .hero-scroll { display: none; }

  .about {
    padding: 72px 20px;
  }
  .about-header { margin-bottom: 32px; }
  .about-headline { font-size: 56px; }
  .about-chip { margin-top: 28px; }
  .about-bio {
    margin-top: 28px;
    font-size: 17px;
  }

  .footer {
    padding: 56px 20px 32px;
  }
  .footer-header { margin-bottom: 32px; }
  .footer-mantra { margin-bottom: 40px; }
  .footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .footer-mantra-text { font-size: 20px; }

  .footer-cards {
    flex-direction: column;
    gap: 16px;
  }
  .footer-card-link { font-size: 17px; }

  .footer-mark {
    margin-top: 36px;
    margin-bottom: 24px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .legal-page { padding: 64px 20px; }
  .legal-title { font-size: 40px; }
}
