/* =========================
   DESIGN TOKENS / RESET
========================= */
:root {
  --navy-950: #050617;
  --navy-900: #080a24;
  --navy-850: #0c0f2f;
  --navy-800: #11163d;
  --white: #f8f9ff;
  --muted: #aeb5d5;
  --cyan: #29e8ff;
  --cyan-soft: #8af4ff;
  --purple: #8c5cff;
  --pink: #ff4fbe;
  --yellow: #eaff58;
  --line: rgba(172, 205, 255, 0.18);
  --panel: rgba(13, 18, 55, 0.72);
  --header-height: 74px;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-cyan: 0 0 44px rgba(41, 232, 255, 0.2);
  --shadow-purple: 0 0 54px rgba(140, 92, 255, 0.2);
  color-scheme: dark;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(64, 39, 155, 0.12), transparent 28rem),
    var(--navy-950);
  font-family: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 128px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-label::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-title span {
  color: transparent;
  background: linear-gradient(105deg, var(--cyan-soft), var(--purple) 64%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 340px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.8;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ff5269;
  box-shadow: 0 0 0 5px rgba(255, 82, 105, 0.13), 0 0 18px rgba(255, 82, 105, 0.85);
  animation: live-pulse 1.6s ease-in-out infinite;
}

/* =========================
   BUTTONS / LINKS
========================= */
.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.button:hover::after {
  left: 140%;
}

.button:hover:not(.is-disabled) {
  transform: translateY(-3px);
}

.button-large {
  min-height: 66px;
  padding-inline: 32px;
  font-size: 1rem;
}

.button-primary {
  color: #071028;
  background: linear-gradient(105deg, var(--cyan), #6af4ff 44%, #b9ffef);
  box-shadow: 0 12px 32px rgba(41, 232, 255, 0.23), inset 0 1px rgba(255, 255, 255, 0.7);
}

.button-primary:hover:not(.is-disabled) {
  box-shadow: 0 16px 48px rgba(41, 232, 255, 0.36), inset 0 1px rgba(255, 255, 255, 0.7);
}

.button-light {
  min-width: 216px;
  color: var(--navy-950);
  background: var(--white);
}

.button-support {
  color: var(--navy-950);
  background: var(--yellow);
  box-shadow: 0 12px 34px rgba(234, 255, 88, 0.18);
}

.button-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy-900);
  font-size: 0.7rem;
}

.button.is-disabled {
  color: #8d94b1;
  background: #202541;
  box-shadow: none;
  cursor: default;
}

.button.is-disabled .button-icon {
  color: #8d94b1;
  background: #313751;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.text-link-cyan {
  color: var(--cyan-soft);
  border-color: rgba(41, 232, 255, 0.45);
}

.text-link.is-disabled,
.final-sub-links .is-disabled {
  color: #777f9d;
  border-color: #353b58;
  cursor: default;
}

/* =========================
   IMAGE FALLBACKS
========================= */
[data-image-shell] {
  position: relative;
  overflow: hidden;
}

[data-image-shell] > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

[data-image-shell].is-loaded > img {
  opacity: 1;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  transition: opacity 0.35s ease;
}

.is-loaded > .image-placeholder {
  opacity: 0;
  pointer-events: none;
}

.placeholder-label {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.image-placeholder small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 6, 23, 0.82);
  box-shadow: 0 12px 38px rgba(2, 3, 16, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 52px), 1320px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: flex;
  min-width: 188px;
  align-items: center;
  gap: 13px;
}

.brand-image {
  display: block;
  width: 132px;
  height: 34px;
}

.brand-image img {
  object-fit: contain;
  object-position: left center;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: white;
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.brand-fallback span {
  color: var(--cyan);
}

.brand-image.is-loaded .brand-fallback,
.footer-brand .is-loaded .footer-logo-fallback,
.hero-logo.is-loaded .hero-logo-fallback {
  opacity: 0;
}

.brand-event {
  padding: 5px 8px;
  border: 1px solid rgba(41, 232, 255, 0.4);
  border-radius: 5px;
  color: var(--cyan);
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
}

.global-nav a {
  position: relative;
  padding-block: 9px;
  color: #d7dcf5;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.global-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: inset 0.2s ease;
}

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

.global-nav a:hover::after {
  right: 0;
  left: 0;
}

.global-nav .nav-watch {
  padding: 9px 17px;
  border: 1px solid rgba(41, 232, 255, 0.65);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(41, 232, 255, 0.08);
}

.global-nav .nav-watch::after {
  display: none;
}

.global-nav .nav-social {
  color: white;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: rgba(13, 18, 55, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 52px) 0 88px;
  background:
    linear-gradient(90deg, rgba(5, 6, 23, 0.94) 0%, rgba(5, 6, 23, 0.62) 52%, rgba(5, 6, 23, 0.28) 100%),
    radial-gradient(circle at 80% 44%, rgba(81, 50, 205, 0.3), transparent 32%),
    linear-gradient(145deg, #07091d, #0b0f34 65%, #120e35);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(88, 180, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 180, 255, 0.18) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 55%, rgba(41, 232, 255, 0.13) 55.2%, transparent 55.5%);
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-cyan {
  top: -16%;
  left: 33%;
  width: 360px;
  height: 360px;
  background: rgba(41, 232, 255, 0.13);
}

.hero-orb-purple {
  right: -10%;
  bottom: -16%;
  width: 500px;
  height: 500px;
  background: rgba(140, 92, 255, 0.19);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(380px, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(28px, 5vw, 76px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #c8d2f4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-logo {
  width: min(280px, 65%);
  min-height: 50px;
  margin-bottom: 18px;
}

.hero-logo img {
  object-fit: contain;
  object-position: left center;
}

.hero-logo-fallback {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0.15em;
  transition: opacity 0.2s ease;
}

.hero-logo-fallback strong {
  color: var(--cyan);
  font-size: 1.55rem;
}

.hero h1 {
  margin: 0;
}

.hero-kicker {
  display: block;
  margin-bottom: 1px;
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-title-main {
  display: block;
  font-size: clamp(3.2rem, 6.5vw, 6.4rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-shadow: 0 8px 50px rgba(41, 232, 255, 0.16);
}

.hero-title-main em {
  color: transparent;
  background: linear-gradient(140deg, #fff 12%, var(--cyan) 48%, #8672ff 86%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.37em;
  font-style: italic;
}

.hero-lead {
  margin: 24px 0 25px;
  color: #dbe1fa;
  font-size: clamp(1rem, 1.6vw, 1.23rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.event-date {
  display: grid;
  width: fit-content;
  min-width: min(100%, 460px);
  align-items: center;
  padding: 11px 19px;
  border: 1px solid rgba(123, 205, 255, 0.23);
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, rgba(41, 232, 255, 0.08), rgba(140, 92, 255, 0.07));
  backdrop-filter: blur(12px);
  grid-template-columns: auto 1fr auto 1fr;
  column-gap: 14px;
}

.event-date-label {
  color: var(--cyan);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.event-date p {
  display: grid;
  align-items: center;
  margin: 0;
  line-height: 1;
  grid-template-columns: auto auto;
  gap: 4px 8px;
}

.event-date strong {
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.event-date small {
  color: var(--cyan-soft);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.event-date b {
  color: #d5daf2;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  grid-column: 1 / -1;
}

.date-arrow {
  color: var(--purple);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}

.hero-visual-wrap {
  position: relative;
  padding: 18px 0 30px 18px;
}

.hero-visual-wrap::before {
  position: absolute;
  inset: -5% 4% 1% -2%;
  border: 1px solid rgba(41, 232, 255, 0.14);
  border-radius: 48% 52% 44% 56% / 50% 37% 63% 50%;
  content: "";
  transform: rotate(-4deg);
}

.hero-visual {
  aspect-ratio: 0.93;
  border: 1px solid rgba(156, 196, 255, 0.3);
  border-radius: 46% 18% 42% 16% / 22% 43% 18% 48%;
  background: #0c123c;
  box-shadow: 0 0 80px rgba(103, 66, 236, 0.2);
  isolation: isolate;
  transform: rotate(1deg);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(150deg, transparent 52%, rgba(5, 6, 23, 0.62));
  content: "";
  pointer-events: none;
}

.hero-visual img {
  border-radius: inherit;
  object-position: center;
}

.hero-placeholder {
  background:
    radial-gradient(circle at 50% 38%, rgba(41, 232, 255, 0.31), transparent 15%),
    conic-gradient(from 180deg at 50% 45%, rgba(140, 92, 255, 0.4), rgba(41, 232, 255, 0.11), rgba(255, 79, 190, 0.28), rgba(140, 92, 255, 0.4)),
    #0c123c;
}

.hero-placeholder::before,
.hero-placeholder::after {
  position: absolute;
  border: 1px solid rgba(157, 246, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-placeholder::before {
  width: 63%;
  aspect-ratio: 1;
}

.hero-placeholder::after {
  width: 83%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: slow-spin 24s linear infinite;
}

.hero-placeholder > * {
  position: relative;
  z-index: 2;
}

.hero-placeholder strong {
  color: white;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-shadow: 0 0 33px rgba(41, 232, 255, 0.35);
}

.hero-stamp {
  position: absolute;
  top: 1%;
  right: -2%;
  z-index: 5;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(234, 255, 88, 0.6);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--yellow);
  box-shadow: 0 10px 35px rgba(234, 255, 88, 0.21);
  line-height: 1;
  transform: rotate(9deg);
}

.hero-stamp span,
.hero-stamp small {
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-stamp strong {
  margin: 6px 0 4px;
  font-size: 2.4rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hero-visual-caption {
  position: absolute;
  right: 12%;
  bottom: -3px;
  z-index: 4;
  margin: 0;
  padding: 7px 13px;
  color: #abb4d3;
  background: var(--navy-950);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-visual-caption span {
  margin-right: 10px;
  color: #ff5269;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid rgba(41, 232, 255, 0.22);
  color: var(--cyan-soft);
  background: rgba(8, 10, 36, 0.75);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 9px 0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  animation: ticker 28s linear infinite;
}

.ticker-track b {
  color: var(--pink);
}

/* =========================
   ABOUT
========================= */
.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 50%, rgba(41, 232, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #07081c, #080a24);
}

.about::after {
  position: absolute;
  top: 7%;
  right: -4%;
  color: rgba(255, 255, 255, 0.025);
  content: "24H";
  font-size: 20rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.12em;
}

.about-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(48px, 8vw, 108px);
}

.about-visual {
  aspect-ratio: 0.88;
  overflow: visible;
  border: 1px solid rgba(41, 232, 255, 0.23);
  border-radius: var(--radius-lg);
  background: #0d1237;
  box-shadow: var(--shadow-cyan);
}

.about-visual::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(140, 92, 255, 0.3);
  border-radius: inherit;
  content: "";
}

.about-visual img {
  border-radius: var(--radius-lg);
}

.about-placeholder {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, transparent 40%, rgba(41, 232, 255, 0.09) 40.2%, transparent 40.6%),
    radial-gradient(circle at center, rgba(140, 92, 255, 0.4), transparent 42%),
    #0c1134;
}

.placeholder-world {
  display: grid;
  width: 42%;
  max-width: 190px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(41, 232, 255, 0.5);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(41, 232, 255, 0.07);
  box-shadow: 0 0 70px rgba(41, 232, 255, 0.2);
  font-size: 4rem;
  font-weight: 950;
}

.visual-index {
  position: absolute;
  right: -25px;
  bottom: 36px;
  z-index: 4;
  padding: 7px 15px;
  border: 1px solid rgba(41, 232, 255, 0.4);
  color: var(--cyan);
  background: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-copy > p:not(.section-label, .about-lead) {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 2;
}

.about-lead {
  margin: 31px 0 17px;
  color: white;
  font-size: 1.13rem;
  font-weight: 800;
  line-height: 1.8;
}

.about-service {
  display: flex;
  gap: 20px;
  margin: 34px 0 23px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.about-service-mark {
  display: grid;
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  font-size: 1.25rem;
  font-weight: 950;
}

.about-service-image {
  width: 68px;
  height: 68px;
  padding: 0;
  overflow: hidden;
}

.about-service-image > img {
  object-fit: contain;
}

.about-service h3,
.about-service p {
  margin: 0;
}

.about-service h3 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.about-service p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* =========================
   PROGRAM
========================= */
.program {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #0b0d29;
  background-size: 64px 64px;
}

.program-glow {
  position: absolute;
  top: 0;
  left: 45%;
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(75, 43, 181, 0.22), transparent 68%);
  transform: translate(-50%, -50%);
}

.program-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(22, 27, 72, 0.86), rgba(10, 13, 43, 0.94));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-card::after {
  position: absolute;
  right: -45px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(41, 232, 255, 0.05);
  box-shadow: 0 0 55px rgba(41, 232, 255, 0.09);
  content: "";
}

.program-card:hover {
  z-index: 2;
  border-color: rgba(41, 232, 255, 0.45);
  box-shadow: 0 20px 55px rgba(6, 8, 30, 0.4), var(--shadow-cyan);
  transform: translateY(-7px);
}

.program-card-accent {
  border-color: rgba(140, 92, 255, 0.34);
  background: linear-gradient(145deg, rgba(55, 35, 119, 0.72), rgba(13, 15, 49, 0.96));
}

.program-card-accent::after {
  background: rgba(255, 79, 190, 0.06);
  box-shadow: 0 0 55px rgba(255, 79, 190, 0.11);
}

.program-number {
  color: #70799f;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.program-icon {
  position: absolute;
  top: 29px;
  right: 30px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(41, 232, 255, 0.2);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(41, 232, 255, 0.06);
  font-size: 1.2rem;
}

.program-card h3 {
  margin: 52px 0 13px;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.program-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* =========================
   GUEST
========================= */
.guest {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 79, 190, 0.1), transparent 24rem),
    linear-gradient(180deg, #080a24, #07081d);
}

.coming-note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 82, 105, 0.25);
  border-radius: 999px;
  color: #cdd3eb !important;
  background: rgba(255, 82, 105, 0.05);
  font-size: 0.76rem !important;
}

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

.guest-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0d1133;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guest-card:hover {
  border-color: rgba(41, 232, 255, 0.42);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3), var(--shadow-cyan);
  transform: translateY(-6px);
}

.guest-image {
  aspect-ratio: 4 / 5;
  background: #111743;
}

.guest-image::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 28%;
  background: linear-gradient(transparent, rgba(8, 10, 36, 0.82));
  content: "";
}

.guest-image img {
  object-fit: cover;
  object-position: center 25%;
}

.guest-image-contain img {
  object-fit: contain;
  object-position: center;
  background: white;
}

.guest-image-bust img {
  object-fit: contain;
  object-position: center;
  background: white;
  transform: scale(2.3);
  transform-origin: 50% 10%;
}

.guest-placeholder {
  overflow: hidden;
  background:
    linear-gradient(152deg, transparent 38%, rgba(41, 232, 255, 0.12) 38.2%, transparent 38.6%),
    radial-gradient(circle at 50% 54%, rgba(41, 232, 255, 0.24), transparent 41%),
    #111842;
}

.guest-placeholder::before {
  position: absolute;
  top: 18%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(152, 238, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.guest-placeholder::after {
  position: absolute;
  bottom: -18%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(152, 238, 255, 0.18);
  border-radius: 50% 50% 30% 30%;
  content: "";
}

.guest-placeholder > * {
  position: relative;
  z-index: 2;
}

.guest-placeholder span,
.guest-placeholder small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.57rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.25em;
}

.guest-placeholder strong {
  color: var(--cyan-soft);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 950;
  line-height: 0.9;
}

.guest-placeholder-purple {
  background: radial-gradient(circle at 50% 54%, rgba(140, 92, 255, 0.32), transparent 41%), #17113f;
}

.guest-placeholder-purple strong {
  color: #ba9cff;
}

.guest-placeholder-pink {
  background: radial-gradient(circle at 50% 54%, rgba(255, 79, 190, 0.27), transparent 41%), #261031;
}

.guest-placeholder-pink strong {
  color: #ff8bd2;
}

.guest-placeholder-yellow {
  background: radial-gradient(circle at 50% 54%, rgba(234, 255, 88, 0.2), transparent 41%), #1c2032;
}

.guest-placeholder-yellow strong {
  color: var(--yellow);
}

.guest-info {
  padding: 21px 22px 24px;
}

.guest-role {
  margin: 0 0 5px !important;
  color: var(--cyan) !important;
  font-size: 0.58rem !important;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.guest-info h3 {
  margin: 0 0 9px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.guest-name-stacked {
  white-space: nowrap;
}

.guest-name-stacked span {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.78em;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.guest-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.guest-info .guest-program {
  color: #785d54;
  font-weight: 750;
  line-height: 1.55;
}

.guest-program span,
.guest-program time {
  display: block;
}

.guest-program span + time {
  margin-top: 3px;
}

.guest-program time {
  color: #ef5a1d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.guest-program time + span {
  margin-top: 9px;
}

/* =========================
   TIMETABLE
========================= */
.timetable {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(140, 92, 255, 0.12), transparent 25rem),
    #0b0e2b;
}

.timetable::before {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(115deg, transparent 0 35px, var(--cyan) 36px, transparent 37px 72px);
  content: "";
  pointer-events: none;
}

.timetable-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.timetable-date {
  display: grid;
  min-width: 220px;
  padding: 18px 21px;
  border: 1px solid rgba(41, 232, 255, 0.33);
  border-radius: var(--radius-sm);
  background: rgba(41, 232, 255, 0.06);
  grid-template-columns: auto 1fr;
  gap: 2px 13px;
}

.timetable-date span {
  color: var(--cyan);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.14em;
  grid-row: 1 / 3;
  writing-mode: vertical-rl;
}

.timetable-date strong {
  font-size: 1.6rem;
  line-height: 1;
}

.timetable-date b {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.schedule {
  position: relative;
  border-top: 1px solid rgba(142, 159, 211, 0.28);
}

.schedule::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 238px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--purple), var(--pink), var(--yellow));
  content: "";
}

.schedule-item {
  position: relative;
  display: grid;
  min-height: 170px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid rgba(142, 159, 211, 0.19);
  grid-template-columns: 238px 1fr 80px;
}

.schedule-item::before {
  position: absolute;
  top: 37px;
  left: 232px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(41, 232, 255, 0.7);
  content: "";
}

.schedule-item > time {
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.schedule-item > time span {
  margin-inline: 5px;
  color: #687092;
  font-weight: 500;
}

.schedule-content {
  padding: 0 50px 0 42px;
}

.schedule-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--navy-950);
  background: var(--cyan);
  font-size: 0.54rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.13em;
}

.tag-purple {
  color: white;
  background: var(--purple);
}

.tag-pink {
  color: white;
  background: var(--pink);
}

.tag-yellow {
  background: var(--yellow);
}

.schedule-content h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.45;
}

.schedule-content p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.schedule-content p strong {
  color: #d9def2;
}

.schedule-cast {
  width: fit-content;
  margin-top: 15px;
  padding: 10px 15px 11px;
  border-left: 3px solid #69c7e2;
  border-radius: 0 9px 9px 0;
  color: #765d56;
  background: rgba(105, 199, 226, 0.1);
  font-size: 0.76rem;
  line-height: 1.72;
}

.schedule-cast strong {
  display: block;
  margin-bottom: 2px;
  color: #ef5a1d;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.schedule-cast ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-cast-orange {
  border-left-color: #ff9c27;
  background: rgba(255, 156, 39, 0.14);
}

.schedule-cast-yellow {
  border-left-color: #e1cd16;
  background: rgba(245, 236, 67, 0.18);
}

.schedule-cast-red {
  border-left-color: #ff5b18;
  background: rgba(255, 91, 24, 0.12);
}

.schedule-status {
  padding-top: 8px;
  color: #646d91;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: right;
}

.schedule-item-night {
  background: linear-gradient(90deg, transparent, rgba(140, 92, 255, 0.05) 40%, transparent);
}

.schedule-item-finale {
  background: linear-gradient(90deg, transparent, rgba(234, 255, 88, 0.05) 40%, transparent);
}

.schedule-item-finale::before {
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(234, 255, 88, 0.6);
}

.schedule-note {
  margin: 20px 0 0;
  color: #7f88aa;
  font-size: 0.72rem;
  line-height: 1.7;
}

.timetable-poster {
  min-height: 300px;
  margin: 56px 0 0;
  border: 1px dashed rgba(41, 232, 255, 0.32);
  border-radius: var(--radius-md);
  background: rgba(41, 232, 255, 0.03);
}

.timetable-poster img {
  object-fit: contain;
}

.timetable-placeholder {
  gap: 14px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(41, 232, 255, 0.05), transparent 45%, rgba(140, 92, 255, 0.07)),
    rgba(13, 18, 55, 0.78);
}

.timetable-placeholder strong {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.5;
}

/* =========================
   WATCH
========================= */
.watch {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(67, 39, 171, 0.43), transparent 33rem),
    linear-gradient(180deg, #07081e, #0b0830 53%, #07081d);
}

.watch-rays {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 1350px;
  aspect-ratio: 1;
  opacity: 0.11;
  background: repeating-conic-gradient(from 20deg, var(--cyan) 0 1deg, transparent 1.5deg 12deg);
  mask-image: radial-gradient(circle, black, transparent 69%);
  transform: translateX(-50%);
  animation: ray-spin 65s linear infinite;
}

.watch-heading {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.watch-heading .section-label {
  justify-content: center;
}

.watch-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.watch-heading h2 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #ab8cff 58%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.watch-heading > p:last-child {
  margin: 20px 0 0;
  color: #ccd3ef;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.video-frame {
  position: relative;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(41, 232, 255, 0.32);
  background: rgba(9, 12, 38, 0.78);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35), 0 0 80px rgba(41, 232, 255, 0.09);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080b26;
}

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

.video-pending {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    linear-gradient(rgba(41, 232, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 232, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(140, 92, 255, 0.25), transparent 35%),
    #080b26;
  background-size: 50px 50px, 50px 50px, auto, auto;
}

.pending-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(41, 232, 255, 0.45);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(41, 232, 255, 0.08);
  box-shadow: 0 0 40px rgba(41, 232, 255, 0.18);
  font-size: 1.25rem;
}

.video-pending p,
.video-pending strong,
.video-pending small {
  margin: 0;
}

.video-pending p {
  color: var(--cyan);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.video-pending strong {
  margin-block: 3px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.video-pending small {
  color: #7d86a8;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.frame-corner {
  position: absolute;
  width: 35px;
  height: 35px;
  pointer-events: none;
}

.frame-corner-tl { top: -7px; left: -7px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.frame-corner-tr { top: -7px; right: -7px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.frame-corner-bl { bottom: -7px; left: -7px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.frame-corner-br { right: -7px; bottom: -7px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); }

.watch-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
}

.watch-actions p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.7;
}

.watch-steps {
  display: grid;
  max-width: 980px;
  margin: 80px auto 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.watch-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  padding-inline: 26px;
}

.watch-steps li + li {
  border-left: 1px solid var(--line);
}

.watch-steps li > span {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.watch-steps strong,
.watch-steps p {
  display: block;
  margin: 0;
}

.watch-steps strong {
  font-size: 0.91rem;
}

.watch-steps p {
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.6;
}

/* =========================
   SNS
========================= */
.sns {
  padding-block: 92px;
  background: #080a24;
}

.sns-panel {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: center;
  overflow: hidden;
  padding: 52px 58px;
  border: 1px solid rgba(41, 232, 255, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(105deg, rgba(41, 232, 255, 0.12), rgba(140, 92, 255, 0.16) 70%, rgba(255, 79, 190, 0.12)),
    #0c1032;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  grid-template-columns: 120px 1fr auto;
  gap: 42px;
}

.sns-panel::before {
  position: absolute;
  right: 28%;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 90px rgba(140, 92, 255, 0.12);
}

.sns-mark {
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 27px;
  color: var(--navy-950);
  background: white;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.11);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.sns-copy {
  position: relative;
  z-index: 2;
}

.sns-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.sns-copy h2 span {
  color: var(--cyan);
}

.sns-copy > p:not(.section-label, .hashtag) {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.hashtag {
  margin: 10px 0 0;
  color: white;
  font-size: 1rem;
  font-weight: 850;
}

.sns-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 13px;
}

.share-link {
  padding-block: 5px;
  color: #bac3e5;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.share-link:hover {
  color: var(--cyan);
}

/* =========================
   MAKUAKE / SUPPORT
========================= */
.support {
  position: relative;
  overflow: hidden;
  padding-block: 94px;
  color: var(--navy-950);
  background: var(--yellow);
}

.support::before {
  position: absolute;
  top: -80%;
  right: -3%;
  color: rgba(5, 6, 23, 0.06);
  content: "M";
  font-size: 26rem;
  font-weight: 950;
  line-height: 1;
}

.support-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.support .section-label {
  color: #414812;
}

.support h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.support .button-support {
  flex: 0 0 auto;
  border-color: var(--navy-950);
  background: var(--navy-950);
  color: white;
}

/* =========================
   FAQ
========================= */
.faq {
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 232, 255, 0.07), transparent 22rem),
    #07081d;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading .section-title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.faq-heading > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(145, 162, 216, 0.24);
}

.faq-list details {
  border-bottom: 1px solid rgba(145, 162, 216, 0.24);
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 22px 56px 22px 0;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.6;
  list-style: none;
  cursor: pointer;
  grid-template-columns: 39px 1fr;
  transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--cyan);
}

.faq-list summary > span,
.faq-answer > span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.faq-list summary i,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 16px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  padding: 0 50px 25px 0;
  color: var(--muted);
  grid-template-columns: 39px 1fr;
}

.faq-answer > span {
  color: var(--pink);
}

.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  background: #090a25;
}

.final-visual {
  position: absolute;
  inset: 0;
}

.final-visual img {
  object-position: center;
}

.final-placeholder {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(41, 232, 255, 0.28), transparent 21%),
    radial-gradient(circle at 79% 48%, rgba(140, 92, 255, 0.32), transparent 38%),
    linear-gradient(115deg, #060718 20%, #111246 70%, #120b36);
}

.final-placeholder::after {
  position: absolute;
  right: -4%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(41, 232, 255, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(41, 232, 255, 0.025), 0 0 0 140px rgba(140, 92, 255, 0.02);
}

.final-placeholder > * {
  position: absolute;
  z-index: 2;
}

.final-placeholder span {
  right: 23%;
  bottom: 29%;
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.final-placeholder strong {
  right: 17%;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13rem, 28vw, 25rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.12em;
  text-shadow: 0 0 80px rgba(41, 232, 255, 0.22);
}

.final-placeholder small {
  right: 18%;
  bottom: 24%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.final-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(5, 6, 23, 0.96) 0%, rgba(5, 6, 23, 0.84) 40%, rgba(5, 6, 23, 0.18) 78%);
}

.final-content {
  position: relative;
  z-index: 4;
}

.final-content h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.final-content h2 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
}

.final-content > p:not(.section-label) {
  margin: 27px 0 31px;
  color: #c9d0eb;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.final-sub-links {
  display: flex;
  gap: 22px;
}

.final-sub-links a {
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  font-weight: 750;
}

.final-sub-links a:hover:not(.is-disabled) {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 67px 0 24px;
  background: #040512;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand > span {
  display: block;
  width: 205px;
  height: 44px;
}

.footer-brand img {
  object-fit: contain;
  object-position: left center;
}

.footer-logo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: white;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.footer-brand small {
  color: #5f6786;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

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

.footer-links a {
  color: #b4bcd9;
  font-size: 0.74rem;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 211, 0.12);
  color: #5c6480;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

/* =========================
   ANIMATIONS
========================= */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.program-grid .reveal:nth-child(2),
.guest-grid .reveal:nth-child(2),
.watch-steps .reveal:nth-child(2) { transition-delay: 0.07s; }
.program-grid .reveal:nth-child(3),
.guest-grid .reveal:nth-child(3),
.watch-steps .reveal:nth-child(3) { transition-delay: 0.14s; }
.program-grid .reveal:nth-child(5),
.guest-grid .reveal:nth-child(4) { transition-delay: 0.07s; }
.program-grid .reveal:nth-child(6) { transition-delay: 0.14s; }

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.78); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes ray-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1080px) {
  .global-nav {
    gap: 16px;
  }

  .global-nav a {
    font-size: 0.61rem;
  }

  .hero-inner {
    grid-template-columns: minmax(340px, 0.9fr) minmax(380px, 1.1fr);
    gap: 30px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .guest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .guest-image {
    aspect-ratio: 5 / 4;
  }

  .sns-panel {
    padding: 45px;
    grid-template-columns: 90px 1fr;
  }

  .sns-mark {
    width: 84px;
    border-radius: 22px;
    font-size: 2.8rem;
  }

  .sns-actions {
    align-items: center;
    flex-direction: row;
    grid-column: 2;
  }
}

/* =========================
   MOBILE NAV / SMALL TABLET
========================= */
@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    width: min(calc(100% - 34px), 1320px);
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 32px max(24px, calc((100% - 540px) / 2));
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(140, 92, 255, 0.23), transparent 18rem),
      rgba(5, 6, 23, 0.98);
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav a {
    display: flex;
    min-height: 57px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .global-nav a::after {
    display: none;
  }

  .global-nav .nav-watch {
    justify-content: center;
    margin-top: 23px;
    border: 1px solid var(--cyan);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-inner {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero-stamp {
    width: 96px;
    height: 96px;
  }

  .hero-stamp strong {
    font-size: 1.85rem;
  }

  .about-layout {
    grid-template-columns: minmax(250px, 0.7fr) 1fr;
    gap: 52px;
  }

  .about::after {
    font-size: 13rem;
  }

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

  .schedule::before {
    left: 181px;
  }

  .schedule-item {
    grid-template-columns: 181px 1fr;
  }

  .schedule-item::before {
    left: 175px;
  }

  .schedule-content {
    padding: 0 5px 0 37px;
  }

  .schedule-status {
    display: none;
  }

  .watch-steps li {
    padding-inline: 16px;
  }

  .faq-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 55px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 720px) {
  :root {
    --radius-lg: 24px;
    --radius-md: 16px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .section-label {
    margin-bottom: 14px;
    font-size: 0.64rem;
  }

  .section-title {
    font-size: clamp(2.25rem, 11.5vw, 3.55rem);
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading > p {
    margin-top: 21px;
  }

  .brand {
    min-width: 0;
  }

  .brand-image {
    width: 118px;
  }

  .brand-event {
    display: none;
  }

  .hero {
    display: block;
    padding-top: calc(var(--header-height) + 43px);
    padding-bottom: 68px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 0.6rem;
  }

  .hero-logo {
    width: 180px;
    min-height: 42px;
    margin-bottom: 9px;
  }

  .hero-kicker {
    margin-bottom: 7px;
    font-size: clamp(1.07rem, 5.5vw, 1.35rem);
  }

  .hero-title-main {
    font-size: clamp(3.35rem, 17vw, 5.4rem);
    line-height: 0.9;
  }

  .hero-lead {
    margin-block: 21px;
    font-size: 0.96rem;
  }

  .event-date {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    column-gap: 9px;
  }

  .event-date-label {
    font-size: 0.47rem;
  }

  .event-date strong {
    font-size: clamp(1rem, 5.1vw, 1.3rem);
  }

  .event-date small {
    font-size: 0.45rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual-wrap {
    width: 94%;
    align-self: center;
    padding-left: 0;
  }

  .hero-visual {
    aspect-ratio: 1 / 0.96;
  }

  .hero-stamp {
    top: -3%;
    right: -8%;
    width: 88px;
    height: 88px;
  }

  .hero-stamp span,
  .hero-stamp small {
    font-size: 0.39rem;
  }

  .hero-stamp strong {
    margin-block: 4px 2px;
    font-size: 1.65rem;
  }

  .hero-placeholder strong {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-visual-caption {
    right: 6%;
  }

  .about-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 55px;
  }

  .about-visual {
    width: 90%;
    aspect-ratio: 1;
    align-self: flex-start;
  }

  .visual-index {
    right: -15px;
  }

  .about-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .about-copy > p:not(.section-label, .about-lead) {
    line-height: 1.9;
  }

  .about-service {
    gap: 15px;
    padding: 19px;
  }

  .about-service-mark {
    width: 44px;
    height: 44px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .program-card {
    min-height: 0;
    padding: 26px;
  }

  .program-card h3 {
    margin-top: 38px;
  }

  .program-icon {
    top: 24px;
    right: 24px;
  }

  .coming-note {
    width: fit-content;
  }

  .guest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .guest-image {
    aspect-ratio: 4 / 5;
  }

  .guest-info {
    padding: 15px 14px 18px;
  }

  .guest-info h3 {
    font-size: 1rem;
  }

  .guest-info p:not(.guest-role) {
    display: none;
  }

  .guest-info p.guest-program {
    display: block;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .guest-program time {
    font-size: 0.58rem;
  }

  .guest-role {
    overflow: hidden;
    font-size: 0.46rem !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .guest-placeholder strong {
    font-size: 2.55rem;
  }

  .timetable-heading {
    display: block;
    margin-bottom: 38px;
  }

  .timetable-date {
    width: fit-content;
    min-width: 190px;
    margin-top: 25px;
  }

  .schedule::before {
    left: 5px;
  }

  .schedule-item {
    display: block;
    min-height: 0;
    padding: 28px 0 30px 27px;
  }

  .schedule-item::before {
    top: 35px;
    left: -1px;
  }

  .schedule-item > time {
    display: block;
    margin-bottom: 15px;
    color: var(--cyan-soft);
    font-size: 0.98rem;
  }

  .schedule-content {
    padding: 0;
  }

  .schedule-content h3 {
    font-size: 1.05rem;
  }

  .schedule-content p {
    font-size: 0.77rem;
  }

  .schedule-note {
    font-size: 0.68rem;
  }

  .timetable-poster {
    min-height: 240px;
    margin-top: 40px;
  }

  .timetable-placeholder strong {
    font-size: 1.2rem;
  }

  .watch-heading {
    margin-bottom: 35px;
  }

  .watch-heading h2 {
    font-size: clamp(2.5rem, 12.5vw, 4rem);
  }

  .video-frame {
    padding: 5px;
  }

  .pending-icon {
    width: 53px;
    height: 53px;
    margin-bottom: 13px;
    font-size: 0.9rem;
  }

  .video-pending strong {
    font-size: 1.06rem;
  }

  .video-pending small {
    font-size: 0.5rem;
  }

  .watch-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .watch-actions .button {
    width: 100%;
  }

  .watch-actions p {
    max-width: none;
    text-align: center;
  }

  .watch-steps {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .watch-steps li {
    min-height: 76px;
    padding: 15px 0;
  }

  .watch-steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sns {
    padding-block: 65px;
  }

  .sns-panel {
    display: block;
    padding: 32px 25px;
  }

  .sns-mark {
    width: 61px;
    margin-bottom: 25px;
    border-radius: 17px;
    font-size: 2rem;
  }

  .sns-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .sns-actions .button {
    width: 100%;
  }

  .support {
    padding-block: 70px;
  }

  .support-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .support .button-support {
    width: 100%;
  }

  .faq-layout {
    display: block;
  }

  .faq-heading {
    position: static;
    margin-bottom: 45px;
  }

  .faq-list summary {
    min-height: 80px;
    padding-right: 39px;
    font-size: 0.88rem;
    grid-template-columns: 31px 1fr;
  }

  .faq-answer {
    padding-right: 20px;
    grid-template-columns: 31px 1fr;
  }

  .final-cta {
    min-height: 650px;
    align-items: flex-end;
    padding-bottom: 75px;
  }

  .final-overlay {
    background: linear-gradient(180deg, rgba(5, 6, 23, 0.18), rgba(5, 6, 23, 0.98) 72%);
  }

  .final-placeholder strong {
    top: 3%;
    right: 2%;
    font-size: 15rem;
  }

  .final-placeholder span {
    top: 33%;
    right: 18%;
    bottom: auto;
  }

  .final-placeholder small {
    top: 38%;
    right: 11%;
    bottom: auto;
  }

  .final-content h2 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .final-content > p:not(.section-label) {
    font-size: 0.67rem;
    letter-spacing: 0.07em;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-sub-links {
    justify-content: center;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 37px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================
   VERY SMALL MOBILE
========================= */
@media (max-width: 390px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero-title-main {
    font-size: 3.28rem;
  }

  .event-date {
    padding-inline: 9px;
    column-gap: 6px;
  }

  .event-date strong {
    font-size: 0.96rem;
  }

  .date-arrow {
    font-size: 0.9rem;
  }

  .guest-info {
    padding-inline: 11px;
  }
}

/* =========================
   REDUCED MOTION / PRINT
========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================
   WHITE POP THEME
   提供画像に合わせた白基調のカラーテーマ
========================= */
:root {
  --navy-950: #53180e;
  --navy-900: #6a2112;
  --navy-850: #fff7df;
  --navy-800: #ffefad;
  --white: #fffdf7;
  --muted: #765d56;
  --cyan: #68c5e0;
  --cyan-soft: #a5e4f2;
  --purple: #f59d24;
  --pink: #ff6040;
  --yellow: #f5ec43;
  --line: rgba(92, 31, 18, 0.2);
  --panel: rgba(255, 255, 255, 0.9);
  --shadow-cyan: 7px 8px 0 rgba(104, 197, 224, 0.35);
  --shadow-purple: 7px 8px 0 rgba(245, 157, 36, 0.3);
  color-scheme: light;
}

body {
  color: #53180e;
  background:
    radial-gradient(circle at 12% 12%, rgba(104, 197, 224, 0.14), transparent 17rem),
    #fffdf7;
}

::selection {
  color: #53180e;
  background: #f5ec43;
}

.section-label {
  color: #f45b20;
}

.section-title {
  color: #53180e;
}

.section-title span,
.watch-heading h2 span,
.final-content h2 span {
  color: #ff5b18;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.section-heading > p,
.about-copy > p:not(.section-label, .about-lead),
.program-card p,
.guest-info p,
.schedule-content p,
.watch-actions p,
.watch-steps p,
.sns-copy > p:not(.section-label, .hashtag),
.faq-heading > p:last-child,
.faq-answer,
.about-service p {
  color: #765d56;
}

.button-primary {
  color: #53180e;
  background: linear-gradient(110deg, #ff6a15, #ff9d00 56%, #f5ec43);
  box-shadow: 0 8px 0 #6b2112, 0 15px 30px rgba(255, 102, 15, 0.2);
}

.button-primary:hover:not(.is-disabled) {
  box-shadow: 0 5px 0 #6b2112, 0 16px 30px rgba(255, 102, 15, 0.28);
  transform: translateY(3px);
}

.button-primary .button-icon {
  color: #fff;
  background: #5b1a10;
}

.button.is-disabled {
  color: #9c8982;
  border-color: #d9ccc5;
  background: #eee8e3;
}

.button.is-disabled .button-icon {
  color: #9c8982;
  background: #ddd3cd;
}

.text-link,
.text-link-cyan {
  color: #6a2112;
  border-color: rgba(106, 33, 18, 0.35);
}

.text-link:hover {
  color: #ff5b18;
  border-color: #ff5b18;
}

.text-link.is-disabled,
.final-sub-links .is-disabled {
  color: #a8968f;
  border-color: #d9ccc5;
}

/* WHITE POP: HEADER */
.site-header {
  border-bottom: 1px solid rgba(91, 26, 16, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 0 rgba(104, 197, 224, 0.16);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: rgba(91, 26, 16, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 0 rgba(245, 236, 67, 0.34), 0 12px 26px rgba(91, 26, 16, 0.08);
}

.brand-image {
  width: 146px;
  height: 42px;
}

.brand-fallback,
.footer-logo-fallback {
  color: #53180e;
}

.brand-fallback span {
  color: #ff5b18;
}

.brand-event {
  border: 2px solid #65bfda;
  color: #53180e;
  background: #dff8ff;
}

.global-nav a,
.global-nav .nav-social {
  color: #53180e;
}

.global-nav a::after {
  height: 3px;
  border-radius: 999px;
  background: #ff6817;
}

.global-nav a:hover {
  color: #ff5b18;
}

.global-nav .nav-watch {
  border: 2px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 3px 3px 0 #5b1a10;
}

.menu-toggle {
  border: 2px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 3px 3px 0 #5b1a10;
}

/* WHITE POP: HERO */
.hero {
  min-height: min(920px, 100svh);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("assets/images/pop-background.png") center / cover no-repeat,
    #fff;
}

.hero-grid,
.hero-orb {
  display: none;
}

.hero-inner {
  grid-template-columns: minmax(380px, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(34px, 5vw, 74px);
}

.hero-copy {
  padding: 30px 32px 33px;
  border: 3px solid #5b1a10;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 9px 10px 0 #69c7e2;
}

.eyebrow {
  color: #75483a;
}

.live-dot {
  background: #ff5b18;
  box-shadow: 0 0 0 5px rgba(255, 91, 24, 0.14), 0 0 16px rgba(255, 91, 24, 0.45);
}

.hero-logo {
  width: min(360px, 90%);
  min-height: 0;
  aspect-ratio: 1591 / 895;
}

.hero-logo-fallback {
  color: #53180e;
}

.hero-logo-fallback strong {
  color: #ff5b18;
}

.hero-kicker,
.hero-title-main {
  color: #53180e;
  text-shadow: none;
}

.hero-title-main em {
  color: #ff5b18;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 3px 3px 0 #f5ec43;
}

.hero-lead {
  color: #664038;
}

.event-date {
  border: 2px solid #5b1a10;
  background: #fff8c7;
  box-shadow: 4px 4px 0 rgba(245, 157, 36, 0.38);
  backdrop-filter: none;
}

.event-date-label,
.event-date small {
  color: #ef5a1d;
}

.event-date b {
  color: #765d56;
}

.date-arrow {
  color: #62bfd9;
}

.hero-visual-wrap {
  padding: 0;
}

.hero-visual-wrap::before {
  inset: -13px 14px 13px -13px;
  border: 3px solid #5b1a10;
  border-radius: 30px;
  background: #f5ec43;
  transform: rotate(-2deg);
}

.hero-visual {
  aspect-ratio: 16 / 9;
  border: 3px solid #5b1a10;
  border-radius: 28px;
  background: #fff;
  box-shadow: 10px 12px 0 rgba(255, 94, 27, 0.7);
  transform: rotate(1deg);
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  border-radius: 24px;
  object-fit: cover;
}

.hero-stamp {
  top: -12%;
  right: -3%;
  border: 3px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 6px 7px 0 #5b1a10;
}

.hero-visual-caption {
  right: 4%;
  bottom: -36px;
  color: #53180e;
  background: #fff;
  box-shadow: 3px 3px 0 #69c7e2;
}

.hero-ticker {
  border-block: 3px solid #5b1a10;
  color: #fff;
  background: #ff6118;
  backdrop-filter: none;
}

.ticker-track b {
  color: #f5ec43;
}

/* WHITE POP: ABOUT */
.about {
  background:
    radial-gradient(circle, rgba(104, 197, 224, 0.26) 2px, transparent 3px) 0 0 / 28px 28px,
    #fffdf7;
}

.about::after {
  color: rgba(255, 91, 24, 0.055);
}

.about-visual {
  aspect-ratio: 16 / 10;
  border: 3px solid #5b1a10;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff7b3, #dff8ff);
  box-shadow: 9px 10px 0 #ff7b23;
}

.about-visual::before {
  inset: 15px -15px -15px 15px;
  border: 3px solid #5b1a10;
  background: #f5ec43;
}

.about-visual img {
  border-radius: 24px;
  object-fit: contain;
}

.visual-index {
  border: 2px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
}

.about-lead {
  color: #53180e;
}

.about-service {
  border: 2px solid #5b1a10;
  background: #fff8c7;
  box-shadow: 5px 5px 0 #69c7e2;
}

.about-service-mark {
  color: #53180e;
  background: linear-gradient(135deg, #f5ec43, #ff8a20);
  box-shadow: 3px 3px 0 #5b1a10;
}

/* WHITE POP: PROGRAM */
.program {
  background:
    linear-gradient(rgba(104, 197, 224, 0.13) 2px, transparent 2px),
    linear-gradient(90deg, rgba(104, 197, 224, 0.13) 2px, transparent 2px),
    #eefbff;
  background-size: 42px 42px;
}

.program-glow {
  background: radial-gradient(ellipse, rgba(245, 236, 67, 0.55), transparent 68%);
}

.program-card,
.program-card-accent {
  border: 3px solid #5b1a10;
  color: #53180e;
  background: #fff;
  box-shadow: 7px 8px 0 #69c7e2;
}

.program-card:nth-child(2n),
.program-card-accent {
  box-shadow: 7px 8px 0 #ff9c27;
}

.program-card:nth-child(3n) {
  box-shadow: 7px 8px 0 #f5ec43;
}

.program-card::after {
  background: rgba(245, 236, 67, 0.34);
  box-shadow: none;
}

.program-card:hover {
  border-color: #5b1a10;
  box-shadow: 7px 13px 0 #ff6a1b;
}

.program-number {
  color: #b88975;
}

.program-icon {
  border: 2px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
}

/* WHITE POP: AMBASSADOR */
.ambassador {
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(104, 197, 224, 0.28) 2px, transparent 3px) 0 0 / 30px 30px,
    linear-gradient(135deg, #fffdf7 0 48%, #fff0f4 48% 100%);
}

.ambassador::before,
.ambassador::after {
  position: absolute;
  border: 3px solid #5b1a10;
  background: #f5ec43;
  content: "";
  transform: rotate(14deg);
}

.ambassador::before {
  top: 82px;
  left: -45px;
  width: 120px;
  height: 38px;
  box-shadow: 5px 5px 0 #ff8f20;
}

.ambassador::after {
  right: -38px;
  bottom: 72px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #69c7e2;
  box-shadow: 6px 6px 0 #ff8f20;
}

.ambassador-wordmark {
  position: absolute;
  top: 10px;
  left: 50%;
  color: rgba(255, 91, 24, 0.055);
  font-size: clamp(5rem, 13vw, 12rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ambassador .container {
  position: relative;
  z-index: 2;
}

.ambassador-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  border: 3px solid #5b1a10;
  border-radius: 38px;
  color: #53180e;
  background: #fff;
  box-shadow: 10px 11px 0 #69c7e2;
}

.ambassador-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 6;
  height: 13px;
  border-bottom: 3px solid #5b1a10;
  background: repeating-linear-gradient(90deg, #ff6a1b 0 54px, #f5ec43 54px 108px, #69c7e2 108px 162px);
  content: "";
}

.ambassador-copy {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(54px, 5.4vw, 78px);
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 236, 67, 0.52), transparent 10rem),
    #fff;
}

.ambassador-copy::after {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: #ff9c27;
  font-size: 2.2rem;
  content: "★";
  transform: rotate(13deg);
}

.ambassador-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 2px solid #5b1a10;
  border-radius: 999px;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 3px 3px 0 #ff8f20;
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.13em;
}

.ambassador-title {
  max-width: 590px;
  font-size: clamp(2.35rem, 3.4vw, 4rem);
}

.ambassador-title span {
  display: block;
}

.ambassador-title .ambassador-title-brand {
  color: #53180e;
  white-space: nowrap;
}

.ambassador-profile {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 34px 0 24px;
}

.ambassador-profile-role {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid #5b1a10;
  border-radius: 50%;
  color: #fff;
  background: #ff5b18;
  box-shadow: 3px 3px 0 #5b1a10;
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ambassador-profile p {
  margin: 0;
  line-height: 1;
}

.ambassador-profile strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.ambassador-profile small {
  display: block;
  margin-top: 9px;
  color: #ef5a1d;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.ambassador-lead {
  margin: 0 0 14px;
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.85;
}

.ambassador-description {
  max-width: 580px;
  margin: 0;
  color: #765d56;
  font-size: 0.9rem;
  line-height: 1.95;
}

.ambassador-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  border-left: 3px solid #5b1a10;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.92) 0 20%, transparent 20.5%),
    repeating-conic-gradient(from -8deg at 50% 47%, #f5ec43 0 8deg, #fff 8deg 17deg, #69c7e2 17deg 25deg, #fff 25deg 34deg);
}

.ambassador-visual::before {
  position: absolute;
  inset: 8% 8% 9%;
  z-index: 1;
  border: 3px solid #5b1a10;
  border-radius: 50%;
  background: rgba(255, 224, 232, 0.82);
  box-shadow: 8px 8px 0 rgba(255, 91, 24, 0.72);
  content: "";
}

.ambassador-visual::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 24%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
  content: "";
}

.ambassador-visual > img {
  position: absolute;
  top: -2%;
  left: 50%;
  z-index: 3;
  width: auto;
  max-width: none;
  height: 154%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 18px 10px rgba(83, 24, 14, 0.2));
  transform: translateX(-50%);
}

.ambassador-copyright {
  position: absolute;
  bottom: 27px;
  left: 24px;
  z-index: 5;
  padding: 5px 9px;
  border: 1.5px solid rgba(83, 24, 14, 0.78);
  border-radius: 999px;
  color: #53180e;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}

.ambassador-placeholder {
  z-index: 2;
  color: #53180e;
  background: #fff4bd;
}

.ambassador-placeholder span,
.ambassador-placeholder small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ambassador-placeholder strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
}

.ambassador-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 25px;
  z-index: 5;
  padding: 10px 16px 11px;
  border: 2px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 4px 4px 0 #ff6a1b;
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-align: center;
  transform: rotate(-3deg);
}

.ambassador-visual figcaption span,
.ambassador-visual figcaption strong {
  display: block;
}

.ambassador-visual figcaption strong {
  margin-top: 3px;
  font-size: 0.82rem;
}

.ambassador-spark {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  color: #ff5b18;
  line-height: 1;
  text-shadow: 2px 2px 0 #fff;
}

.ambassador-spark-one {
  top: 10%;
  left: 8%;
  font-size: 3.5rem;
  transform: rotate(-12deg);
}

.ambassador-spark-two {
  top: 19%;
  right: 7%;
  color: #69c7e2;
  font-size: 2.8rem;
  transform: rotate(12deg);
}

@media (max-width: 820px) {
  .ambassador-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ambassador-copy {
    padding: 58px 42px 48px;
  }

  .ambassador-visual {
    min-height: 540px;
    border-top: 3px solid #5b1a10;
    border-left: 0;
  }

  .ambassador-visual > img {
    height: 150%;
  }
}

@media (max-width: 560px) {
  .ambassador-card {
    border-radius: 26px;
    box-shadow: 6px 7px 0 #69c7e2;
  }

  .ambassador-copy {
    padding: 48px 22px 40px;
  }

  .ambassador-copy::after {
    right: 20px;
    bottom: 18px;
    font-size: 1.6rem;
  }

  .ambassador-badge {
    margin-bottom: 19px;
    font-size: 0.55rem;
  }

  .ambassador-title {
    font-size: clamp(2rem, 9.7vw, 3.15rem);
  }

  .ambassador-profile {
    gap: 14px;
    margin-block: 27px 21px;
  }

  .ambassador-profile-role {
    width: 54px;
    height: 54px;
    font-size: 0.48rem;
  }

  .ambassador-profile strong {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  .ambassador-lead {
    font-size: 0.96rem;
  }

  .ambassador-description {
    font-size: 0.84rem;
    line-height: 1.9;
  }

  .ambassador-visual {
    min-height: 450px;
  }

  .ambassador-visual > img {
    height: 151%;
  }

  .ambassador-visual figcaption {
    right: 16px;
    bottom: 18px;
  }

  .ambassador-copyright {
    bottom: 19px;
    left: 16px;
  }

  .ambassador-spark-one {
    font-size: 2.65rem;
  }

  .ambassador-spark-two {
    font-size: 2.2rem;
  }
}

/* WHITE POP: GUEST */
.guest {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 95, 55, 0.12), transparent 24rem),
    #fff8e9;
}

.coming-note {
  border: 2px solid #5b1a10;
  color: #53180e !important;
  background: #fff;
  box-shadow: 4px 4px 0 #ff9c27;
}

.guest-card {
  border: 3px solid #5b1a10;
  color: #53180e;
  background: #fff;
  box-shadow: 6px 7px 0 #69c7e2;
}

.guest-card:nth-child(2n) {
  box-shadow: 6px 7px 0 #ff9c27;
}

.guest-card:hover {
  border-color: #5b1a10;
  box-shadow: 6px 12px 0 #f5ec43;
}

.guest-image {
  background: #fff3a7;
}

.guest-image::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.5));
}

.guest-placeholder,
.guest-placeholder-purple,
.guest-placeholder-pink,
.guest-placeholder-yellow {
  color: #53180e;
  background:
    radial-gradient(circle at 50% 54%, rgba(104, 197, 224, 0.34), transparent 42%),
    #fff8c7;
}

.guest-placeholder::before,
.guest-placeholder::after {
  border-color: rgba(91, 26, 16, 0.22);
}

.guest-placeholder strong,
.guest-placeholder-purple strong,
.guest-placeholder-pink strong,
.guest-placeholder-yellow strong {
  color: #ff5b18;
}

.guest-placeholder span,
.guest-placeholder small {
  color: #765d56;
}

.guest-role {
  color: #ef5a1d !important;
}

/* WHITE POP: TIMETABLE */
.timetable {
  background:
    radial-gradient(circle at 11% 22%, rgba(104, 197, 224, 0.18), transparent 22rem),
    #fff;
}

.timetable::before {
  opacity: 0.11;
  background: repeating-linear-gradient(115deg, transparent 0 35px, #f5ec43 36px, transparent 37px 72px);
}

.timetable-date {
  border: 3px solid #5b1a10;
  background: #dff8ff;
  box-shadow: 5px 5px 0 #69c7e2;
}

.timetable-date span {
  color: #ef5a1d;
}

.timetable-date b {
  color: #765d56;
}

.schedule {
  border-top-color: rgba(91, 26, 16, 0.28);
}

.schedule::before {
  width: 4px;
  background: linear-gradient(#69c7e2, #ff9c27, #ff5b18, #f5ec43);
}

.schedule-item {
  border-bottom-color: rgba(91, 26, 16, 0.2);
}

.schedule-item::before {
  border-color: #fff;
  background: #69c7e2;
  box-shadow: 0 0 0 2px #5b1a10;
}

.schedule-item > time,
.schedule-content h3 {
  color: #53180e;
}

.schedule-tag {
  color: #53180e;
  background: #69c7e2;
}

.tag-purple {
  color: #53180e;
  background: #ff9c27;
}

.tag-pink {
  color: #fff;
  background: #ff5b18;
}

.tag-yellow {
  color: #53180e;
  background: #f5ec43;
}

.schedule-content p strong {
  color: #53180e;
}

.schedule-status {
  color: #aa877b;
}

.schedule-item-night {
  background: linear-gradient(90deg, transparent, rgba(104, 197, 224, 0.1) 40%, transparent);
}

.schedule-item-finale {
  background: linear-gradient(90deg, transparent, rgba(245, 236, 67, 0.22) 40%, transparent);
}

.schedule-item-finale::before {
  background: #f5ec43;
  box-shadow: 0 0 0 2px #5b1a10;
}

.schedule-note {
  color: #8d7168;
}

.timetable-poster {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 3px dashed #69c7e2;
  background: white;
  box-shadow: 10px 10px 0 rgba(105, 199, 226, 0.35);
}

.timetable-poster img {
  background: white;
}

.timetable-placeholder {
  color: #53180e;
  background:
    linear-gradient(135deg, rgba(104, 197, 224, 0.16), transparent 45%, rgba(255, 156, 39, 0.18)),
    #fffdf7;
}

.image-placeholder small,
.timetable-placeholder small {
  color: #92776d;
}

/* WHITE POP: WATCH */
.watch {
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(223, 248, 255, 0.86)),
    url("assets/images/pop-background.png") center / cover no-repeat,
    #eefbff;
}

.watch-rays {
  display: none;
}

.watch-event-logo {
  width: min(460px, 78vw);
  aspect-ratio: 16 / 9;
  margin: -45px auto 8px;
}

.watch-event-logo img {
  object-fit: contain;
}

.watch-heading h2 {
  color: #53180e;
}

.watch-heading > p:last-child {
  color: #68443b;
}

.video-frame {
  border: 3px solid #5b1a10;
  border-radius: 24px;
  background: #fff;
  box-shadow: 10px 11px 0 #ff7b23;
}

.video-player {
  overflow: hidden;
  border-radius: 17px;
  background: #fff8c7;
}

.video-pending {
  color: #53180e;
  background:
    radial-gradient(circle, rgba(104, 197, 224, 0.28) 2px, transparent 3px) 0 0 / 28px 28px,
    linear-gradient(135deg, #fff, #fff8c7);
}

.pending-icon {
  border: 3px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 5px 5px 0 #ff7b23;
}

.video-pending p {
  color: #ef5a1d;
}

.video-pending small {
  color: #8d7168;
}

.frame-corner {
  display: none;
}

.watch-steps li + li {
  border-color: rgba(91, 26, 16, 0.18);
}

.watch-steps li > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #5b1a10;
  border-radius: 50%;
  color: #53180e;
  background: #f5ec43;
}

/* WHITE POP: SNS / SUPPORT */
.sns {
  background: #fff;
}

.sns-panel {
  border: 3px solid #5b1a10;
  color: #53180e;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 2px, transparent 3px) 0 0 / 24px 24px,
    #f5ec43;
  box-shadow: 10px 11px 0 #69c7e2;
}

.sns-panel::before {
  border-color: rgba(91, 26, 16, 0.09);
  box-shadow: none;
}

.sns-mark {
  color: #fff;
  background: #53180e;
  box-shadow: 5px 5px 0 #ff7b23;
}

.sns-copy h2 span,
.hashtag {
  color: #ef5a1d;
}

.button-light {
  border: 2px solid #5b1a10;
  color: #fff;
  background: #53180e;
  box-shadow: 4px 4px 0 #ff7b23;
}

.share-link {
  color: #53180e;
}

.share-link:hover {
  color: #ef5a1d;
}

.support {
  color: #53180e;
  background: #ff9c27;
}

.support .section-label {
  color: #53180e;
}

.support .button-support {
  border: 3px solid #5b1a10;
  color: #53180e;
  background: #f5ec43;
  box-shadow: 6px 6px 0 #5b1a10;
}

/* WHITE POP: FAQ */
.faq {
  background:
    radial-gradient(circle at 15% 20%, rgba(104, 197, 224, 0.2), transparent 22rem),
    #fff8e9;
}

.faq-list {
  border-top: 3px solid #5b1a10;
}

.faq-list details {
  border-bottom: 2px solid rgba(91, 26, 16, 0.22);
}

.faq-list summary {
  color: #53180e;
}

.faq-list summary:hover,
.faq-list summary > span {
  color: #ef5a1d;
}

.faq-answer > span {
  color: #69b9d2;
}

.faq-list summary i,
.faq-list summary i::after {
  background: #ef5a1d;
}

/* WHITE POP: FINAL CTA */
.final-cta {
  background:
    url("assets/images/pop-background.png") center / cover no-repeat,
    #fff;
}

.final-visual {
  inset: 0 0 0 38%;
}

.final-visual img {
  object-fit: contain;
  object-position: center right;
}

.final-overlay {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 39%, rgba(255, 255, 255, 0.12) 78%);
}

.final-content {
  color: #53180e;
}

.final-content > p:not(.section-label) {
  color: #68443b;
}

.final-sub-links a {
  color: #53180e;
  border-color: rgba(91, 26, 16, 0.34);
}

.final-sub-links a:hover:not(.is-disabled) {
  color: #ef5a1d;
  border-color: #ef5a1d;
}

/* WHITE POP: FOOTER */
.site-footer {
  border-top: 8px solid #ff6a18;
  color: #53180e;
  background: #fff;
}

.footer-brand small,
.footer-bottom,
.footer-links a {
  color: #765d56;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ef5a1d;
}

.footer-bottom {
  border-top-color: rgba(91, 26, 16, 0.16);
}

@media (max-width: 960px) {
  .global-nav {
    background:
      radial-gradient(circle at 85% 18%, rgba(245, 236, 67, 0.5), transparent 18rem),
      #fffdf7;
  }

  .global-nav a {
    border-bottom-color: rgba(91, 26, 16, 0.16);
  }

  .hero-inner {
    grid-template-columns: minmax(330px, 0.92fr) minmax(350px, 1.08fr);
  }
}

@media (max-width: 720px) {
  .hero {
    background-position: center top;
  }

  .hero-copy {
    padding: 24px 20px 27px;
    border-radius: 22px;
    box-shadow: 6px 7px 0 #69c7e2;
  }

  .hero-logo {
    width: min(300px, 100%);
  }

  .hero-visual-wrap {
    width: 100%;
    margin-top: 18px;
  }

  .hero-visual {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    box-shadow: 6px 7px 0 #ff7b23;
  }

  .hero-visual-wrap::before {
    border-radius: 22px;
  }

  .hero-stamp {
    top: -16%;
    right: -2%;
  }

  .about-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .program-card,
  .program-card-accent,
  .guest-card,
  .guest-card:nth-child(2n) {
    box-shadow: 5px 6px 0 #69c7e2;
  }

  .schedule::before {
    width: 3px;
  }

  .schedule-item > time {
    color: #ef5a1d;
  }

  .watch-event-logo {
    width: min(390px, 94vw);
    margin: -25px auto 0;
  }

  .video-frame {
    box-shadow: 6px 7px 0 #ff7b23;
  }

  .watch-steps li + li {
    border-top-color: rgba(91, 26, 16, 0.18);
  }

  .sns-panel {
    box-shadow: 6px 7px 0 #69c7e2;
  }

  .final-visual {
    inset: 0 0 42%;
  }

  .final-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), #fff 61%);
  }

  .footer-main {
    color: #53180e;
  }
}

@media print {
  .site-header,
  .hero-ticker,
  .button,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body,
  .section {
    color: #111;
    background: white;
  }

  .section {
    padding-block: 32px;
  }
}
