:root {
  --navy-950: #08101e;
  --navy-900: #0b1425;
  --navy-800: #142a49;
  --violet: #454285;
  --lilac: #f8e9ff;
  --cream: #f8f6f2;
  --ink: #282828;
  --red: #f04b4b;
  --line-dark: rgba(248, 246, 242, 0.18);
  --line-light: rgba(20, 42, 73, 0.18);
  --max: 1240px;
  --header-height: 76px;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(5, 10, 20, 0.24);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--red); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(8, 16, 30, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.wordmark i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
  width: 100%;
  font-size: 13px;
  font-weight: 750;
}

.site-nav a { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--cream); color: var(--navy-900); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center 42%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 11, 23, 0.94) 0%, rgba(5, 11, 23, 0.70) 43%, rgba(5, 11, 23, 0.18) 74%),
    linear-gradient(0deg, rgba(5, 11, 23, 0.92) 0%, transparent 58%),
    linear-gradient(180deg, rgba(5, 11, 23, 0.38) 0%, transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 17vh, 190px) 0 clamp(92px, 12vh, 140px);
}

.eyebrow,
.kicker,
.section-number,
.album-card span,
.character-copy > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; }
.recording-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(240, 75, 75, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 75, 75, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(240, 75, 75, 0); }
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; }

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7.3vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 14px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-meta {
  max-width: 660px;
  margin-bottom: 31px;
  color: rgba(248, 246, 242, 0.7);
  font-size: 14px;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover,
.button-primary:focus-visible { background: #ff6666; }
.button-ghost { border-color: rgba(255,255,255,0.42); color: #fff; }
.button-ghost:hover,
.button-ghost:focus-visible { border-color: #fff; background: rgba(255,255,255,0.1); }
.button-light { background: var(--cream); color: var(--navy-900); }
.button-light:hover,
.button-light:focus-visible { background: #fff; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 35px;
  display: flex;
  gap: 14px;
  color: rgba(248,246,242,0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section { position: relative; padding: clamp(100px, 12vw, 175px) clamp(20px, 4vw, 64px); }
.section > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.section-number { margin-bottom: clamp(60px, 8vw, 112px); color: rgba(20,42,73,0.56); }
.section-number-light { color: rgba(248,246,242,0.5); }
.kicker { margin-bottom: 20px; color: var(--red); }
h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}
h3 { font-size: 23px; letter-spacing: -0.035em; }
.large-copy { font-size: clamp(21px, 2.5vw, 31px); font-weight: 650; line-height: 1.35; letter-spacing: -0.025em; }

.world-section { overflow: hidden; background: var(--cream); }
.world-section::after {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -13vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(69,66,133,0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(69,66,133,0.025), 0 0 0 160px rgba(69,66,133,0.018);
}
.world-section > * { position: relative; z-index: 1; }
.world-grid,
.development-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); gap: clamp(50px, 8vw, 130px); }
.world-copy,
.development-copy { padding-top: 52px; }
.world-copy p:not(.large-copy),
.development-copy p:not(.large-copy) { max-width: 590px; color: #545454; }

.world-rule {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  margin-top: clamp(95px, 13vw, 190px);
  margin-bottom: clamp(95px, 13vw, 190px);
  padding: 0;
  border: 0;
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.world-rule strong { color: var(--violet); font-size: 1.75em; font-weight: 950; }

.location-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: 60px;
  padding: clamp(35px, 5vw, 70px);
  background: var(--navy-800);
  border-radius: var(--radius);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.location-card h3 { margin: 0; font-size: clamp(3rem, 7vw, 7rem); }
.location-card p:last-child { max-width: 600px; margin: 0; color: rgba(248,246,242,0.74); font-size: 19px; }

.booth-section { background: var(--navy-900); color: var(--cream); }
.booth-section { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr); column-gap: clamp(50px, 7vw, 110px); }
.booth-section > * { width: auto; margin: 0; }
.booth-section .section-number { grid-column: 1 / -1; width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.booth-visual { position: relative; align-self: start; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.booth-visual img { width: 100%; min-height: 660px; object-fit: cover; object-position: 52% center; }
.on-air-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(8,16,30,0.78);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.booth-copy { align-self: center; max-width: 600px; }
.booth-copy h2 { font-size: clamp(3rem, 5.4vw, 5.8rem); }
.host-list { margin: 38px 0; border-top: 1px solid var(--line-dark); }
.host-list article { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.host-list h3, .host-list p { margin: 0; }
.host-list h3 { font-size: 16px; line-height: 1.35; }
.host-list p { color: rgba(248,246,242,0.7); font-size: 14px; line-height: 1.5; }
.quote { margin: 42px 0 0; padding-left: 25px; border-left: 2px solid var(--red); color: var(--lilac); font-size: 20px; font-weight: 650; line-height: 1.45; }
.quote cite { display: block; margin-top: 12px; color: rgba(248,246,242,0.55); font-size: 12px; font-style: normal; font-weight: 700; }

.characters-section { background: #eee8df; }
.section-intro { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: clamp(40px, 7vw, 110px); margin-bottom: clamp(65px, 8vw, 105px); }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p { max-width: 500px; margin-bottom: 9px; color: #555; font-size: 18px; }
.character-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.character-card { position: relative; min-height: 630px; overflow: hidden; border-radius: var(--radius); color: #fff; box-shadow: 0 12px 30px rgba(20,25,39,0.1); }
.character-art { position: absolute; inset: 0 0 155px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.character-art::after { position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(0deg, rgba(8,16,30,0.28), transparent); content: ""; }
.character-art img { width: 92%; height: 92%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 22px 22px rgba(8,16,30,0.2)); transition: transform 350ms ease; }
.character-card:hover .character-art img { transform: translateY(-7px) scale(1.015); }
.character-copy { position: absolute; z-index: 2; inset: auto 0 0; min-height: 170px; padding: 24px 26px 27px; background: rgba(8,16,30,0.9); backdrop-filter: blur(12px); }
.character-copy > span { float: right; color: rgba(255,255,255,0.46); }
.character-copy h3 { margin-bottom: 11px; font-size: 26px; }
.character-copy p { margin: 0; color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.45; }
.card-venus { background: linear-gradient(145deg, #282751, #756fb5); }
.card-eva { background: linear-gradient(145deg, #8b3948, #f0a27e); }
.card-bolt { background: linear-gradient(145deg, #1f5f6f, #7fc7c7); }
.card-lucky { background: linear-gradient(145deg, #cb5f89, #ffb3cf); }
.card-lola { background: linear-gradient(145deg, #293665, #7992c8); }
.card-ash { background: linear-gradient(145deg, #7b3a4e, #d98772); }
.art-note { margin-top: 20px; color: #6a6a6a; font-size: 12px; text-align: right; }

.music-section { overflow: hidden; background: var(--violet); color: var(--cream); }
.music-section > * { position: relative; z-index: 2; }
.music-section .section-intro > p { color: rgba(248,246,242,0.7); }
.music-wave {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -5vw;
  width: 58vw;
  height: 250px;
  margin: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(90deg, transparent 0 12px, #fff 12px 14px);
  clip-path: polygon(0 45%, 5% 25%, 10% 65%, 15% 35%, 20% 80%, 25% 20%, 30% 58%, 35% 8%, 40% 70%, 45% 32%, 50% 85%, 55% 18%, 60% 72%, 65% 38%, 70% 95%, 75% 24%, 80% 64%, 85% 12%, 90% 75%, 95% 42%, 100% 58%, 100% 60%, 95% 44%, 90% 77%, 85% 14%, 80% 66%, 75% 26%, 70% 97%, 65% 40%, 60% 74%, 55% 20%, 50% 87%, 45% 34%, 40% 72%, 35% 10%, 30% 60%, 25% 22%, 20% 82%, 15% 37%, 10% 67%, 5% 27%, 0 47%);
}
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.album-card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 25px; border-radius: 10px; box-shadow: 0 24px 48px rgba(10,8,30,0.25); transition: transform 250ms ease; }
.album-card:hover img { transform: translateY(-6px) rotate(-0.5deg); }
.album-card span { color: rgba(248,246,242,0.53); }
.album-card h3 { margin: 12px 0 10px; font-size: 27px; line-height: 1.08; }
.album-card p { max-width: 340px; color: rgba(248,246,242,0.68); font-size: 14px; }
.music-action { display: flex; align-items: center; gap: 24px; margin-top: 65px; padding-top: 35px; border-top: 1px solid var(--line-dark); }
.music-action p { max-width: 420px; margin: 0; color: rgba(248,246,242,0.6); font-size: 13px; }

.development-section { background: var(--lilac); }
.development-section::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 48%;
  background: radial-gradient(circle at 100% 100%, rgba(69,66,133,0.18), transparent 70%);
  content: "";
}
.development-section > * { position: relative; z-index: 1; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(80px, 11vw, 150px); background: rgba(20,42,73,0.2); border: 1px solid rgba(20,42,73,0.2); }
.pillar-grid article { min-height: 310px; padding: clamp(28px, 4vw, 52px); background: var(--lilac); }
.pillar-grid span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 75px; border: 1px solid rgba(20,42,73,0.27); border-radius: 50%; font: 800 11px ui-monospace, monospace; }
.pillar-grid h3 { margin-bottom: 14px; font-size: 30px; }
.pillar-grid p { max-width: 290px; margin: 0; color: #60606a; font-size: 15px; }

.industry-section {
  position: relative;
  overflow: hidden;
  padding: clamp(105px, 15vw, 210px) clamp(20px, 4vw, 64px);
  background: var(--navy-950);
  color: var(--cream);
  text-align: center;
}
.industry-section::before,
.industry-section::after {
  position: absolute;
  top: 50%;
  width: 36vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22));
  content: "";
}
.industry-section::before { left: -5vw; }
.industry-section::after { right: -5vw; transform: rotate(180deg); }
.industry-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240,75,75,0.17), transparent 68%);
  transform: translate(-50%, -50%);
}
.industry-inner { position: relative; z-index: 1; max-width: 900px; margin: auto; }
.industry-inner .eyebrow { justify-content: center; }
.industry-inner h2 { font-size: clamp(3.4rem, 8vw, 8rem); }
.industry-inner p { max-width: 650px; margin: 0 auto 14px; color: rgba(248,246,242,0.7); }
.industry-inner .button { margin-top: 30px; }

.site-footer { padding: 80px clamp(20px, 4vw, 64px) 35px; background: #050b15; color: var(--cream); }
.site-footer > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.footer-wordmark { font-size: 25px; }
.footer-wordmark i { width: 28px; height: 28px; font-size: 13px; }
.site-footer > p { max-width: 600px; margin-top: 28px; color: rgba(248,246,242,0.57); font-size: 15px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px 34px; margin-top: 48px; padding: 28px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 13px; font-weight: 750; }
.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 28px; color: rgba(248,246,242,0.38); font: 700 10px ui-monospace, monospace; letter-spacing: 0.1em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .site-nav a { font-size: 12px; }
  .booth-section { grid-template-columns: 1fr; }
  .booth-visual, .booth-copy { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
  .booth-copy { margin-top: 65px; }
  .booth-visual img { min-height: 0; }
  .character-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .site-header { justify-content: space-between; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .menu-label { font: 800 10px ui-monospace, monospace; letter-spacing: 0.12em; text-transform: uppercase; }
  .menu-icon { display: grid; gap: 5px; width: 24px; }
  .menu-icon i { width: 24px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-open .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 30px 45px;
    background: rgba(8,16,30,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-size: clamp(1.8rem, 7vw, 3.1rem); font-weight: 850; letter-spacing: -0.05em; line-height: 1.05; }
  .site-nav .nav-cta { margin-top: 10px; padding: 13px 18px; font-size: 14px; letter-spacing: 0; }
  .hero-content { align-self: flex-end; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,11,23,0.96) 0%, rgba(5,11,23,0.7) 58%, rgba(5,11,23,0.35) 100%); }
  .scroll-cue { display: none; }
  .world-grid, .development-grid, .section-intro { grid-template-columns: 1fr; }
  .world-copy, .development-copy { padding-top: 0; }
  .section-intro { align-items: start; }
  .location-card { grid-template-columns: 1fr; gap: 25px; }
  .album-grid { grid-template-columns: 1fr; gap: 60px; }
  .album-card { display: grid; grid-template-columns: minmax(170px, 0.8fr) 1.2fr; gap: 25px; align-items: center; }
  .album-card img { margin-bottom: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: auto; }
  .pillar-grid span { margin-bottom: 50px; }
}

@media (max-width: 590px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.75rem, 13.2vw, 4.7rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero { min-height: 860px; }
  .hero-image { object-position: 56% center; }
  .hero-content { width: calc(100% - 36px); padding-bottom: 65px; }
  .hero-lead { font-size: 17px; }
  .button-row .button { width: 100%; }
  .section { padding-left: 18px; padding-right: 18px; }
  .world-rule { flex-direction: column; align-items: center; gap: 0.05em; }
  .world-rule strong { font-size: 2em; }
  .host-list article { grid-template-columns: 1fr; gap: 7px; }
  .character-grid { grid-template-columns: 1fr; }
  .character-card { min-height: 610px; }
  .album-card { grid-template-columns: 1fr; gap: 0; }
  .album-card img { margin-bottom: 22px; }
  .music-action { align-items: flex-start; flex-direction: column; }
  .music-action .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
