:root {
  --bg: #050505;
  --bg-elevated: #0d0d0d;
  --bg-soft: #151515;
  --paper: #f0ecde;
  --muted: #b7b0a2;
  --border: rgba(240, 236, 222, 0.15);
  --acid: #d1ff43;
  --ember: #ff7047;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 16px;
  --max-width: 1200px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--paper);
  background:
    radial-gradient(circle at top left, rgba(209, 255, 67, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 112, 71, 0.2), transparent 25%),
    linear-gradient(180deg, #090909 0%, var(--bg) 45%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 4px, 4px 100%;
  mix-blend-mode: soft-light;
}

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

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

button,
a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--bg);
  background: var(--acid);
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), calc(var(--max-width) + 2rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78));
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-brand__word {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.site-brand__tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch__button {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--muted);
  background: transparent;
}

.lang-switch__button.is-active {
  color: var(--bg);
  background: var(--acid);
}

.hero {
  padding: 1rem 0 2rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border);
  margin-bottom: 2.25rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.ticker__inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.8rem 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker-scroll 28s linear infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: end;
}

.hero__copy {
  padding-block: 1rem;
}

.eyebrow,
.section-kicker,
.track-card__label,
.channel-card__index,
.hero-note__label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.track-card__label,
.hero-note__label {
  color: var(--acid);
}

.hero h1,
.section h2 {
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 13vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  max-width: 10ch;
}

.hero__lede,
.section-heading p,
.panel p,
.track-card p,
.channel-card p,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero__lede {
  max-width: 42rem;
  margin-top: 1.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(209, 255, 67, 0.25);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(209, 255, 67, 0.08);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__actions,
.track-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.channel-card:hover,
.channel-card:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--bg);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 18px 35px rgba(209, 255, 67, 0.2);
}

.button--ghost,
.text-link {
  color: var(--paper);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(240, 236, 222, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.hero__visual {
  display: grid;
  gap: 1rem;
}

.brand-card,
.hero-note,
.panel,
.track-card,
.channel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.brand-card {
  padding: 1rem;
  border-radius: var(--radius);
  transform: rotate(-3deg);
}

.brand-card::after,
.panel::after,
.track-card::after,
.channel-card::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent);
}

.brand-card img {
  border-radius: calc(var(--radius) - 10px);
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-note {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
}

.hero-note p {
  margin: 0.6rem 0 0;
}

.section {
  padding-top: 4.5rem;
}

.section[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.section[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
}

.panel {
  padding: 1.8rem;
  border-radius: var(--radius);
}

.panel h2,
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
}

.panel p {
  margin: 1rem 0 0;
}

.checklist {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.9rem;
  color: var(--paper);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--acid);
}

.section-heading {
  max-width: 48rem;
}

.section-heading p {
  margin: 1rem 0 0;
}

.cards,
.channel-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.track-card {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
}

.track-card h3,
.channel-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.5rem;
}

.track-card p {
  margin: 0.9rem 0 0;
}

.track-card--follow {
  background:
    radial-gradient(circle at top right, rgba(255, 112, 71, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--bg-elevated);
}

.channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.channel-card {
  display: flex;
  flex-direction: column;
  min-height: 16rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.channel-card__index {
  color: var(--acid);
}

.channel-card p {
  margin-top: auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__small {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .section--split,
  .cards,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    max-width: 28rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), calc(var(--max-width) + 1rem));
  }

  .site-header {
    justify-content: center;
    padding-top: 0.75rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 22vw, 5.5rem);
  }

  .panel,
  .track-card,
  .channel-card,
  .hero-note {
    padding: 1.25rem;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero__actions,
  .track-card__actions {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
