*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --kyo-blue: #7286f5;
  --kyo-blue-light: #a0a1eb;
  --kyo-blue-pale: #c1dbf9;
  --ink: #06091a;
  --navy: #0b0f24;
  --card: #111630;
  --border: rgba(114, 134, 245, 0.18);
  --white: #f1f1f1;
  --muted: #8090b8;
  --gold: #f5c842;
  --green: #25d366;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  transition: all 0.3s;
}
#nav.scrolled {
  background: rgba(6, 9, 26, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img {
  width: 117.6px;
  height: 37.59px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  color: var(--kyo-blue-light);
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: 1px solid var(--kyo-blue);
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-cta:hover {
  background: var(--kyo-blue);
  color: var(--ink);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-links-cta {
  display: none;
}

/* ─── HERO ─── */
#hero {
  background: #08091e;
  padding-top: 68px; /* nav height */
}
@media (min-width: 769px) {
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-banner-img {
  width: 100%;
  overflow: hidden;
  background: #08091e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Transparent clickable overlay over banner button */
.banner-btn-link {
  position: absolute;
  /* Button at x=978-1178, y=148-180 in 1320×323px image */
  left: 74.09%;
  top: 45.82%;
  width: 15.15%;
  height: 9.91%;
  display: block;
  cursor: pointer;
  border-radius: 4px;
  background: transparent;
}
.banner-btn-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
/* CTA bar below banner */
.hero-cta-bar {
  background: rgba(6, 9, 26, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
}
.hero-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kyo-blue);
  color: var(--ink);
  font-family: "Days One", sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 28px;
  height: 51px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-signup-btn:hover {
  background: #8fa0ff;
}
.hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  padding: 0 22px;
  height: 51px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-wa-btn:hover {
  background: rgba(37, 211, 102, 0.22);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.hstat {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: "Days One", sans-serif;
  font-size: 22px;
  color: var(--kyo-blue-light);
  line-height: 1;
}
.hstat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── HERO SLOGAN BAR ─── */
.hero-slogan {
  background: linear-gradient(
    90deg,
    rgba(114, 134, 245, 0.18) 0%,
    rgba(114, 134, 245, 0.08) 100%
  );
  border-bottom: 1px solid rgba(114, 134, 245, 0.2);
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Days One", sans-serif;
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.9);
  gap: 20px;
  flex-wrap: wrap;
}
.slogan-sep {
  color: var(--kyo-blue);
  opacity: 0.7;
}

/* ─── TICKER ─── */
#ticker {
  background: var(--kyo-blue);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: "Days One", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 28px;
  white-space: nowrap;
}
.ticker-sep-t {
  color: rgba(6, 9, 26, 0.4);
  padding: 0 4px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── SECTION BASE ─── */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--kyo-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--kyo-blue);
}
.section-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title em {
  font-style: normal;
  color: var(--kyo-blue);
}
.section-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(241, 241, 241, 0.7);
  max-width: 520px;
}

/* ─── STATS ─── */
#stats {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Days One", sans-serif;
  font-size: 58px;
  letter-spacing: -2px;
  color: var(--kyo-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── CTA CHIPS ─── */
.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s;
}
.chip:hover {
  border-color: var(--kyo-blue);
  background: rgba(114, 134, 245, 0.1);
}
.chip-cal {
  border-color: rgba(245, 200, 66, 0.35);
  color: var(--gold);
  background: rgba(245, 200, 66, 0.06);
}
.chip-cal:hover {
  background: rgba(245, 200, 66, 0.12);
}
.chip-wa {
  border-color: rgba(37, 211, 102, 0.35);
  color: var(--green);
  background: rgba(37, 211, 102, 0.06);
}
.chip-wa:hover {
  background: rgba(37, 211, 102, 0.12);
}
.chip-tg {
  border-color: rgba(114, 134, 245, 0.45);
  color: var(--kyo-blue-light);
  background: rgba(114, 134, 245, 0.06);
}
.chip-tg:hover {
  background: rgba(114, 134, 245, 0.12);
}

/* ─── SPLIT SECTIONS ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.split-img:hover img {
  transform: scale(1.03);
}
.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 9, 26, 0.25) 0%,
    rgba(6, 9, 26, 0) 100%
  );
}
.split-content {
  background: var(--card);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content-dark {
  background: var(--navy);
}
.split-content .section-body {
  max-width: 420px;
}

/* ─── EVENTS ─── */
#events {
  background: var(--ink);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}
.event-card:hover {
  border-color: var(--kyo-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(114, 134, 245, 0.14);
}
.ec-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.ec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.event-card:hover .ec-photo img {
  transform: scale(1.05);
}
.ec-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11, 15, 36, 0.9) 100%
  );
}
.ec-body {
  padding: 24px 28px 28px;
}
.ec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kyo-blue);
  margin-bottom: 6px;
}
.ec-name {
  font-family: "Days One", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
/* Mini calendar */
.mini-cal {
  background: rgba(6, 9, 26, 0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
}
.cal-month {
  font-family: "Days One", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kyo-blue);
  text-align: center;
  margin-bottom: 8px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-hd {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 2px 0;
}
.cal-day {
  font-size: 10px;
  font-weight: 500;
  color: rgba(241, 241, 241, 0.45);
  text-align: center;
  padding: 4px 2px;
  border-radius: 3px;
}
.cal-day.on {
  background: var(--kyo-blue);
  color: var(--ink);
  font-weight: 800;
}
.cal-day.x {
  opacity: 0;
}
.ec-date {
  font-family: "Days One", sans-serif;
  font-size: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.ec-venue {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.ec-btns {
  display: flex;
  gap: 8px;
}
.ec-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: var(--kyo-blue);
  color: var(--ink);
  font-family: "Days One", sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.ec-apply:hover {
  background: #8fa0ff;
}
.ec-cal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(245, 200, 66, 0.3);
  background: rgba(245, 200, 66, 0.05);
  white-space: nowrap;
  transition: all 0.2s;
}
.ec-cal:hover {
  background: rgba(245, 200, 66, 0.12);
}

/* ─── WHY ─── */
#why {
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.why-card {
  background: rgba(11, 15, 36, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--kyo-blue);
}
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(114, 134, 245, 0.12);
  border: 1px solid rgba(114, 134, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wi {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #f1f1f1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-t {
  font-family: "Days One", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-b {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(241, 241, 241, 0.6);
}

/* ─── BUNDLE ─── */
#bundle {
  background: linear-gradient(135deg, #0a0f28, #141a3e, #0a0f28);
  position: relative;
  overflow: hidden;
}
#bundle::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(114, 134, 245, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.bundle-badge {
  display: inline-block;
  background: rgba(114, 134, 245, 0.15);
  color: var(--kyo-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(114, 134, 245, 0.3);
  margin-bottom: 18px;
}
.bundle-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(38px, 4vw, 64px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.bundle-title em {
  font-style: normal;
  color: var(--kyo-blue);
}
.bundle-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(241, 241, 241, 0.7);
  margin-bottom: 28px;
}
.bundle-perks {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.perk-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.perk-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(114, 134, 245, 0.18);
  color: var(--kyo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.perk-text {
  color: rgba(241, 241, 241, 0.75);
  line-height: 1.5;
}
.perk-text strong {
  color: var(--white);
}
.bundle-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.bundle-events {
  display: flex;
  flex-direction: column;
}
.bundle-er {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: rgba(6, 9, 26, 0.5);
  border: 1px solid var(--border);
}
.bundle-er:first-child {
  border-radius: 10px 10px 0 0;
}
.bundle-er:last-child {
  border-radius: 0 0 10px 10px;
}
.be-n {
  font-family: "Days One", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.be-d {
  font-size: 12px;
  color: var(--kyo-blue-light);
  margin-top: 2px;
}
.bundle-plus {
  text-align: center;
  font-size: 20px;
  color: var(--kyo-blue);
  padding: 6px;
  opacity: 0.6;
}
.bundle-cta {
  display: block;
  background: var(--kyo-blue);
  color: var(--ink);
  font-family: "Days One", sans-serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-top: 20px;
}
.bundle-cta:hover {
  background: #8fa0ff;
}

/* ─── PARTNERS: Artists + Media (horizontal scroll) ─── */
#partners {
  background: var(--ink);
  border-top: 1px solid var(--border);
}
#partners .section-title br {
  display: none;
}
#partners .section-title em {
  margin-left: 0.3ch;
}
#partners .section-body {
  max-width: none;
}
.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 20px;
  -webkit-overflow-scrolling: touch;
}
.scroll-row::-webkit-scrollbar {
  height: 3px;
}
.scroll-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
.scroll-row::-webkit-scrollbar-thumb {
  background: var(--kyo-blue);
  border-radius: 2px;
}
/* Artist cards — real photo */
.artist-shot {
  flex-shrink: 0;
  width: 260px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.artist-shot:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 32px rgba(114, 134, 245, 0.2);
}
.artist-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}
.artist-shot:hover img {
  transform: scale(1.04);
}
.artist-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(6, 9, 26, 0.95) 0%,
    rgba(6, 9, 26, 0.6) 60%,
    transparent 100%
  );
  padding: 36px 16px 16px;
}
.ac-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kyo-blue-light);
  margin-bottom: 3px;
}
.ac-name {
  font-family: "Days One", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.ac-sub {
  font-size: 11px;
  color: rgba(241, 241, 241, 0.55);
  margin-top: 2px;
}
.ac-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.ac-badge {
  display: inline-block;
  background: rgba(114, 134, 245, 0.2);
  border: 1px solid rgba(114, 134, 245, 0.4);
  color: var(--kyo-blue-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 8px;
}
/* Tees card (landscape crop) */
.artist-shot.wide {
  width: 320px;
}
.artist-shot.wide img {
  object-position: center center;
}
/* Mystery / TBA artist card */
.artist-mystery {
  flex-shrink: 0;
  width: 240px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(114, 134, 245, 0.25);
  position: relative;
  cursor: default;
  background: linear-gradient(145deg, #08091e 0%, #0e1030 60%, #08091e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.artist-mystery:hover {
  border-color: rgba(114, 134, 245, 0.5);
}
/* animated shimmer border */
.artist-mystery::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(114, 134, 245, 0.15) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  animation: shimmer 4s ease infinite;
}
@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.mystery-event-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  font-family: "Days One", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kyo-blue);
  text-align: center;
}
.mystery-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
}
.mystery-qs {
  font-family: "Days One", sans-serif;
  font-size: 64px;
  color: rgba(114, 134, 245, 0.15);
  line-height: 1;
  letter-spacing: -4px;
}
.mystery-label {
  font-family: "Days One", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(241, 241, 241, 0.5);
  text-align: center;
}
.mystery-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(114, 134, 245, 0.5);
  text-align: center;
}

/* ─── OPPORTUNITIES SECTION ─── */
#opportunities {
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.opp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 52px;
}
.opp-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 90px;
  margin-bottom: 28px;
}
.opp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.opp-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.opp-text-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.otc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.2s;
}
.otc:hover {
  border-color: var(--kyo-blue);
}
.otc-icon {
  font-size: 20px;
  margin-bottom: 8px;
}
.otc-title {
  font-family: "Days One", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.otc-body {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(241, 241, 241, 0.6);
}
.otc-vip {
  grid-row: span 2;
}
.otc-vip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9.66px 18.33px 10.51px;
  background: #d3cd250f;
  border: 1px solid #d3962559;
  border-radius: 24px;
  color: #d3b925;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
}
.otc-vip-btn:hover {
  border-color: #d3b925;
  background: rgba(211, 185, 37, 0.15);
}
@media (max-width: 900px) {
  .opp-layout {
    grid-template-columns: 1fr;
  }
  .opp-img-wrap {
    position: static;
    height: auto;
    aspect-ratio: 334 / 175.34;
    margin-bottom: 0;
  }
  .otc-vip-btn {
    font-size: 12px;
    padding: 9.66px 12px 10.51px;
  }
}

/* ─── Press / Media cards ─── */
.press-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.press-card:hover {
  border-color: var(--kyo-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(114, 134, 245, 0.13);
}
/* Outlet logo strip */
.pc-logo-strip {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pc-logo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ST monogram */
.pc-st-mono {
  width: 34px;
  height: 34px;
  background: #c0392b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.pc-tia-logo {
  background: #e67e22;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 9px;
  border-radius: 4px;
  text-transform: lowercase;
  flex-shrink: 0;
}
.pc-expo-logo {
  background: #27ae60;
  color: #fff;
  font-family: "Days One", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pc-outlet-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(241, 241, 241, 0.5);
  letter-spacing: 0.3px;
}
/* Card body */
.pc-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-tag {
  font-family: "Days One", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pc-headline {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 16px;
  flex: 1;
}
.pc-excerpt {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(128, 144, 184, 0.65);
  margin-bottom: 14px;
}
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pc-read {
  font-size: 12px;
  font-weight: 700;
  color: var(--kyo-blue);
  letter-spacing: 0.3px;
}
.pc-read:hover {
  color: var(--kyo-blue-light);
}
.pc-date {
  font-size: 10px;
  color: rgba(128, 144, 184, 0.45);
  font-weight: 500;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--navy);
}
#gallery .section-title {
  padding-bottom: 12px;
}
.gal-title-break {
  display: none;
}
.why-title-break {
  display: none;
}
.gal-unified {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: stretch;
}
.gal-viewer {
  flex: 1 1 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  min-width: 0;
  height: 624px;
}
.gal-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gal-thumbs {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.gal-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 190px);
  grid-auto-rows: 120px;
  gap: 6px;
  height: 624px;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  border-radius: 12px;
}
.gal-thumb-grid::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.gal-thumb-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
.gal-thumb-grid::-webkit-scrollbar-thumb {
  background: var(--kyo-blue);
  border-radius: 2px;
}
.gal-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition:
    border-color 0.2s,
    transform 0.2s;
  scroll-snap-align: start;
}
.gal-thumb:hover {
  transform: scale(1.03);
}
.gal-thumb.active {
  border-color: var(--kyo-blue);
}
.gal-lbl {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(6, 9, 26, 0.72);
  backdrop-filter: blur(4px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kyo-blue-light);
  padding: 3px 8px;
  border-radius: 4px;
}
/* Video */
.gal-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.gal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.car-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.car-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.car-btn:hover {
  border-color: var(--kyo-blue);
  color: var(--kyo-blue);
}
#galPrevBtn::before {
  content: "↑";
}
#galNextBtn::before {
  content: "↓";
}

/* ─── CTA FINAL ─── */
#cta-final {
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 32px;
}
.cta-eyebrow {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--kyo-blue);
  margin-bottom: 18px;
}
.cta-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cta-vendor-btn {
  display: block;
  max-width: 775px;
  margin: 0 auto 36px;
  background: var(--card);
  color: var(--kyo-blue-light);
  font-family: "Days One", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 22px 40px;
  border: 1px solid var(--kyo-blue);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-vendor-btn:hover {
  background: var(--kyo-blue);
  color: var(--ink);
}
.cta-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.cta-body a {
  color: var(--muted);
  text-decoration: none;
}
.cta-body a:hover {
  color: var(--kyo-blue-light);
}

/* ─── FOOTER ─── */
#footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img {
  width: 100.8px;
  height: 32.2px;
}
.footer-dates {
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
}
.footer-links a:hover {
  color: var(--kyo-blue-light);
}
.footer-copy {
  font-size: 11px;
  color: rgba(128, 144, 184, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-cta-bar {
    padding: 20px 24px;
  }
  .hero-cta-inner {
    gap: 10px;
  }
  .hero-signup-btn,
  .hero-wa-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hstat {
    padding: 12px 8px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hstat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .hstat-n {
    font-size: 18px;
  }
  .hero-slogan {
    padding: 12px 20px;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 2px;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-img {
    min-height: 280px;
    min-width: 0;
    order: 2;
  }
  .split-content {
    padding: 48px 24px;
    min-width: 0;
    order: 1;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 24px 16px;
    min-width: 0;
  }
  .bundle-inner {
    grid-template-columns: 1fr;
  }
  .gal-title-break {
    display: inline;
  }
  .why-title-break {
    display: inline;
  }
  .gal-unified {
    flex-direction: column;
  }
  .gal-viewer {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 586/624;
  }
  .gal-thumb-grid {
    display: flex;
    grid-auto-rows: unset;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    min-height: 48px;
  }
  .gal-thumb-grid .gal-thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 48px;
    scroll-snap-align: start;
  }
  #galPrevBtn::before {
    content: "←";
  }
  #galNextBtn::before {
    content: "→";
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 32px 12px;
    min-width: 0;
  }
  .stat-num {
    font-size: 40px;
  }
  .container {
    padding: 0 24px;
  }
  #nav {
    padding: 0 20px;
  }
  .nav-cta-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6, 9, 26, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
  }
  .nav-links-cta {
    display: block;
    padding: 8px 24px 14px;
  }
  .nav-links-cta .nav-cta {
    display: block;
    text-align: center;
    padding: 10px 22px;
  }
  .cta-eyebrow {
    display: block;
  }
  .cta-body {
    font-size: 14px;
  }
}
