/* Gully11 landing — mirrors mobile app tokens & motion */

:root {
  --navy: #0b1e3f;
  --navy-dark: #0a1628;
  --navy-card: #0f1e36;
  --orange: #ff6b00;
  --orange-dark: #e85d00;
  --orange-light: #fff4eb;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --green: #16a34a;
  --green-light: #ecfdf5;
  --screen-bg: #f1f5f9;
  --feed-challenge: #fff8f3;
  --feed-club: #f0f7ff;
  --feed-players: #f0fdf4;
  --challenge-border: #ffe4cc;
  --club-border: #dbeafe;
}

html { scroll-behavior: smooth; }

/* Hero layout — column stack so stats bar sits below content, not beside it */
.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-stats {
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}
.hero-subtitle {
  color: #ffffff;
}

/* Sponsor highlight */
@keyframes sponsor-glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33% { transform: translate(12px, -18px) scale(1.08); opacity: 0.75; }
  66% { transform: translate(-10px, 8px) scale(0.95); opacity: 0.55; }
}
@keyframes sponsor-badge-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}
@keyframes sponsor-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sponsor-ring-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes sponsor-shine {
  0% { background-position: -120% center; }
  100% { background-position: 220% center; }
}
@keyframes sponsor-sparkle-pop {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes sponsor-trophy-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-6px) rotate(6deg); }
}
@keyframes sponsor-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sponsor-highlight {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: linear-gradient(165deg, #0a1628 0%, #0b1e3f 42%, #0f1e36 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}
.sponsor-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(255, 107, 0, 0.03) 48px,
    rgba(255, 107, 0, 0.03) 49px
  );
  pointer-events: none;
}
.sponsor-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: sponsor-glow-drift 8s ease-in-out infinite;
}
.sponsor-glow--orange {
  width: 280px;
  height: 280px;
  background: rgba(255, 107, 0, 0.22);
  top: -80px;
  left: 10%;
}
.sponsor-glow--blue {
  width: 220px;
  height: 220px;
  background: rgba(37, 99, 235, 0.18);
  bottom: -60px;
  right: 8%;
  animation-delay: -3s;
}
.sponsor-watermark {
  position: absolute;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.sponsor-watermark--left {
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  animation: sponsor-trophy-bob 5s ease-in-out infinite;
}
.sponsor-watermark--right {
  right: 5%;
  top: 20%;
  animation: sponsor-trophy-bob 6s ease-in-out infinite reverse;
}

.sponsor-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.sponsor-card {
  position: relative;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  border-radius: 1.75rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (min-width: 768px) {
  .sponsor-card {
    grid-template-columns: auto 1fr auto;
    padding: 2rem 2.25rem;
    gap: 2rem;
  }
}
.sponsor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1.75rem 1.75rem 0 0;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  background-size: 200% 100%;
  animation: shimmer 3.5s linear infinite;
}
.sponsor-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sponsor-enter-1,
.sponsor-enter-2,
.sponsor-enter-3,
.sponsor-enter-4,
.sponsor-enter-5 {
  opacity: 0;
}
.sponsor-card.is-visible .sponsor-enter-1 { animation: sponsor-enter 0.7s ease-out 0.05s both; }
.sponsor-card.is-visible .sponsor-enter-2 { animation: sponsor-enter 0.7s ease-out 0.15s both; }
.sponsor-card.is-visible .sponsor-enter-3 { animation: sponsor-enter 0.7s ease-out 0.25s both; }
.sponsor-card.is-visible .sponsor-enter-4 { animation: sponsor-enter 0.7s ease-out 0.35s both; }
.sponsor-card.is-visible .sponsor-enter-5 { animation: sponsor-enter 0.7s ease-out 0.45s both; }

.sponsor-visual {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto;
  flex-shrink: 0;
}
.sponsor-orbit {
  position: absolute;
  inset: -12px;
  border: 1.5px dashed rgba(255, 107, 0, 0.35);
  border-radius: 50%;
  animation: sponsor-ring-spin 14s linear infinite;
}
.sponsor-orbit--inner {
  inset: -4px;
  border-color: rgba(37, 99, 235, 0.28);
  animation: sponsor-ring-spin-reverse 10s linear infinite;
}
.sponsor-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  top: -4px;
  left: 50%;
  margin-left: -4px;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}
.sponsor-orbit-dot--blue {
  background: var(--blue);
  bottom: -4px;
  top: auto;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}
.sponsor-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 12px 32px rgba(255, 107, 0, 0.45),
    0 0 0 6px rgba(255, 107, 0, 0.12);
  animation: sponsor-badge-float 3.5s ease-in-out infinite;
}
.sponsor-badge-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
}
.sponsor-badge-sub {
  font-size: 0.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.sponsor-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 8px #ff6b00;
}
.sponsor-sparkle--1 { top: 8%; right: 18%; animation: sponsor-sparkle-pop 2s ease-in-out infinite; }
.sponsor-sparkle--2 { bottom: 12%; left: 10%; animation: sponsor-sparkle-pop 2.4s ease-in-out 0.5s infinite; }
.sponsor-sparkle--3 { top: 40%; right: 0; animation: sponsor-sparkle-pop 1.8s ease-in-out 1s infinite; }

.sponsor-copy { text-align: center; min-width: 0; }
@media (min-width: 768px) {
  .sponsor-copy { text-align: left; }
}
.sponsor-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.35);
  margin-bottom: 0.75rem;
}
.sponsor-label i { animation: pulse-glow 2s ease-in-out infinite; }
.sponsor-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.sponsor-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .sponsor-title { font-size: 1.85rem; }
}
.sponsor-title-accent {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(
    90deg,
    #ff6b00 0%,
    #ffb347 25%,
    #fff 50%,
    #ffb347 75%,
    #ff6b00 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sponsor-shine 4s linear infinite;
}
.sponsor-tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sponsor-tagline { justify-content: flex-start; }
}
.sponsor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .sponsor-chips { justify-content: flex-start; }
}
.sponsor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.sponsor-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.4);
}
.sponsor-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.06));
  border: 1.5px solid rgba(255, 107, 0, 0.35);
  text-align: center;
  animation: sponsor-badge-float 4s ease-in-out infinite;
  animation-delay: -1.5s;
}
.sponsor-partner-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
}
.sponsor-partner-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sponsor-partner-sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* Hero motion */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes tab-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-orbit { animation: orbit-spin 18s linear infinite; }
.animate-pulse-glow { animation: pulse-glow 2.2s ease-in-out infinite; }
.animate-fade-up { animation: fade-up 0.9s ease-out forwards; }
.animate-slide-left { animation: slide-in-left 0.8s ease-out forwards; }
.animate-slide-right { animation: slide-in-right 0.8s ease-out forwards; }

.gradient-text {
  background: linear-gradient(135deg, #ff6b00 0%, #ffb347 45%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* App-style eyebrow chip */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-chip--orange {
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.28);
  color: var(--orange);
}
.eyebrow-chip--blue {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue);
}
.eyebrow-chip--white {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-glow 1.8s ease-in-out infinite;
}

/* Phone mockup + in-device video */
.phone-notch {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 28px 60px -16px rgba(0, 0, 0, 0.55);
}
.phone-orbit {
  position: absolute;
  inset: -24px;
  border: 1.5px dashed rgba(255, 107, 0, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.app-phone {
  position: relative;
}
.app-phone__bezel {
  position: relative;
  background: linear-gradient(145deg, #1a2744 0%, #0a1628 50%, #1a2744 100%);
  border-radius: 2.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 32px 64px -12px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(255, 107, 0, 0.12);
}
.app-phone--lg .app-phone__bezel {
  border-radius: 2.75rem;
  padding: 0.75rem;
}
.app-phone__island {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  max-width: 5.5rem;
  height: 1.35rem;
  background: #000;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.app-phone--lg .app-phone__island {
  top: 1.35rem;
  height: 1.5rem;
}
.app-phone__screen {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: var(--navy-dark);
}
.app-phone--lg .app-phone__screen {
  border-radius: 2.15rem;
}
.app-phone__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--navy-dark);
}
.app-phone__glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 42%,
    transparent 68%,
    rgba(255, 107, 0, 0.06) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.app-phone__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 3;
}
.app-phone__live {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.app-phone__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Cinematic video showcase */
@keyframes video-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.04); opacity: 0.65; }
}
@keyframes video-float-phone {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.video-showcase {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--navy-dark);
}
.video-showcase__ambient {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  filter: blur(48px) saturate(1.2);
  opacity: 0.35;
  pointer-events: none;
}
.video-showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-dark) 0%, transparent 20%, transparent 80%, var(--navy-dark) 100%);
  pointer-events: none;
}
.video-showcase__grid {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .video-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.video-showcase__copy {
  text-align: center;
}
@media (min-width: 1024px) {
  .video-showcase__copy { text-align: left; }
}
.video-showcase__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.video-showcase__title span {
  color: var(--orange);
}
.video-showcase__desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
.video-showcase__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.video-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.video-showcase__list-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
}
.video-showcase__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.video-showcase__ring {
  position: absolute;
  width: 88%;
  max-width: 22rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 107, 0, 0.3);
  animation: video-ring-pulse 4s ease-in-out infinite;
}
.video-showcase__ring--inner {
  width: 72%;
  border-color: rgba(37, 99, 235, 0.25);
  animation-delay: -2s;
  animation-direction: reverse;
}
.video-showcase__phone-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  animation: video-float-phone 5s ease-in-out infinite;
  z-index: 2;
}
@media (min-width: 640px) {
  .video-showcase__phone-wrap { max-width: 300px; }
}
.video-showcase__reflection {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 70%;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(255, 107, 0, 0.15), transparent);
  filter: blur(12px);
  opacity: 0.5;
  pointer-events: none;
}
.video-showcase__badge {
  position: absolute;
  top: 8%;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 107, 0, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  animation: float-slow 4s ease-in-out infinite;
}
.video-showcase__badge-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.video-showcase__badge-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--orange);
}
.profile-phone-screen {
  position: relative;
  aspect-ratio: 470 / 1024;
  overflow: hidden;
  border-radius: 1.35rem;
}
.profile-phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* App feed card tints */
.card-challenge {
  background: var(--feed-challenge);
  border: 1px solid var(--challenge-border);
}
.card-club {
  background: var(--feed-club);
  border: 1px solid var(--club-border);
}
.card-players {
  background: var(--feed-players);
  border: 1px solid #bbf7d0;
}
.accent-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
.accent-stripe--orange {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
}
.accent-stripe--blue {
  background: linear-gradient(180deg, var(--blue), #1d4ed8);
}
.accent-stripe--purple {
  background: linear-gradient(180deg, var(--purple), #6d28d9);
}

/* Tab showcase */
.tab-btn {
  transition: all 0.25s ease;
}
.tab-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
  animation: tab-glow 2.5s ease-in-out infinite;
}
.tab-panel {
  display: none;
  animation: fade-up 0.45s ease-out;
}
.tab-panel.active { display: block; }

/* Timeline */
.timeline-line {
  position: absolute;
  left: 1.25rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  opacity: 0.25;
}
.timeline-step {
  position: relative;
  padding-left: 3.5rem;
}

/* Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* FAQ */
.faq-item details summary {
  cursor: pointer;
  list-style: none;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details[open] summary .faq-chevron {
  transform: rotate(180deg);
}
.faq-chevron {
  transition: transform 0.25s ease;
}

/* Stat counter */
.stat-value {
  font-variant-numeric: tabular-nums;
}

/* Icon badge — matches app gradient chips */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.icon-badge--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.icon-badge--blue {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
}
.icon-badge--navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

/* Shimmer CTA */
.btn-shimmer {
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    #ffb347 50%,
    var(--orange) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Content sheet curve — like app tab screens */
.content-sheet {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
