:root {
  --bg: #07090c;
  --panel: #10151b;
  --panel-soft: #151d24;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f1ea;
  --muted: #a9b0b6;
  --blue: #203546;
  --green: #2d433e;
  --accent: #d6d0c6;
  --max: 1280px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5.5rem;
  --radius: 1.25rem;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "HK Grotesk", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(32, 53, 70, 0.45), transparent 28%),
    radial-gradient(circle at 10% 40%, rgba(45, 67, 62, 0.3), transparent 24%),
    var(--bg);
  color: var(--text);
}

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

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

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

.legal-shell {
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.25rem 2rem;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 19rem;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-ticket-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  padding: 0;
  cursor: pointer;
}

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

main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.legal-main {
  width: min(100%, 60rem);
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.section {
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-compact {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.eyebrow,
.module-label,
.update-label,
.journal-date,
.chapter-index {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: var(--space-6);
}

.section-heading h2,
.hero-copy h1,
.statement-line,
.fragment-line {
  font-family: "Druk Wide", "Arial Black", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-intro,
.module-text,
.hero-support,
.chapter-copy p,
.journal-body p,
.story-block p,
.update-card p,
.submodule p,
.video-copy p,
.link-column a,
.statement-meta {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 4.8fr) minmax(0, 5.2fr);
  gap: var(--space-6);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: var(--space-7) 0;
}

.hero-copy {
  max-width: 33rem;
  padding: 2rem 2rem 2rem 0;
}

.hero-copy h1 {
  margin: 0.8rem 0 0;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.hero-claim {
  margin: 1.5rem 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
  max-width: 24rem;
}

.hero-support {
  margin: 1.25rem 0 0;
  max-width: 28rem;
}

.hero-visual {
  position: relative;
  min-height: 40rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.65)),
    linear-gradient(0deg, rgba(7, 9, 12, 0.6), rgba(7, 9, 12, 0.05));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #0d1115;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.live-marker {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.65rem 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(214, 208, 198, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.live-marker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #c8a67d;
  box-shadow: 0 0 16px rgba(200, 166, 125, 0.6);
}

.updates-grid,
.music-subgrid,
.video-grid,
.link-columns {
  display: grid;
  gap: 1.5rem;
}

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

.update-card,
.submodule,
.video-card,
.link-column,
.journal-entry,
.music-feature,
.journey-split,
.chapter-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.update-card,
.submodule,
.video-card,
.link-column,
.music-feature,
.journey-split,
.chapter-item,
.journal-entry,
.video-copy {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.update-card:hover,
.submodule:hover,
.video-card:hover,
.link-column:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.update-card,
.submodule,
.link-column,
.video-card {
  padding: 1.5rem;
}

.update-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(32, 53, 70, 0.18), rgba(255, 255, 255, 0.02));
}

.update-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(45, 67, 62, 0.18), rgba(255, 255, 255, 0.02));
}

.update-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.update-card h3,
.submodule h3,
.story-block h3,
.video-card h3,
.link-column h3,
.journal-entry h3,
.chapter-copy h3,
.music-copy h3,
.video-copy h3 {
  margin: 0.7rem 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.update-card a,
.link-column a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
}

.statement-block {
  max-width: 58rem;
}

.statement-line {
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
}

.statement-meta {
  margin-top: 1rem;
}

.music-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-5);
  padding: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(32, 53, 70, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.music-art {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 25rem;
}

.music-art img,
.journey-visual img,
.journey-break img,
.video-poster img,
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-links a {
  color: var(--muted);
}

.platform-links a:hover,
.platform-links a:focus-visible {
  color: var(--accent);
}

.music-subgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.submodule:first-child {
  border-top: 1px solid rgba(214, 208, 198, 0.22);
}

.submodule-release {
  display: grid;
  gap: 1rem;
}

.submodule-cover {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 16rem;
  background: rgba(255, 255, 255, 0.03);
}

.submodule-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: var(--space-5);
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(32, 53, 70, 0.12), rgba(255, 255, 255, 0.02));
}

.journey-visual {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 38rem;
}

.journey-story {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.story-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.journey-break {
  margin: 2rem 0 0;
  min-height: 32rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fragments-section {
  display: grid;
  gap: 3rem;
}

.fragment-line {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 4.6vw, 4.75rem);
}

.fragment-line:nth-child(2) {
  justify-self: end;
  text-align: right;
}

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

.chapter-item {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}

.chapter-index {
  padding-top: 0.35rem;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.video-poster {
  position: relative;
  min-height: 28rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.55));
}

.play-pill {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.18);
  backdrop-filter: blur(12px);
}

.video-copy {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.placeholder-thumb {
  min-height: 10rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(32, 53, 70, 0.7), rgba(45, 67, 62, 0.55)),
    rgba(255, 255, 255, 0.05);
  color: rgba(244, 241, 234, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.stills-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 1.25rem;
}

.tile {
  margin: 0;
  min-height: 18rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.tile-large {
  grid-row: span 2;
  min-height: 42rem;
}

.tile-tall {
  min-height: 28rem;
}

.journal-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 1.75rem;
}

.journal-meta h3 {
  margin-top: 0.9rem;
}

.journal-body {
  display: grid;
  gap: 1.25rem;
}

.journal-body h4 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

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

.closing-brand {
  margin: 0 0 2rem;
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.closing-brand img {
  display: block;
  width: min(100%, 42rem);
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.link-column a:hover,
.link-column a:focus-visible {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem 2.5rem;
}

.site-footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer-copy,
.site-footer-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ccm-footer-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  transition: transform 180ms ease, opacity 180ms ease;
}

.ccm-footer-link img {
  display: block;
  width: min(100%, 11.5rem);
  height: auto;
  opacity: 0.88;
}

.ccm-footer-link span {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ccm-footer-link:hover,
.ccm-footer-link:focus-visible {
  transform: translateY(-2px);
}

.ccm-footer-link:hover img,
.ccm-footer-link:focus-visible img {
  opacity: 1;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  justify-content: center;
}

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

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--accent);
}

.legal-page {
  border-top: 0;
  padding-top: var(--space-7);
}

.legal-heading h1 {
  margin: 0.6rem 0 0;
  font-family: "Druk Wide", "Arial Black", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-copy {
  display: grid;
  gap: 1.25rem;
}

.legal-block {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-block p {
  margin: 0;
}

.legal-block p + p,
.legal-block ul {
  margin-top: 0.9rem;
}

.legal-block ul {
  padding-left: 1.2rem;
}

.legal-block a {
  color: var(--accent);
}

.ticket-note {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.ticket-trigger {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 999px;
  min-height: 3.1rem;
  padding: 0.85rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ticket-trigger:hover,
.ticket-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.ticket-dialog {
  width: min(32rem, calc(100vw - 2rem));
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(32, 53, 70, 0.24), transparent 32%),
    linear-gradient(180deg, #0d1115, #0a0d10);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.ticket-dialog::backdrop {
  background: rgba(5, 7, 9, 0.72);
  backdrop-filter: blur(8px);
}

.ticket-dialog-inner {
  position: relative;
  padding: 2rem;
}

.ticket-dialog h2 {
  margin: 0.6rem 0 1rem;
  font-family: "Druk Wide", "Arial Black", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ticket-dialog-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ticket-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.ticket-link-button.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.ticket-close {
  appearance: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.ticket-close:hover,
.ticket-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1100px) {
  .hero-section,
  .music-feature,
  .journey-split,
  .video-feature,
  .journal-entry {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 32rem;
  }

  .updates-grid,
  .video-grid,
  .link-columns,
  .music-subgrid,
  .stills-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .tile-large {
    grid-row: span 1;
    min-height: 28rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem 1.1rem;
  }

  .brand {
    max-width: 12.5rem;
  }

  .site-nav {
    display: none;
  }

  .ticket-dialog-inner {
    padding: 1.5rem;
  }

  main {
    padding: 0 1rem 4rem;
  }

  .legal-main,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .updates-grid,
  .video-grid,
  .link-columns,
  .music-subgrid,
  .stills-mosaic {
    grid-template-columns: 1fr;
  }

  .chapter-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fragment-line:nth-child(2) {
    justify-self: start;
    text-align: left;
  }

  .journey-break,
  .journey-visual,
  .video-poster,
  .music-art {
    min-height: 20rem;
  }

  .site-footer-inner {
    align-items: center;
    text-align: center;
  }

  .site-footer-links {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@page {
  size: A4;
  margin: 12mm;
}

@media print {
  html,
  body {
    background: var(--bg) !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .site-header {
    position: static;
    padding: 0 0 1rem;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav {
    display: none;
  }

  main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 1.2rem 0 2.2rem;
    gap: 1.25rem;
  }

  .hero-copy {
    padding: 0.5rem 0 0;
  }

  .hero-visual {
    min-height: 28rem;
    box-shadow: none;
  }

  .section {
    padding: 2.4rem 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .update-card,
  .submodule,
  .video-card,
  .link-column,
  .journal-entry,
  .music-feature,
  .journey-split,
  .chapter-item,
  .video-copy,
  .journey-break,
  .tile {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .journey-visual,
  .journey-break,
  .video-poster,
  .music-art,
  .tile-large,
  .tile-tall {
    min-height: auto;
  }

  .button {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  a[href]::after {
    content: "";
  }
}
