:root {
  color-scheme: dark;
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --bg-hover: #222222;
  --border: #2a2a2a;
  --border-light: #333333;
  --text-primary: #ffffff;
  --text-secondary: #9b9b9b;
  --text-muted: #626262;
  --accent: #ff3333;
  --accent-hover: #ff5555;
  --accent-dim: rgba(255, 51, 51, 0.15);
  --gold: #d7b56d;
  --blue: #78a6ff;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 44px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1400px;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 51, 51, 0.055) 0, rgba(255, 51, 51, 0) 340px),
    var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.public-shell {
  min-height: 100vh;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
}

.public-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.public-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 51, 51, 0.72);
}

.brand span:first-of-type {
  color: var(--accent);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  position: relative;
}

.nav-links a:not(.beta-link)::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.beta-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.045);
}

.beta-link:hover {
  border-color: rgba(255, 51, 51, 0.45);
  background: var(--accent-dim);
  color: var(--text-primary);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 52%, rgba(10, 10, 10, 0.62) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 76px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.7), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding-top: clamp(74px, 10vw, 132px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.panel-kicker {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.lede {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #cc0000 100%);
  color: #fff;
}

.button-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-primary);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: rgba(255, 51, 51, 0.48);
  color: var(--text-primary);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.status-pill,
.release-flags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-secondary);
  padding: 0 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 6% 34px auto;
  width: min(64vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, #070707 0 13%, #232323 13.4% 14.2%, #080808 14.6% 100%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 11px);
  box-shadow: inset 0 0 58px rgba(255, 255, 255, 0.08), var(--shadow-lg);
  opacity: 0.86;
}

.release-card,
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--bg-card);
  box-shadow: var(--shadow-md);
}

.release-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  padding: 18px;
}

.release-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 51, 51, 0.92), rgba(10, 10, 10, 0.15) 46%, rgba(215, 181, 109, 0.7)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 16px),
    #151515;
}

.release-art::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, #080808 0 16%, rgba(255, 255, 255, 0.22) 16.8% 17.8%, rgba(0, 0, 0, 0.22) 18.6% 100%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 9px);
}

.release-art span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 54px;
  height: 10px;
  background: #fff;
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.74), 0 36px 0 rgba(255, 255, 255, 0.38);
}

.release-meta {
  padding: 18px 4px 8px;
}

.release-meta h2 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.release-meta p:last-child {
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.waveform {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.waveform i {
  width: 100%;
  min-width: 6px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 51, 51, 0.32));
}

.waveform i:nth-child(2n) {
  height: 42px;
}

.waveform i:nth-child(3n) {
  height: 30px;
}

.waveform i:nth-child(5n) {
  height: 52px;
}

.release-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
  border-bottom: 1px solid var(--border);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #0d0d0d;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.panel {
  padding: clamp(22px, 3vw, 30px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.panel:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  background:
    linear-gradient(180deg, rgba(255, 51, 51, 0.075), rgba(255, 255, 255, 0.018)),
    var(--bg-card);
}

.panel p,
.legal-main p,
.legal-main li,
.check-list li {
  color: var(--text-secondary);
}

.panel h3 {
  margin-top: 8px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--text-secondary);
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--accent);
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 13px;
  max-width: 860px;
  padding-left: 18px;
}

.panel strong,
.check-list strong {
  color: var(--text-primary);
}

.legal-main {
  max-width: 900px;
}

.legal-main h1 {
  font-size: clamp(2.65rem, 6vw, 4.8rem);
}

.legal-main h2 {
  margin-top: 36px;
  font-size: 1.58rem;
}

.legal-main h3 {
  margin-top: 26px;
}

.legal-main a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.small-muted {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 15px;
  border: 1px solid rgba(255, 51, 51, 0.38);
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--text-primary);
  font-weight: 800;
}

.public-footer {
  padding: 42px 0;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-copy {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.operator-line:empty {
  display: none;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual::before {
    width: 86vw;
    right: -30vw;
    top: 18px;
    opacity: 0.35;
  }

  .release-card {
    margin-left: 0;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .public-container {
    padding: 0 20px;
  }

  .public-nav,
  .footer-grid {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
    gap: 12px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 42px;
  }

  .hero-copy,
  .lede {
    width: 100%;
    max-width: 100%;
  }

  .lede {
    max-width: min(100%, 320px);
    font-size: 1.05rem;
  }

  .hero-visual::before {
    display: none;
  }

  .release-card {
    max-width: min(100%, 330px);
  }
}

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