@font-face {
  font-family: "Gully Light";
  src: url("./fonts/otf/Gully-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gully Regular";
  src: url("./fonts/otf/Gully-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gully Medium";
  src: url("./fonts/otf/Gully-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gully ECD SemiBold";
  src: url("./fonts/otf/Gully-ECDSemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07070b;
  --bg-2: #0d1020;
  --panel: rgba(13, 16, 32, 0.88);
  --panel-2: rgba(16, 20, 40, 0.96);
  --text: #f8fafc;
  --muted: #b6c2d1;
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --accent-3: #ec4899;
  --line: rgba(182, 194, 209, 0.16);
  --nav-h: clamp(68px, 9vh, 86px);
  --nav-offset: clamp(18px, 3vw, 30px);
  --section-space-x: clamp(24px, 6vw, 72px);
  --section-space-y: clamp(56px, 9vw, 104px);
  --section-space-y-compact: clamp(40px, 6vw, 76px);
  --section-shell-gap: clamp(24px, 4vw, 36px);
  --section-head-gap: clamp(0.85rem, 1.8vw, 1.15rem);
  --font-eyebrow: "Gully Light", "Segoe UI", sans-serif;
  --font-title: "Gully ECD SemiBold", "Segoe UI", sans-serif;
  --font-subtitle: "Gully Medium", "Segoe UI", sans-serif;
  --font-body: "Gully Regular", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1000px 600px at 10% 10%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(34, 211, 238, 0.14) 0%, transparent 55%),
    radial-gradient(800px 620px at 50% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow-x: clip;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(900px 620px at 20% 18%, rgba(124, 58, 237, 0.24) 0%, transparent 58%),
    radial-gradient(860px 620px at 82% 20%, rgba(34, 211, 238, 0.2) 0%, transparent 56%),
    radial-gradient(780px 560px at 50% 100%, rgba(236, 72, 153, 0.16) 0%, transparent 60%),
    rgba(7, 7, 11, 0.96);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  text-align: center;
}

.page-loader-mark {
  display: grid;
  place-items: center;
  min-width: 132px;
  min-height: 132px;
}

.page-loader-kicker,
.page-loader-copy {
  margin: 0;
}

.page-loader-kicker {
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-eyebrow);
}

.page-loader-copy {
  color: rgba(214, 225, 240, 0.72);
  font-size: 0.94rem;
  line-height: 1.4;
  font-family: var(--font-subtitle);
}

.loader-borahae {
  --color-one: #7c3aed;
  --color-two: #22d3ee;
  --color-three: rgba(124, 58, 237, 0.42);
  --color-four: rgba(34, 211, 238, 0.34);
  --color-five: rgba(236, 72, 153, 0.26);
  --time-animation: 2s;
  --size: 1;
  position: relative;
  border-radius: 50%;
  transform: scale(var(--size));
  box-shadow:
    0 0 25px 0 var(--color-three),
    0 20px 50px 0 var(--color-four);
  animation: borahaeLoaderColorize calc(var(--time-animation) * 3) ease-in-out infinite;
}

.loader-borahae::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-top: solid 1px var(--color-one);
  border-bottom: solid 1px var(--color-two);
  background: linear-gradient(180deg, var(--color-five), var(--color-four));
  box-shadow:
    inset 0 10px 10px 0 var(--color-three),
    inset 0 -10px 10px 0 var(--color-four);
}

.loader-borahae .box {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, var(--color-one) 24%, var(--color-two) 76%);
  mask: url(#borahaeLoaderClip);
  -webkit-mask: url(#borahaeLoaderClip);
}

.loader-borahae svg {
  position: absolute;
}

.loader-borahae svg #borahaeLoaderClip {
  filter: contrast(15);
  animation: borahaeLoaderRoundness calc(var(--time-animation) / 2) linear infinite;
}

.loader-borahae svg #borahaeLoaderClip polygon {
  filter: blur(7px);
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(1) {
  transform-origin: 75% 25%;
  transform: rotate(90deg);
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(2) {
  transform-origin: 50% 50%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite reverse;
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(3) {
  transform-origin: 50% 60%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite;
  animation-delay: calc(var(--time-animation) / -3);
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(4) {
  transform-origin: 40% 40%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite reverse;
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(5) {
  transform-origin: 40% 40%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite reverse;
  animation-delay: calc(var(--time-animation) / -2);
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(6) {
  transform-origin: 60% 40%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite;
}

.loader-borahae svg #borahaeLoaderClip polygon:nth-child(7) {
  transform-origin: 60% 40%;
  animation: borahaeLoaderRotation var(--time-animation) linear infinite;
  animation-delay: calc(var(--time-animation) / -1.5);
}

@keyframes borahaeLoaderRotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes borahaeLoaderRoundness {
  0% {
    filter: contrast(15);
  }
  20% {
    filter: contrast(3);
  }
  40% {
    filter: contrast(3);
  }
  60% {
    filter: contrast(15);
  }
  100% {
    filter: contrast(15);
  }
}

@keyframes borahaeLoaderColorize {
  0% {
    filter: hue-rotate(0deg);
  }
  20% {
    filter: hue-rotate(-16deg);
  }
  40% {
    filter: hue-rotate(10deg);
  }
  60% {
    filter: hue-rotate(24deg);
  }
  80% {
    filter: hue-rotate(-12deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

html {
  background: var(--bg);
  overflow-x: clip;
}

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

a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 100svh;
  min-height: 100dvh;
  height: 100svh;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  --hero-pad: clamp(18px, 5vw, 56px);
  padding:
    calc(var(--hero-pad) + var(--nav-h) + var(--nav-offset) + env(safe-area-inset-top))
    calc(var(--hero-pad) + env(safe-area-inset-right))
    calc(var(--hero-pad) + env(safe-area-inset-bottom))
    calc(var(--hero-pad) + env(safe-area-inset-left));
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: -4;
}

.hero::before {
  content: none;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-image-position, center);
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 5.6s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-slide.is-active[data-hero-target] {
  pointer-events: auto;
  cursor: none;
}

.hero-timer-ring {
  position: absolute;
  top: calc(var(--nav-h) + clamp(18px, 4vw, 34px));
  left: clamp(18px, 4vw, 36px);
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f8fafc;
  pointer-events: none;
  background: rgba(7, 10, 20, 0.26);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-timer-ring::before {
  content: none;
}

.hero-timer-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero-timer-ring-track,
.hero-timer-ring-progress {
  fill: none;
  stroke-width: 4;
}

.hero-timer-ring-track {
  stroke: rgba(248, 250, 252, 0.14);
}

.hero-timer-ring-progress {
  stroke: url(#heroTimerRingGradient);
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.14)) drop-shadow(0 0 14px rgba(34, 211, 238, 0.18));
}

.hero-timer-ring.is-animating .hero-timer-ring-progress {
  animation: heroTimerCountdown var(--hero-autoplay-duration, 6500ms) linear forwards;
}

@keyframes heroTimerCountdown {
  from {
    stroke-dashoffset: 264;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-3);
  margin-bottom: 0;
  transition: opacity 0.35s ease;
  font-family: var(--font-eyebrow);
}

.eyebrow-with-gif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.eyebrow-gif {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

h1 {
  font-size: clamp(2.05rem, 3.9vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 1px;
  margin: 0;
  color: var(--text);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-family: var(--font-title);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.35rem;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.3rem 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-family: var(--font-body);
}

button {
  font: inherit;
  border: 0;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
}

button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

a.primary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-carousel-ui {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 6vw, 56px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 10, 20, 0.26);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(248, 250, 252, 0.26);
  box-shadow: none;
  opacity: 0.72;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.hero-carousel-dot.is-active {
  width: 26px;
  opacity: 1;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 18px rgba(34, 211, 238, 0.18);
}

button.primary,
a.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  color: var(--text);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 12px 24px rgba(5, 7, 16, 0.32),
    0 18px 42px rgba(124, 58, 237, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

button.ghost,
a.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(248, 250, 252, 0.04);
  border: 1px solid rgba(182, 194, 209, 0.16);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

button.primary:hover,
a.primary:hover,
button.ghost:hover,
a.ghost:hover {
  transform: translateY(-1px);
}

button.primary:hover,
a.primary:hover {
  background: #6d28d9;
  box-shadow:
    0 14px 28px rgba(5, 7, 16, 0.38),
    0 20px 44px rgba(34, 211, 238, 0.18);
}

button.ghost:hover,
a.ghost:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.35);
}

.btn-dark,
.btn-info {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  box-shadow:
    0 10px 22px rgba(5, 7, 16, 0.34),
    0 16px 34px rgba(124, 58, 237, 0.18);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-info:hover,
.btn-info:focus {
  background: #6d28d9;
  border-color: #6d28d9;
  color: var(--text);
  box-shadow:
    0 12px 24px rgba(5, 7, 16, 0.4),
    0 18px 38px rgba(34, 211, 238, 0.16);
}

.btn-outline-info {
  color: var(--accent-2);
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.05);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
  color: var(--bg);
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.22);
}

.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(7, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.hero-nav .container {
  min-height: var(--nav-h);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.hero-nav .nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(248, 250, 252, 0.06);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.hero-nav .nav-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform 0.1s linear;
}

.hero-nav.is-sticky .nav-progress {
  opacity: 1;
}

.hero-nav .navbar-brand,
.hero-nav .nav-link {
  color: #ffffff;
}

.hero-nav .nav-link {
  opacity: 0.85;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  transition: opacity 0.2s ease;
}

.hero-nav .navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  padding-left: 4.3rem;
  font-size: 1.05rem;
}

.navbar-brand-gif {
  position: absolute;
  left: 0;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  object-fit: contain;
  flex: 0 0 auto;
  pointer-events: none;
}

.hero-nav .nav-link:hover,
.hero-nav .nav-link:focus {
  opacity: 1;
  text-decoration: none;
}

.hero-nav .nav-link.is-active {
  opacity: 1;
  color: var(--accent-2);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.22);
}

.hero-nav .navbar-toggler {
  border-color: rgba(182, 194, 209, 0.45);
}

.hero-nav .navbar-toggler:focus {
  box-shadow: none;
}

.home-loading .navbar-brand-gif,
.home-loading .eyebrow-gif,
.home-loading .ideas-cover,
.home-loading .ideas-avatar,
.home-loading .download-qr {
  opacity: 0.16;
}

.home-loading .hero-nav .navbar-brand span,
.home-loading .hero-nav .nav-link,
.home-loading .auth-google-btn,
.home-loading .stadium-head .eyebrow span,
.home-loading .stadium-head h2,
.home-loading .stadium-head > p,
.home-loading .stadium-effect-trigger,
.home-loading .stadium-selected-label,
.home-loading .stadium-selected h3,
.home-loading .stadium-phone-caption,
.home-loading .faq-head .eyebrow span,
.home-loading .faq-head h2,
.home-loading .faq-head > p,
.home-loading .ideas-head .eyebrow span,
.home-loading .ideas-head h2,
.home-loading .ideas-head > p,
.home-loading .ideas-song,
.home-loading .ideas-meta,
.home-loading .ideas-status,
.home-loading .ideas-button,
.home-loading .main-inner > .eyebrow span,
.home-loading .main-inner > h2,
.home-loading .main-intro,
.home-loading .download-copy,
.home-loading .download-store,
.home-loading .download-note {
  position: relative;
  color: transparent !important;
  overflow: hidden;
  border-color: transparent !important;
  text-shadow: none !important;
}

.home-loading .hero-nav .navbar-brand span::after,
.home-loading .hero-nav .nav-link::after,
.home-loading .auth-google-btn::after,
.home-loading .stadium-head .eyebrow span::after,
.home-loading .stadium-head h2::after,
.home-loading .stadium-head > p::after,
.home-loading .stadium-effect-trigger::after,
.home-loading .stadium-selected-label::after,
.home-loading .stadium-selected h3::after,
.home-loading .stadium-phone-caption::after,
.home-loading .faq-head .eyebrow span::after,
.home-loading .faq-head h2::after,
.home-loading .faq-head > p::after,
.home-loading .ideas-head .eyebrow span::after,
.home-loading .ideas-head h2::after,
.home-loading .ideas-head > p::after,
.home-loading .ideas-song::after,
.home-loading .ideas-meta::after,
.home-loading .ideas-status::after,
.home-loading .ideas-button::after,
.home-loading .main-inner > .eyebrow span::after,
.home-loading .main-inner > h2::after,
.home-loading .main-intro::after,
.home-loading .download-copy::after,
.home-loading .download-store::after,
.home-loading .download-note::after,
.home-loading .ideas-avatar-more::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  background-size: 220% 100%;
  animation: homeSkeleton 1.25s ease-in-out infinite;
}

.home-loading .stadium-head h2::after,
.home-loading .faq-head h2::after,
.home-loading .ideas-head h2::after,
.home-loading .main-inner > h2::after,
.home-loading .download-copy::after {
  border-radius: 14px;
}

.home-loading .stadium-canvas-wrap::after,
.home-loading .stadium-phone-screen::after,
.home-loading .faq-accordion .accordion-item::after,
.home-loading .ideas-row::after,
.home-loading .download-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  background-size: 220% 100%;
  animation: homeSkeleton 1.25s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

.home-loading .stadium-canvas-wrap,
.home-loading .stadium-phone-screen,
.home-loading .faq-accordion .accordion-item,
.home-loading .ideas-row,
.home-loading .download-card {
  position: relative;
  overflow: hidden;
}

.home-loading .ideas-people {
  opacity: 0.28;
}

.home-loading .auth-google-btn i,
.home-loading .ideas-button,
.home-loading .download-store i {
  pointer-events: none;
}

@keyframes homeSkeleton {
  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -60% 0;
  }
}

.auth-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 1rem;
}

.auth-google-btn,
.auth-user {
  min-height: 42px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.85rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.auth-google-btn:hover,
.auth-google-btn:focus-visible,
.auth-user:hover {
  background: rgba(248, 250, 252, 0.13);
  border-color: rgba(34, 211, 238, 0.44);
}

.auth-google-btn:disabled,
.auth-signout:disabled {
  cursor: wait;
  opacity: 0.68;
}

.auth-user {
  padding: 0.28rem 0.34rem 0.28rem 0.34rem;
  overflow: hidden;
}

.auth-user.is-hidden,
.auth-google-btn.is-hidden {
  display: none;
}

.auth-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-size: 0.86rem;
  font-weight: 900;
  overflow: hidden;
}

.auth-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.auth-name {
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.auth-signout {
  min-height: 32px;
  border: 0;
  border-left: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: rgba(248, 250, 252, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin-left: 0;
  padding: 0.32rem 0.62rem 0.32rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.auth-signout:hover,
.auth-signout:focus-visible {
  background: rgba(236, 72, 153, 0.16);
  border-color: rgba(236, 72, 153, 0.18);
  color: #ffffff;
}

.auth-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.auth-toast-container {
  z-index: 1080;
  padding-top: calc(var(--nav-h) + 76px) !important;
  pointer-events: none;
}

.auth-toast {
  --auth-toast-duration: 4200ms;
  --auth-toast-slide-distance: calc(100% + 36px);
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(248, 250, 252, 0.12) !important;
  border-radius: 12px;
  background: rgba(12, 15, 25, 0.96) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--auth-toast-slide-distance), 0, 0);
  will-change: transform, opacity;
}

.auth-toast.is-entering {
  pointer-events: auto;
  animation: authToastEnter 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-toast.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.auth-toast.is-exiting {
  pointer-events: none;
  animation: authToastExit 0.28s ease-in both;
}

.auth-toast-header {
  background: transparent;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  color: #ffffff;
}

.auth-toast-icon {
  margin-right: 0.55rem;
  color: var(--accent-2);
}

.auth-toast-progress {
  display: none;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
}

.auth-toast.has-progress .auth-toast-progress {
  display: block;
}

.auth-toast.show.has-progress .auth-toast-progress {
  animation: authToastProgress var(--auth-toast-duration) linear forwards;
}

.auth-toast.is-persistent .auth-toast-progress,
.auth-toast:not(.has-progress) .auth-toast-progress {
  animation: none;
  transform: scaleX(0);
}

@keyframes authToastProgress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes authToastEnter {
  from {
    opacity: 0;
    transform: translate3d(var(--auth-toast-slide-distance), 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes authToastExit {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(var(--auth-toast-slide-distance), 0, 0);
  }
}

.ideas-section,
.community-section,
.faq-section,
.main-section,
.stadium-section,
.how-section {
  margin: var(--section-space-y) var(--section-space-x) 0;
  scroll-margin-top: calc(var(--nav-h) + var(--nav-offset) + 20px);
}

.faq-section,
.community-section,
.ideas-section,
.how-section,
.main-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.ideas-shell {
  display: grid;
  gap: var(--section-shell-gap);
}

.community-shell {
  display: grid;
  gap: var(--section-shell-gap);
}

.community-head {
  display: grid;
  gap: var(--section-head-gap);
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.community-head h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 2px;
  color: var(--text);
  text-align: center;
  font-family: var(--font-title);
}

.community-head > p:last-child {
  margin: clamp(0.45rem, 1vw, 0.75rem) 0 0;
  color: rgba(230, 235, 247, 0.78);
  font-family: var(--font-subtitle);
}

.community-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.community-embed-raw {
  justify-self: center;
  width: min(100%, 520px);
  min-width: 0;
  height: 760px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}

.community-embed-raw .twitter-tweet,
.community-embed-raw .instagram-media,
.community-embed-raw .fb-post,
.community-embed-raw iframe {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.community-embed-raw .twitter-tweet,
.community-embed-instagram .instagram-media,
.community-embed-facebook iframe {
  display: block;
  border-radius: 14px;
  background: #ffffff;
}

.community-embed-raw .twitter-tweet {
  height: calc(100% - 2px);
}

.community-embed-facebook iframe {
  height: calc(100% - 24px);
}

.social-embed-placeholder {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px dashed rgba(182, 194, 209, 0.16);
  background:
    radial-gradient(110% 110% at 18% 0%, rgba(124, 58, 237, 0.14), transparent 52%),
    radial-gradient(110% 110% at 82% 12%, rgba(34, 211, 238, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.025);
  color: rgba(230, 235, 247, 0.82);
  text-align: center;
}

.social-embed-placeholder strong {
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-title);
}

.social-embed-placeholder p {
  margin: 0;
  color: rgba(214, 221, 235, 0.72);
  font-family: var(--font-subtitle);
}

.social-embed-placeholder.is-live {
  min-height: unset;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.social-embed-widget {
  width: 100%;
}

.community-embed-raw blockquote.twitter-tweet,
.community-embed-raw .instagram-media,
.community-embed-raw .fb-post {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.community-embed-raw .fb-post > span,
.community-embed-raw .fb-post iframe {
  width: 100% !important;
}

.ideas-head {
  display: grid;
  gap: var(--section-head-gap);
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.ideas-head h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 2px;
  color: var(--text);
  text-align: center;
  font-family: var(--font-title);
}

.ideas-head > p:last-child {
  margin: clamp(0.45rem, 1vw, 0.75rem) 0 0;
  color: rgba(230, 235, 247, 0.78);
  font-family: var(--font-subtitle);
}

.ideas-board {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    radial-gradient(120% 120% at 12% 0%, rgba(124, 58, 237, 0.16), transparent 48%),
    radial-gradient(120% 120% at 88% 8%, rgba(34, 211, 238, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.82), rgba(7, 11, 23, 0.9));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ideas-board-head,
.ideas-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 160px) minmax(112px, 132px) 140px;
  align-items: center;
  gap: 1rem;
}

.ideas-board-head {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(182, 194, 209, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 221, 235, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ideas-list {
  display: grid;
  counter-reset: ideas-row;
}

.ideas-row {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(182, 194, 209, 0.08);
  counter-increment: ideas-row;
}

.ideas-row:last-child {
  border-bottom: 0;
}

.ideas-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.ideas-song-copy {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-areas:
    "cover song"
    "cover meta";
  column-gap: 0.9rem;
  row-gap: 0.24rem;
  min-height: 56px;
  align-items: center;
}

.ideas-song-copy::before {
  content: counter(ideas-row, decimal-leading-zero);
  position: absolute;
  top: -0.35rem;
  left: -0.4rem;
  z-index: 2;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.96), rgba(34, 211, 238, 0.88));
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.24);
}

.ideas-cover {
  grid-area: cover;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(182, 194, 209, 0.16);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  background: rgba(255, 255, 255, 0.05);
}

.ideas-song {
  grid-area: song;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ideas-meta {
  grid-area: meta;
  color: rgba(214, 221, 235, 0.64);
  font-size: 0.84rem;
  line-height: 1.35;
}

.ideas-status {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(182, 194, 209, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(233, 239, 250, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ideas-status-post-title {
  max-width: 100%;
  justify-self: stretch;
  letter-spacing: 0.01em;
  font-family: var(--font-title);
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ideas-people {
  display: flex;
  align-items: center;
  justify-self: start;
  min-height: 40px;
}

.ideas-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(7, 7, 11, 0.78);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.ideas-avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.86));
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ideas-avatar + .ideas-avatar {
  margin-left: -10px;
}

.ideas-avatar-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.86));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ideas-button {
  width: auto;
  min-width: 138px;
  padding: 0.72rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  justify-self: end;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(34, 211, 238, 0.82));
  border: 0;
  font-weight: 800;
  white-space: nowrap;
  box-shadow:
    0 10px 24px rgba(5, 7, 16, 0.28),
    0 14px 28px rgba(124, 58, 237, 0.2);
  appearance: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.ideas-button::after {
  content: "👉";
  font-size: 1rem;
  line-height: 1;
}

.ideas-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 12px 26px rgba(5, 7, 16, 0.34),
    0 18px 34px rgba(34, 211, 238, 0.18);
}

.main-section {
  padding: 0;
  background: transparent;
}

.main-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: var(--section-shell-gap);
  justify-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 980px);
  margin: 0 auto;
  gap: 1.6rem;
}

.stadium-shell {
  display: grid;
  gap: var(--section-shell-gap);
}

.stadium-head {
  display: grid;
  gap: var(--section-head-gap);
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.stadium-head h2,
.how-head h2,
.hero-title {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 2px;
  color: var(--text);
  text-align: center;
  font-family: var(--font-title);
}

.title-with-gif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.title-inline-gif {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.stadium-head > p:last-child {
  margin: clamp(0.45rem, 1vw, 0.75rem) 0 0;
  color: rgba(230, 235, 247, 0.78);
  font-family: var(--font-subtitle);
}

.how-shell {
  display: grid;
  gap: var(--section-shell-gap);
}

.how-head {
  display: grid;
  gap: var(--section-head-gap);
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.how-head > p:last-child {
  margin: clamp(0.45rem, 1vw, 0.75rem) 0 0;
  color: rgba(230, 235, 247, 0.78);
  font-family: var(--font-subtitle);
}

.how-carousel {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 28px;
  border: 1px solid rgba(182, 194, 209, 0.1);
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(124, 58, 237, 0.14), transparent 48%),
    radial-gradient(120% 120% at 85% 6%, rgba(34, 211, 238, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.52), rgba(7, 11, 23, 0.62));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(10px);
}

.how-carousel .carousel-inner {
  min-height: 500px;
}

.how-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 0 clamp(8px, 1.6vw, 14px);
}

.how-slide {
  min-height: 500px;
  height: 500px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(220px, 236px);
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(16px, 2vw, 24px) clamp(38px, 4vw, 56px) clamp(28px, 3vw, 40px);
}

.how-slide-message {
  grid-template-columns: minmax(320px, 500px) minmax(380px, 520px);
}

.how-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 500px;
  justify-self: center;
}

.how-step {
  margin: 0;
  color: rgba(167, 243, 208, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-eyebrow);
}

.how-copy h3 {
  margin: 0;
  color: #f4f7ff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.how-copy p:last-child {
  margin: 0;
  color: rgba(224, 231, 245, 0.76);
  max-width: 38ch;
  font-family: var(--font-subtitle);
}

.how-phone-shell {
  justify-self: center;
  width: min(100%, 236px);
  padding-top: 0;
}

.how-phone-content {
  position: relative;
  height: 100%;
  padding: 1rem 0.95rem 1.1rem;
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
}

.how-phone-content-download {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(124, 58, 237, 0.18), transparent 46%),
    linear-gradient(180deg, #0c1324, #070c17);
}

.how-phone-content-sector {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(34, 211, 238, 0.16), transparent 46%),
    linear-gradient(180deg, #081220, #070c17);
}

.how-phone-content-live {
  place-items: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(201, 160, 255, 0.34), transparent 34%),
    linear-gradient(180deg, #0b1020, #060a13);
}

.how-phone-content-timeline {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(125, 211, 252, 0.16), transparent 46%),
    linear-gradient(180deg, #081220, #070c17);
}

.how-phone-content-volume {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(250, 204, 21, 0.18), transparent 44%),
    linear-gradient(180deg, #15100a, #090c15);
}

.how-phone-content-scroll {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(74, 222, 128, 0.15), transparent 46%),
    linear-gradient(180deg, #08131f, #070c17);
}

.how-phone-content-message {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(201, 160, 255, 0.18), transparent 46%),
    linear-gradient(180deg, #0b1020, #070c17);
}

.how-phone-content-free {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(236, 72, 153, 0.16), transparent 46%),
    linear-gradient(180deg, #110d1d, #070c17);
}

.how-phone-content-manual {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(34, 211, 238, 0.16), transparent 46%),
    linear-gradient(180deg, #07121d, #070c17);
}

.how-phone-app-chip,
.how-phone-button {
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.how-phone-button {
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.82), rgba(34, 211, 238, 0.82));
  justify-self: start;
}

.how-phone-select,
.how-phone-callout,
.how-phone-vertical-tag {
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.how-phone-card {
  display: grid;
  gap: 0.32rem;
  padding: 0.95rem 0.9rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.how-phone-card strong {
  color: #f8fbff;
  font-size: 1rem;
}

.how-phone-card-label,
.how-phone-card-meta {
  color: rgba(220, 228, 242, 0.72);
  font-size: 0.78rem;
  line-height: 1.4;
}

.how-phone-list {
  display: grid;
  gap: 0.5rem;
}

.how-phone-list-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.how-phone-list-item strong {
  color: #f8fbff;
  font-size: 0.9rem;
}

.how-phone-list-item span {
  color: rgba(220, 228, 242, 0.7);
  font-size: 0.74rem;
  line-height: 1.35;
}

.how-phone-list-item.is-active {
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.14));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.how-phone-mini-map {
  position: relative;
  width: 100%;
  height: 42%;
  min-height: 140px;
  border-radius: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(34, 211, 238, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.94), rgba(8, 12, 23, 0.96));
  overflow: hidden;
}

.how-phone-mini-map-field {
  position: absolute;
  inset: 22% 20%;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.56);
  box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.06);
}

.how-phone-mini-map-seat {
  position: absolute;
  width: 28%;
  height: 18%;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.82);
}

.how-phone-mini-map-seat-a {
  top: 12%;
  left: 10%;
}

.how-phone-mini-map-seat-b {
  top: 12%;
  right: 10%;
}

.how-phone-mini-map-seat-c {
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.how-phone-live-glow {
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 10%, rgba(201, 160, 255, 0.92) 22%, rgba(124, 58, 237, 0.88) 46%, rgba(34, 211, 238, 0.42) 68%, transparent 78%);
  filter: blur(2px) drop-shadow(0 0 28px rgba(124, 58, 237, 0.36));
}

.how-phone-live-copy {
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.how-phone-live-copy strong {
  color: #f8fbff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.08em;
}

.how-phone-scroll-hint {
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.how-phone-scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(220, 228, 242, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
}

.how-phone-message-column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.85rem;
  min-height: 86px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-phone-message-column span {
  color: #f8fbff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-landscape-phone-wrap {
  justify-self: center;
  width: min(100%, 440px);
}

.how-landscape-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 11;
  padding: 14px;
  border-radius: 42px;
  border: 1px solid rgba(183, 198, 218, 0.16);
  background:
    linear-gradient(180deg, rgba(32, 42, 68, 0.98), rgba(10, 15, 28, 0.98));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 32px rgba(34, 211, 238, 0.1);
}

.how-landscape-phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.how-landscape-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.04));
  mix-blend-mode: screen;
  pointer-events: none;
}

.how-landscape-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  padding: 1rem 1.15rem 1rem 4.25rem;
  display: grid;
  align-content: space-between;
  gap: 0.85rem;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(201, 160, 255, 0.18), transparent 46%),
    linear-gradient(180deg, #0b1020, #070c17);
}

.how-landscape-camera {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 96px;
  padding: 14px 0;
  border-radius: 999px;
  background: rgba(8, 12, 23, 0.94);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.how-landscape-speaker {
  width: 4px;
  height: 36px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
}

.how-landscape-lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(125, 211, 252, 0.82), rgba(10, 15, 30, 0.3) 44%, rgba(8, 12, 23, 0.98) 72%);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.16);
}

.how-landscape-side {
  position: absolute;
  top: -3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(61, 74, 110, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.how-landscape-side-top {
  left: 110px;
  width: 52px;
}

.how-landscape-side-bottom {
  left: 178px;
  width: 84px;
}

.how-landscape-status {
  width: fit-content;
  max-width: 100%;
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.how-landscape-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 0.8rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

.how-landscape-note {
  display: grid;
  gap: 0.32rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.how-landscape-note-label,
.how-landscape-note-copy {
  color: rgba(220, 228, 242, 0.8);
  font-size: 0.82rem;
  line-height: 1.45;
}

.how-landscape-note-label {
  color: #f4f7ff;
  font-weight: 700;
}

.how-phone-palette {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.how-phone-swatch {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.how-phone-swatch-a {
  background: #7c3aed;
}

.how-phone-swatch-b {
  background: #22d3ee;
}

.how-phone-swatch-c {
  background: #f9a8d4;
}

.how-phone-swatch-d {
  background: #0cb7f2;
}

.how-phone-swatch-e {
  background: #fed353;
}

.how-phone-swatch-f {
  background: #c084fc;
}

.how-phone-frame-volume .stadium-phone-side {
  right: -4px;
  width: 5px;
  background:
    linear-gradient(180deg, rgba(254, 211, 83, 0.96), rgba(246, 167, 0, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 14px rgba(254, 211, 83, 0.32);
}

.how-phone-frame-volume .stadium-phone-side-top,
.how-phone-frame-volume .stadium-phone-side-bottom {
  animation: howVolumePulse 1.4s ease-in-out infinite;
}

.how-indicators {
  position: static;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.how-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.how-indicators .active {
  background: rgba(167, 243, 208, 0.92);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.how-control {
  position: absolute;
  top: auto;
  bottom: clamp(18px, 3vw, 26px);
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  opacity: 1;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
  transform: none;
}

.how-control-shell {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(124, 58, 237, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(28, 38, 65, 0.96), rgba(10, 15, 29, 0.98));
  color: #eef4ff;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.how-control-shell i {
  font-size: 0.96rem;
}

.how-control:hover .how-control-shell {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.34);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(74, 222, 128, 0.12) inset,
    0 0 24px rgba(34, 211, 238, 0.12);
}

.how-control:focus-visible {
  outline: none;
}

.how-control:focus-visible .how-control-shell {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(74, 222, 128, 0.16) inset,
    0 0 0 4px rgba(74, 222, 128, 0.12);
}

.how-control-prev {
  left: calc(50% - 92px);
}

.how-control-next {
  left: calc(50% + 44px);
}

@keyframes howVolumePulse {
  0%, 100% {
    transform: scaleY(1);
    filter: brightness(1);
  }
  50% {
    transform: scaleY(1.08);
    filter: brightness(1.14);
  }
}

.stadium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(220px, 0.46fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: stretch;
}

.stadium-stage {
  display: grid;
  gap: 0;
  height: 100%;
}

.stadium-effect-bar {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  left: clamp(14px, 2vw, 20px);
  z-index: 20;
  display: grid;
  gap: 0.45rem;
  width: min(100%, 280px);
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(182, 194, 209, 0.1);
  background:
    linear-gradient(180deg, rgba(9, 14, 27, 0.9), rgba(8, 12, 24, 0.76));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(12px);
}

.stadium-effect-label {
  margin: 0;
  color: rgba(230, 235, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stadium-effect-picker {
  position: relative;
  min-width: min(100%, 250px);
}

.stadium-effect-trigger {
  width: 100%;
  min-width: 250px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(182, 194, 209, 0.14);
  background: linear-gradient(180deg, rgba(17, 24, 42, 0.96), rgba(10, 15, 29, 0.98));
  color: #f4f7ff;
  font: inherit;
  font-weight: 600;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stadium-effect-trigger:hover {
  border-color: rgba(74, 222, 128, 0.24);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.stadium-effect-trigger:focus-visible {
  outline: 2px solid rgba(74, 222, 128, 0.5);
  outline-offset: 3px;
}

.stadium-effect-trigger-label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.stadium-effect-trigger-label .stadium-effect-option-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 2px;
}

.stadium-effect-trigger i {
  font-size: 0.82rem;
  color: rgba(167, 243, 208, 0.86);
  transition: transform 0.2s ease;
}

.stadium-effect-picker.is-open .stadium-effect-trigger {
  border-color: rgba(74, 222, 128, 0.34);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(74, 222, 128, 0.12) inset;
}

.stadium-effect-picker.is-open .stadium-effect-trigger i {
  transform: rotate(180deg);
}

.stadium-effect-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  z-index: 21;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.45rem;
  width: clamp(340px, 46vw, 640px);
  max-width: min(calc(100vw - 48px), 640px);
  padding: 0.6rem;
  border-radius: 16px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    linear-gradient(180deg, rgba(13, 18, 34, 0.98), rgba(8, 12, 23, 0.98));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.stadium-effect-picker.is-open .stadium-effect-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stadium-effect-option {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(244, 247, 255, 0.88);
  font: inherit;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.stadium-effect-option-number {
  z-index: 2;
  width: 1.85rem;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.96), rgba(34, 211, 238, 0.88));
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.stadium-effect-option-number > span {
  display: block;
  transform: translateY(1px);
}

.stadium-effect-option-label {
  min-width: 0;
  letter-spacing: 1px;
}

.stadium-effect-option:hover,
.stadium-effect-option:focus-visible {
  background: rgba(124, 58, 237, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.stadium-effect-option[aria-selected="true"] {
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(124, 58, 237, 0.18));
  color: #ffffff;
}

.stadium-canvas-wrap {
  position: relative;
  height: auto;
  isolation: isolate;
}

.stadium-canvas-stage {
  position: relative;
  isolation: isolate;
}

.stadium-canvas-wrap.is-waiting #stadiumCanvas {
  filter: blur(8px) saturate(0.8) brightness(0.74);
  transform: scale(1.01);
}

.stadium-canvas-message {
  --stadium-effect-accent-a: #7c3aed;
  --stadium-effect-accent-b: #22d3ee;
  --stadium-effect-accent-c: #69e2b1;
  --stadium-effect-honeycomb-fill: color-mix(in srgb, var(--stadium-effect-accent-b) 68%, var(--stadium-effect-accent-c) 32%);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: min(100% - 48px, 392px);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    linear-gradient(180deg, rgba(9, 14, 27, 0.9), rgba(8, 12, 24, 0.82));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(12px);
  color: rgba(244, 247, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: grid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.stadium-canvas-message > span {
  display: block;
  max-width: none;
}

.stadium-canvas-message.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.stadium-selected {
  --stadium-effect-accent-a: #7c3aed;
  --stadium-effect-accent-b: #22d3ee;
  --stadium-effect-accent-c: #69e2b1;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  justify-items: center;
  height: 100%;
  padding: 1.2rem 1.15rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(182, 194, 209, 0.1);
  background:
    radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--stadium-effect-accent-b) 22%, transparent), transparent 54%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.5), rgba(7, 11, 23, 0.58));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(10px);
}

.stadium-selected-backdrop {
  display: none;
}

.stadium-selected-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(12, 18, 34, 0.82);
  color: #eef4ff;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.stadium-selected-close:hover,
.stadium-selected-close:focus-visible {
  background: rgba(18, 26, 46, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.03);
}

.stadium-floating-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: grid;
  gap: 0.55rem;
  width: min(320px, calc(100% - 28px));
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(182, 194, 209, 0.14);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(124, 58, 237, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(12, 18, 34, 0.96), rgba(7, 11, 22, 0.94));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(0, 0);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.stadium-floating-video.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stadium-floating-video,
.stadium-floating-video * {
  cursor: default;
}

.stadium-floating-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: move;
  user-select: none;
  touch-action: none;
}

.stadium-floating-video-head:active {
  cursor: move;
}

.stadium-floating-video-copy {
  display: grid;
  gap: 0.14rem;
}

.stadium-floating-video-label {
  margin: 0;
  color: rgba(167, 243, 208, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stadium-floating-video-title {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.stadium-floating-video-drag {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(230, 235, 247, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.stadium-floating-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(34, 211, 238, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(7, 11, 23, 0.96), rgba(4, 8, 17, 0.98));
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

#stadiumYoutubePlayer,
#stadiumYoutubePlayer iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.stadium-selected-label {
  margin: 0;
  color: rgba(167, 243, 208, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stadium-selected-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stadium-selected h3 {
  margin: 0;
  color: #f4f7ff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-family: var(--font-title);
  line-height: 1.08;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes stadiumCrystalSpin {
  from {
    transform: translate(-50%, -50%) rotateX(45deg) rotateZ(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(45deg) rotateZ(360deg);
  }
}

@keyframes stadiumCrystalEmerge {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes stadiumCrystalFadeIn {
  to {
    visibility: visible;
    opacity: 0.82;
  }
}

.stadium-message-honeycomb {
  position: relative;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  align-self: center;
  justify-self: center;
  transform: translateY(1px);
}

.stadium-message-crystal-loader {
  position: relative;
  width: 88px;
  height: 88px;
  perspective: 800px;
}

.stadium-message-crystal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom center;
  transform: translate(-50%, -50%) rotateX(45deg) rotateZ(0deg);
  animation:
    stadiumCrystalSpin 4s linear infinite,
    stadiumCrystalEmerge 2s ease-in-out infinite alternate,
    stadiumCrystalFadeIn 0.3s ease-out forwards;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-c) 90%, white 10%),
      color-mix(in srgb, var(--stadium-effect-accent-b) 82%, white 18%)
    );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.stadium-message-crystal:nth-child(1) {
  animation-delay: 0s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-c) 96%, white 4%),
      color-mix(in srgb, var(--stadium-effect-accent-b) 84%, white 16%)
    );
}

.stadium-message-crystal:nth-child(2) {
  animation-delay: 0.3s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-b) 74%, white 26%),
      color-mix(in srgb, var(--stadium-effect-accent-c) 82%, white 18%)
    );
}

.stadium-message-crystal:nth-child(3) {
  animation-delay: 0.6s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-c) 78%, white 22%),
      color-mix(in srgb, var(--stadium-effect-accent-b) 68%, white 32%)
    );
}

.stadium-message-crystal:nth-child(4) {
  animation-delay: 0.9s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-b) 64%, white 36%),
      color-mix(in srgb, var(--stadium-effect-accent-c) 72%, white 28%)
    );
}

.stadium-message-crystal:nth-child(5) {
  animation-delay: 1.2s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-c) 70%, white 30%),
      color-mix(in srgb, var(--stadium-effect-accent-b) 56%, white 44%)
    );
}

.stadium-message-crystal:nth-child(6) {
  animation-delay: 1.5s;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--stadium-effect-accent-b) 50%, white 50%),
      color-mix(in srgb, var(--stadium-effect-accent-c) 58%, white 42%)
    );
}

.stadium-phone-shell {
  width: min(100%, 230px);
  padding-top: 0.35rem;
}

.stadium-phone-caption {
  margin: 0;
  max-width: 22ch;
  color: rgba(222, 230, 244, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.stadium-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 20.5;
  padding: 12px;
  border-radius: 34px;
  border: 1px solid rgba(183, 198, 218, 0.16);
  background:
    linear-gradient(180deg, rgba(32, 42, 68, 0.98), rgba(10, 15, 28, 0.98));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 32px rgba(34, 211, 238, 0.1);
}

.stadium-phone-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.stadium-phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.04));
  mix-blend-mode: screen;
  pointer-events: none;
}

.stadium-phone-camera {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  min-width: 92px;
  height: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 12, 23, 0.94);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stadium-phone-speaker {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
}

.stadium-phone-lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(125, 211, 252, 0.82), rgba(10, 15, 30, 0.3) 44%, rgba(8, 12, 23, 0.98) 72%);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.16);
}

.stadium-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(140% 90% at 50% -10%, rgba(74, 222, 128, 0.08), transparent 55%),
    linear-gradient(180deg, #070c17, #03070f);
}

#stadiumPreviewCanvas {
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  margin: -9px;
  display: block;
}

.stadium-phone-side {
  position: absolute;
  right: -3px;
  width: 3px;
  border-radius: 999px;
  background: rgba(61, 74, 110, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.stadium-phone-side-top {
  top: 88px;
  height: 48px;
}

.stadium-phone-side-bottom {
  top: 152px;
  height: 82px;
}

.stadium-toolbar-copy {
  display: grid;
  gap: 0.35rem;
  width: min(100%, 460px);
}

.stadium-toolbar-copy p {
  margin: 0;
  color: rgba(230, 235, 247, 0.68);
  font-size: 0.94rem;
}

.stadium-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.22);
  background: rgba(74, 222, 128, 0.1);
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stadium-controls {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  z-index: 7;
  display: inline-flex;
  gap: 0.55rem;
}

.stadium-control {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(28, 38, 65, 0.94), rgba(13, 19, 35, 0.96));
  color: #eef4ff;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stadium-control i {
  font-size: 0.95rem;
  line-height: 1;
}

.stadium-control:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.34);
  box-shadow: 0 10px 20px rgba(74, 222, 128, 0.12);
}

#stadiumCanvas {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 520px;
  height: auto;
  max-height: min(72vh, 760px);
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    radial-gradient(120% 120% at 18% 14%, rgba(124, 58, 237, 0.16), transparent 42%),
    radial-gradient(100% 120% at 84% 18%, rgba(34, 211, 238, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(9, 13, 26, 0.92), rgba(8, 11, 22, 0.98));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 42px rgba(34, 211, 238, 0.08);
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background-image:
    radial-gradient(140% 120% at 90% -10%, rgba(124, 58, 237, 0.2), transparent 55%),
    radial-gradient(120% 120% at -10% 100%, rgba(34, 211, 238, 0.12), transparent 60%);
}

.pricing-card-pro {
  border-color: rgba(124, 58, 237, 0.58);
  box-shadow:
    0 0 0 2px rgba(124, 58, 237, 0.34),
    0 18px 50px rgba(124, 58, 237, 0.26),
    0 0 28px rgba(34, 211, 238, 0.18);
  position: relative;
}

.pricing-card:hover {
  transform: perspective(900px) translateY(-6px) rotateX(4deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  border-color: rgba(34, 211, 238, 0.26);
}

.pricing-card-pro:hover {
  box-shadow:
    0 0 0 2px rgba(124, 58, 237, 0.42),
    0 30px 70px rgba(124, 58, 237, 0.34),
    0 0 34px rgba(34, 211, 238, 0.26);
  border-color: rgba(34, 211, 238, 0.38);
}

.pro-badge-3d {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 78px;
  height: 78px;
  pointer-events: none;
}

.pro-badge-3d canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-head {
  display: grid;
  gap: 0.35rem;
}

.pricing-label {
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing-sub {
  margin: 0;
  color: var(--muted);
}

.pricing-price {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-block-title {
  font-family: var(--font-title);
  font-weight: 600;
  padding-bottom: 2rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  padding-bottom: 1rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.pricing-list i {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  background: rgba(236, 72, 153, 0.14);
  color: var(--accent-3);
  margin-top: 0.1rem;
}

.pricing-cta {
  justify-self: start;
}

.main-inner h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  letter-spacing: 2px;
  font-family: var(--font-title);
}

.download-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.7rem 1.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    radial-gradient(120% 120% at 12% 0%, rgba(124, 58, 237, 0.18), transparent 48%),
    radial-gradient(110% 120% at 100% 10%, rgba(34, 211, 238, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(15, 20, 37, 0.94), rgba(8, 11, 22, 0.98));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  text-align: center;
}

.download-card-alt {
  background:
    radial-gradient(120% 120% at 88% 0%, rgba(124, 58, 237, 0.18), transparent 48%),
    radial-gradient(110% 120% at 0% 10%, rgba(34, 211, 238, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(15, 20, 37, 0.94), rgba(8, 11, 22, 0.98));
}

.download-copy {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.download-kicker {
  margin: 0;
  color: rgba(167, 243, 208, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
}

.download-copy h3 {
  margin: 0;
  color: #f4f7ff;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.download-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(224, 231, 245, 0.72);
  font-family: var(--font-subtitle);
}

.download-qr {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
  overflow: hidden;
}

.download-qr-noise {
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  background:
    repeating-conic-gradient(from 90deg, rgba(8, 12, 20, 0.96) 0 25%, transparent 0 50%) 50% 50% / 18px 18px,
    radial-gradient(circle at 28% 64%, rgba(8, 12, 20, 0.92) 0 10%, transparent 11%),
    radial-gradient(circle at 68% 42%, rgba(8, 12, 20, 0.88) 0 9%, transparent 10%),
    radial-gradient(circle at 54% 76%, rgba(8, 12, 20, 0.84) 0 8%, transparent 9%);
  opacity: 0.96;
}

.download-qr-finder {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 8px solid #0b1020;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 0 4px #ffffff;
}

.download-qr-finder::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: #0b1020;
}

.download-qr-finder-a {
  top: 18px;
  left: 18px;
}

.download-qr-finder-b {
  top: 18px;
  right: 18px;
}

.download-qr-finder-c {
  bottom: 18px;
  left: 18px;
}

.download-qr-chip {
  position: absolute;
  right: 30px;
  bottom: 32px;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(34, 211, 238, 0.14)),
    #ffffff;
  border: 10px solid #0b1020;
  box-shadow: 0 0 0 4px #ffffff;
}

.download-store {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 28, 0.78);
  color: #f4f7ff;
  font-weight: 600;
}

.download-store i {
  font-size: 1.05rem;
}

.download-note {
  margin: 0;
  color: rgba(214, 222, 238, 0.56);
  font-size: 0.88rem;
}

.faq {
  margin-top: var(--section-space-y-compact);
  display: grid;
  gap: 1.8rem;
}

.faq-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: var(--section-shell-gap);
}

.faq-head {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  gap: var(--section-head-gap);
  text-align: center;
  justify-items: center;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 2px;
  font-family: var(--font-title);
}

.faq-head p {
  margin: 0;
  color: rgba(230, 235, 247, 0.78);
  font-family: var(--font-subtitle);
}

.faq-head > p:last-child {
  margin: clamp(0.45rem, 1vw, 0.75rem) 0 0;
}

.faq-head .eyebrow {
  color: var(--accent-3);
}

.faq-accordion .accordion-item {
  background:
    radial-gradient(120% 120% at 12% 0%, rgba(124, 58, 237, 0.14), transparent 48%),
    radial-gradient(120% 120% at 88% 8%, rgba(34, 211, 238, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.82), rgba(7, 11, 23, 0.9));
  border: 1px solid rgba(182, 194, 209, 0.12);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(10px);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-body);
  padding: 1.2rem 1.4rem;
  box-shadow: none;
  border: 0;
}

.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:focus-visible {
  background:
    radial-gradient(circle at top left, rgba(244, 114, 182, 0.12), transparent 56%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.06));
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 114, 182, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.08));
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M3.5 6l4.5 4 4.5-4' stroke='rgba(248,250,252,0.92)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 1rem;
  filter: none;
  opacity: 0.9;
}

.faq-accordion .collapsing {
  transition-duration: 0.18s !important;
}

.faq-accordion .accordion-button,
.faq-accordion .accordion-button::after {
  transition-duration: 0.18s !important;
}

.faq-accordion .accordion-body {
  color: var(--muted);
  padding: 0 1.4rem 1.2rem 1.4rem;
  margin-top: 0.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) + .accordion-collapse {
  background:
    radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(12, 18, 35, 0.72) 62%);
}

.faq-app-highlight {
  color: #67e8f9;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.faq-price-highlight {
  color: #f87171;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.faq-dotted-highlight {
  color: #a7f3d0;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.faq-dotted-highlight:hover,
.faq-dotted-highlight:focus-visible {
  color: #d1fae5;
}

.faq-accordion .accordion-collapse {
  border-top: 1px solid rgba(182, 194, 209, 0.08);
}


.hero-title {
  width: min(100%, 780px);
  margin: 0 auto;
}

.main-intro {
  width: min(100%, 780px);
  margin: 0 auto;
  color: rgba(230, 235, 247, 0.78);
  text-align: center;
  font-family: var(--font-subtitle);
}

.main-inner p {
  margin: 0;
}

.site-footer {
  padding: clamp(28px, 4vw, 48px) var(--section-space-x);
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 11, 0.98);
  content-visibility: auto;
  contain-intrinsic-size: 160px;
  scroll-margin-top: calc(var(--nav-h) + var(--nav-offset) + 20px);
}

.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.go-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--text);
  box-shadow: none;
  z-index: 1040;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.whatsapp-float {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  background-color: #00d757;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: width 0.3s ease, border-radius 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}

.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 160px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 4px;
}

.whatsapp-float:active {
  transform: translate(2px, 2px);
}

.whatsapp-float-sign {
  width: 100%;
  min-width: 48px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, padding 0.3s ease;
}

.whatsapp-float-icon {
  width: 23px;
  height: 23px;
}

.whatsapp-float-icon path {
  fill: #ffffff;
}

.whatsapp-float-text {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.3s ease, width 0.3s ease, padding 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-sign,
.whatsapp-float:focus-visible .whatsapp-float-sign {
  width: 30%;
  padding-left: 10px;
}

.whatsapp-float:hover .whatsapp-float-text,
.whatsapp-float:focus-visible .whatsapp-float-text {
  width: 70%;
  opacity: 1;
  padding-right: 12px;
}

.go-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.go-top-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.go-top:hover {
  filter: brightness(1.06);
}

.go-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

html.has-premium-cursor,
html.has-premium-cursor body,
html.has-premium-cursor a,
html.has-premium-cursor button,
html.has-premium-cursor .btn,
html.has-premium-cursor .nav-link,
html.has-premium-cursor .accordion-button,
html.has-premium-cursor .how-carousel,
html.has-premium-cursor .pricing-card,
html.has-premium-cursor canvas {
  cursor: none !important;
}

.cursor-core,
.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2200;
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: opacity 0.22s ease;
}

.cursor-core {
  width: var(--cursor-size, 18px);
  height: var(--cursor-size, 18px);
  border-radius: 999px;
  border: var(--cursor-border-width, 1.5px) solid var(--cursor-border-color, rgba(248, 250, 252, 0.96));
  background: var(--cursor-bg, rgba(248, 250, 252, 0.08));
  mix-blend-mode: var(--cursor-blend-mode, normal);
  box-shadow: none;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
}

.cursor-core::after {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: inherit;
  background: rgba(248, 250, 252, 0.5);
  opacity: 0;
}

.cursor-core.is-visible,
.cursor-halo.is-visible {
  opacity: 1;
}

.cursor-core.is-hover {
  border-color: rgba(248, 250, 252, 1);
  background: rgba(248, 250, 252, 0.95);
  mix-blend-mode: difference;
  box-shadow:
    0 0 0 1px rgba(248, 250, 252, 0.1),
    0 0 24px rgba(248, 250, 252, 0.18);
}

.cursor-core.is-hover::after {
  inset: 24%;
  background: rgba(248, 250, 252, 0.92);
  opacity: 1;
}

.cursor-core.is-nav-label {
  width: auto;
  min-width: 96px;
  height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  mix-blend-mode: normal;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.cursor-core.is-nav-label::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.cursor-core.is-nav-label::after {
  opacity: 0;
}

.cursor-halo.is-nav-label {
  opacity: 0 !important;
}

.cursor-halo {
  display: none;
  width: var(--halo-size, 240px);
  height: var(--halo-size, 240px);
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0) scale(0.94);
}

.cursor-halo::before,
.cursor-halo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.cursor-halo::before {
  background:
    radial-gradient(circle at center, rgba(248, 250, 252, 0.06) 0%, var(--halo-color-primary, rgba(124, 58, 237, 0.14)) 18%, var(--halo-color-secondary, rgba(34, 211, 238, 0.1)) 36%, rgba(34, 211, 238, 0.025) 56%, transparent 76%);
  filter: blur(var(--halo-blur, 26px));
  opacity: var(--halo-opacity, 0.72);
}

.cursor-halo::after {
  inset: 22%;
  background:
    radial-gradient(circle at center, rgba(248, 250, 252, 0.1) 0%, rgba(34, 211, 238, 0.09) 28%, rgba(124, 58, 237, 0.04) 52%, transparent 76%);
  filter: blur(18px);
  opacity: 0.82;
}

.cursor-halo.is-link::before,
.cursor-halo.is-card::before,
.cursor-halo.is-title::before {
  background:
    radial-gradient(circle at center, rgba(248, 250, 252, 0.08) 0%, var(--halo-color-primary, rgba(124, 58, 237, 0.16)) 20%, var(--halo-color-secondary, rgba(34, 211, 238, 0.12)) 40%, rgba(34, 211, 238, 0.03) 60%, transparent 78%);
}

.cursor-halo.is-link::after,
.cursor-halo.is-card::after,
.cursor-halo.is-title::after {
  opacity: 0.94;
}


@media (max-width: 991.98px) {
  .hero-nav .container {
    align-items: flex-start;
  }

  .hero-nav .navbar-toggler {
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0.25rem;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.05);
  }

  .hero-nav .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(182, 194, 209, 0.14);
    background:
      linear-gradient(180deg, rgba(11, 16, 31, 0.96), rgba(7, 10, 20, 0.94));
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(18px);
  }

  .hero-nav .navbar-nav {
    gap: 0.25rem;
  }

  .hero-nav .nav-link {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
  }

  .hero-nav .nav-link:hover,
  .hero-nav .nav-link:focus,
  .hero-nav .nav-link.is-active {
    background: rgba(255, 255, 255, 0.05);
  }

  .auth-shell {
    width: 100%;
    margin: 0.8rem 0 0;
  }
}

@media (max-width: 980px) {
  .hero {
    --hero-pad: clamp(18px, 4vw, 34px);
    grid-template-columns: 1fr;
    min-height: clamp(620px, 100svh, 820px);
    min-height: clamp(620px, 100dvh, 820px);
    height: auto;
    padding:
      calc(var(--hero-pad) + var(--nav-h) + var(--nav-offset) + 18px + env(safe-area-inset-top))
      calc(var(--hero-pad) + env(safe-area-inset-right))
      calc(var(--hero-pad) + 86px + env(safe-area-inset-bottom))
      calc(var(--hero-pad) + env(safe-area-inset-left));
    gap: 1.4rem;
    align-items: end;
  }

  .hero-carousel-slide {
    background-position: var(--hero-image-position-mobile, var(--hero-image-position, center));
    transform: scale(1.02);
  }

  .hero-timer-ring {
    top: calc(var(--nav-h) + 16px);
    left: 18px;
    width: 64px;
    height: 64px;
  }

  .hero-nav .navbar-brand {
    padding-left: 3.95rem;
  }

  .navbar-brand-gif {
    width: 48px;
    height: 48px;
  }

  .auth-shell {
    align-items: flex-start;
    margin: 0.65rem 0 0;
  }

  .auth-toast-container {
    padding-top: calc(var(--nav-h) + 58px) !important;
  }

  .hero-carousel-ui {
    left: 18px;
    right: 18px;
    bottom: 22px;
    justify-content: center;
    transform: none;
  }

  .hero-carousel-dots {
    width: min(100%, 360px);
    max-width: 100%;
    padding: 0.5rem 0.75rem;
    gap: 0.6rem;
  }

  .hero-carousel-dot {
    width: 9px;
    height: 9px;
  }

  .hero-carousel-dot.is-active {
    width: 24px;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .stadium-layout {
    grid-template-columns: 1fr;
  }

  .stadium-selected {
    justify-self: start;
    width: min(100%, 320px);
    height: auto;
  }

  .how-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: unset;
    height: auto;
  }

  .how-copy {
    justify-items: center;
  }

  #stadiumCanvas {
    min-height: 460px;
    height: auto;
    max-height: none;
  }

}

@media (max-width: 820px) {
  .stadium-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stadium-stage,
  .stadium-selected {
    width: 100%;
  }

  .stadium-canvas-wrap {
    display: grid;
    gap: 0.9rem;
    align-items: start;
  }

  .stadium-canvas-stage {
    order: 2;
  }

  .stadium-effect-bar {
    position: static;
    order: 1;
    width: 100%;
    max-width: none;
    padding: 0.85rem;
    border-radius: 16px;
  }

  .stadium-effect-label {
    font-size: 0.74rem;
  }

  #stadiumCanvas {
    min-height: 380px;
    max-height: none;
  }

  .stadium-canvas-message {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    z-index: 4;
    width: auto;
    max-width: min(calc(100% - 32px), 420px);
    grid-template-columns: 1fr;
    justify-content: center;
    margin-inline: auto;
    padding: 0.9rem 1rem;
    gap: 0.7rem;
    font-size: 0.84rem;
    line-height: 1.28;
    text-align: center;
    transform: translateY(8px);
  }

  .stadium-canvas-message.is-visible {
    transform: translateY(0);
  }

  .stadium-message-honeycomb {
    display: none;
  }

  .stadium-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    justify-self: auto;
    gap: 0.45rem;
  }

  .stadium-floating-video {
    position: static;
    order: 3;
    width: 100%;
    max-width: none;
    transform: none !important;
    padding: 0.8rem;
  }

  .stadium-floating-video-head {
    cursor: default;
    user-select: auto;
    touch-action: auto;
    gap: 0.6rem;
  }

  .stadium-floating-video-drag {
    display: none;
  }

  .stadium-floating-video-title {
    font-size: 0.88rem;
  }

  .stadium-selected-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(6, 8, 14, 0.62);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .stadium-selected-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .stadium-selected {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin: 0;
    z-index: 1301;
    width: min(calc(100vw - 32px), 420px);
    max-width: 420px;
    max-height: min(82vh, 760px);
    height: auto;
    overflow: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "phone"
      "caption";
    justify-items: center;
    align-items: start;
    text-align: center;
    padding: 1rem 1rem 1.1rem;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .stadium-selected.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .stadium-selected-close {
    display: inline-flex;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .stadium-selected-label {
    grid-area: label;
  }

  .stadium-selected-title {
    grid-area: title;
    justify-content: center;
  }

  .stadium-selected h3 {
    text-align: center;
    white-space: normal;
  }

  .stadium-phone-shell {
    grid-area: phone;
    justify-self: center;
    width: min(100%, 150px);
    padding-top: 0;
  }

  .stadium-phone-caption {
    grid-area: caption;
    max-width: 24ch;
    text-align: center;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body.has-stadium-selected-modal {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  :root {
    --section-space-x: clamp(16px, 5vw, 24px);
    --section-space-y: clamp(40px, 10vw, 56px);
    --section-space-y-compact: clamp(30px, 8vw, 42px);
    --section-shell-gap: clamp(18px, 5vw, 24px);
  }

  h1 {
    font-size: clamp(1.65rem, 6.9vw, 2.28rem);
  }

  .hero-nav .container {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .hero-nav .navbar-brand {
    padding-left: 3.55rem;
    font-size: 0.96rem;
    max-width: calc(100% - 64px);
  }

  .navbar-brand-gif {
    width: 42px;
    height: 42px;
  }

  .auth-shell,
  .auth-google-btn,
  .auth-user {
    width: 100%;
  }

  .auth-google-btn,
  .auth-user {
    justify-content: center;
  }

  .auth-name {
    max-width: min(180px, 48vw);
  }

  .auth-signout {
    flex: 0 0 auto;
  }

  p {
    font-size: 0.98rem;
  }

  .hero {
    --hero-pad: 16px;
    min-height: min(100svh, 760px);
    min-height: min(100dvh, 760px);
    height: auto;
    padding:
      calc(var(--hero-pad) + var(--nav-h) + 16px + env(safe-area-inset-top))
      calc(var(--hero-pad) + env(safe-area-inset-right))
      calc(var(--hero-pad) + 78px + env(safe-area-inset-bottom))
      calc(var(--hero-pad) + env(safe-area-inset-left));
  }

  .hero-timer-ring {
    top: calc(var(--nav-h) + 10px);
    left: 14px;
    width: 54px;
    height: 54px;
  }

  .hero-carousel-slide {
    background-position: var(--hero-image-position-mobile, var(--hero-image-position, center));
    transform: scale(1.01);
  }

  .hero-carousel-ui {
    left: 12px;
    right: 12px;
    bottom: 14px;
    justify-content: center;
    gap: 0.55rem;
    transform: none;
  }

  .hero-carousel-dots {
    justify-content: center;
    flex-wrap: wrap;
    width: min(100%, 270px);
    padding: 0.42rem 0.56rem;
    gap: 0.52rem;
  }

  .hero-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .hero-carousel-dot.is-active {
    width: 20px;
  }

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

  .whatsapp-float {
    width: 46px;
    height: 46px;
    left: 14px;
    bottom: 14px;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    width: 148px;
  }

  .stadium-shell {
    gap: 16px;
  }

  #stadiumCanvas {
    min-height: 400px;
  }

  .stadium-floating-video {
    padding: 0.65rem;
  }

  .ideas-board-head,
  .ideas-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .ideas-board-head {
    display: none;
  }

  .ideas-row {
    padding: 1rem;
    gap: 0.85rem;
  }

  .ideas-button {
    width: 100%;
  }

  .ideas-people {
    min-height: 0;
  }

  .stadium-effect-bar {
    width: 100%;
  }

  .stadium-effect-picker,
  .stadium-effect-trigger {
    width: 100%;
    min-width: 0;
  }

  .stadium-effect-menu {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    max-height: min(60vh, 420px);
    overflow-y: auto;
  }

  .stadium-canvas-message {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 0.8rem 0.9rem;
    gap: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.22;
    justify-content: center;
    text-align: center;
  }

  .stadium-message-honeycomb {
    display: none;
  }

  .stadium-controls {
    top: 12px;
    right: 12px;
    gap: 0.4rem;
  }

  .stadium-selected {
    width: min(calc(100vw - 24px), 380px);
    max-height: min(84vh, 720px);
    padding: 0.95rem 0.9rem 1rem;
    gap: 0.7rem;
  }

  .stadium-selected-title,
  .stadium-selected h3 {
    justify-content: center;
    text-align: center;
  }

  .stadium-phone-shell {
    justify-self: center;
    width: min(100%, 144px);
  }

  .stadium-phone-caption {
    max-width: 24ch;
    text-align: center;
  }

  .how-phone-shell {
    width: min(100%, 220px);
  }

  .how-landscape-phone-wrap {
    width: min(100%, 340px);
  }

  .stadium-control {
    width: 40px;
    height: 40px;
  }

  .how-carousel {
    padding: 14px;
  }

  .how-control-shell {
    width: 44px;
    height: 44px;
  }

  .how-control-prev {
    left: calc(50% - 82px);
  }

  .how-control-next {
    left: calc(50% + 38px);
  }

  #stadiumCanvas {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: min(100svh, 700px);
    min-height: min(100dvh, 700px);
    padding:
      calc(14px + var(--nav-h) + 14px + env(safe-area-inset-top))
      calc(14px + env(safe-area-inset-right))
      calc(14px + 72px + env(safe-area-inset-bottom))
      calc(14px + env(safe-area-inset-left));
  }

  .hero-nav .navbar-brand {
    padding-left: 3.2rem;
    font-size: 0.9rem;
  }

  .navbar-brand-gif {
    width: 38px;
    height: 38px;
  }

  .hero-timer-ring {
    top: calc(var(--nav-h) + 8px);
    left: 10px;
    width: 46px;
    height: 46px;
  }

  .hero-carousel-ui {
    left: 10px;
    right: 10px;
    bottom: 12px;
  }

  .hero-carousel-slide {
    background-position: var(--hero-image-position-mobile, var(--hero-image-position, center));
    background-size: cover;
    transform: scale(1);
  }

  .hero-carousel-dots {
    width: min(100%, 236px);
  }
}

@media (max-height: 720px) {
  .hero {
    min-height: max(520px, 100svh);
    min-height: max(520px, 100dvh);
    height: auto;
    padding:
      calc(clamp(16px, 4vw, 32px) + var(--nav-h) + 12px + env(safe-area-inset-top))
      calc(clamp(16px, 4vw, 32px) + env(safe-area-inset-right))
      calc(clamp(16px, 4vw, 32px) + 64px + env(safe-area-inset-bottom))
      calc(clamp(16px, 4vw, 32px) + env(safe-area-inset-left));
    align-items: end;
  }

  .hero-timer-ring {
    top: calc(var(--nav-h) + 10px);
  }

  .hero-carousel-ui {
    bottom: 14px;
  }
}

@media (max-height: 620px) {
  .hero-timer-ring {
    width: 46px;
    height: 46px;
  }

  .hero-carousel-dots {
    padding: 0.4rem 0.56rem;
  }
}

@media (pointer: coarse) {
  .cursor-core,
  .cursor-halo {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-core,
  .cursor-halo {
    display: none;
  }

}
