<!---->
:root {
  --bg: #070910;
  --bg-soft: #0d1630;
  --panel: rgba(10, 15, 28, 0.78);
  --panel-strong: rgba(8, 12, 22, 0.92);
  --line: rgba(214, 182, 96, 0.22);
  --gold: #d6b660;
  --gold-bright: #f1dc9c;
  --ivory: #f4ead6;
  --mist: #b6bfd1;
  --copy: #d0d6e4;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--copy);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(44, 77, 157, 0.22), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(214, 182, 96, 0.12), transparent 24%),
    linear-gradient(180deg, #04060b 0%, #07101f 38%, #08111c 58%, #05070c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 62%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 30% 78%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px);
  opacity: 0.55;
}

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

.shell {
  position: relative;
  isolation: isolate;
}

.shell::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  width: min(950px, 85vw);
  height: 950px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 62, 129, 0.22) 0%, rgba(37, 62, 129, 0.12) 24%, transparent 68%);
  filter: blur(16px);
  z-index: -1;
}

.nav {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  padding: 26px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mist);
  flex-shrink: 0;
}

.brand-mark {
  display: block;
  width: 58px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(214, 182, 96, 0.18));
}

.brand-text {
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  color: var(--mist);
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links a,
.nav-dropdown-toggle {
  white-space: nowrap;
  opacity: 0.84;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}



.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  opacity: 0.78;
  transform: translateY(-1px);
}

.nav-dropdown[open] > .nav-dropdown-toggle,
.nav-dropdown-toggle.is-active {
  opacity: 1;
  color: var(--ivory);
}

.nav-links > a.is-active:not(.nav-buy) {
  opacity: 1;
  color: var(--ivory);
  font-weight: 700;
  border-bottom: 2px solid rgba(214, 182, 96, 0.78);
  padding-bottom: 6px;
  text-shadow: 0 0 16px rgba(214, 182, 96, 0.18);
}

.nav-dropdown-toggle.is-active {
  border-bottom: 2px solid rgba(214, 182, 96, 0.78);
  padding-bottom: 6px;
  text-shadow: 0 0 16px rgba(214, 182, 96, 0.18);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 188px;
  display: none;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 182, 96, 0.18);
  background: rgba(7, 12, 24, 0.97);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  z-index: 30;
}

.nav-dropdown[open] > .nav-dropdown-menu {
  display: grid;
  gap: 10px;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 4px;
  padding: 10px 14px;
  min-height: 40px;
  border: 1px solid rgba(214, 182, 96, 0.34);
  border-radius: 999px;
  background: rgba(214, 182, 96, 0.05);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}


.nav-links a.nav-buy {
  opacity: 1;
  color: #dff3ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a.nav-buy:hover,
.nav-links a.nav-buy:focus-visible,
.nav-links a.nav-buy.is-active {
  color: #f2fbff;
  text-shadow: 0 0 16px rgba(125, 198, 255, 0.18);
}

.nav-links a.nav-buy.is-active {
  border-bottom: 2px solid rgba(125, 198, 255, 0.78);
  padding-bottom: 6px;
}

.nav-links a.nav-members {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(125, 198, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 198, 255, 0.32), rgba(44, 77, 157, 0.42));
  color: #f2fbff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(125, 198, 255, 0.1), 0 14px 30px rgba(24, 88, 139, 0.22);
}

.nav-links a.nav-members:hover,
.nav-links a.nav-members:focus-visible {
  border-color: rgba(125, 198, 255, 0.9);
  background: linear-gradient(135deg, rgba(125, 198, 255, 0.44), rgba(44, 77, 157, 0.52));
  text-shadow: 0 0 16px rgba(125, 198, 255, 0.24);
}
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 6px;
  margin-left: 0;
  border-left: 1px solid rgba(214, 182, 96, 0.2);
  flex-shrink: 0;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(214, 182, 96, 0.24);
  background: rgba(214, 182, 96, 0.04);
  color: var(--gold-bright);
}

.nav-social-link:hover,
.nav-social-link:focus-visible {
  opacity: 1;
  color: var(--ivory);
  background: rgba(214, 182, 96, 0.1);
  border-color: rgba(214, 182, 96, 0.42);
  outline: none;
}

.nav-social-link svg {
  display: block;
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 999px;
  border: 1px solid rgba(214, 182, 96, 0.28);
  background: rgba(214, 182, 96, 0.04);
  color: var(--gold-bright);
  cursor: pointer;
  box-shadow: none;
  font: inherit;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(214, 182, 96, 0.1);
  border-color: rgba(214, 182, 96, 0.42);
  color: var(--ivory);
  outline: none;
}

.nav-toggle-box {
  display: block;
  width: 20px;
  height: 20px;
}

.nav-toggle-box svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav-toggle-box line {
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 182, 96, 0.6));
}

.eyebrow::after {
  background: linear-gradient(90deg, rgba(214, 182, 96, 0.6), transparent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ivory);
  font-weight: 600;
}

h1 {
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(180deg, #fff8ea 0%, #ebe3d3 24%, #d7c8a0 56%, #fff5dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 24px rgba(241, 220, 156, 0.1);
}

.hero-subtitle {
  margin: 22px 0 16px;
  max-width: 620px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--ivory);
}

.hero-copy,
.lede,
.copy {
  font-size: 17px;
  line-height: 1.8;
  color: #c7d0e0;
}

.hero-copy a,
.copy a,
.lede a,
.soundtrack-panel a,
.hero p a,
.panel p a,
.stack-card span a {
  color: #f1d38a;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  font-weight: 700;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero-copy a:hover,
.copy a:hover,
.lede a:hover,
.soundtrack-panel a:hover,
.hero p a:hover,
.panel p a:hover,
.stack-card span a:hover,
.hero-copy a:focus-visible,
.copy a:focus-visible,
.lede a:focus-visible,
.soundtrack-panel a:focus-visible,
.hero p a:focus-visible,
.panel p a:focus-visible,
.stack-card span a:focus-visible {
  color: #fff2c7;
  text-decoration-color: #fff2c7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #10131b;
  background: linear-gradient(135deg, #f0dfa9 0%, #d7b967 46%, #ae8530 100%);
  box-shadow: 0 16px 34px rgba(177, 136, 45, 0.3);
}

.button-secondary {
  border: 1px solid rgba(214, 182, 96, 0.38);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.02);
}

.meta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #95a2b6;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 56, 140, 0.34) 0%, rgba(24, 56, 140, 0.16) 36%, rgba(214, 182, 96, 0.08) 48%, transparent 70%);
  filter: blur(8px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(214, 182, 96, 0.14);
  box-shadow: 0 0 90px rgba(214, 182, 96, 0.08), inset 0 0 50px rgba(214, 182, 96, 0.05);
}

.cover-wrap {
  position: relative;
  z-index: 1;
  width: min(440px, 78vw);
  display: grid;
  gap: 22px;
  justify-items: center;
}

.cover-card {
  position: relative;
  width: 100%;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(13, 18, 31, 0.78), rgba(7, 10, 18, 0.92));
  border: 1px solid rgba(214, 182, 96, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(214, 182, 96, 0.2), transparent 22%, transparent 72%, rgba(94, 131, 230, 0.24));
  pointer-events: none;
}

.cover-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.quote-card {
  width: min(320px, 84%);
  margin-top: -42px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(11, 18, 33, 0.84);
  border: 1px solid rgba(214, 182, 96, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ivory);
}

.quote-card span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 92px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.panel {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(214, 182, 96, 0.14);
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.82), rgba(7, 10, 16, 0.92));
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.96;
  margin-bottom: 14px;
}

.panel h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.press-assets {
  margin-top: 34px;
}

.press-assets-intro {
  margin: 18px 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #cdb88a;
}

.press-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.press-asset-card {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(214, 182, 96, 0.2);
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.82), rgba(7, 10, 16, 0.94));
  box-shadow: var(--shadow);
}

.press-asset-thumb {
  aspect-ratio: 1 / 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(214, 182, 96, 0.14);
}

.press-asset-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.press-asset-body {
  padding: 24px 20px 22px;
}

.press-asset-title {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}

.press-asset-copy {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
  color: #c2cad8;
}

.press-asset-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-asset-download:hover,
.press-asset-download:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.editions-block {
  margin-top: 34px;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.edition-card {
  min-height: 210px;
  padding: 34px 20px 28px;
  border: 1px solid rgba(214, 182, 96, 0.2);
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.82), rgba(7, 10, 16, 0.94));
  box-shadow: var(--shadow);
}

.edition-label {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.edition-value {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ivory);
}

.edition-meta {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
  color: #c2cad8;
}

.edition-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.edition-link:hover,
.edition-link:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.edition-card.is-muted {
  border-color: rgba(255, 255, 255, 0.08);
}

.edition-card.is-muted .edition-label,
.edition-card.is-muted .edition-value,
.edition-card.is-muted .edition-meta {
  color: #8e96a8;
}

.soundtrack-panel {
  margin-top: 44px;
  padding: 44px 46px;
  border-top: 3px solid rgba(214, 182, 96, 0.9);
  border-left: 1px solid rgba(214, 182, 96, 0.2);
  border-right: 1px solid rgba(214, 182, 96, 0.2);
  border-bottom: 1px solid rgba(214, 182, 96, 0.2);
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.82), rgba(7, 10, 16, 0.94));
  box-shadow: var(--shadow);
}

.soundtrack-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.soundtrack-panel p {
  margin: 0 0 18px;
}

.soundtrack-quote {
  display: block;
  margin: 10px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.4;
  color: var(--gold-bright);
}

.soundtrack-note {
  max-width: 520px;
  padding: 20px 22px;
  border: 1px solid rgba(214, 182, 96, 0.42);
  background: rgba(214, 182, 96, 0.04);
}

.soundtrack-note .edition-label {
  margin-bottom: 12px;
}

.music-sample-section {
  padding-top: 0;
}

.music-sample-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(214, 182, 96, 0.24);
  border-top: 3px solid rgba(214, 182, 96, 0.78);
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.9), rgba(8, 11, 18, 0.96));
  box-shadow: var(--shadow);
}

.music-sample-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
}

.music-sample-panel .copy {
  max-width: 620px;
  margin-bottom: 0;
}

.music-sample-player {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.music-sample-player audio {
  width: 100%;
  min-height: 42px;
  accent-color: var(--gold);
}

.music-sample-list {
  display: grid;
  gap: 8px;
}

.music-sample-track {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 182, 96, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #d6deec;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.music-sample-track:hover,
.music-sample-track:focus-visible,
.music-sample-track.is-active {
  border-color: rgba(214, 182, 96, 0.66);
  background: rgba(214, 182, 96, 0.1);
  color: var(--ivory);
  outline: none;
}

.interview-list {
  margin-top: 4px;
  display: grid;
  gap: 0;
}

.interview-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(214, 182, 96, 0.14);
}

.interview-item:first-child {
  border-top: none;
  padding-top: 2px;
}

.interview-number {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.interview-question {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.42;
  color: var(--ivory);
}

.label {
  margin-bottom: 12px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-points,
.stack {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.story-points div,
.stack-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-points strong,
.stack-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-points span,
.stack-card span {
  color: #aeb8cb;
  line-height: 1.65;
  font-size: 15px;
}

.book-meta,
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.book-meta div,
.meta-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.book-meta strong,
.meta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.book-meta span,
.meta-card span {
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.5;
}

.world-band,
.feature-band {
  margin-top: 26px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(214, 182, 96, 0.12);
  background: linear-gradient(180deg, rgba(11, 17, 31, 0.84), rgba(7, 10, 18, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.world-band {
  background:
    linear-gradient(180deg, rgba(11, 17, 31, 0.84), rgba(7, 10, 18, 0.9)),
    url("https://images.squarespace-cdn.com/content/6998d3ce9ad9f94fd978d703/8059b990-cb20-4a15-8c36-5d3e929f72ea/Obdisian+dragon+eye.png?content-type=image%2Fpng") center/cover no-repeat;
}

.world-band h3,
.feature-band h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 52px);
}

.world-cards,
.card-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.world-card,
.info-card {
  min-height: 190px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(214, 182, 96, 0.12);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(8px);
}

.world-card strong,
.info-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: 13px;
}

.world-card p,
.info-card p {
  margin: 0;
  color: #d2dae7;
  line-height: 1.72;
  font-size: 15px;
}

.author {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: center;
}

.author-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(214, 182, 96, 0.14);
  box-shadow: var(--shadow);
  min-height: 0;
}

.author-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.author-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 12, 0.16), rgba(5, 7, 12, 0.48));
}

.author-copy {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 17, 31, 0.86), rgba(7, 10, 18, 0.94));
  border: 1px solid rgba(214, 182, 96, 0.12);
  box-shadow: var(--shadow);
}

.author-copy p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: #cad2e0;
}

.signup {
  margin-top: 24px;
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(214, 182, 96, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(11, 18, 34, 0.9), rgba(7, 10, 18, 0.96));
  border: 1px solid rgba(214, 182, 96, 0.16);
  box-shadow: var(--shadow);
  text-align: center;
}

.signup h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 52px);
}

.signup p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #c8d1e0;
  line-height: 1.85;
}

.signup-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 12px;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  font: inherit;
}

.signup-form textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: #97a4b8;
}

.form-grid {
  max-width: 860px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  font: inherit;
}

.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ivory) 50%),
    linear-gradient(135deg, var(--ivory) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-grid select option {
  color: #10131b;
  background: #f6f1e2;
}

.form-grid textarea {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #97a4b8;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8391a6;
    }

/* Hidden for now so it can be restored later without removing markup. */
.footer {
  display: none;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .hero {
    padding-top: 18px;
  }

  .hero-visual {
    order: -1;
    min-height: 620px;
  }

  .world-cards,
  .card-grid,
  .signup-form,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav-links {
    gap: 16px;
  }

  
.nav-links a.nav-buy {
  opacity: 1;
  color: #dff3ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a.nav-buy:hover,
.nav-links a.nav-buy:focus-visible,
.nav-links a.nav-buy.is-active {
  color: #f2fbff;
  text-shadow: 0 0 16px rgba(125, 198, 255, 0.18);
}
.nav-social {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 14px;
    padding-top: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(214, 182, 96, 0.18);
    background: rgba(7, 12, 24, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
.nav-dropdown-toggle {
    width: 100%;
    padding: 8px 0;
  }

  .nav-links a.nav-members {
    width: fit-content;
    padding: 10px 16px;
  }

  .nav-links > a.is-active:not(.nav-buy),
  .nav-links a.nav-buy.is-active,
  .nav-dropdown-toggle.is-active {
    border-bottom: 2px solid rgba(214, 182, 96, 0.78);
    padding-bottom: 8px;
  }

  .nav-links a.nav-buy.is-active {
    border-bottom-color: rgba(125, 198, 255, 0.78);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin-top: 8px;
    padding: 10px 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown[open] > .nav-dropdown-menu {
    display: grid;
    gap: 8px;
  }

  .nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 4px;
  padding: 10px 14px;
  min-height: 40px;
  border: 1px solid rgba(214, 182, 96, 0.34);
  border-radius: 999px;
  background: rgba(214, 182, 96, 0.05);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

  
.nav-links a.nav-buy {
  opacity: 1;
  color: #dff3ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a.nav-buy:hover,
.nav-links a.nav-buy:focus-visible,
.nav-links a.nav-buy.is-active {
  color: #f2fbff;
  text-shadow: 0 0 16px rgba(125, 198, 255, 0.18);
}
.nav-social {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    justify-content: flex-start;
  }

  .brand-mark {
    width: 54px;
  }

  .editions-grid {
    grid-template-columns: 1fr;
  }

  .press-assets-grid {
    grid-template-columns: 1fr;
  }

  .soundtrack-panel {
    padding: 28px 24px;
  }

  .music-sample-panel {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .hero {
    gap: 26px;
    padding-bottom: 64px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .panel,
  .author-copy,
  .signup {
    padding: 24px;
  }

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

  .footer {
    padding-bottom: 36px;
  }
}



.skip-link {
  position: absolute;
  left: 20px;
  top: 16px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 15, 28, 0.96);
  color: var(--ivory);
  border: 1px solid rgba(214, 182, 96, 0.45);
  z-index: 999;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links a:focus-visible,
.nav-social-link:focus-visible,
.nav-toggle:focus-visible,
.nav-cta:focus-visible,
.press-asset-download:focus-visible,
.edition-link:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.hero-copy a:focus-visible,
.copy a:focus-visible,
.lede a:focus-visible,
.soundtrack-panel a:focus-visible,
.hero p a:focus-visible,
.panel p a:focus-visible,
.stack-card span a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.nav-links a.nav-buy.is-active {
  border-bottom: 2px solid rgba(125, 198, 255, 0.78);
  padding-bottom: 6px;
}






