 /* Looop — venue-growth landing (B2B, neat + energetic) */

:root {
  /* ~10% darker than previous canvas */
  --bg: #090b0a;
  --bg-elevated: #101412;
  --surface: #151817;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ebe9;
  --muted: #8b9691;
  --accent: #b0d235;
  --accent-dim: #8faa28;
  --accent-ink: #0d0f0c;
  --accent-soft: rgba(176, 210, 53, 0.14);
  --accent-glow: rgba(176, 210, 53, 0.35);
  --court: #1e3a5f;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --space-section: clamp(4rem, 10vw, 7rem);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.85s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.25rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fine grain + vignette (controlled texture, not noise spam) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(176, 210, 53, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(30, 58, 95, 0.12), transparent 50%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  text-decoration: none;
}

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

/* Nav — floating glass bar (green, high-opacity) */
.site-header {
  /* Bar height ≈ logo + 5px total vertical inset (split top/bottom) */
  --header-logo-h: clamp(52px, 12vw, 84px);
  --header-bar-extra: 5px;
  position: fixed;
  top: 0.75rem;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  z-index: 50;
  max-width: calc(var(--max) + 3rem);
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(
      185deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.1) 38%,
      rgba(255, 255, 255, 0.04) 55%,
      rgba(13, 15, 12, 0.04) 100%
    ),
    rgba(176, 210, 53, 0.84);
  backdrop-filter: saturate(165%) blur(18px);
  -webkit-backdrop-filter: saturate(165%) blur(18px);
  box-shadow: 0 10px 36px rgba(13, 15, 12, 0.16), 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease,
    transform 0.35s var(--ease-out), opacity 0.35s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(
      185deg,
      rgba(255, 255, 255, 0.26) 0%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(13, 15, 12, 0.05) 100%
    ),
    rgba(176, 210, 53, 0.92);
  box-shadow: 0 14px 40px rgba(13, 15, 12, 0.18), 0 1px 0 rgba(255, 255, 255, 0.38) inset;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1.25rem));
  opacity: 0;
  pointer-events: none;
}

.site-header.is-nav-open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-bar-extra) / 2) 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.site-header .logo,
.site-header .nav-links a,
.site-header .header-cta .btn {
  text-decoration: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  padding: 0;
  transition: opacity 0.2s ease;
  position: relative;
}
.logo:hover {
  opacity: 0.95;
}

/* Outer: rapid “refresh” spin when pointer is anywhere on the header */
.logo__spin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 55%;
  will-change: transform;
}

.site-header:hover .logo__spin {
  animation: logo-refresh-spin 0.52s cubic-bezier(0.33, 1.25, 0.52, 1);
}

@keyframes logo-refresh-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

.logo__img {
  display: block;
  height: var(--header-logo-h);
  width: auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-header:hover .logo__spin {
    animation: none !important;
  }
  .nav-links a {
    background-image: none;
    transition: color 0.2s ease;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(13, 15, 12, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0.32rem 0.6rem 0.4rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(13, 15, 12, 0.12) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 280% 100%;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  transition: background-position 0.65s var(--ease-out), color 0.2s ease, background-color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.nav-links a:hover {
  color: var(--accent-ink);
  text-decoration: none;
  background-color: rgba(13, 15, 12, 0.06);
  background-position: 0% 50%;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .btn {
  padding: 0.34rem 0.95rem;
  font-size: 0.85rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(13, 15, 12, 0.18);
  border-radius: 999px;
  background: rgba(13, 15, 12, 0.88);
  color: var(--accent);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.site-header.is-nav-open .nav-toggle__bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 879px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    padding: 0.55rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(176, 210, 53, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s var(--ease-out), visibility 0.22s;
  }

  .site-header.is-nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(13, 15, 12, 0.1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), background 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 45%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%) rotate(12deg);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after {
  transform: translateX(220%) rotate(12deg);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #c5e85a;
  border-color: #c5e85a;
  color: var(--accent-ink);
  box-shadow: 0 10px 28px rgba(176, 210, 53, 0.28);
}

/* Header CTA on lime: dark pill, lime label */
.site-header .btn-primary {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: var(--accent-ink);
  box-shadow: 0 6px 20px rgba(13, 15, 12, 0.2);
}
.site-header .btn-primary:hover {
  background: #1a1d1b;
  border-color: #1a1d1b;
  color: #c5e85a;
  box-shadow: 0 10px 28px rgba(13, 15, 12, 0.28);
}
.site-header .btn-primary::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: stretch;
  padding-top: clamp(7.25rem, 15vh, 9.5rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-ken 22s ease-in-out infinite alternate;
}

@keyframes hero-ken {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: scale(1.04);
  }
  .btn:hover {
    transform: none;
  }
  .btn::after {
    display: none;
  }
  .hero-ticker__track {
    animation: none !important;
  }
  .hero-glow,
  .hardware-frame,
  .phone-shell {
    animation: none !important;
  }
  .hero-in {
    animation: none !important;
    animation-play-state: running !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .splash {
    display: none !important;
  }
  .splash__orb,
  .splash__line {
    animation: none !important;
  }
  body.is-splash-active {
    overflow: auto;
  }
  .hero-phone--a,
  .hero-phone--b,
  .hero-phone--c {
    animation: none !important;
  }
  .how-illu__pulse,
  .how-illu__ring,
  .how-illu__check,
  .how-illu__fly {
    animation: none !important;
  }
  .pricing-card::before {
    animation: none;
    opacity: 0.5;
  }
  .lime-band {
    animation: none;
    background: var(--accent);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(9, 11, 10, 0.94) 0%,
      rgba(9, 11, 10, 0.82) 42%,
      rgba(9, 11, 10, 0.45) 100%
    ),
    linear-gradient(to top, var(--bg) 0%, transparent 28%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem clamp(5rem, 10vw, 6.5rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  flex: 1;
}

/* Soft brand glows — energy without neon flood */
.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.hero-glow--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(176, 210, 53, 0.35) 0%, transparent 70%);
}
.hero-glow--b {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  right: -5%;
  bottom: 22%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.5) 0%, transparent 68%);
  animation-delay: -4s;
}

@keyframes glow-drift {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  to {
    transform: translate(2%, -3%) scale(1.06);
    opacity: 0.5;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(176, 210, 53, 0.2));
  border-radius: 2px;
  animation: eyebrow-grow 1.1s var(--ease-out) 0.15s both;
}

@keyframes eyebrow-grow {
  from {
    transform: scaleX(0.2);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.headline-accent {
  background: linear-gradient(105deg, #f2f7f4 0%, #e8ebe9 40%, var(--accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(176, 210, 53, 0.12);
}

/* Hero entrance — staggered, one motion system */
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  animation: hero-rise 1s var(--ease-out) both;
  animation-play-state: paused;
}

body.hero-ready .hero-in {
  animation-play-state: running;
}

.hero-in--1 {
  animation-delay: 0.08s;
}
.hero-in--2 {
  animation-delay: 0.2s;
}
.hero-in--3 {
  animation-delay: 0.34s;
}
.hero-in--4 {
  animation-delay: 0.46s;
}
.hero-in--5 {
  animation-delay: 0.56s;
}
.hero-in--6 {
  animation-delay: 0.64s;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Bottom ticker — rhythm, low contrast */
.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 11, 10, 0.2), rgba(9, 11, 10, 0.75));
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero-ticker__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139, 150, 145, 0.85);
  animation: ticker-scroll 48s linear infinite;
}

.hero-ticker__track span[aria-hidden="true"] {
  opacity: 0.45;
  font-weight: 400;
}

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

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-meta strong {
  color: var(--text);
  font-weight: 600;
}

.hero-copy .sport-chips {
  margin-top: 0;
}

/* Sections */
section {
  padding: var(--space-section) 1.5rem;
}

/* Avoid double-stacked section padding creating huge empty bands */
section + section {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

/* Tighten the problem → flywheel handoff (was reading as empty black void) */
#problem {
  padding-bottom: 0;
}
#moments {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}
#moments .section-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-head--narrow {
  max-width: 36rem;
}

.bg-elevated {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Problem */
.problem-carousel {
  width: 100%;
}

.problem-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .problem-dots {
    display: none;
  }
}

/* Phone: mostly one card, slight peek of the next */
@media (max-width: 639px) {
  .problem-carousel {
    margin-top: 1.35rem;
  }

  .problem-grid {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    margin-top: 0;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .problem-grid::-webkit-scrollbar {
    display: none;
  }

  .problem-grid .stat-card {
    flex: 0 0 calc(100% - 1.15rem);
    width: calc(100% - 1.15rem);
    min-width: calc(100% - 1.15rem);
    height: auto;
    align-self: stretch;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .problem-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
  }

  .problem-dots__dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(232, 235, 233, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }

  .problem-dots__dot.is-active {
    width: 1.15rem;
    background: var(--accent);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 10.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-sizing: border-box;
}
.stat-card__icon {
  position: relative;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 0 0.9rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 210, 53, 0.14);
  color: var(--accent);
  flex-shrink: 0;
}
.stat-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.stat-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.stat-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.stat-card--lime {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-ink);
  border-color: rgba(13, 15, 12, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.stat-card--lime::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  pointer-events: none;
}
.stat-card--lime .stat-card__icon {
  background: var(--accent-ink);
  color: var(--accent);
}
.stat-card--lime h3,
.stat-card--lime p {
  position: relative;
  z-index: 1;
  color: inherit;
}
.stat-card--lime p {
  opacity: 0.9;
}
.stat-card--lime:hover {
  border-color: rgba(13, 15, 12, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* How it works */
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.5rem;
  min-height: 100%;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(176, 210, 53, 0.5), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
}
.step:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(176, 210, 53, 0.08);
  border: 1px solid rgba(176, 210, 53, 0.2);
}
.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Split (hardware) */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.split-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.split-copy > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 210, 53, 0.2);
}

.hardware-frame {
  background: linear-gradient(145deg, #1a1d1b, #0e1010);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
  animation: hardware-float 6s ease-in-out infinite;
}
.hardware-frame:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(176, 210, 53, 0.12);
}
.hardware-frame::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(176, 210, 53, 0.12), transparent 70%);
  pointer-events: none;
}
.hardware-frame img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-height: min(420px, 50vh);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

@keyframes hardware-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.2rem;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(176, 210, 53, 0.12);
  border: 1px solid rgba(176, 210, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}
.pillar:hover .pillar-icon {
  transform: scale(1.06) rotate(-4deg);
  background: rgba(176, 210, 53, 0.18);
  border-color: rgba(176, 210, 53, 0.4);
}
.pillar-icon svg {
  width: 20px;
  height: 20px;
}
.pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.pillar p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* App preview */
.output-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .output-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.phone-shell {
  background: #0d0d0d;
  border-radius: 36px;
  border: 1px solid var(--border);
  padding: 0.65rem;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
  animation: phone-tilt 8s ease-in-out infinite;
}
.phone-shell:hover {
  animation-play-state: paused;
  transform: translateY(-12px) rotate(-1.2deg);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(176, 210, 53, 0.1);
}

@keyframes phone-tilt {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-6px) rotate(0.8deg);
  }
  70% {
    transform: translateY(-3px) rotate(-0.6deg);
  }
}
.phone-shell img {
  border-radius: 28px;
  width: 100%;
}
.output-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

.bullets-pro {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullets-pro li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 0.2rem;
}
.bullets-pro li:last-child {
  border-bottom: 0;
}
.bullets-pro strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.bullets-pro span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Trust */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.trust-bar:hover {
  border-color: rgba(176, 210, 53, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}
.trust-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}
.trust-bar strong {
  color: var(--text);
}

/* Pricing */
.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-lead__tag {
  display: block;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
}

.pricing-setup {
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.pricing-setup__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
}

.pricing-setup__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.pricing-setup__price {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.pricing-setup__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-billing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 0 1.75rem;
}

.pricing-billing__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.pricing-billing__btn:hover {
  border-color: rgba(176, 210, 53, 0.35);
  color: var(--text);
}

.pricing-billing__btn.is-active {
  background: var(--accent-soft);
  border-color: rgba(176, 210, 53, 0.55);
  color: var(--text);
}

.pricing-billing__badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .pricing-tiers {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter, 1.35rem);
    padding-bottom: 0.35rem;
    margin-inline: calc(-1 * var(--page-gutter, 0px));
    padding-inline: var(--page-gutter, 1.35rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-tiers::-webkit-scrollbar {
    display: none;
  }

  .pricing-tier {
    flex: 0 0 min(78vw, 18.5rem);
    width: min(78vw, 18.5rem);
    scroll-snap-align: start;
  }
}

.pricing-tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 210, 53, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.pricing-tier--featured {
  border-color: rgba(176, 210, 53, 0.45);
  box-shadow: 0 0 0 1px rgba(176, 210, 53, 0.12);
}

.pricing-tier__tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.pricing-tier h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.pricing-tier .price {
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.35rem 0;
}

.pricing-tier .price:not([hidden]) {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.pricing-tier .price small {
  display: inline;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-tier .note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-features--global {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Device + Reels side-by-side */
.device-section {
  padding: var(--space-section) 1.5rem;
}

.device-section .section-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.device-reels {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .device-reels {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: center;
  }
}

.device-reels__cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.device-reels__cell > figcaption {
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.device-reels__cell > figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.device-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .device-layout {
    grid-template-columns: 1fr;
  }
}

.device-viewer {
  position: relative;
  min-height: min(380px, 52vh);
  height: min(380px, 52vh);
  background: radial-gradient(ellipse at 50% 70%, rgba(176, 210, 53, 0.12), transparent 65%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 900px) {
  .device-viewer {
    min-height: min(420px, 56vh);
    height: min(420px, 56vh);
  }
}

.device-viewer--hero {
  min-height: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% 60%, rgba(176, 210, 53, 0.18), transparent 62%),
    transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.device-viewer model-viewer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.device-viewer--hero model-viewer {
  height: 100%;
  min-height: clamp(280px, 38vw, 440px);
  --poster-color: transparent;
}

.device-viewer.is-loading::after {
  content: "";
  position: absolute;
  inset: 42% auto auto 50%;
  z-index: 2;
  width: 1.6rem;
  height: 1.6rem;
  margin: -0.8rem 0 0 -0.8rem;
  border: 2px solid rgba(176, 210, 53, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: device-spin 0.7s linear infinite;
  pointer-events: none;
}

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

.device-viewer.is-ready.is-loading::after,
.device-viewer.is-ready::after {
  display: none;
}

.device-viewer.is-fallback .device-viewer__hint,
.device-viewer:not(.is-ready) .device-viewer__hint {
  display: none;
}

.device-viewer__hint {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 3;
  margin: 0;
  padding: 0.35rem 0.7rem;
  transform: translateX(-50%);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(9, 11, 10, 0.72);
  border: 1px solid var(--border);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.device-viewer.is-ready .device-viewer__hint.is-hidden,
.device-viewer:has(model-viewer:hover) .device-viewer__hint {
  opacity: 0;
}

.device-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.device-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: min(420px, 55vh);
}

.device-copy .checklist {
  margin-bottom: 1.25rem;
}

.camera-callout {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(176, 210, 53, 0.18), rgba(176, 210, 53, 0.06));
  border: 1px solid rgba(176, 210, 53, 0.35);
}

.camera-callout__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.camera-callout__body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

.how-viz__lever-arm--btn {
  border-radius: 50% !important;
  width: 1.1rem !important;
  height: 1.1rem !important;
  background: var(--accent) !important;
  transform: none !important;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(176, 210, 53, 0.15),
    transparent 35%,
    transparent 65%,
    rgba(176, 210, 53, 0.12)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
  animation: border-shimmer 10s ease-in-out infinite;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

@keyframes border-shimmer {
  0%,
  100% {
    opacity: 0.45;
    filter: hue-rotate(0deg);
  }
  50% {
    opacity: 0.85;
    filter: hue-rotate(12deg);
  }
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}
.pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.pricing-card .price {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.5rem 0;
}
.pricing-card .price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.35rem;
}
.pricing-card .note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.pricing-features {
  text-align: left;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-features li {
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
}
.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Footer CTA */
.footer-cta {
  padding: var(--space-section) 1.5rem 2rem;
  text-align: center;
}
.footer-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.footer-cta p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  max-width: 28rem;
}
.footer-cta .btn-primary {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.site-footer {
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer a {
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--accent);
}

/* Sport chips (subtle, not pixel game bar) */
.sport-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.sport-chips span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}
.sport-chips span:hover {
  border-color: rgba(176, 210, 53, 0.35);
  color: var(--text);
  background: rgba(176, 210, 53, 0.08);
  transform: translateY(-2px);
}

/* Section depth */
.section--texture {
  position: relative;
}
.section--texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 95%);
}

.section--grid {
  position: relative;
}
.section--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    )
    0 0 / 72px 100%;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Scroll reveal */
html.js [data-reveal]:not(.is-revealed) {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  filter: blur(8px);
  transition: none;
}

html.js [data-reveal] {
  transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out),
    filter 0.75s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 75ms);
}

html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stat-card,
.step,
.pillar {
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease,
    background 0.35s ease;
}
.stat-card:hover,
.step:hover,
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(176, 210, 53, 0.08);
}

.footer-cta--glow {
  position: relative;
  overflow: hidden;
}
.footer-cta__blobs {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 40%, rgba(176, 210, 53, 0.12), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(30, 58, 95, 0.2), transparent 40%);
  pointer-events: none;
  animation: glow-drift 18s ease-in-out infinite alternate;
  z-index: 0;
}
.footer-cta--glow h2,
.footer-cta--glow p,
.footer-cta--glow > div {
  position: relative;
  z-index: 1;
}

/* —— Brand-forward layout (app-inspired, still tidy) —— */

.hero-copy {
  min-width: 0;
}

.display-head {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 6.5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 14ch;
}
.display-head__line {
  display: block;
  color: var(--text);
}
.display-head__accent {
  display: block;
  margin-top: 0.06em;
  color: var(--accent);
  text-shadow: 0 0 50px rgba(176, 210, 53, 0.45);
}

.hero-phones {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.2;
  min-height: 0;
  height: auto;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    column-gap: clamp(1.75rem, 3.5vw, 3rem);
    padding-bottom: clamp(5.5rem, 11vw, 7rem);
  }
  .hero-phones {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
    align-self: center;
  }
}

.hero-phone {
  position: absolute;
  width: min(50%, 200px);
  border-radius: 22px;
  border: 3px solid #1a1c1a;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  object-fit: cover;
  aspect-ratio: 390 / 844;
  object-position: top center;
}
.hero-phone--a {
  left: 4%;
  top: 8%;
  transform: rotate(-10deg);
  z-index: 1;
  animation: phone-float-a 7s ease-in-out infinite;
}
.hero-phone--b {
  left: 22%;
  top: 0;
  width: min(56%, 220px);
  transform: rotate(4deg);
  z-index: 3;
  animation: phone-float-b 7.5s ease-in-out infinite;
}
.hero-phone--c {
  right: 4%;
  top: 14%;
  transform: rotate(12deg);
  z-index: 2;
  animation: phone-float-c 8s ease-in-out infinite;
}

/*
  Mobile hero
  - phone (<640): copy first, then smaller phones
  - tablet (640–1023): copy | phones side by side
*/
@media (max-width: 639px) {
  .hero {
    min-height: auto;
    padding-top: clamp(7rem, 16vh, 8.5rem);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 0.5rem var(--page-gutter, 1.25rem) 3rem;
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .eyebrow {
    margin-bottom: 0.6rem;
  }

  .display-head {
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    max-width: 12ch;
    margin-bottom: 0.75rem;
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    max-width: 34ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
    max-width: none;
    margin-bottom: 1rem;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    height: 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
  }

  .hero-meta {
    margin-bottom: 0.65rem;
  }

  .hero-phones {
    width: min(100%, 340px);
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.2;
  }

  .hero-phone {
    border-width: 2.5px;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
  }

  .hero-phone--a {
    left: 4%;
    top: 8%;
    width: 48%;
    transform: rotate(-9deg);
  }

  .hero-phone--b {
    left: 24%;
    top: 0;
    width: 54%;
    transform: rotate(3deg);
  }

  .hero-phone--c {
    left: auto;
    right: 4%;
    top: 12%;
    width: 48%;
    transform: rotate(11deg);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding-top: clamp(7rem, 14vh, 8.75rem);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    column-gap: 1.25rem;
    align-items: center;
    padding: 0.5rem 1.5rem 3.25rem;
  }

  .hero-phones {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    justify-self: center;
    align-self: center;
    aspect-ratio: 1 / 1.2;
  }

  .display-head {
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    max-width: 12ch;
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 0.95rem;
    max-width: 34ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    max-width: 18rem;
    margin-bottom: 1rem;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.9rem;
    height: 2.9rem;
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .hero-phone {
    border-width: 2.5px;
    border-radius: 18px;
  }

  .hero-phone--a {
    left: 4%;
    top: 8%;
    width: 48%;
    transform: rotate(-9deg);
  }

  .hero-phone--b {
    left: 22%;
    top: 0;
    width: 56%;
    transform: rotate(3deg);
  }

  .hero-phone--c {
    left: auto;
    right: 4%;
    top: 12%;
    width: 48%;
    transform: rotate(11deg);
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
  @keyframes phone-float-a {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-5px); }
  }
  @keyframes phone-float-b {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-7px); }
  }
  @keyframes phone-float-c {
    0%, 100% { transform: rotate(9deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-5px); }
  }
}

@keyframes phone-float-a {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-8px);
  }
}
@keyframes phone-float-b {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-10px);
  }
}
@keyframes phone-float-c {
  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-7px);
  }
}

/* Full-bleed lime manifesto (onboarding-card energy) */
.lime-band {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  background: linear-gradient(165deg, var(--accent) 0%, #9cb82a 48%, var(--accent) 100%);
  background-size: 200% 200%;
  animation: lime-shift 14s ease-in-out infinite alternate;
  color: var(--accent-ink);
  overflow: hidden;
}
.lime-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.2), transparent 42%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}
@keyframes lime-shift {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lime-band {
    animation: none;
    background: var(--accent);
  }
}

.lime-band__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}
.lime-band__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}
.lime-band__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.lime-band__lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 36rem;
}
.lime-band__lead strong {
  font-weight: 900;
}

/* Real sport strip */
.photo-belt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 1100px) {
  .photo-belt {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.photo-belt__cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  min-height: 140px;
}
.photo-belt__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.photo-belt__cell:hover img {
  transform: scale(1.05);
}
.photo-belt__tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(9, 11, 10, 0.72);
  color: var(--accent);
  border: 1px solid rgba(176, 210, 53, 0.35);
}

/* Three lime feature cards (playful, app-like) */
.lime-trio {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .lime-trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.lime-card {
  position: relative;
  border-radius: 26px;
  padding: 1.5rem 1.35rem 1.6rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid rgba(13, 15, 12, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  overflow: hidden;
}
.lime-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  pointer-events: none;
}
.lime-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.lime-card > * {
  position: relative;
  z-index: 1;
}
.lime-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lime-card__icon svg {
  width: 24px;
  height: 24px;
}
.lime-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lime-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.92;
}

/* App download strip */
.app-get {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 1.5rem;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}

.app-get__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.app-get__copy {
  margin: 0;
  display: grid;
  gap: 0.25rem;
  max-width: 36ch;
  padding-inline: 0.15rem;
}

.app-get__copy strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.app-get__copy span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.app-get__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.95rem 0.55rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a0c0b;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.store-badge:hover {
  border-color: rgba(176, 210, 53, 0.45);
  transform: translateY(-2px);
}

.store-badge__icon {
  flex-shrink: 0;
  color: var(--accent);
}

.store-badge__text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.1;
}

.store-badge__eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-badge__name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-reels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
}

.app-reels--inline {
  margin: 0;
  width: 100%;
}

.app-reels__phone {
  width: min(720px, 96vw);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
}

.app-reels--inline .app-reels__phone {
  width: 100%;
  max-width: 720px;
}

@media (min-width: 900px) {
  .app-reels--inline .app-reels__phone {
    max-width: none;
  }
}

.app-reels__bezel {
  position: relative;
  border-radius: 32px;
  padding: 12px 16px;
  background: linear-gradient(160deg, #2a2e2c 0%, #121412 45%, #0a0c0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.app-reels__island {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 3;
  width: 20px;
  height: 78px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #050605;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.app-reels__screen {
  position: relative;
  /* Court cams sit between 16:9 and 4:3 — roomy enough that contain rarely letterboxes hard */
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  overflow: hidden;
  background: #050605;
  cursor: pointer;
}

.app-reels__screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050605;
}

.app-reels__ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.85rem 1rem 0.85rem 2.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 36%);
  pointer-events: none;
}

.app-reels__progress {
  display: flex;
  gap: 4px;
  margin-bottom: 0.65rem;
}

.app-reels__seg {
  position: relative;
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.app-reels__seg i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.05s linear;
}

.app-reels__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.app-reels__chip {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
}

.app-reels__logo {
  height: 18px;
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.app-reels__bottom {
  margin-top: auto;
}

.app-reels__venue {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.app-reels__hint {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.app-reels__note {
  margin: 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

/* —— In action (ambient band) —— */
.in-action {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: end stretch;
  min-height: clamp(18rem, 42vw, 28rem);
  margin-top: clamp(1.75rem, 4.5vw, 3.25rem);
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #050605;
}

.in-action__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.in-action__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.72);
}

.in-action__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 11, 10, 0.72) 0%, rgba(9, 11, 10, 0.35) 42%, rgba(9, 11, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(9, 11, 10, 0.55) 0%, transparent 35%, transparent 65%, rgba(9, 11, 10, 0.75) 100%);
}

.in-action__caption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 1.25rem 1.5rem 1.4rem;
  max-width: min(36rem, 100%);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: rgba(244, 246, 240, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .in-action__video {
    display: none;
  }

  .in-action {
    background:
      radial-gradient(ellipse at 30% 40%, rgba(176, 210, 53, 0.12), transparent 55%),
      #090b0a;
  }
}

/* —— How it works —— */
.how-journey {
  position: relative;
  padding: var(--space-section) 1.5rem;
  overflow: hidden;
  background: linear-gradient(168deg, #121614 0%, #090b0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-journey__head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.how-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

/* Desktop / tablet: three cards in a row */
@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* Phone: horizontal snap so next step peeks */
@media (max-width: 767px) {
  .how-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter, 1.35rem);
    padding-bottom: 0.35rem;
    margin-inline: calc(-1 * var(--page-gutter, 0px));
    padding-inline: var(--page-gutter, 1.35rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .how-grid::-webkit-scrollbar {
    display: none;
  }

  .how-card {
    flex: 0 0 min(82vw, 19.5rem);
    width: min(82vw, 19.5rem);
    scroll-snap-align: start;
  }

  .how-card__visual {
    width: 100%;
    margin-inline: 0;
  }
}

.how-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.25rem 1.25rem 1.4rem;
  background: rgba(18, 22, 20, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.how-card:hover {
  border-color: rgba(176, 210, 53, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.how-card--accent {
  border-color: rgba(176, 210, 53, 0.28);
  background: linear-gradient(160deg, rgba(176, 210, 53, 0.1), rgba(18, 22, 20, 0.88));
}

.how-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 0 1rem;
  border-radius: var(--radius-md);
  background: #090b0a;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.how-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes how-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
@keyframes how-ring {
  0% { opacity: 0.45; transform: scale(0.92); }
  70% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.12); }
}
@keyframes how-soft {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

.how-card__num {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.how-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.how-step__kicker {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.how-card > p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.split.split--solo {
  grid-template-columns: 1fr;
  max-width: 44rem;
  margin: 0 auto;
}
.split--solo .split-copy--wide {
  max-width: none;
}

/* Link-in-bio page (/links.html) */
.links-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.links-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1.25rem 2rem;
}

.links-page__inner {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
}

.links-page__logo {
  display: block;
  width: fit-content;
  margin: 0 auto 1.75rem;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out);
}
.links-page__logo:hover {
  opacity: 0.92;
  transform: scale(1.02);
  text-decoration: none;
}

.links-page__logo-img {
  height: clamp(44px, 12vw, 56px);
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.links-page__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.links-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}

.links-page__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links-stack__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}
.links-stack__item:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(176, 210, 53, 0.35);
  background: var(--bg-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: var(--text);
}

.links-stack__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.links-stack__item--android .links-stack__icon {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
}

.links-stack__item--whatsapp .links-stack__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.links-stack__item--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.links-stack__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.links-stack__label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.links-stack__hint {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.links-stack__chevron {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  transition: transform 0.25s var(--ease-out), color 0.2s ease;
}
.links-stack__item:hover .links-stack__chevron {
  transform: translateX(3px);
  color: var(--accent);
}
.links-stack__item--android:hover .links-stack__chevron {
  transform: translateY(2px);
}

.links-page__note {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.links-page__footer {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

/* Homepage splash — cinematic broadcast + bold lime brand */
body.is-splash-active {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  overflow: hidden;
  perspective: 1100px;
  perspective-origin: 50% 42%;
  background: radial-gradient(ellipse 120% 90% at 50% -8%, rgba(176, 210, 53, 0.52) 0%, transparent 50%),
    radial-gradient(ellipse 90% 65% at 100% 85%, rgba(18, 26, 21, 0.78) 0%, transparent 48%),
    radial-gradient(ellipse 75% 58% at 0% 70%, rgba(176, 210, 53, 0.18) 0%, transparent 40%),
    linear-gradient(168deg, #161f1a 0%, #0d110f 52%, #050705 100%);
  box-shadow: inset 0 0 0 1px rgba(176, 210, 53, 0.26);
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 26%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0.06) 52%, transparent 66%);
  transform: translateX(-130%);
  animation: splash-broadcast-sweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.splash__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.splash__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.62;
  will-change: transform;
}

.splash__orb--1 {
  width: min(46vw, 320px);
  height: min(46vw, 320px);
  left: -14%;
  top: 5%;
  background: rgba(176, 210, 53, 0.72);
  animation: splash-orb-a 11s ease-in-out infinite;
}
.splash__orb--2 {
  width: min(38vw, 250px);
  height: min(38vw, 250px);
  right: -10%;
  top: 34%;
  background: rgba(139, 170, 44, 0.6);
  animation: splash-orb-b 13s ease-in-out infinite;
  animation-delay: -2.2s;
}
.splash__orb--3 {
  width: min(52vw, 360px);
  height: min(52vw, 360px);
  left: 12%;
  bottom: -24%;
  background: rgba(176, 210, 53, 0.3);
  animation: splash-orb-c 14s ease-in-out infinite;
  animation-delay: -5.2s;
}
.splash__orb--4 {
  width: min(28vw, 180px);
  height: min(28vw, 180px);
  right: 20%;
  top: -8%;
  background: rgba(255, 255, 255, 0.16);
  animation: splash-orb-a 9s ease-in-out infinite;
  animation-delay: -1.4s;
}

.splash__line {
  position: absolute;
  height: 1px;
  width: 165%;
  left: -32%;
  opacity: 0.4;
  background: linear-gradient(90deg, transparent, rgba(176, 210, 53, 0.55), transparent);
  filter: drop-shadow(0 0 6px rgba(176, 210, 53, 0.45));
}
.splash__line--1 {
  top: 22%;
  animation: splash-line-drift 2.2s linear infinite;
}
.splash__line--2 {
  bottom: 30%;
  animation: splash-line-drift-2 2.8s linear infinite;
  animation-delay: -1.1s;
}

@keyframes splash-broadcast-sweep {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes splash-line-drift {
  0% {
    transform: translateX(-6%) rotate(-10deg);
    opacity: 0.25;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(6%) rotate(-10deg);
    opacity: 0.3;
  }
}

@keyframes splash-line-drift-2 {
  0% {
    transform: translateX(6%) rotate(7deg);
    opacity: 0.22;
  }
  50% {
    opacity: 0.65;
  }
  100% {
    transform: translateX(-6%) rotate(7deg);
    opacity: 0.28;
  }
}

@keyframes splash-orb-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10%, 7%) scale(1.12);
  }
}

@keyframes splash-orb-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8%, 8%) scale(1.14);
  }
}

@keyframes splash-orb-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6%, -8%) scale(1.08);
  }
}

.splash.is-exiting .splash__orb,
.splash.is-exiting .splash__line {
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.splash__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transform-style: preserve-3d;
}

.splash__stage {
  transform-style: preserve-3d;
}

.splash__logo-wrap {
  transform-style: preserve-3d;
  transform-origin: 50% 55%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: splash-logo-in 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) 0.04s both;
}

.splash__logo-spin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 55%;
  will-change: transform;
  /* Same snappy double-spin as the header logo */
  animation: logo-refresh-spin 0.52s cubic-bezier(0.33, 1.25, 0.52, 1) 0.85s both;
}

.splash__logo {
  display: block;
  height: clamp(86px, 19vw, 128px);
  width: clamp(86px, 19vw, 128px);
  max-width: min(90vw, 430px);
  background-color: var(--accent);
  -webkit-mask-image: var(--splash-logo);
  mask-image: var(--splash-logo);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 18px 40px rgba(176, 210, 53, 0.35));
}

.splash__tagline {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.046em;
  line-height: 1.03;
  animation: splash-tagline-in 0.5s var(--ease-out) 0.22s both;
}

.splash__tagline-line {
  display: block;
  color: #f2f8f0;
}

.splash__accent {
  display: block;
  margin-top: 0.12em;
  color: #d2f45d;
  text-shadow: 0 0 60px rgba(176, 210, 53, 0.48);
}

.splash__hint {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 235, 233, 0.52);
  animation: splash-hint-in 0.4s var(--ease-out) 0.6s both;
}

@keyframes splash-hint-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash.is-exiting {
  pointer-events: none;
  animation: splash-shell-out 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash.is-exiting .splash__logo-wrap {
  animation: splash-logo-out 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash.is-exiting .splash__logo-spin {
  animation: none;
}

.splash.is-exiting .splash__tagline {
  animation: splash-tagline-out 0.34s ease forwards;
}

.splash.is-exiting .splash__hint {
  opacity: 0;
  transition: opacity 0.12s ease;
}

@keyframes splash-logo-in {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.88) rotateX(20deg);
    filter: blur(10px);
  }
  60% {
    transform: translateY(-2px) scale(1.03) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes splash-tagline-in {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes splash-logo-out {
  to {
    opacity: 0;
    transform: translateY(-34px) scale(1.05);
    filter: blur(10px);
  }
}

@keyframes splash-tagline-out {
  to {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(6px);
  }
}

@keyframes splash-shell-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* —— Mobile layout polish (density + multi-up) —— */
@media (max-width: 720px) {
  :root {
    --page-gutter: 1.2rem;
    --space-section: 2.35rem;
  }

  .site-header {
    top: max(0.65rem, env(safe-area-inset-top));
    left: max(0.85rem, env(safe-area-inset-left));
    right: max(0.85rem, env(safe-area-inset-right));
  }

  .header-inner {
    padding: 0.4rem 1rem;
    gap: 0.85rem;
  }

  .site-header .btn {
    padding: 0.4rem 0.95rem;
  }

  section,
  .device-section,
  .how-journey,
  .footer-cta,
  .lime-band {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  section {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
  }

  section + section {
    padding-top: 1.65rem;
  }

  .lime-band {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #problem {
    padding-bottom: 0.35rem;
  }

  #moments {
    padding-top: 1.5rem;
  }

  .hero-inner {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    padding-bottom: 2.6rem;
  }

  .section-head {
    margin-bottom: 1.1rem;
  }

  .section-head h2 {
    line-height: 1.2;
    margin-bottom: 0.55rem;
    font-size: clamp(1.4rem, 6.2vw, 1.85rem);
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .lime-band__title {
    line-height: 1.18;
    margin-bottom: 0.75rem;
  }

  .lime-band__lead {
    line-height: 1.45;
  }

  .photo-belt {
    gap: 0.65rem;
    margin-top: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .photo-belt__cell {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .photo-belt__tag {
    left: 0.55rem;
    bottom: 0.55rem;
    padding: 0.28rem 0.5rem;
    font-size: 0.62rem;
  }

  .problem-carousel {
    margin-top: 1.35rem;
  }

  .stat-card,
  .pillar {
    padding: 1.15rem 1.15rem;
    min-height: 0;
  }

  .stat-card__icon {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.7rem;
    border-radius: 11px;
  }

  .stat-card__icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .stat-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .stat-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .pillars {
    gap: 0.85rem;
  }

  .lime-trio {
    gap: 0.75rem;
  }

  .lime-card {
    padding: 1.15rem 1.05rem;
    border-radius: 20px;
  }

  .lime-card__icon {
    margin-bottom: 0.7rem;
  }

  .device-section .section-head {
    margin-bottom: 1.1rem;
  }

  .device-reels {
    gap: 1.15rem;
  }

  .device-reels__cell {
    gap: 0.5rem;
    align-items: center;
  }

  .device-reels__cell > figcaption {
    text-align: center;
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .device-viewer {
    min-height: min(210px, 34vh);
    height: min(210px, 34vh);
    width: 100%;
  }

  .app-reels--inline .app-reels__phone {
    max-width: min(100%, 22rem);
    margin-inline: auto;
  }

  .app-get {
    padding: 1.35rem var(--page-gutter);
  }

  .app-get__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.95rem;
  }

  .app-get__copy {
    max-width: 32ch;
    margin-inline: auto;
  }

  .app-get__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    width: 100%;
  }

  .store-badge {
    justify-content: center;
    min-width: 0;
    padding: 0.6rem 0.7rem;
  }

  .trust-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1.05rem;
  }

  .trust-bar .btn {
    width: 100%;
  }

  .how-journey {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
  }

  .how-grid {
    gap: 0.75rem;
  }

  .how-card {
    padding: 1rem 0.95rem 1.1rem;
  }

  .how-card h3 {
    font-size: 1.02rem;
  }

  .how-card > p:last-child {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .pricing-setup__card {
    padding: 1.15rem 1.05rem;
  }

  .pricing-tiers {
    gap: 0.75rem;
  }

  .pricing-tier {
    padding: 1.15rem 1.05rem;
  }

  .footer-cta {
    padding-top: var(--space-section);
    padding-bottom: 2.1rem;
  }

  .footer-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta__actions .btn {
    width: 100%;
  }

  .site-footer {
    padding: 1.5rem var(--page-gutter) calc(1.75rem + env(safe-area-inset-bottom));
  }
}

/* Wider phones: device + reels side by side */
@media (min-width: 430px) and (max-width: 767px) {
  .device-reels {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0.85rem;
    align-items: center;
  }

  .device-viewer {
    min-height: min(180px, 28vh);
    height: min(180px, 28vh);
  }

  .device-reels__cell > figcaption {
    font-size: 0.75rem;
  }

  .app-reels--inline .app-reels__phone {
    max-width: 100%;
  }
}

/* —— Lead form modal —— */
body.lead-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 5, 0.72);
  backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
}

.lead-modal__panel {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  max-height: min(92vh, 52rem);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(165deg, #141816 0%, #0b0d0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lead-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lead-modal__head {
  margin: 0 1.5rem 1.15rem 0;
}

.lead-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead-modal__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lead-modal__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-form__intents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lead-intent {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.4rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lead-intent.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

.lead-form__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .lead-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-field--full {
    grid-column: 1 / -1;
  }
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(244, 246, 240, 0.78);
}

.lead-field em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

.lead-field input,
.lead-field textarea,
.lead-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 11, 10, 0.65);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  resize: vertical;
}

.lead-field input:focus,
.lead-field textarea:focus,
.lead-field select:focus {
  outline: none;
  border-color: rgba(176, 210, 53, 0.55);
  box-shadow: 0 0 0 3px rgba(176, 210, 53, 0.15);
}

.lead-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(244, 246, 240, 0.55) 50%),
    linear-gradient(135deg, rgba(244, 246, 240, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.lead-form__venue {
  display: grid;
  gap: 0.75rem;
  grid-column: 1 / -1;
}

.lead-form__venue[hidden],
[data-lead-brand][hidden],
[data-lead-brand-other][hidden] {
  display: none !important;
}

@media (min-width: 560px) {
  .lead-form__venue {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form__venue .lead-field--full,
  .lead-form__venue .lead-cameras {
    grid-column: 1 / -1;
  }
}

.lead-cameras {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.lead-cameras legend {
  padding: 0;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(244, 246, 240, 0.78);
}

.lead-cameras__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lead-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 11, 10, 0.65);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.lead-check:has(input:checked) {
  border-color: rgba(176, 210, 53, 0.55);
  background: rgba(176, 210, 53, 0.12);
}

.lead-check input {
  width: auto;
  margin: 0;
  accent-color: var(--accent);
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(244, 246, 240, 0.35);
}

.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-form__status {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--accent);
}

.lead-form__status.is-error {
  color: #ff8f8f;
}

.lead-form__actions {
  margin-top: 1.1rem;
}

.lead-form__fine {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.lead-form__fine a {
  color: var(--text);
}

.lead-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.lead-success__title {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.lead-success__body {
  margin: 0 0 1.25rem;
  color: var(--muted);
}
