:root {
  --ink: #050506;
  --panel: #0b0b0d;
  --panel-2: #111114;
  --paper: #f1eee8;
  --muted: #aaa6a0;
  --quiet: #77737a;
  --line: rgba(255, 255, 255, .13);
  --red: #e2373f;
  --red-dark: #831921;
  --violet: #a768ff;
  --gold: #d3aa65;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .7rem;
  left: .7rem;
  z-index: 100;
  translate: 0 -160%;
  padding: .75rem 1rem;
  border: 2px solid var(--paper);
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus { translate: 0; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, .92);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  justify-self: start;
  min-height: 44px;
  padding: .6rem .15rem;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: 800 .72rem/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-icon { position: relative; background: transparent; }
.menu-icon::before { position: absolute; top: 3px; }
.menu-icon::after { position: absolute; bottom: 3px; width: 14px; }
.menu-icon span { position: absolute; top: 9px; }

.brand {
  min-height: 44px;
  min-width: 8.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: -.5rem;
  padding: .7rem .5rem;
  text-decoration: none;
  color: #fff;
  font: 900 1.05rem/1 Georgia, serif;
  letter-spacing: .02em;
}

.brand span { color: var(--red); }

.nav-signal {
  justify-self: end;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gateway-menu {
  position: absolute;
  inset: 100% 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 9, .985);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .55);
}

.gateway-menu[hidden] { display: none; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: 1.5rem 1.8rem;
}

.menu-group h2 {
  margin: 0 0 .45rem;
  color: var(--red);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.menu-group a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #d8d5d0;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-group a:hover,
.menu-group a[aria-current="page"] { color: #fff; border-color: var(--red); }

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(730px, calc(100svh - 64px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 45%, rgba(226, 55, 63, .15), transparent 27%),
    #050506;
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 39%;
  background-image:
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, .56) 30%, rgba(5, 5, 6, .08) 72%),
    linear-gradient(0deg, #050506 0%, transparent 30%),
    url("../versions/official-ghostheart.png");
  background-position: center;
  background-size: cover;
  filter: saturate(.86) contrast(1.08);
}

.hero-scratches {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .2;
  background-image:
    repeating-linear-gradient(104deg, transparent 0 56px, rgba(255, 255, 255, .06) 57px, transparent 58px 124px),
    linear-gradient(115deg, transparent 49.7%, rgba(226, 55, 63, .22) 49.8% 50.1%, transparent 50.2%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero-copy { min-width: 0; }

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--red);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.home-hero .eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--red);
  content: "";
}

.home-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font: 900 clamp(2.65rem, 5.3vw, 4rem)/.96 Georgia, serif;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 5px 35px rgba(0, 0, 0, .65);
}

.home-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .72);
}

.hero-identity {
  max-width: 540px;
  margin: 1.25rem 0 .45rem;
  color: #cbc7c1;
  font-size: clamp(.98rem, 1.55vw, 1.15rem);
}

.hero-lede {
  max-width: 540px;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  padding: .65rem .95rem;
  border-left: 3px solid var(--red);
  background: rgba(5, 5, 6, .52);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-link:hover { background: var(--red); }

.featured-song {
  width: min(100%, 430px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(7, 7, 9, .91);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .58), 0 0 46px rgba(226, 55, 63, .11);
  backdrop-filter: blur(12px);
}

.featured-song-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-bottom: 1px solid var(--line);
  background: #0b0b0d;
}

.featured-song-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 6, .8));
  content: "";
  pointer-events: none;
}

.featured-song-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-song-art > span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: .8rem;
  color: #fff;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.featured-song-body { padding: 1.1rem; }

.featured-song-kicker {
  margin: 0 0 .35rem;
  color: var(--red);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.featured-song h2 {
  margin: 0;
  color: #fff;
  font: 800 clamp(1.55rem, 2.5vw, 2.15rem)/1 Georgia, serif;
  letter-spacing: -.035em;
}

.featured-song-summary {
  margin: .55rem 0 .8rem;
  color: #c6c1bb;
  font-size: .82rem;
  line-height: 1.45;
}

.featured-preview {
  border-top: 1px solid var(--line);
  padding-top: .75rem;
}

.preview-status {
  margin: 0 0 .35rem;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-preview audio { display: none; }

.preview-controls {
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto;
  gap: .7rem;
  align-items: center;
}

.preview-toggle {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: .55rem .85rem;
  background: #202024;
  color: #fff;
  font: 900 .65rem/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.preview-toggle:hover,
.preview-toggle[aria-pressed="true"] { border-color: var(--red); background: var(--red-dark); }

.preview-track {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.preview-track > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.preview-time {
  color: #d4cfc8;
  font-size: .67rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.featured-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: .85rem -1.1rem -1.1rem;
  border-top: 1px solid var(--line);
}

.featured-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 50px;
  padding: .65rem .4rem;
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-actions a + a { border-left: 1px solid var(--line); }
.featured-actions a:hover { background: rgba(255, 255, 255, .07); }
.featured-actions .featured-own { background: var(--red); }
.featured-actions .featured-own:hover { background: var(--red-dark); }

.hero-mark {
  position: absolute;
  right: 1.4rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
}

.identity-section,
.path-section,
.gateway-section { padding-block: clamp(3.5rem, 7vw, 5.7rem); }

.identity-section {
  position: relative;
  background:
    linear-gradient(130deg, rgba(226, 55, 63, .06), transparent 30%),
    var(--panel);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 1.65rem;
}

.section-intro h2,
.gateway-heading h2 {
  margin: 0;
  font: 800 clamp(1.75rem, 3.6vw, 2.85rem)/1.03 Georgia, serif;
  letter-spacing: -.035em;
}

.section-intro > p:last-child {
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .91rem;
}

.identity-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.identity-piece {
  display: grid;
  grid-template-columns: minmax(150px, 38%) 1fr;
  min-height: 270px;
  background: #0e0e11;
}

.identity-piece + .identity-piece { border-left: 1px solid var(--line); }

.track-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 53% 48%, rgba(226, 55, 63, .35), transparent 28%),
    repeating-linear-gradient(118deg, transparent 0 18px, rgba(255, 255, 255, .035) 19px, transparent 20px 43px),
    #09090b;
}

.identity-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: contain;
  background: #050507;
  color-scheme: dark;
  accent-color: var(--red);
}

.oath-song .track-art {
  background:
    radial-gradient(circle at 50% 48%, rgba(167, 104, 255, .27), transparent 28%),
    repeating-linear-gradient(68deg, transparent 0 22px, rgba(255, 255, 255, .035) 23px, transparent 24px 47px),
    #09090b;
}

.track-number {
  position: absolute;
  z-index: 2;
  top: .8rem;
  left: .8rem;
  color: rgba(255, 255, 255, .34);
  font: 900 .63rem/1 "Segoe UI", sans-serif;
  letter-spacing: .2em;
  pointer-events: none;
  text-shadow: 0 1px 8px #000;
}

.spray-word {
  position: absolute;
  right: -.2rem;
  bottom: .25rem;
  color: rgba(255, 255, 255, .07);
  font: 900 clamp(2.7rem, 5vw, 4.6rem)/.8 Arial, sans-serif;
  letter-spacing: -.09em;
  transform: rotate(-8deg);
}

.signal-lines {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}

.signal-lines i { width: 3px; height: 38px; background: var(--red); box-shadow: 0 0 16px var(--red); }
.signal-lines i:nth-child(2), .signal-lines i:nth-child(4) { height: 82px; }
.signal-lines i:nth-child(3) { height: 120px; }

.oath-heart {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--violet);
  font-size: 5.4rem;
  text-shadow: 0 0 34px rgba(167, 104, 255, .64);
  transform: translate(-50%, -52%);
}

.oath-stroke {
  position: absolute;
  inset: 50% auto auto 10%;
  width: 80%;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 12px #fff;
  transform: rotate(-10deg);
}

.track-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.65rem;
}

.track-type {
  margin: 0 0 .5rem;
  color: var(--red);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.oath-song .track-type { color: #ba86ff; }

.track-copy h3 {
  margin: 0;
  font: 800 clamp(1.45rem, 2.6vw, 2rem)/1 Georgia, serif;
  letter-spacing: -.03em;
}

.track-copy > p:not(.track-type) {
  margin: .72rem 0 1.1rem;
  color: var(--muted);
  font-size: .84rem;
}

.track-media {
  width: 100%;
  margin-top: auto;
}

.track-now {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .45rem;
  color: #d5d1cb;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.track-now i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(211, 170, 101, .6);
}

.track-media audio {
  display: block;
  width: 100%;
  height: 40px;
  color-scheme: dark;
  accent-color: var(--red);
}

.oath-song .track-now i {
  background: #ba86ff;
  box-shadow: 0 0 10px rgba(186, 134, 255, .55);
}

.path-section {
  border-block: 1px solid var(--line);
  background: #070708;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: end;
  max-width: none;
}

.split-intro > p:last-child { max-width: 430px; justify-self: end; }

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.door {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .95rem;
  align-items: center;
  min-height: 124px;
  padding: 1.15rem;
  background: var(--panel);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.door + .door { border-left: 1px solid var(--line); }
.door:hover { z-index: 1; background: #161619; transform: translateY(-4px); }

.door-number {
  color: var(--red);
  font: 900 .62rem/1 "Segoe UI", sans-serif;
  letter-spacing: .15em;
}

.door-copy { display: grid; gap: .32rem; }
.door-copy strong { font: 800 1.03rem/1.15 Georgia, serif; }
.door-copy small { color: var(--muted); font-size: .75rem; line-height: 1.35; }
.door-arrow { color: var(--quiet); font-size: 1.1rem; }
.door:hover .door-arrow { color: var(--red); }

.gateway-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent),
    var(--panel-2);
}

.gateway-stack { display: grid; gap: 1rem; }

.gateway-row {
  display: grid;
  grid-template-columns: minmax(220px, .64fr) 1.36fr;
  border: 1px solid var(--line);
  background: rgba(5, 5, 6, .65);
}

.gateway-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.3rem 1.45rem;
  border-right: 1px solid var(--line);
}

.gateway-heading h2 { font-size: clamp(1.35rem, 2.7vw, 2rem); }

.link-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.link-rail a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-content: center;
  min-height: 112px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  transition: background-color .2s ease;
}

.link-rail a + a { border-left: 1px solid var(--line); }
.link-rail a:hover { background: rgba(226, 55, 63, .1); }
.link-rail a span { color: var(--red); font-size: .61rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.link-rail a strong { font: 800 1rem/1.15 Georgia, serif; }
.link-rail a i { grid-area: 1 / 2 / 3; align-self: center; color: var(--quiet); font-style: normal; }
.link-rail a:hover i { color: var(--red); }

.purpose-row { border-color: rgba(167, 104, 255, .22); }
.purpose-row .eyebrow,
.purpose-links a span { color: #ba86ff; }
.purpose-links { grid-template-columns: repeat(2, 1fr); }
.purpose-links a:hover { background: rgba(167, 104, 255, .1); }
.purpose-links a:hover i { color: #ba86ff; }

.platform-rail {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(211, 170, 101, .26);
  border-bottom: 1px solid rgba(211, 170, 101, .18);
  padding-block: clamp(2.6rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 12% 40%, rgba(211, 170, 101, .12), transparent 24rem),
    linear-gradient(112deg, rgba(226, 55, 63, .07), transparent 45%),
    #080809;
}

.platform-rail::after {
  position: absolute;
  right: -5rem;
  bottom: 1.5rem;
  width: min(32rem, 55vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red));
  box-shadow: 0 0 18px rgba(211, 170, 101, .45);
  rotate: -5deg;
  content: "";
}

.platform-rail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}

.platform-rail-copy h2 {
  max-width: 15ch;
  margin: 0;
  font: 800 clamp(1.85rem, 3.6vw, 3rem)/1 Georgia, serif;
  letter-spacing: -.04em;
}

.platform-rail-copy > p:last-child {
  max-width: 34rem;
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(5, 5, 6, .72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
}

.platform-links a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem .75rem;
  align-content: center;
  min-height: 112px;
  padding: 1.15rem;
  color: var(--paper);
  text-decoration: none;
}

.platform-links a + a { border-left: 1px solid var(--line); }
.platform-links a:hover { background: rgba(211, 170, 101, .08); }
.platform-links a span { color: var(--gold); font-size: .62rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.platform-links a strong { font: 800 1.15rem/1.15 Georgia, serif; }
.platform-links a i { grid-area: 1 / 2 / 3; align-self: center; color: var(--red); font-style: normal; }

.signal-signup {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226, 55, 63, .28);
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background:
    radial-gradient(circle at 78% 50%, rgba(226, 55, 63, .18), transparent 28rem),
    repeating-linear-gradient(118deg, transparent 0 38px, rgba(255, 255, 255, .018) 39px, transparent 40px 82px),
    #09090b;
}

.signal-signup::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  box-shadow: 0 0 28px rgba(226, 55, 63, .72);
  content: "";
}

.signal-signup-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.signal-signup-copy h2 {
  max-width: 14ch;
  margin: 0;
  font: 800 clamp(2rem, 4vw, 3.25rem)/.98 Georgia, serif;
  letter-spacing: -.045em;
}

.signal-signup-copy > p:last-child {
  max-width: 35rem;
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.signal-signup-form {
  position: relative;
  border: 1px solid var(--line);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(5, 5, 6, .82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.signal-signup-form label {
  display: block;
  margin-bottom: .45rem;
  color: #d8d3cc;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.signal-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.signal-input-row input,
.signal-input-row button {
  min-height: 52px;
  border-radius: 0;
  font: inherit;
}

.signal-input-row input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-right: 0;
  padding: .8rem .9rem;
  background: #111114;
  color: #fff;
}

.signal-input-row input::placeholder { color: #77737a; }

.signal-input-row input:focus {
  position: relative;
  z-index: 1;
  border-color: #fff;
}

.signal-input-row button {
  border: 1px solid var(--red);
  padding: .75rem 1.1rem;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.signal-input-row button:hover { background: var(--red-dark); }

.signal-signup-form > p {
  margin: .65rem 0 0;
  color: #bbb6af;
  font-size: .82rem;
  line-height: 1.65;
}

.signal-signup-form > p a,
.media-access summary,
.legal-page a { color: #fff; text-decoration-color: var(--red); text-underline-offset: .2em; }

.signal-privacy-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block: -.35rem;
  padding: .35rem .12rem;
  font-weight: 800;
}

.media-access {
  margin-top: .75rem;
  color: var(--quiet);
  font-size: .82rem;
  line-height: 1.6;
}

.media-status {
  margin: .7rem 0 0;
  color: #bbb6af;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .03em;
}

.media-access summary {
  width: max-content;
  max-width: 100%;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
}

.media-access p { margin: .25rem 0 0; }

.signal-honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto auto;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 86px;
  color: var(--quiet);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}

.footer-inner a:hover { color: #fff; }

.footer-brand {
  min-width: 7.5rem;
  justify-content: center;
  margin-inline-start: -.55rem;
  padding-inline: .55rem;
  color: #fff !important;
  font: 900 1rem/1 Georgia, serif;
  letter-spacing: .02em;
  text-transform: none;
}

.footer-brand span { color: var(--red); }
.footer-mission { justify-self: start; }

.footer-platforms {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
}

.footer-platforms a {
  padding-inline: .65rem;
  color: #c7c1b8;
}

.footer-platforms a:hover { color: var(--gold); }
.footer-actions { display: inline-flex; align-items: center; gap: 1rem; }

.legal-page {
  min-height: 75vh;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(190, 25, 25, .13), transparent 28rem),
    linear-gradient(180deg, #09090a, #050506);
}

.legal-page article { max-width: 48rem; }
.legal-page h1 { max-width: 12ch; margin: .45rem 0 1.25rem; font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: .9; letter-spacing: -.05em; }
.legal-page h2 { margin: 2.2rem 0 .6rem; font-size: clamp(1.35rem, 3vw, 2rem); }
.legal-page p,
.legal-page li { color: #d2c9c4; line-height: 1.75; }
.legal-page ul { padding-left: 1.25rem; }

.discovery-strip {
  border-top: 1px solid rgba(211, 170, 101, .26);
  background: linear-gradient(96deg, rgba(211, 170, 101, .09), transparent 44%), #080809;
}

.discovery-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 1rem;
}

.discovery-inner p { margin: 0; color: var(--muted); font-size: .86rem; }
.discovery-inner p span { display: block; color: var(--gold); font: 800 1.08rem/1.2 Georgia, serif; }
.discovery-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.discovery-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: .65rem .8rem;
  color: var(--paper);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}
.discovery-inner a:hover { border-color: var(--gold); background: rgba(211, 170, 101, .08); }

@media (max-width: 1100px) and (min-width: 681px) {
  .platform-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-links a:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .platform-links a:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(300px, .74fr); gap: 1.5rem; }
  .hero-art { inset-inline-start: 28%; opacity: .72; }
  .identity-spread { grid-template-columns: 1fr; }
  .identity-piece + .identity-piece { border-top: 1px solid var(--line); border-left: 0; }
  .door-grid { grid-template-columns: 1fr; }
  .door + .door { border-top: 1px solid var(--line); border-left: 0; }
  .door { min-height: 98px; }
  .gateway-row { grid-template-columns: 1fr; }
  .gateway-heading { border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-rail-inner { grid-template-columns: 1fr; }
  .signal-signup-shell { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: auto 1fr auto; padding-block: .8rem; }
  .footer-brand { grid-column: 1; grid-row: 1; }
  .footer-mission { grid-column: 1 / -1; grid-row: 2; }
  .footer-platforms { grid-column: 2; grid-row: 1; justify-self: center; }
  .footer-actions { grid-column: 3; grid-row: 1; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav-inner { grid-template-columns: 1fr auto; }
  .brand { justify-self: end; }
  .nav-signal { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; max-height: calc(100svh - 64px); overflow-y: auto; }
  .home-hero { min-height: auto; align-items: end; }
  .hero-art {
    inset: 0;
    opacity: .58;
    background-image:
      linear-gradient(0deg, #050506 4%, rgba(5, 5, 6, .3) 55%, rgba(5, 5, 6, .08)),
      url("../versions/official-ghostheart.png");
    background-position: 62% center;
  }
  .hero-content { grid-template-columns: 1fr; gap: 1.15rem; padding-block: 5.25rem 1.3rem; }
  .featured-song { width: 100%; justify-self: stretch; }
  .featured-song-art { aspect-ratio: 16 / 5; }
  .home-hero h1 { font-size: clamp(2.35rem, 10.5vw, 2.75rem); }
  .home-hero h1 span { -webkit-text-stroke-width: .7px; }
  .hero-lede { display: none; }
  .hero-mark { display: none; }
  .identity-section,
  .path-section,
  .gateway-section { padding-block: 3.25rem; }
  .section-intro h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }
  .identity-piece { grid-template-columns: 118px 1fr; min-height: 250px; }
  .track-copy { padding: 1.2rem; }
  .track-copy h3 { font-size: 1.35rem; }
  .track-copy > p:not(.track-type) { font-size: .79rem; }
  .signal-lines { transform: translate(-50%, -50%) scale(.78); }
  .oath-heart { font-size: 4.5rem; }
  .split-intro { grid-template-columns: 1fr; gap: .3rem; }
  .split-intro > p:last-child { justify-self: start; }
  .link-rail { grid-template-columns: 1fr; }
  .link-rail a { min-height: 78px; }
  .link-rail a + a { border-top: 1px solid var(--line); border-left: 0; }
  .purpose-links { grid-template-columns: 1fr; }
  .platform-links { grid-template-columns: 1fr; }
  .platform-links a { min-height: 78px; }
  .platform-links a + a { border-top: 1px solid var(--line); border-left: 0; }
  .signal-input-row { grid-template-columns: 1fr; gap: .55rem; }
  .signal-input-row input { border-right: 1px solid rgba(255, 255, 255, .2); }
  .signal-input-row button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr auto; gap: .35rem 1rem; }
  .footer-brand { grid-column: 1; grid-row: 1; justify-self: start; }
  .footer-actions { grid-column: 2; grid-row: 1; }
  .footer-platforms { grid-column: 1 / -1; grid-row: auto; justify-self: stretch; justify-content: space-between; border-block: 1px solid var(--line); }
  .footer-platforms a { flex: 1 1 0; justify-content: center; }
  .footer-mission { grid-column: 1 / -1; grid-row: auto; }
  .discovery-inner { align-items: flex-start; flex-direction: column; }
  .discovery-inner nav { width: 100%; justify-content: stretch; }
  .discovery-inner a { flex: 1 1 9rem; justify-content: center; }
}

@media (max-width: 390px) {
  .menu-grid { grid-template-columns: 1fr; }
  .identity-piece { grid-template-columns: 1fr; }
  .track-art { width: min(100%, 18rem); min-height: 0; aspect-ratio: 9 / 16; justify-self: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .identity-video { min-height: 0; }
  .track-copy { min-height: 218px; }
  .door { grid-template-columns: auto 1fr auto; padding: 1rem .85rem; }
}

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