﻿@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(76px, 10vh, 96px);
  --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);
  --section-shell-max: 1280px;
  --section-head-max: 920px;
  --section-head-wide-max: 960px;
  --section-content-max: 1120px;
  --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-togelight {
  --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: togelightLoaderColorize calc(var(--time-animation) * 3) ease-in-out infinite;
}

.loader-togelight::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-togelight .box {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, var(--color-one) 24%, var(--color-two) 76%);
  mask: url(#togelightLoaderClip);
  -webkit-mask: url(#togelightLoaderClip);
}

.loader-togelight svg {
  position: absolute;
}

.loader-togelight svg #togelightLoaderClip {
  filter: contrast(15);
  animation: togelightLoaderRoundness calc(var(--time-animation) / 2) linear infinite;
}

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

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

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

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

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

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

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

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

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

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

@keyframes togelightLoaderColorize {
  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;
  touch-action: pan-y;
}

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

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 18, 0.82) 0%, rgba(6, 8, 18, 0.56) 38%, rgba(6, 8, 18, 0.2) 62%, rgba(6, 8, 18, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 5, 12, 0.12) 0%, rgba(3, 5, 12, 0.32) 100%);
  pointer-events: none;
}

.hero[data-active-slide="2"]::after {
  background: 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-carousel.is-dragging,
.hero-carousel.is-dragging .hero-carousel-slide.is-active[data-hero-target] {
  cursor: grabbing;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  align-self: center;
  padding-left: clamp(86px, 8vw, 120px);
  padding-right: clamp(28px, 4vw, 56px);
  pointer-events: none;
}

.hero-copy-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.hero-copy-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: none;
}

.hero-copy-eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(248, 250, 252, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-family: var(--font-eyebrow);
}

.hero-copy-title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.6rem, 5.8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.hero-copy-description {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: rgba(232, 240, 249, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy-slide-featured {
  width: min(100%, 980px);
  justify-self: start;
}

.hero-copy-slide-featured .hero-copy-eyebrow {
  margin-bottom: 1.1rem;
  color: rgba(255, 226, 244, 0.7);
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 2px;
  font-family: "Gully Regular", "Segoe UI", sans-serif;
}

.hero-copy-slide-featured .hero-copy-title {
  max-width: 20ch;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 2px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-family: "Gully ECD SemiBold", "Segoe UI", sans-serif;
}

.hero-copy-slide-featured .hero-copy-description {
  margin-top: 1.5rem;
  max-width: min(100%, 46ch);
  color: rgba(255, 250, 252, 0.94);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
  letter-spacing: 2px;
  font-family: "Gully Regular", "Segoe UI", sans-serif;
  text-wrap: pretty;
}

.hero-copy-wordmark {
  display: inline-block;
  height: 1.14em;
  width: auto;
  margin: 0 0.12em;
  vertical-align: -0.12em;
}

.hero-copy-slide-center {
  justify-self: center;
  text-align: center;
}

.hero-copy-slide-center .hero-copy-title,
.hero-copy-slide-center .hero-copy-description {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-slide-right {
  justify-self: end;
  text-align: right;
}

.hero-copy-slide-right .hero-copy-title,
.hero-copy-slide-right .hero-copy-description {
  margin-left: auto;
}

.hero-copy-slide-banner-2 .hero-copy-title,
.hero-copy-slide-banner-2 .hero-copy-description {
  color: #2b2450;
}

.hero-copy-slide-banner-2 .hero-copy-eyebrow {
  color: #984c9e;
}



.hero-timer-ring {
  position: absolute;
  top: calc(var(--nav-h) + 30px);
  left: clamp(14px, 2.8vw, 30px);
  z-index: 2;
  width: clamp(58px, 5.4vw, 78px);
  height: clamp(58px, 5.4vw, 78px);
  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.7rem;
  padding-bottom: 0.7rem;
  gap: clamp(1rem, 2vw, 2rem);
}

.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-left: 0.45rem;
  padding-right: 0.45rem;
  padding-top: 0.82rem;
  padding-bottom: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

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

.hero-nav .navbar-brand span {
  font-size: 1.28rem;
  letter-spacing: 1px;
}

.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-head .eyebrow span,
.home-loading .main-head > 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-head .eyebrow span::after,
.home-loading .main-head > 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-head > 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;
}

@media (min-width: 992px) {
  .hero-nav .container {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hero-nav .navbar-collapse {
    display: flex !important;
    grid-column: 2 / 4;
    flex-basis: auto;
    flex-grow: 0;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 1.8vw, 1.8rem);
    min-width: 0;
    width: 100%;
  }

  .hero-nav .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.25rem, 0.7vw, 0.8rem);
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
  }

  .hero-nav .nav-link {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .auth-shell {
    flex: 0 0 auto;
    margin-left: 0;
    justify-self: end;
  }

  .auth-google-btn,
  .auth-user {
    white-space: nowrap;
  }
}

.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;
}

.has-scroll-reveal [data-aos] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.has-scroll-reveal [data-aos].is-revealed {
  opacity: 1;
  transform: none;
}

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

.auth-toast .toast-body {
  padding-top: 0.9rem;
  line-height: 1.45;
}

.auth-toast-icon {
  margin-right: 0;
  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-featured-section,
.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-featured-section,
.ideas-section,
.how-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

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

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

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

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

.ideas-featured-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-featured-grid {
  width: min(100%, var(--section-shell-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.ideas-featured-banner {
  position: relative;
  width: 100%;
  min-height: 280px;
  padding: 1.55rem;
  border-radius: 30px;
  border: 1px solid rgba(182, 194, 209, 0.16);
  overflow: hidden;
  display: grid;
  gap: 1.25rem;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(11, 16, 31, 0.46), rgba(7, 11, 23, 0.78)),
    var(--ideas-featured-image, none) center / cover no-repeat,
    radial-gradient(circle at 18% 18%, rgba(236, 72, 153, 0.22), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(34, 211, 238, 0.18), transparent 28%),
    rgba(10, 14, 25, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 40px rgba(0, 0, 0, 0.2);
}

.ideas-featured-banner::before {
  content: "";
  position: absolute;
  inset: auto -8% -14% auto;
  width: 62%;
  height: 62%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.ideas-featured-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 23, 0.18), rgba(7, 11, 23, 0.74));
  pointer-events: none;
}

.ideas-featured-banner-a {
  background:
    linear-gradient(180deg, rgba(11, 16, 31, 0.28), rgba(7, 11, 23, 0.78)),
    radial-gradient(circle at 12% 18%, rgba(124, 58, 237, 0.34), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.28), transparent 28%),
    linear-gradient(135deg, #181a42 0%, #1d1f56 38%, #25185f 100%);
}

.ideas-featured-banner-b {
  background:
    linear-gradient(180deg, rgba(11, 16, 31, 0.34), rgba(7, 11, 23, 0.76)),
    radial-gradient(circle at 18% 18%, rgba(236, 72, 153, 0.26), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(251, 191, 36, 0.18), transparent 26%),
    linear-gradient(150deg, #31133d 0%, #512357 100%);
}

.ideas-featured-banner-c {
  background:
    linear-gradient(180deg, rgba(11, 16, 31, 0.34), rgba(7, 11, 23, 0.78)),
    radial-gradient(circle at 16% 16%, rgba(45, 212, 191, 0.24), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.22), transparent 30%),
    linear-gradient(145deg, #10263c 0%, #183552 100%);
}

.ideas-featured-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 247, 255, 0.9);
  font-family: var(--font-subtitle);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ideas-featured-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  max-width: 32rem;
}

.ideas-featured-copy p,
.ideas-featured-copy span {
  margin: 0;
}

.ideas-featured-copy p {
  color: rgba(205, 214, 232, 0.9);
  font-family: var(--font-subtitle);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ideas-featured-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.2vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: 1px;
}

.ideas-featured-copy span {
  color: rgba(231, 236, 247, 0.8);
  font-family: var(--font-subtitle);
  line-height: 1.45;
  max-width: 30rem;
}

.ideas-featured-voters {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.ideas-featured-voters-label {
  color: rgba(236, 240, 252, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ideas-featured-voters-avatars {
  display: flex;
  align-items: center;
  min-height: 38px;
}

.ideas-featured-voters-avatars .ideas-avatar {
  width: 34px;
  height: 34px;
  border-color: rgba(7, 7, 11, 0.9);
}

.ideas-featured-voters-avatars .ideas-avatar + .ideas-avatar {
  margin-left: -8px;
}

.ideas-featured-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ideas-featured-join {
  min-width: 0;
}

.uiverse.ideas-featured-join {
  border-radius: 20px;
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.2),
    0 16px 30px rgba(5, 7, 16, 0.24);
}

.uiverse.ideas-featured-join[disabled] {
  cursor: default;
  opacity: 0.92;
}

.uiverse.ideas-featured-join.is-summed {
  --c-color-1: rgba(74, 222, 128, 0.42);
  --c-color-2: rgba(45, 212, 191, 0.88);
  --c-color-3: rgba(16, 185, 129, 0.78);
  --c-color-4: rgba(167, 243, 208, 0.55);
  --c-shadow: rgba(45, 212, 191, 0.22);
  --c-shadow-inset-bottom: rgba(16, 185, 129, 0.28);
  --c-radial-inner: #0f766e;
  --c-radial-outer: #34d399;
}

.uiverse.ideas-featured-join::before {
  border-radius: 20px;
}

.uiverse.ideas-featured-join .wrapper {
  min-width: 180px;
  padding: 0.85rem 1.35rem;
  border-radius: 20px;
}

.ideas-featured-progress {
  flex: 1 1 280px;
  min-width: 240px;
  display: grid;
  gap: 0.45rem;
}

.ideas-featured-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(238, 242, 251, 0.88);
  font-family: var(--font-subtitle);
  font-size: 0.82rem;
}

.ideas-featured-progress-head span,
.ideas-featured-progress-head strong {
  margin: 0;
}

.ideas-featured-progress-head strong {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.ideas-featured-progress-track {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 8px 18px rgba(6, 10, 22, 0.28);
}

.ideas-featured-progress-fill {
  display: block;
  width: var(--ideas-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(236, 72, 153, 0.92), rgba(34, 211, 238, 0.95) 58%, rgba(251, 191, 36, 0.92));
  box-shadow:
    0 0 16px rgba(34, 211, 238, 0.26),
    0 0 18px rgba(236, 72, 153, 0.22);
}

.ideas-featured-empty {
  width: 100%;
  min-height: 240px;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(182, 194, 209, 0.16);
  background:
    radial-gradient(circle at 18% 14%, rgba(124, 58, 237, 0.18), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(34, 211, 238, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(11, 16, 31, 0.74), rgba(7, 11, 23, 0.9));
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
  color: rgba(232, 238, 248, 0.82);
}

.ideas-featured-empty strong {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.ideas-featured-empty p {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-subtitle);
}

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

.community-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  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%, var(--section-shell-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.community-embed-raw {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  min-width: 0;
  height: 760px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(182, 194, 209, 0.12);
  background:
    linear-gradient(180deg, rgba(11, 16, 31, 0.78), rgba(7, 11, 23, 0.88));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  box-sizing: border-box;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.15);
}

.community-embed-hover-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.community-embed-raw::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 52%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(124, 58, 237, 0.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.3), transparent 32%);
  filter: blur(42px);
  opacity: 0.9;
  pointer-events: none;
}

.community-embed-raw[data-social-network="x"]::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(45, 212, 191, 0.3), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.28), transparent 32%);
}

.community-embed-raw[data-social-network="instagram"]::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 63, 94, 0.32), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.28), transparent 32%),
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.24), transparent 38%);
}

.community-embed-raw[data-social-network="facebook"]::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(59, 130, 246, 0.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(96, 165, 250, 0.28), transparent 32%);
}

.community-embed-raw > [data-social-embed-mount] {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.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: 18px;
  overflow: hidden;
  background: rgba(9, 12, 22, 0.22);
}

.community-embed-instagram .instagram-media {
  background: #ffffff;
}

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

.community-embed-facebook iframe {
  height: 100%;
}

.community-embed-facebook > [data-social-embed-mount] {
  background: #ffffff;
}

.community-embed-raw > [data-social-embed-mount] {
  background: #ffffff;
}

.community-embed-raw .social-embed-widget,
.community-embed-raw .twitter-tweet,
.community-embed-raw .instagram-media,
.community-embed-raw iframe {
  background: #ffffff !important;
}

.community-embed-raw .social-embed-widget {
  height: 100%;
  overflow: hidden;
}

.community-embed-facebook .social-embed-widget,
.community-embed-facebook .fb-post,
.community-embed-facebook .fb-post > span,
.community-embed-facebook iframe {
  background: #ffffff !important;
}

.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%;
  height: 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%, var(--section-head-wide-max));
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.ideas-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  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-actions {
  width: min(100%, var(--section-shell-max));
  margin: 0 auto 1rem;
  justify-content: center;
}

.ideas-forum-link {
  min-width: 260px;
}

.uiverse.ideas-forum-link {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(236, 72, 153, 0.5);
  --c-color-2: rgba(34, 211, 238, 0.95);
  --c-color-3: rgba(124, 58, 237, 0.9);
  --c-color-4: rgba(250, 204, 21, 0.62);
  --c-shadow: rgba(34, 211, 238, 0.24);
  --c-shadow-inset-top: rgba(255, 255, 255, 0.4);
  --c-shadow-inset-bottom: rgba(168, 85, 247, 0.32);
  --c-radial-inner: #7c3aed;
  --c-radial-outer: #22d3ee;
  --c-color: #f8fafc;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 24px;
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--c-color);
  background: radial-gradient(circle, var(--c-radial-inner), var(--c-radial-outer) 82%);
  box-shadow:
    0 0 18px var(--c-shadow),
    0 20px 38px rgba(5, 7, 16, 0.28);
}

.uiverse.ideas-forum-link::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 5px var(--c-shadow-inset-bottom);
}

.uiverse.ideas-forum-link .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  min-width: 260px;
  padding: 0.95rem 1.5rem;
}

.uiverse.ideas-forum-link .wrapper > span:first-child {
  display: inline-block;
  position: relative;
  z-index: 4;
  text-shadow: 0 1px 10px rgba(7, 11, 23, 0.28);
}

.uiverse.ideas-forum-link:hover {
  --duration: 1400ms;
  transform: translateY(-1px);
}

.uiverse.ideas-forum-link .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-1,
.uiverse.ideas-forum-link .wrapper .circle.circle-9,
.uiverse.ideas-forum-link .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse.ideas-forum-link .wrapper .circle.circle-3,
.uiverse.ideas-forum-link .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-5,
.uiverse.ideas-forum-link .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-2,
.uiverse.ideas-forum-link .wrapper .circle.circle-7,
.uiverse.ideas-forum-link .wrapper .circle.circle-8,
.uiverse.ideas-forum-link .wrapper .circle.circle-11,
.uiverse.ideas-forum-link .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse.ideas-forum-link .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

.uiverse.ideas-forum-link:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.95);
  outline-offset: 4px;
}

@keyframes circle-1 {
  33% {
    transform: translate(6px, 10px) scale(1.08) translateZ(0);
  }

  66% {
    transform: translate(18px, 54px) scale(0.92) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(78px, -4px) scale(1.04) translateZ(0);
  }

  66% {
    transform: translate(66px, -42px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(18px, 10px) scale(1.12) translateZ(0);
  }

  66% {
    transform: translate(8px, 8px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(72px, -6px) scale(1.06) translateZ(0);
  }

  66% {
    transform: translate(104px, 2px) scale(0.92) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(76px, 24px) scale(1.14) translateZ(0);
  }

  66% {
    transform: translate(48px, -24px) scale(0.88) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(30px, -8px) scale(1.08) translateZ(0);
  }

  66% {
    transform: translate(70px, -44px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(10px, 24px) scale(1.1) translateZ(0);
  }

  66% {
    transform: translate(26px, -42px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(30px, 0px) scale(1.06) translateZ(0);
  }

  66% {
    transform: translate(58px, -14px) scale(0.92) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(22px, -8px) scale(1.08) translateZ(0);
  }

  66% {
    transform: translate(74px, 0px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(66px, 18px) scale(1.12) translateZ(0);
  }

  66% {
    transform: translate(94px, 24px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(8px, 8px) scale(1.08) translateZ(0);
  }

  66% {
    transform: translate(60px, 18px) scale(0.9) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(52px, 4px) scale(1.12) translateZ(0);
  }

  66% {
    transform: translate(64px, -24px) scale(0.9) translateZ(0);
  }
}

.ideas-board {
  width: min(100%, var(--section-shell-max));
  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, 1.15fr) minmax(220px, 0.9fr) minmax(210px, 0.8fr);
  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-board-head > span:nth-child(2),
.ideas-board-head > span:nth-child(3) {
  text-align: center;
}

.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-body);
  font-weight: 400;
  text-transform: none;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.3;
}

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

.ideas-row > .ideas-status-post-title {
  text-align: center;
  justify-self: center;
}

.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: "\1F449";
  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;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

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

.main-head {
  display: grid;
  gap: var(--section-head-gap);
  width: min(100%, var(--section-head-max));
  margin: 0 auto;
  text-align: center;
  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%, var(--section-shell-max));
  margin: 0 auto;
  gap: 1.6rem;
}

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

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

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

.title-accent {
  font-weight: 700;
}

.title-accent-cyan {
  color: #22d3ee;
}

.title-accent-pink {
  color: #ec4899;
}

.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%, var(--section-head-max));
  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%, var(--section-shell-max));
  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: 540px;
}

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

.how-slide {
  min-height: 540px;
  height: 540px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(240px, 280px);
  justify-content: space-between;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  padding: clamp(18px, 2vw, 28px) clamp(42px, 4vw, 64px) clamp(36px, 3vw, 52px);
}

.how-slide-message {
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
}

.how-copy {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 560px;
  justify-self: start;
}

.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(2.05rem, 3.4vw, 3rem);
  line-height: 1.2;
  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%, 248px);
  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.55rem;
  flex-wrap: nowrap;
  width: fit-content;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.how-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  margin: 0;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.how-indicators .active {
  background: #9de9cf;
  box-shadow:
    0 0 0 4px rgba(157, 233, 207, 0.14),
    0 0 18px rgba(157, 233, 207, 0.18);
  transform: scale(1.02);
}

.how-control {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 50%;
  height: 100%;
  padding: 0;
  opacity: 1;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
  transform: none;
}

.how-control-shell {
  display: none;
}

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

.how-control:hover .how-control-shell {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

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

.how-control:focus-visible .how-control-shell {
  border-color: transparent;
  box-shadow: none;
}

.how-control-prev {
  left: 0;
}

.how-control-next {
  right: 0;
}

@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.58fr) minmax(250px, 0.56fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}

.stadium-stage {
  display: grid;
  gap: 0;
  align-self: stretch;
  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;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.78) rgba(255, 255, 255, 0.05);
}

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

.stadium-effect-menu::-webkit-scrollbar {
  width: 12px;
}

.stadium-effect-menu::-webkit-scrollbar-track {
  margin: 0.45rem 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(148, 163, 184, 0.08));
}

.stadium-effect-menu::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.92), rgba(139, 92, 246, 0.88)) padding-box;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.22);
}

.stadium-effect-menu::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(103, 232, 249, 0.96), rgba(167, 139, 250, 0.92)) padding-box;
}

.stadium-effect-menu::-webkit-scrollbar-corner {
  background: transparent;
}

.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-compact-selection-hint {
  display: none;
}

.stadium-selected {
  --stadium-effect-accent-a: #7c3aed;
  --stadium-effect-accent-b: #22d3ee;
  --stadium-effect-accent-c: #69e2b1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.5vh, 1rem);
  align-items: center;
  align-self: start;
  justify-content: flex-start;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
  padding: clamp(1rem, 2vh, 1.35rem) clamp(1.05rem, 1.4vw, 1.35rem) clamp(1.05rem, 2.1vh, 1.45rem);
  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.is-dragging,
.stadium-floating-video.is-dragging * {
  cursor: grabbing !important;
}

.stadium-floating-video.is-dragging {
  transition: none;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

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

.stadium-floating-video-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.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-toggle {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(182, 194, 209, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.stadium-floating-video-toggle:hover,
.stadium-floating-video-toggle:focus-visible {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.32);
  transform: translateY(-1px);
  outline: none;
}

.stadium-floating-video-toggle i {
  font-size: 0.78rem;
  line-height: 1;
}

.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;
}

.stadium-floating-video.is-minimized {
  width: min(260px, calc(100% - 28px));
}

.stadium-floating-video.is-minimized .stadium-floating-video-frame {
  display: none;
}

#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: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

@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-selected .stadium-phone-shell {
  width: clamp(176px, min(88%, 31vh, 17vw), 270px);
  max-width: 100%;
}

.stadium-phone-caption {
  margin: 0.7rem 0 0;
  max-width: min(28ch, 100%);
  color: rgba(222, 230, 244, 0.72);
  font-size: clamp(0.84rem, 0.76rem + 0.22vw, 0.98rem);
  line-height: 1.42;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (min-width: 1280px) {
  .stadium-layout {
    grid-template-columns: minmax(0, 1.52fr) minmax(280px, 0.64fr);
  }

  .stadium-selected {
    gap: clamp(0.8rem, 1.8vh, 1.15rem);
    padding: clamp(1.15rem, 2.2vh, 1.5rem) clamp(1.2rem, 1.7vw, 1.6rem) clamp(1.15rem, 2.3vh, 1.6rem);
  }

  .stadium-selected .stadium-phone-shell {
    width: clamp(210px, min(92%, 35vh, 18.5vw), 320px);
  }

  .stadium-phone-caption {
    max-width: min(30ch, 100%);
    font-size: clamp(0.9rem, 0.8rem + 0.2vw, 1.02rem);
  }
}

@media (min-width: 1280px) and (min-height: 860px) {
  .stadium-selected {
    align-self: center;
    justify-content: flex-start;
    min-height: auto;
  }
}

@media (min-width: 1600px) {
  .stadium-selected .stadium-phone-shell {
    width: clamp(230px, min(94%, 37vh, 19vw), 348px);
  }
}

.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-selected .stadium-phone-frame {
  padding: clamp(8px, 5.2%, 12px);
  border-radius: clamp(24px, 14%, 34px);
}

.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-selected .stadium-phone-frame::before {
  inset: clamp(6px, 3.5%, 8px);
  border-radius: clamp(20px, 11.5%, 28px);
}

.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-selected .stadium-phone-camera {
  top: clamp(12px, 7.6%, 18px);
  min-width: clamp(70px, 40%, 92px);
  height: clamp(14px, 7.6%, 18px);
  padding: 0 clamp(10px, 6%, 14px);
  gap: clamp(0.28rem, 3.2%, 0.5rem);
}

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

.stadium-selected .stadium-phone-speaker {
  width: clamp(28px, 18%, 38px);
  height: clamp(3px, 1.8%, 4px);
}

.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-selected .stadium-phone-lens {
  width: clamp(6px, 4.2%, 8px);
  height: clamp(6px, 4.2%, 8px);
}

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

.stadium-selected .stadium-phone-screen {
  border-radius: clamp(18px, 11%, 26px);
}

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

.stadium-phone-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.stadium-phone-overlay.is-visible {
  opacity: 1;
}

.stadium-hooligan-knife {
  --knife-font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  --knife-letter-spacing: 0.24em;
  --knife-shift-a: 0px;
  --knife-shift-b: 0px;
  --knife-shift-c: 0px;
  --knife-band-shift: 0px;
  --knife-accent-alpha: 0;
  --knife-white-alpha: 0;
  --knife-glow-alpha: 0.22;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 84%;
  min-height: 20%;
  padding: 0.18em 0.24em;
  font-family: "Space Grotesk", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: var(--knife-font-size);
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--knife-letter-spacing);
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 245, 245, 0.86);
  filter: drop-shadow(0 0 18px rgba(255, 59, 48, var(--knife-glow-alpha)));
}

.stadium-hooligan-knife-label {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
  color: rgba(255, 245, 245, 0.86);
  text-shadow:
    0 0 12px rgba(255, 59, 48, 0.34),
    0 0 24px rgba(255, 59, 48, 0.18);
}

.stadium-hooligan-knife::before,
.stadium-hooligan-knife::after,
.stadium-hooligan-knife > div::before,
.stadium-hooligan-knife > div::after {
  content: attr(text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.18em 0.24em;
}

.stadium-hooligan-knife::before {
  content: none;
}

.stadium-hooligan-knife::after,
.stadium-hooligan-knife > div::before,
.stadium-hooligan-knife > div::after {
  opacity: 0;
  transition: opacity 120ms linear;
  mix-blend-mode: screen;
}

.stadium-hooligan-knife.is-distorting::after,
.stadium-hooligan-knife.is-distorting > div::before,
.stadium-hooligan-knife.is-distorting > div::after {
  opacity: 1;
}

.stadium-hooligan-knife::after {
  color: rgba(255, 0, 0, var(--knife-accent-alpha));
  clip-path: polygon(0 4%, 100% 0, 100% 30%, 0 38%);
  transform: translateX(var(--knife-shift-a));
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.26);
  animation: stadium-knife-warp-a 180ms steps(2, end) infinite paused;
}

.stadium-hooligan-knife > div::before {
  content: attr(text);
  color: rgba(255, 255, 255, var(--knife-white-alpha));
  clip-path: polygon(0 34%, 100% 28%, 100% 62%, 0 70%);
  transform: translateX(var(--knife-shift-b));
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  animation: stadium-knife-warp-b 150ms steps(2, end) infinite paused;
}

.stadium-hooligan-knife > div::after {
  content: attr(temptext);
  color: rgba(255, 72, 72, var(--knife-accent-alpha));
  clip-path: polygon(0 66%, 100% 60%, 100% 100%, 0 94%);
  transform: translateX(var(--knife-shift-c));
  text-shadow: 0 0 14px rgba(255, 59, 48, 0.22);
  animation: stadium-knife-warp-c 210ms steps(2, end) infinite paused;
}

.stadium-hooligan-knife.is-distorting::after,
.stadium-hooligan-knife.is-distorting > div::before,
.stadium-hooligan-knife.is-distorting > div::after {
  animation-play-state: running;
}

.stadium-hooligan-knife > div {
  position: absolute;
  inset: 0;
}

.stadium-hooligan-knife > div::selection,
.stadium-hooligan-knife::selection {
  background: transparent;
}

.stadium-phone-overlay::before,
.stadium-phone-overlay::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms linear;
}

.stadium-phone-overlay.is-distorting::before,
.stadium-phone-overlay.is-distorting::after {
  opacity: 1;
}

.stadium-phone-overlay::before {
  top: 43%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.22), transparent);
  transform: translateX(var(--knife-band-shift));
}

.stadium-phone-overlay::after {
  top: 57%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(calc(var(--knife-band-shift) * -0.72));
}

@keyframes stadium-knife-warp-a {
  0% { transform: translateX(var(--knife-shift-a)) skewX(0deg); }
  50% { transform: translateX(calc(var(--knife-shift-a) * -0.68)) skewX(-10deg); }
  100% { transform: translateX(var(--knife-shift-a)) skewX(4deg); }
}

@keyframes stadium-knife-warp-b {
  0% { transform: translateX(var(--knife-shift-b)) skewX(0deg); }
  50% { transform: translateX(calc(var(--knife-shift-b) * 0.8)) skewX(8deg); }
  100% { transform: translateX(calc(var(--knife-shift-b) * -0.4)) skewX(-4deg); }
}

@keyframes stadium-knife-warp-c {
  0% { transform: translateX(var(--knife-shift-c)) skewX(0deg); }
  40% { transform: translateX(calc(var(--knife-shift-c) * -1)) skewX(-6deg); }
  100% { transform: translateX(calc(var(--knife-shift-c) * 0.56)) skewX(5deg); }
}

.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-selected .stadium-phone-side {
  right: clamp(-3px, -0.9vw, -2px);
  width: clamp(2px, 1.3%, 3px);
}

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

.stadium-selected .stadium-phone-side-top {
  top: 27%;
  height: 15%;
}

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

.stadium-selected .stadium-phone-side-bottom {
  top: 46%;
  height: 25%;
}

.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 {
  position: relative;
  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-soon {
  isolation: isolate;
  overflow: hidden;
}

.download-card-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 28, 0.18), rgba(10, 15, 28, 0.34));
  pointer-events: none;
}

.download-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 56px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.96), rgba(34, 211, 238, 0.9));
  color: #f8fafc;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(34, 211, 238, 0.16);
  backdrop-filter: blur(12px);
}

.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%, 270px);
  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-card-soon .download-qr {
  filter: blur(7px);
  opacity: 0.76;
}

.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%, var(--section-shell-max));
  margin: 0 auto;
  display: grid;
  gap: var(--section-shell-gap);
}

.faq-head {
  width: min(100%, var(--section-head-max));
  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-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: #67e8f9;
  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: #a5f3fc;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background:
    radial-gradient(135% 135% at 10% 0%, rgba(124, 58, 237, 0.18), transparent 42%),
    radial-gradient(120% 120% at 92% 12%, rgba(34, 211, 238, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(10, 14, 28, 0.9), rgba(7, 10, 20, 0.96));
  border: 1px solid rgba(182, 194, 209, 0.14);
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease,
    background 0.28s ease;
  backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(244, 247, 255, 0.18);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.faq-question-wrap {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 0;
  font-family: var(--font-subtitle);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.24s ease,
    color 0.24s ease;
}

.faq-question:hover,
.faq-question: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.08));
  text-decoration: none;
}

.faq-question span:first-child {
  flex: 1 1 auto;
}

.faq-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(248, 250, 252, 0.12);
  background: rgba(248, 250, 252, 0.04);
  color: rgba(248, 250, 252, 0.9);
  font-size: 1.4rem;
  line-height: 1;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.faq-answer {
  display: none;
}

.faq-answer-inner {
  padding: 0 1.35rem 1.25rem;
  line-height: 1.7;
  font-size: 0.99rem;
}

.faq-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(6, 8, 14, 0.7);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.faq-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1401;
  width: min(calc(100vw - 32px), 760px);
  max-width: calc(100vw - 32px);
  max-height: min(calc(100dvh - 32px), 760px);
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 26px;
  border: 1px solid rgba(182, 194, 209, 0.14);
  background:
    radial-gradient(130% 130% at 12% 0%, rgba(124, 58, 237, 0.18), transparent 42%),
    radial-gradient(120% 120% at 88% 10%, rgba(34, 211, 238, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(13, 18, 35, 0.98), rgba(8, 12, 24, 0.98));
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: auto;
  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;
}

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

.faq-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(12, 18, 34, 0.84);
  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:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.faq-modal-close:hover,
.faq-modal-close:focus-visible {
  background: rgba(20, 28, 50, 0.96);
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(34, 211, 238, 0.1) inset;
  transform: scale(1.04);
}

.faq-modal-kicker {
  margin: 0 0 0.9rem;
  color: rgba(167, 243, 208, 0.86);
  font-size: 0.78rem;
  font-family: var(--font-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-modal-title {
  margin: 0;
  padding-right: 3rem;
  color: #f8fafc;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.faq-modal-body {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

body.has-faq-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .faq-modal {
    width: min(calc(100vw - 24px), 640px);
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 1rem 1rem 1.1rem;
    border-radius: 22px;
  }

  .faq-modal-kicker {
    margin-bottom: 0.75rem;
    font-size: 0.74rem;
  }

  .faq-modal-title {
    padding-right: 2.8rem;
    font-size: clamp(1.35rem, 4.2vw, 1.9rem);
    line-height: 1.16;
  }

  .faq-modal-body {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .faq-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 600px) {
  .faq-modal {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 0.95rem 0.9rem 1rem;
    border-radius: 20px;
  }

  .faq-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .faq-modal-kicker {
    margin-bottom: 0.68rem;
    padding-right: 2.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .faq-modal-title {
    padding-right: 2.8rem;
    font-size: clamp(1.18rem, 5.4vw, 1.55rem);
    line-height: 1.18;
  }

  .faq-modal-body {
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.62;
  }
}


.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: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

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

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
  height: 64px;
  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: 190px;
  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%;
  flex: 0 0 64px;
  min-width: 64px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, padding 0.3s ease;
}

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

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

.whatsapp-float-text {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  color: #ffffff;
  font-size: 1.05rem;
  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;
}

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;
}

html.has-premium-cursor .stadium-floating-video,
html.has-premium-cursor .stadium-floating-video * {
  cursor: auto !important;
}

.cursor-core,
.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  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 {
  --cursor-glitch-base-clip: polygon(11% 0, 95% 0, 100% 25%, 90% 90%, 95% 90%, 85% 90%, 85% 100%, 7% 100%, 0 80%);
  --cursor-glitch-border: 3px;
  --cursor-glitch-shimmy-distance: 5;
  --cursor-glitch-bg-inner: rgba(255, 255, 255, 0.995);
  --cursor-glitch-bg-mid: rgba(255, 250, 253, 0.99);
  --cursor-glitch-bg-outer: rgba(236, 72, 153, 0.12);
  --cursor-glitch-inset-top: rgba(255, 255, 255, 0.54);
  --cursor-glitch-inset-bottom: rgba(236, 72, 153, 0.18);
  --cursor-glitch-shadow-primary: rgba(34, 211, 238, 0.95);
  --cursor-glitch-shadow-secondary: rgba(124, 58, 237, 0.9);
  --cursor-glitch-shadow-tertiary: rgba(236, 72, 153, 0.72);
  --cursor-glitch-clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --cursor-glitch-clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --cursor-glitch-clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --cursor-glitch-clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --cursor-glitch-clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --cursor-glitch-clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --cursor-glitch-clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  width: calc((var(--cursor-label-chars, 10) * 0.62em) + 1.7rem);
  min-width: 0;
  height: 34px;
  padding: 0 0.85rem;
  border: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(236, 72, 153, 0.18), transparent 38%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.58), transparent 36%),
    radial-gradient(circle at 84% 30%, rgba(34, 211, 238, 0.12), transparent 32%),
    radial-gradient(circle at 56% 100%, rgba(236, 72, 153, 0.08), transparent 42%),
    radial-gradient(circle, var(--cursor-glitch-bg-inner) 0%, var(--cursor-glitch-bg-mid) 58%, var(--cursor-glitch-bg-outer) 100%);
  color: #0f172a;
  mix-blend-mode: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: var(--cursor-glitch-base-clip);
  isolation: isolate;
  box-shadow:
    inset 0 3px 12px var(--cursor-glitch-inset-top),
    inset 0 -3px 5px var(--cursor-glitch-inset-bottom),
    0 0 18px rgba(236, 72, 153, 0.1);
  overflow: hidden;
}

.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;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: inherit;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.24);
  z-index: 2;
}

.cursor-core.is-nav-label::after {
  content: attr(data-label);
  position: absolute;
  inset: calc(var(--cursor-glitch-border) * -1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #0f172a;
  background: var(--cursor-glitch-shadow-primary);
  text-shadow:
    2px 2px var(--cursor-glitch-shadow-primary),
    -2px -2px var(--cursor-glitch-shadow-secondary),
    0 0 var(--cursor-glitch-shadow-tertiary);
  opacity: 0;
  mix-blend-mode: normal;
  clip-path: var(--cursor-glitch-base-clip);
  animation: cursorLabelGlitch 2s infinite;
  z-index: 1;
}

.cursor-core.is-nav-label::after {
  box-shadow: inset 0 0 0 var(--cursor-glitch-border) rgba(248, 250, 252, 0.95);
}

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

@keyframes cursorLabelGlitch {
  0% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-one);
  }

  2%,
  8% {
    opacity: 0.85;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * -1%), 0);
    clip-path: var(--cursor-glitch-clip-two);
  }

  6% {
    opacity: 0.85;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-two);
  }

  9% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-two);
  }

  10% {
    opacity: 0.8;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-three);
  }

  13% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-three);
  }

  14%,
  21% {
    opacity: 0.75;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-four);
  }

  25% {
    opacity: 0.8;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-five);
  }

  30% {
    opacity: 0.8;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * -1%), 0);
    clip-path: var(--cursor-glitch-clip-five);
  }

  35%,
  45% {
    opacity: 0.78;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * -1%), 0);
    clip-path: var(--cursor-glitch-clip-six);
  }

  40% {
    opacity: 0.78;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-six);
  }

  50% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-six);
  }

  55% {
    opacity: 0.82;
    transform: translate(calc(var(--cursor-glitch-shimmy-distance) * 1%), 0);
    clip-path: var(--cursor-glitch-clip-seven);
  }

  60% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-seven);
  }

  31%,
  61%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
    clip-path: var(--cursor-glitch-clip-four);
  }
}

.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) {
  [data-rough][data-rough-color="#22d3ee"] {
    color: #22d3ee;
  }

  [data-rough][data-rough-color="#ec4899"] {
    color: #ec4899;
  }

  [data-rough] {
    font-weight: 700;
  }

  .hero-nav .container {
    align-items: center;
  }

  .hero-nav .navbar-toggler {
    margin-left: auto;
    align-self: center;
    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);
  }

  .hero-nav .nav-progress {
    display: none;
  }

  .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-image: var(--hero-image-mobile, var(--hero-image));
    background-position: var(--hero-image-position-mobile, var(--hero-image-position, center));
    transform: scale(1.02);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 8, 18, 0.28) 0%, rgba(5, 8, 18, 0.44) 32%, rgba(5, 8, 18, 0.72) 100%),
      linear-gradient(90deg, rgba(5, 8, 18, 0.54) 0%, rgba(5, 8, 18, 0.18) 62%, rgba(5, 8, 18, 0.24) 100%);
  }

  .hero-copy {
    width: 100%;
    padding-left: 92px;
    padding-right: 24px;
  }

  .hero-copy-slide-featured,
  .hero-copy-slide-center,
  .hero-copy-slide-right {
    justify-self: center;
    text-align: center;
  }

  .hero-copy-slide-featured .hero-copy-title,
  .hero-copy-slide-featured .hero-copy-description,
  .hero-copy-slide-center .hero-copy-title,
  .hero-copy-slide-center .hero-copy-description,
  .hero-copy-slide-right .hero-copy-title,
  .hero-copy-slide-right .hero-copy-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy-title {
    max-width: 11ch;
    font-size: clamp(2.2rem, 8.4vw, 4rem);
  }

  .hero-copy-description {
    max-width: 42ch;
    font-size: 1rem;
  }

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

  .hero-nav .navbar-brand {
    padding-left: 3.95rem;
    min-height: 48px;
    align-items: center;
    line-height: 1.05;
  }

  .hero-nav .navbar-brand span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-size: 1.2rem;
  }

  .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: fit-content;
    max-width: calc(100% - 24px);
    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: center;
    width: min(100%, 360px);
    height: auto;
  }

  .how-slide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "step"
      "title"
      "phone"
      "copy";
    justify-items: center;
    text-align: center;
    min-height: unset;
    height: auto;
    gap: 1.35rem;
    padding: 1.1rem 1.1rem 1.9rem;
  }

  .how-copy {
    display: contents;
  }

  .how-step {
    grid-area: step;
    justify-self: center;
    text-align: center;
    margin-bottom: -0.6rem;
  }

  .how-copy h3 {
    grid-area: title;
    justify-self: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .how-copy p:last-child {
    grid-area: copy;
    justify-self: center;
    max-width: 34ch;
    text-align: center;
  }

  .how-phone-shell,
  .how-landscape-phone-wrap {
    grid-area: phone;
    justify-self: center;
  }

  .how-carousel .carousel-inner {
    min-height: 0;
  }

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

}

@media (max-width: 991.98px) {
  .eyebrow-with-gif {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }

  .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-actions {
    margin-left: auto;
  }

  .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-selected .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;
    align-items: center;
  }

  .hero-nav .navbar-brand {
    padding-left: 3.55rem;
    font-size: 0.96rem;
    max-width: calc(100% - 64px);
    min-height: 42px;
    align-items: center;
    line-height: 1.05;
  }

  .hero-nav .navbar-brand span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 1.08rem;
  }

  .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) + 18px);
    left: 12px;
    width: 54px;
    height: 54px;
  }

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

  .hero-copy {
    padding-left: 74px;
    padding-right: 16px;
  }

  .hero-copy-eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-copy-title {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy-description {
    margin-top: 0.85rem;
    max-width: 34ch;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .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: fit-content;
    max-width: calc(100% - 24px);
    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: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float-sign {
    flex-basis: 58px;
    min-width: 58px;
  }

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

  .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-featured-grid {
    grid-template-columns: 1fr;
  }

  .ideas-featured-banner {
    min-height: 260px;
  }

  .ideas-featured-progress {
    min-width: 0;
    width: 100%;
  }

  .uiverse.ideas-featured-join .wrapper {
    min-width: 0;
    width: 100%;
  }

  .ideas-actions {
    justify-content: stretch;
  }

  .ideas-board {
    display: none;
  }

  .ideas-forum-link {
    width: 100%;
    min-width: 0;
  }

  .uiverse.ideas-forum-link .wrapper {
    min-width: 0;
  }

  .ideas-featured-copy h3 {
    font-size: clamp(1.55rem, 6vw, 2.35rem);
  }

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

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

  .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-compact-selection-hint {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 3;
    display: none;
    width: max-content;
    max-width: calc(100% - 88px);
    padding: 0.38rem 0.7rem;
    border: 1px solid rgba(182, 194, 209, 0.12);
    border-radius: 999px;
    background: rgba(8, 12, 24, 0.62);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
    color: rgba(244, 247, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
  }

  .stadium-compact-selection-hint.is-visible {
    display: block;
  }

  .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-selected .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%, 208px);
  }

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

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

  .how-carousel {
    padding: 14px;
  }

  .how-slide {
    gap: 1.1rem;
    padding: 0.9rem 0.75rem 1.6rem;
  }

  .how-copy h3 {
    font-size: clamp(1.65rem, 6.4vw, 2.15rem);
    line-height: 1.22;
    max-width: 100%;
  }

  .how-copy p:last-child {
    max-width: 30ch;
    font-size: 0.94rem;
  }

  .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;
    min-height: 38px;
    align-items: center;
    line-height: 1.05;
  }

  .hero-nav .navbar-toggler {
    width: 38px;
    height: 38px;
  }

  .hero-nav .navbar-brand span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-size: 1rem;
  }

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

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

  .how-slide {
    padding: 0.8rem 0.4rem 1.45rem;
    gap: 0.95rem;
  }

  .how-copy h3 {
    font-size: clamp(1.42rem, 6.8vw, 1.82rem);
    line-height: 1.24;
    max-width: 100%;
  }

  .how-copy p:last-child {
    max-width: 27ch;
    font-size: 0.9rem;
  }

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

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

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

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

  .hero-copy {
    padding-left: 70px;
    padding-right: 12px;
  }

  .hero-copy-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero-copy-description {
    max-width: 30ch;
    font-size: 0.92rem;
  }

  .hero-carousel-dots {
    width: fit-content;
    max-width: calc(100% - 20px);
  }
}

@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) + 14px);
  }

  .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;
  }

  .has-scroll-reveal [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

