:root {
  --ink: #0c0b11;
  --ink-soft: #181622;
  --paper: #f4efe6;
  --paper-deep: #e7dfd2;
  --white: #fffdf8;
  --muted-dark: #aaa4b7;
  --muted-paper: #67616b;
  --lime: #d8ff3e;
  --pink: #ff4fa3;
  --cyan: #46e4e6;
  --yellow: #ffd960;
  --coral: #ff704f;
  --line-dark: rgba(255, 255, 255, .15);
  --line-paper: rgba(12, 11, 17, .18);
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .25);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 11, 17, .86);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}
.brand-mark::before { top: -3px; left: 3px; }
.brand-mark::after { top: -3px; right: 3px; background: var(--cyan); }
.brand-mark span::before { bottom: 3px; left: -3px; background: var(--yellow); }
.brand-mark span::after { bottom: 3px; right: -3px; background: var(--lime); }

.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-copy small { font-size: .57rem; font-weight: 800; letter-spacing: .18em; opacity: .66; }

.header-player {
  position: relative;
  margin-left: auto;
  min-width: 300px;
  height: 48px;
  padding: 5px 12px 5px 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(12, 11, 17, .2);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.header-player.is-playing {
  background: rgba(216, 255, 62, .1);
  border-color: rgba(216, 255, 62, .68);
  box-shadow: inset 0 0 0 1px rgba(216, 255, 62, .08), 0 0 24px rgba(216, 255, 62, .08);
}

.header-player audio { display: none; }

.audio-toggle {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(216, 255, 62, .35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.audio-toggle:hover { transform: scale(1.06); }
.audio-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.header-player.is-playing .audio-toggle { box-shadow: 0 0 0 5px rgba(216, 255, 62, .13); }

.audio-note {
  margin: -2px 0 0 1px;
  font: 800 1.18rem/1 Georgia, serif;
}

.audio-pause {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.audio-pause i { width: 3px; height: 14px; background: currentColor; border-radius: 2px; }
.header-player.is-playing .audio-note { display: none; }
.header-player.is-playing .audio-pause { display: flex; }

.audio-track {
  width: 118px;
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1;
}

.audio-track small,
.audio-toast small {
  color: var(--lime);
  font-size: .46rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.audio-track strong,
.audio-toast strong {
  overflow: hidden;
  font: 700 .7rem/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-volume {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 253, 248, .62);
}

.audio-volume > span:not(.visually-hidden) {
  font-size: .43rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.audio-volume input {
  width: 70px;
  height: 18px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.audio-volume input::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(255, 253, 248, .28);
  border-radius: 999px;
}

.audio-volume input::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  margin-top: -4px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.audio-volume input::-moz-range-track {
  height: 3px;
  background: rgba(255, 253, 248, .28);
  border: 0;
  border-radius: 999px;
}

.audio-volume input::-moz-range-thumb {
  width: 9px;
  height: 9px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.audio-volume input:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 999px; }
.audio-toast { display: none; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { font-size: .77rem; font-weight: 700; letter-spacing: .06em; opacity: .76; transition: opacity .2s ease, color .2s ease; }
.site-nav > a:hover { opacity: 1; color: var(--lime); }
.site-nav > .language-switch {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  opacity: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: inherit;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.site-nav > .language-switch:hover { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.site-nav .nav-cta {
  opacity: 1;
  padding: 11px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}
.site-nav .nav-cta:hover { color: var(--ink); background: var(--lime); }
.nav-cta span { margin-left: 7px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  min-height: 880px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 132px 0 84px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 79, 163, .16), transparent 30%),
    radial-gradient(circle at 67% 78%, rgba(70, 228, 230, .11), transparent 34%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero-noise,
.hero-noise::before,
.hero-noise::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.hero-noise { width: 520px; height: 520px; right: -180px; top: -180px; border: 1px solid rgba(216,255,62,.24); }
.hero-noise::before { content: ""; width: 360px; height: 360px; inset: 80px; border: 1px dashed rgba(70,228,230,.3); }
.hero-noise::after { content: ""; width: 12px; height: 12px; left: 68px; bottom: 46px; background: var(--lime); box-shadow: -560px 620px 0 var(--pink), -710px 160px 0 var(--cyan); }

.hero-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(38px, 6vw, 94px);
}

.hero-copy { min-width: 0; position: relative; z-index: 3; }
.eyebrow, .kicker {
  margin: 0 0 22px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--muted-dark); }
.eyebrow span { display: block; width: 36px; height: 2px; background: var(--lime); }
.hero h1,
.section-heading h2,
.closing-copy h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.13;
}
.hero h1 { font-size: clamp(3.25rem, 4.2vw, 4.65rem); }
.hero h1 > span,
.hero h1 > em { display: inline-block; white-space: nowrap; }
.hero h1 em, .section-heading h2 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 590px; margin: 30px 0 0; color: #cbc6d4; font-size: clamp(.96rem, 1.2vw, 1.08rem); }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 36px; }
.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button b { font-size: 1rem; }
.button-primary { min-width: 148px; color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--white); }
.button-outline { min-width: 166px; color: var(--white); border-color: rgba(255,255,255,.38); }
.button-outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-text { padding-inline: 8px; color: var(--muted-dark); }
.button-text:hover { color: var(--cyan); }

.hero-facts { display: flex; gap: 0; margin: 46px 0 0; }
.hero-facts div { min-width: 122px; padding: 0 24px; border-left: 1px solid var(--line-dark); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { color: var(--white); font: 800 1.2rem/1 Georgia, serif; letter-spacing: .02em; }
.hero-facts dd { margin: 7px 0 0; color: var(--muted-dark); font-size: .6rem; font-weight: 800; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }

.hero-collage {
  height: clamp(580px, 54vw, 720px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  position: relative;
}
.hero-collage figure { margin: 0; position: relative; overflow: hidden; background: var(--ink-soft); box-shadow: var(--shadow); }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.collage-main { grid-column: 2 / 12; grid-row: 1 / 11; transform: rotate(2.2deg); border: 8px solid #efe9df; }
.collage-main::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.3);
  pointer-events: none;
}
.collage-main figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.collage-main figcaption b { font-size: .65rem; }
.collage-note { grid-column: 1 / 5; grid-row: 8 / 13; z-index: 3; transform: rotate(-7deg); border: 6px solid var(--paper); }
.collage-signal { grid-column: 7 / 13; grid-row: 9 / 13; z-index: 4; transform: rotate(-2deg); border: 5px solid var(--cyan); }
.collage-sticker {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
  z-index: 5;
  width: 132px;
  height: 132px;
  margin: -18px 0 0 auto;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font: 900 .63rem/1.25 "Yu Gothic", sans-serif;
  letter-spacing: .08em;
  text-align: center;
  transform: rotate(10deg);
  box-shadow: 10px 14px 0 var(--pink);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.scroll-cue i { width: 48px; height: 1px; background: var(--line-dark); position: relative; }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(-45deg); }

.section-shell { width: var(--shell); margin: 0 auto; }
.paper-section {
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(12, 11, 17, .11) .7px, transparent .7px);
  background-size: 9px 9px;
}
.dark-section { background: var(--ink); }

.channels { padding: 130px 0 142px; }
.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 48px;
}
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: -15px; color: var(--muted-dark); }
.section-heading h2 { font-size: clamp(2.9rem, 5.2vw, 5.6rem); }
.section-heading > p:last-child,
.heading-side > p { max-width: 470px; margin: 0; color: var(--muted-dark); }
.section-heading-dark .kicker,
.section-heading-dark > p:last-child,
.section-heading-dark .heading-side > p { color: var(--muted-paper); }
.section-heading-dark h2 em { color: var(--pink); }
.heading-side { display: grid; gap: 24px; justify-items: start; }
.kicker-lime { color: var(--lime) !important; }
.kicker-pink { color: #d92d81 !important; }
.kicker-cyan { color: var(--cyan) !important; }

.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.channel-card {
  min-height: 410px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.channel-card::before { content: ""; position: absolute; inset: auto -60px -90px auto; width: 220px; height: 220px; border: 1px solid rgba(12,11,17,.24); border-radius: 50%; }
.channel-card:hover { transform: translateY(-8px) rotate(-.35deg); box-shadow: 0 24px 50px rgba(12,11,17,.14); }
.channel-x { background: var(--pink); }
.channel-youtube { background: var(--lime); }
.channel-stream { background: var(--cyan); }
.channel-number { font: 800 .7rem/1 Georgia, serif; letter-spacing: .14em; }
.channel-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font: 900 1.4rem/1 Arial, sans-serif; }
.channel-icon-play { padding-left: 4px; font-size: 1.1rem; }
.channel-body { grid-column: 1 / -1; align-self: end; display: grid; gap: 10px; }
.channel-body small { font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.channel-body strong { font-family: "Yu Mincho", serif; font-size: clamp(2rem, 2.7vw, 2.75rem); line-height: 1.2; letter-spacing: -.05em; }
.channel-body em { font-style: normal; font-size: .84rem; opacity: .67; }
.channel-arrow { grid-column: 2; justify-self: end; margin-top: 20px; font-size: 1.4rem; }

.youtube-section { padding: 140px 0; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 800; }
.text-link:hover { color: var(--lime); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card { overflow: hidden; background: #14121d; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.video-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(270px, .45fr); }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-meta { padding: 23px 24px 27px; }
.video-card-featured .video-meta { padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; }
.video-meta span { color: var(--lime); font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.video-meta h3 { margin: 7px 0 4px; font: 700 clamp(1.25rem, 2vw, 2rem)/1.2 Georgia, serif; }
.video-card-featured .video-meta h3 { font-size: clamp(2.1rem, 3.7vw, 4rem); }
.video-meta p { margin: 0; color: var(--muted-dark); font-size: .87rem; }

.youtube-proof {
  margin-top: 24px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
}
.youtube-proof > div { display: grid; border-right: 1px solid rgba(12,11,17,.25); padding-right: 38px; }
.youtube-proof > div strong { font: 800 clamp(2.5rem, 4vw, 4.3rem)/.9 Georgia, serif; }
.youtube-proof > div span { margin-top: 8px; font-size: .59rem; font-weight: 900; letter-spacing: .13em; }
.youtube-proof p { margin: 0; font-size: .88rem; line-height: 1.7; }
.youtube-proof p strong { font-size: 1.08rem; }
.button-lime { color: var(--ink); background: var(--lime); border-color: var(--ink); }
.button-lime:hover { background: var(--white); }

.x-section { padding: 140px 0; }
.x-heading { margin-bottom: 54px; }
.account-chip { display: flex; align-items: center; justify-content: space-between; gap: 44px; min-width: 240px; padding: 12px 18px; color: var(--paper); background: var(--ink); border-radius: 999px; font-size: .85rem; font-weight: 900; }
.account-chip:hover { background: #d92d81; }
.x-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 520px)); justify-content: center; gap: 22px; align-items: start; }
.x-post-card { min-width: 0; padding: 18px 16px 10px; background: rgba(255,255,255,.46); border: 1px solid var(--line-paper); border-radius: 20px; }
.x-post-card-accent { box-shadow: inset 0 6px 0 var(--pink); }
.post-label { margin: 0 4px 12px; font-size: .69rem; font-weight: 800; color: var(--muted-paper); }
.post-label span { display: inline-block; margin-right: 7px; padding: 4px 7px; color: var(--paper); background: var(--ink); border-radius: 4px; font-size: .55rem; letter-spacing: .09em; }
.twitter-tweet { margin-inline: auto !important; }
.section-center-link { margin: 42px 0 0; text-align: center; }
.button-dark { min-width: 190px; color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--pink); }

.streaming-section {
  position: relative;
  padding: 142px 0;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(70,228,230,.08), transparent 34%),
    linear-gradient(300deg, rgba(255,79,163,.09), transparent 35%),
    #12101a;
}
.streaming-section::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(115deg, transparent 48%, rgba(255,255,255,.5) 50%, transparent 52%); background-size: 46px 46px; }
.streaming-section .section-shell { position: relative; z-index: 2; }
.streaming-glow { position: absolute; width: 500px; height: 500px; left: 50%; top: 42%; border: 1px solid rgba(70,228,230,.24); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 120px rgba(70,228,230,.08); }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3.5vw, 48px); padding: 16px 18px 30px; }
.release-card { min-width: 0; display: grid; color: var(--ink); background: var(--paper); box-shadow: 0 30px 60px rgba(0,0,0,.36); transition: transform .25s ease; }
.release-card:hover { transform: translateY(-10px) rotate(0deg) !important; }
.release-card-a { transform: rotate(-2.2deg); }
.release-card-b { transform: translateY(24px) rotate(1.4deg); }
.release-card-c { transform: rotate(-1deg); }
.release-art { aspect-ratio: 1; overflow: hidden; }
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.release-card:hover .release-art img { transform: scale(1.035); }
.release-copy { display: grid; grid-template-columns: 1fr auto; gap: 5px 12px; padding: 18px 19px 20px; }
.release-copy small { grid-column: 1 / -1; font-size: .55rem; font-weight: 900; letter-spacing: .15em; opacity: .55; }
.release-copy strong { min-width: 0; overflow-wrap: anywhere; font: 800 clamp(1rem, 1.55vw, 1.4rem)/1.2 Georgia, serif; }
.release-copy em { align-self: end; font-style: normal; font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.store-cta { margin-top: 62px; padding-top: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line-dark); }
.store-cta > div > span { color: var(--cyan); font-size: .6rem; font-weight: 900; letter-spacing: .16em; }
.store-cta p { margin: 7px 0 0; color: var(--muted-dark); font-size: .85rem; }
.store-guide { display: block; margin-top: 12px; color: #d8d3df; font-size: .72rem; font-weight: 700; letter-spacing: .02em; }
.button-cyan { min-width: 212px; color: var(--ink); background: var(--cyan); }
.button-cyan:hover { background: var(--white); }

.closing { padding: 110px 0; }
.closing-shell { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: minmax(300px, .72fr) 1.28fr; align-items: center; gap: clamp(46px, 8vw, 120px); }
.closing-dona { width: min(100%, 440px); aspect-ratio: 1; object-fit: cover; border: 10px solid var(--white); box-shadow: 14px 18px 0 var(--pink); transform: rotate(-3.5deg); }
.closing-copy h2 { font-size: clamp(3.2rem, 6vw, 6.2rem); }
.closing-copy > p:not(.kicker) { color: var(--muted-paper); }
.closing-links { margin-top: 34px; border-top: 1px solid var(--line-paper); }
.closing-links a { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 4px; border-bottom: 1px solid var(--line-paper); transition: padding .2s ease, color .2s ease; }
.closing-links a:hover { padding-inline: 12px; color: #d92d81; }
.closing-links span { display: flex; align-items: baseline; gap: 20px; }
.closing-links small { width: 54px; font-size: .57rem; font-weight: 900; letter-spacing: .12em; color: var(--muted-paper); }
.closing-links strong { font: 800 1.15rem/1 Georgia, serif; }

.site-footer { width: var(--shell); min-height: 110px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; color: var(--muted-dark); }
.footer-brand { color: var(--white); }
.site-footer p { font-size: .66rem; font-weight: 700; letter-spacing: .08em; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta):not(.language-switch) { display: none; }
  .hero-shell { grid-template-columns: .88fr 1.12fr; gap: 28px; }
  .hero-facts div { min-width: 105px; padding-inline: 16px; }
  .channel-card { min-height: 370px; }
  .video-card-featured { grid-template-columns: 1.35fr .65fr; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { height: 72px; }
  .nav-shell { gap: 12px; }
  .header-player { min-width: 0; margin-left: auto; }
  .audio-track { display: none; }
  .audio-toast {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: max-content;
    max-width: min(220px, calc(100vw - 32px));
    padding: 10px 14px;
    display: grid;
    gap: 4px;
    color: var(--white);
    background: rgba(12, 11, 17, .94);
    border: 1px solid rgba(216, 255, 62, .55);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .audio-toast::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 18px;
    border: 6px solid transparent;
    border-bottom-color: rgba(216, 255, 62, .55);
  }
  .header-player.show-track-toast .audio-toast { opacity: 1; transform: none; }
  .nav-toggle { display: block; z-index: 3; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 90px max(24px, calc((100vw - 620px) / 2));
    background: rgba(12,11,17,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: none; }
  .site-nav > a:not(.nav-cta) { display: flex; padding: 17px 4px; border-bottom: 1px solid var(--line-dark); font: 700 1.4rem/1.3 Georgia, serif; opacity: 1; }
  .site-nav > .language-switch { width: auto; height: auto; display: flex; justify-content: flex-start; padding: 17px 4px; border-width: 0 0 1px; border-radius: 0; font: 700 1.4rem/1.3 Georgia, serif; }
  .site-nav .nav-cta { margin-top: 28px; justify-content: center; }
  .hero { min-height: auto; padding-top: 118px; padding-bottom: 100px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero-copy { max-width: 650px; }
  .hero-collage { width: min(100%, 640px); height: 620px; margin: 0 auto; }
  .hero h1 { font-size: clamp(3.1rem, 8vw, 4.2rem); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .kicker { margin-bottom: 0; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 310px; }
  .video-card-featured { grid-template-columns: 1fr; }
  .video-card-featured .video-meta { padding: 24px; }
  .video-card-featured .video-meta h3 { font-size: 2.4rem; }
  .youtube-proof { grid-template-columns: 1fr 1fr; }
  .youtube-proof > div { border-right: 0; padding-right: 0; }
  .youtube-proof .button { grid-column: 1 / -1; }
  .x-post-grid { grid-template-columns: 1fr; }
  .x-post-card { padding-inline: 20px; }
  .release-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding-inline: 0; }
  .release-copy { grid-template-columns: 1fr; }
  .release-copy em { display: none; }
  .closing-shell { grid-template-columns: .85fr 1.15fr; gap: 50px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 24px); --radius: 18px; }
  html { scroll-padding-top: 72px; }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { display: none; }
  .header-player { height: 44px; padding: 4px 9px 4px 4px; gap: 8px; }
  .audio-toggle { width: 34px; height: 34px; }
  .audio-volume { gap: 0; }
  .audio-volume > span:not(.visually-hidden) { display: none; }
  .audio-volume input { width: 58px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero { padding: 104px 0 86px; }
  .eyebrow { font-size: .62rem; }
  .hero h1 { font-size: clamp(2.45rem, 11vw, 3rem); }
  .hero-lead { margin-top: 22px; font-size: .92rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-actions .button-primary,
  .hero-actions .button-outline { flex: 1 1 44%; min-width: 0; gap: 10px; }
  .hero-actions .button-text { grid-column: 1 / -1; justify-content: flex-start; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-facts div { min-width: 0; padding-inline: 10px; }
  .hero-facts dt { font-size: 1rem; }
  .hero-facts dd { font-size: .49rem; overflow-wrap: anywhere; }
  .hero-collage { height: 475px; }
  .collage-main { grid-column: 2 / 13; grid-row: 1 / 11; border-width: 5px; }
  .collage-note { grid-column: 1 / 6; grid-row: 8 / 13; border-width: 4px; }
  .collage-signal { grid-column: 7 / 13; grid-row: 9 / 13; border-width: 3px; }
  .collage-sticker { grid-column: 9 / 13; width: 90px; height: 90px; font-size: .48rem; box-shadow: 6px 8px 0 var(--pink); }
  .collage-main figcaption { padding: 9px 10px; font-size: .45rem; }
  .collage-main figcaption b { display: none; }
  .scroll-cue { display: none; }
  .channels, .youtube-section, .x-section, .streaming-section { padding: 92px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .section-heading > p:last-child, .heading-side > p { font-size: .9rem; }
  .channel-card { min-height: 285px; padding: 20px; }
  .channel-body strong { font-size: 2.05rem; }
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .video-card-featured { grid-column: auto; }
  .video-card-featured .video-meta h3 { font-size: 2rem; }
  .video-meta { padding: 18px; }
  .youtube-proof { padding: 25px 22px; grid-template-columns: 1fr; gap: 18px; }
  .youtube-proof .button { grid-column: auto; }
  .account-chip { min-width: min(100%, 240px); }
  .x-post-card { padding: 14px 8px 8px; }
  .post-label { margin-inline: 8px; }
  .release-grid { grid-template-columns: 1fr; gap: 34px; padding: 4px 18px 26px; }
  .release-card { transform: none; }
  .release-card-b { transform: none; }
  .release-copy { grid-template-columns: 1fr auto; }
  .release-copy em { display: inline; }
  .store-cta { margin-top: 34px; flex-direction: column; align-items: stretch; }
  .button-cyan { width: 100%; }
  .closing { padding: 84px 0 92px; }
  .closing-shell { grid-template-columns: 1fr; gap: 46px; }
  .closing-dona { width: calc(100% - 32px); margin: 0 auto; border-width: 7px; box-shadow: 9px 12px 0 var(--pink); }
  .closing-copy h2 { font-size: 3.2rem; }
  .closing-links span { gap: 10px; }
  .closing-links small { width: 45px; }
  .site-footer { min-height: 140px; flex-direction: column; justify-content: center; gap: 16px; }
}

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