:root {
  --bg: #080a0c;
  --bg-2: #0e1114;
  --panel: #12161a;
  --panel-2: #171c21;
  --text: #f4f4f1;
  --muted: #a6adb3;
  --line: #2b3238;
  --accent: #e7e8e4;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.08), transparent 32rem),
    var(--bg);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

img { max-width: 100%; }

code {
  color: #e7e8e4;
  background: #0b0d0f;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .08rem .3rem;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,10,12,.86);
  backdrop-filter: blur(14px);
}

.brand {
  text-decoration: none;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
}

.brand-small { white-space: nowrap; }

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
}

.nav a:hover { color: var(--text); }

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

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 72px 20px 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 22%, rgba(0,0,0,.82), rgba(0,0,0,0) 36%),
    linear-gradient(to bottom, transparent 60%, rgba(8,10,12,.92)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 12px);
}

.hero-inner {
  width: min(1050px, 100%);
  text-align: center;
}

.eyebrow,
.kicker {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero-logo {
  display: block;
  width: min(940px, 94%);
  margin: 24px auto 26px;
  padding: 18px 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  box-shadow: 0 22px 46px rgba(0,0,0,.55);
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  color: #d0d4d7;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--line);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: #59626a;
}

.button.primary {
  color: #090b0d;
  background: #f1f2ef;
  border-color: #f1f2ef;
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,.03);
}

.status-pill {
  width: fit-content;
  margin: 24px auto 0;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.story-panel h2,
.release-grid h2,
.notice h2 {
  margin: .25rem 0 .65rem;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.section-heading p,
.large-copy { color: #c0c5c9; }


.video-secondary-heading {
  margin-top: 54px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050607;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 35%),
    #090b0d;
}

.video-placeholder > div { max-width: 600px; }
.video-placeholder h3 { font-size: 1.7rem; margin: 0; }
.video-placeholder p { color: var(--muted); }
.omega { display: block; font-size: 5rem; line-height: 1; margin-bottom: 14px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), #0c0f12);
}

.feature-card h3 {
  margin: 30px 0 7px;
  font-size: 1.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-number {
  font: 700 .72rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #7c858d;
}

.story-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255,255,255,.045), transparent 45%),
    var(--panel);
}

.story-copy {
  font-size: 1.06rem;
  color: #c4c9cd;
}

.story-copy p:first-child { margin-top: 0; }

.emphasis {
  color: var(--text);
  font-weight: 750;
  font-size: 1.2rem;
}

.release-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: start;
}

.release-card {
  padding: 30px;
  border: 1px solid #424b52;
  border-radius: var(--radius);
  background: var(--panel-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.release-card h3 {
  margin: .2rem 0 .6rem;
  font-size: 1.8rem;
}

.release-card p { color: var(--muted); }

.release-label {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.disabled-link {
  width: 100%;
  margin-top: 10px;
  cursor: default;
  opacity: .55;
  pointer-events: none;
}

.microcopy {
  margin-bottom: 0;
  font-size: .77rem;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0f12;
}

.notice h2 {
  font-size: 1.55rem;
  margin-top: 0;
}

.notice p {
  color: var(--muted);
  margin-bottom: 0;
}

.notice-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #59626a;
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: -.04em;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--panel);
}

.link-card:hover { border-color: #56616a; }

.link-card span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.link-card strong {
  margin-top: 28px;
  font-size: 1.2rem;
}

.link-card small {
  color: var(--muted);
  margin-top: 5px;
}

.final-cta {
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: min(590px, 95%);
  padding: 14px 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0,0,0,.4);
}

.final-cta > p {
  color: var(--muted);
}

.legal {
  max-width: 760px;
  margin-inline: auto;
  font-size: .77rem;
}

footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7d858c;
  font-size: .8rem;
}

footer a { text-decoration: none; }

@media (max-width: 800px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }
  .nav { gap: .65rem 1rem; }
  .feature-grid,
  .link-grid { grid-template-columns: 1fr 1fr; }
  .story-panel,
  .release-grid { grid-template-columns: 1fr; gap: 26px; }
  .story-panel { padding: 30px; }
}

@media (max-width: 540px) {
  .site-header { display: block; }
  .nav { justify-content: flex-start; margin-top: 10px; }
  .nav a { font-size: .8rem; }
  .section { width: min(100% - 28px, var(--max)); padding: 58px 0; }
  .hero { min-height: 72vh; }
  .feature-grid,
  .link-grid { grid-template-columns: 1fr; }
  .status-pill { border-radius: 12px; }
  footer { width: calc(100% - 28px); }
}


/* Photo gallery */
.photo-cta {
  padding-top: 10px;
  padding-bottom: 28px;
}

.photo-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.photo-cta-inner h2 {
  margin: .25rem 0 .4rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -.035em;
}

.photo-cta-inner p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 36px;
}

.gallery-hero h1 {
  margin: .3rem 0 .8rem;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.gallery-hero .intro {
  max-width: 820px;
  color: #c0c5c9;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.gallery-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 86px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.photo-card a {
  display: block;
  background: #050607;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .2s ease, opacity .2s ease;
}

.photo-card a:hover img {
  transform: scale(1.012);
  opacity: .96;
}

.photo-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.photo-card figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.05rem;
}

.gallery-note {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 18px;
  padding: 18px 20px;
  border-left: 3px solid #59626a;
  color: var(--muted);
  background: rgba(255,255,255,.025);
}

@media (max-width: 800px) {
  .photo-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Podcast feature */
.podcast-section {
  padding-top: 34px;
  padding-bottom: 58px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.055), transparent 24rem),
    linear-gradient(135deg, #111519, #0b0e11);
}

.podcast-poster {
  display: block;
  overflow: hidden;
  border: 1px solid #343b41;
  border-radius: 14px;
  background: #050607;
  box-shadow: 0 22px 55px rgba(0,0,0,.38);
}

.podcast-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.podcast-copy h2 {
  margin: .25rem 0 .8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.podcast-copy p {
  color: #c0c5c9;
}

.podcast-copy .button {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
  }
}
