/* ==========================================================================
   Turnstr+ Pre-Launch Experience Stylesheet
   Design System: Deep Dark Luxury, Electric Blue (#214ECF) & Sunset Orange (#FF7A2F)
   Typography: Plus Jakarta Sans
   ========================================================================== */

:root {
  /* Brand Palette */
  --color-primary: #214ECF;
  --color-primary-light: #4B7BFF;
  --color-primary-glow: rgba(33, 78, 207, 0.45);
  
  --color-accent: #FF7A2F;
  --color-accent-hover: #FF6207;
  --color-accent-light: #FF9B60;
  --color-accent-glow: rgba(255, 122, 47, 0.4);
  
  --color-gold: #F4B747;
  --color-green: #10B981;
  --color-danger: #FF4538;

  /* Neutrals & Surfaces */
  --bg-deep: #080608;
  --bg-surface-1: #0F0D13;
  --bg-surface-2: #16141D;
  --bg-surface-3: #201D29;
  --bg-glass: rgba(22, 20, 29, 0.7);
  --bg-glass-card: rgba(26, 23, 34, 0.65);
  --bg-glass-input: rgba(14, 12, 19, 0.85);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(255, 122, 47, 0.6);
  --border-primary: rgba(33, 78, 207, 0.5);

  /* Typography */
  --text-white: #FFFFFF;
  --text-muted: #A3A1A8;
  --text-dim: #716E7A;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 40px -10px rgba(33, 78, 207, 0.2);
  --shadow-glow-orange: 0 0 30px rgba(255, 122, 47, 0.35);
  --shadow-glow-blue: 0 0 35px rgba(33, 78, 207, 0.4);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1180px;

  /* Vertical rhythm between stacked landing sections */
  --section-y: 48px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  background-color: #080608;
  color: var(--text-white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #080608;
}

/* Ambient Background Lights - Sleek Black Canvas with Moving Gloomy Orange */
.ambient-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-color: #080608;
}

/* Moving Gloomy Orange Entities */
.gloomy-orange-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  will-change: transform, opacity;
}

.gloomy-orange-orb.orb-1 {
  width: 720px;
  height: 720px;
  top: 8%;
  left: 25%;
  background: radial-gradient(circle, rgba(255, 115, 30, 0.42) 0%, rgba(255, 75, 0, 0.22) 35%, rgba(180, 45, 0, 0.08) 55%, transparent 70%);
  animation: gloomy-wander-1 8.5s ease-in-out infinite alternate;
}

.gloomy-orange-orb.orb-2 {
  width: 650px;
  height: 650px;
  top: 52%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 130, 35, 0.38) 0%, rgba(230, 65, 0, 0.18) 38%, rgba(160, 35, 0, 0.06) 58%, transparent 70%);
  animation: gloomy-wander-2 10.5s ease-in-out infinite alternate;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
}

/* Smooth Wander Keyframe Animations for Gloomy Orange Movement */
@keyframes gloomy-wander-1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.65;
  }
  33% {
    transform: translate(140px, 90px) scale(1.18);
    opacity: 0.85;
  }
  66% {
    transform: translate(50px, -70px) scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: translate(-120px, 40px) scale(1.12);
    opacity: 0.8;
  }
}

@keyframes gloomy-wander-2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.58;
  }
  33% {
    transform: translate(-150px, -90px) scale(1.22);
    opacity: 0.85;
  }
  66% {
    transform: translate(-60px, 80px) scale(0.92);
    opacity: 0.62;
  }
  100% {
    transform: translate(110px, -50px) scale(1.15);
    opacity: 0.78;
  }
}

/* Confetti Canvas */
.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFCF70 30%, #FF8A00 70%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 6, 8, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 122, 47, 0.3);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

.logo-plus {
  color: var(--color-accent);
  font-weight: 900;
  margin-left: 2px;
  background: linear-gradient(135deg, #FFCF6D, #FF7316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-badge-wrap {
  display: flex;
  align-items: center;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(255, 122, 47, 0.12);
  border: 1px solid rgba(255, 122, 47, 0.3);
  color: #FFB082;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--color-accent); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-outline-glow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  backdrop-filter: blur(8px);
}

.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 122, 47, 0.3);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #FF7A2F 0%, #FF5200 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 122, 47, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF8C49 0%, #FF6014 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 47, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(33, 78, 207, 0.15);
  border: 1px solid rgba(75, 123, 255, 0.3);
  color: #8EAEFF;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(33, 78, 207, 0.2);
}

.badge-sparkle {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-subtitle strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* ==========================================================================
   Cinematic Video Showcase
   ========================================================================== */
.video-section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.video-section-inner {
  display: flex;
  justify-content: center;
}

.video-showcase-section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.video-card-glow-wrap {
  position: relative;
  width: 100%;
}

.video-back-glow {
  position: absolute;
  inset: -24px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(255, 122, 47, 0.55) 0%, rgba(255, 82, 0, 0.35) 45%, rgba(255, 155, 96, 0.12) 65%, transparent 80%);
  filter: blur(45px);
  z-index: 0;
  opacity: 0.9;
  transition: all 0.5s ease;
  pointer-events: none;
}

.video-player-container {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.video-element,
.youtube-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Video Footer Strip */
.video-footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  padding: 12px 24px;
  background: rgba(22, 20, 29, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.strip-item strong {
  color: var(--text-white);
}

.dot-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
}

.dot-indicator.dot-orange {
  background-color: var(--color-accent);
  box-shadow: 0 0 6px var(--color-accent);
}

/* ==========================================================================
   Countdown Section
   ========================================================================== */
.countdown-section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.countdown-panel {
  background: linear-gradient(180deg, rgba(20, 16, 24, 0.85) 0%, rgba(12, 10, 15, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.countdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 47, 0.6), transparent);
}

.countdown-header {
  margin-bottom: 36px;
}

.subhead-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(255, 122, 47, 0.1);
  border: 1px solid rgba(255, 122, 47, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section-desc strong {
  color: var(--text-white);
}

/* Countdown Clock Grid */
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 28px;
}

.countdown-card {
  background: rgba(10, 8, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-width: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.countdown-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.countdown-card.accent-card {
  border-color: rgba(255, 122, 47, 0.4);
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.1) 0%, rgba(10, 8, 14, 0.9) 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 122, 47, 0.15);
}

.countdown-digit-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.countdown-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.accent-card .countdown-number {
  color: var(--color-accent);
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 8px;
}

.accent-card .countdown-label {
  color: #FFB082;
}

.countdown-divider {
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-glass);
  align-self: center;
  margin-top: -18px;
}

.countdown-announcement-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(33, 78, 207, 0.12);
  border: 1px solid rgba(75, 123, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.88rem;
  color: #B5CBFF;
  max-width: 720px;
}

.bell-icon {
  font-size: 1.1rem;
}

/* ==========================================================================
   Pre-Signup Form Card
   ========================================================================== */
.presignup-section {
  position: relative;
  z-index: 1;
  padding: 56px 0 var(--section-y);
}

.presignup-card-container {
  max-width: 760px;
  margin: 0 auto;
}

.presignup-card {
  background: linear-gradient(180deg, rgba(22, 18, 27, 0.92) 0%, rgba(12, 10, 15, 0.96) 100%);
  border: 1px solid rgba(255, 122, 47, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 122, 47, 0.12);
  position: relative;
  overflow: hidden;
}

.presignup-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFB082;
  background: rgba(255, 122, 47, 0.12);
  border: 1px solid rgba(255, 122, 47, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.form-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.form-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Role Selector Pills */
/* Form Inputs & Layout (Matching turnstr-web-v2 theme) */
.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.form-field-group {
  margin-bottom: 16px;
  text-align: left;
}

.field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 8px;
  text-align: left;
}

.field-input-wrap {
  position: relative;
  width: 100%;
}

.form-text-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: rgba(14, 12, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-text-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 47, 0.25), 0 0 16px rgba(255, 122, 47, 0.2);
  background: rgba(20, 17, 26, 0.95);
}

.form-text-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Mobile with Country Code (Seamless Joined Input) */
.mobile-input-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.country-code-select-wrap {
  position: relative;
  flex-shrink: 0;
  width: 90px;
}

.country-code-select {
  width: 100%;
  height: 52px;
  padding: 0 24px 0 14px;
  background: rgba(14, 12, 19, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: none;
  border-radius: 14px 0 0 14px;
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.country-code-select option {
  background: #14121A;
  color: #FFFFFF;
}

.select-arrow-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.country-code-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 47, 0.25);
  z-index: 2;
}

.mobile-phone-input {
  flex: 1;
  height: 52px;
  padding: 0 16px;
  background: rgba(14, 12, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 14px 14px 0;
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.mobile-phone-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 47, 0.25), 0 0 16px rgba(255, 122, 47, 0.2);
  background: rgba(20, 17, 26, 0.95);
  z-index: 1;
}

.mobile-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Password Toggle Eye Button */
.password-input-wrap {
  position: relative;
}

.pr-password {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.password-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
}

/* Full Width Submit Button */
.form-submit-wrap {
  margin-top: 20px;
  margin-bottom: 8px;
}

.btn-submit-full {
  width: 100%;
  height: 54px;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 122, 47, 0.35);
  transition: all 0.25s ease;
}

.btn-submit-full:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 47, 0.5);
}

.btn-submit-full:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin-loader 0.8s linear infinite;
  display: inline-block;
}

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

/* Error State */
.form-error-msg {
  font-size: 0.85rem;
  color: var(--color-danger);
  min-height: 20px;
  margin-bottom: 8px;
  text-align: left;
  font-weight: 600;
}

/* Form Social Proof & Guarantee */
.form-footer-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.avatars-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #16141D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: -8px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.av-1 { background: #214ECF; color: #fff; }
.av-2 { background: #FF7A2F; color: #fff; }
.av-3 { background: #10B981; color: #fff; }
.av-4 { background: #6366F1; color: #fff; }

.proof-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.proof-text strong {
  color: var(--text-white);
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* Form Success State */
.form-state-success {
  text-align: center;
  padding: 20px 0;
  animation: scale-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scale-up {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 2px solid var(--color-green);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.3);
}

.success-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.success-desc strong {
  color: var(--color-accent);
}

.success-info-box {
  background: rgba(14, 12, 19, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 28px;
  text-align: left;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-key {
  color: var(--text-dim);
}

.info-val {
  font-weight: 600;
  color: var(--text-white);
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-green {
  color: var(--color-green) !important;
}

.success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-family);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.btn-text-link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   Platform Availability Section
   ========================================================================== */
.platforms-section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0 80px;
}

.platforms-header {
  text-align: center;
  margin-bottom: 48px;
}

.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.platform-card {
  background: rgba(18, 15, 23, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover {
  transform: translateY(-6px);
  background: rgba(24, 20, 30, 0.85);
  border-color: rgba(255, 122, 47, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 122, 47, 0.15);
}

.platform-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(33, 78, 207, 0.12);
  border: 1px solid rgba(75, 123, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.platform-card:hover .platform-icon-wrap {
  background: rgba(255, 122, 47, 0.15);
  border-color: rgba(255, 122, 47, 0.4);
  color: var(--color-accent);
  transform: scale(1.08);
}

.platform-status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFB082;
  background: rgba(255, 122, 47, 0.12);
  border: 1px solid rgba(255, 122, 47, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  display: inline-block;
}

.platform-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.platform-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  min-height: 40px;
}

.store-badge-img img {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}

.platform-card:hover .store-badge-img img {
  transform: scale(1.04);
}

.web-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14, 12, 19, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
}

.web-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
}

.tv-brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.tv-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 1;
  background: #050405;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 440px;
}

.footer-launch-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 47, 0.1);
  border: 1px solid rgba(255, 122, 47, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #FFB082;
}

.footer-bottom-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   Utility Classes & Animations
   ========================================================================== */
.hidden {
  display: none !important;
}

.animate-fade-in {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-fade-in-delay-1 {
  animation: fade-in-up 0.6s ease-out 0.15s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fade-in-up 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fade-in-up 0.7s ease-out 0.45s forwards;
  opacity: 0;
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .platform-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-y: 36px;
  }

  .presignup-section {
    padding-top: 40px;
  }

  .header-badge-wrap {
    display: none;
  }

  .countdown-panel {
    padding: 36px 16px;
  }

  .countdown-grid {
    gap: 8px;
    width: 100%;
    max-width: 420px;
    margin: 28px auto 24px;
    padding: 0 4px;
  }

  .countdown-card {
    min-width: 0;
    flex: 1;
    padding: 12px 6px;
  }

  .countdown-divider {
    font-size: 1.2rem;
    margin-top: -10px;
    flex-shrink: 0;
  }

  .presignup-card {
    padding: 32px 20px;
  }

  .role-pills {
    grid-template-columns: 1fr;
  }

  .input-action-row {
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
  }

  .platform-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  :root {
    --section-y: 32px;
  }

  .presignup-section {
    padding-top: 32px;
  }

  .platforms-section {
    padding-bottom: 64px;
  }

  .countdown-panel {
    padding: 32px 14px;
  }

  .countdown-grid {
    gap: 4px;
    max-width: 100%;
    padding: 0 2px;
  }

  .countdown-card {
    padding: 10px 4px;
    border-radius: 10px;
  }

  .countdown-number {
    font-size: 1.55rem;
  }

  .countdown-label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    margin-top: 4px;
  }

  .countdown-divider {
    font-size: 1rem;
    margin-top: -6px;
  }
}

@media (max-width: 360px) {
  .countdown-panel {
    padding: 28px 10px;
  }

  .countdown-grid {
    gap: 2px;
  }

  .countdown-card {
    padding: 8px 2px;
  }

  .countdown-number {
    font-size: 1.35rem;
  }

  .countdown-label {
    font-size: 0.55rem;
  }
}
