/* ═══════════════════════════════════════════════════════
   League360 Marketing Site — styles.css
   Dark premium aesthetic
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  background: #0a0f1a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Splash Overlay ─────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0f1a;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.4, 0, 0, 1);
}
.splash.done {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.splash-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.splash-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  animation: splashRingExpand 2s ease-out forwards;
}
.splash-logo {
  width: clamp(200px, 55vw, 280px);
  margin-left: -68px;
  opacity: 0;
  filter: drop-shadow(0 0 0px rgba(56,189,248,0));
  animation: splashFadeIn 0.8s ease-out 0.1s forwards, splashGlow 2s ease-in-out 0.8s 1;
}
.splash-tagline {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: splashTextFade 0.6s ease 0.8s forwards;
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splashGlow {
  0%   { filter: drop-shadow(0 0 0px rgba(56,189,248,0)); }
  50%  { filter: drop-shadow(0 0 28px rgba(56,189,248,0.6)); }
  100% { filter: drop-shadow(0 0 0px rgba(56,189,248,0)); }
}
@keyframes splashRingExpand {
  0%   { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes splashTextFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f1f5f9;
}
.nav-icon { width: 32px; height: 32px; border-radius: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f1f5f9; }
.nav-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #0a0f1a !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  gap: 12px;
}
.nav-mobile a {
  color: #94a3b8;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile .nav-cta {
  text-align: center;
  border-bottom: none;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 64, 175, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    #0a0f1a;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-gradient {
  background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { flex: 0 0 320px; }

/* Phone frame */
.phone-frame {
  width: 280px;
  height: 560px;
  background: #1e293b;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(56, 189, 248, 0.08);
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0a0f1a;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
}
.phone-img { width: 100%; height: 100%; object-fit: cover; }
.phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #475569;
  font-size: 1rem;
  text-align: center;
  gap: 4px;
  line-height: 1.6;
}
.phone-placeholder small { color: #334155; font-size: 0.8rem; }

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { flex: none; }
}
@media (max-width: 480px) {
  .hero-visual { display: none; }
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0f1a;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}
.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}
.btn-full { width: 100%; }

/* ── Sports Bar ─────────────────────────────────────── */
.sports-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
}
.sports-bar-label {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sports-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
}
.sport-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
  cursor: default;
}
.sport-chip:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.1);
}
.sport-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.sport-chip:hover .sport-svg {
  stroke: #38bdf8;
  transition: stroke 0.3s ease;
}
.icon-inline {
  vertical-align: -2px;
  margin-right: 2px;
}

/* ── Section Titles ─────────────────────────────────── */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ── Features ───────────────────────────────────────── */
.features {
  padding: 100px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(56, 189, 248, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card:hover .feature-icon svg {
  stroke: #38bdf8;
  transition: stroke 0.3s ease;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f1f5f9;
}
.feature-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ── How It Works ───────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}
.steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  color: #0a0f1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
}
.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 4px;
}
.step-content p {
  color: #94a3b8;
  font-size: 0.9rem;
}
.step-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(56,189,248,0.3), rgba(129,140,248,0.1));
  margin-left: 25px;
}

/* ── Showcase ───────────────────────────────────────── */
.showcase {
  padding: 100px 0;
}
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.showcase-tab {
  padding: 12px 32px;
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  background: rgba(15, 30, 50, 0.6);
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.showcase-tab:hover {
  border-color: rgba(56, 189, 248, 0.45);
  color: #e2e8f0;
  background: rgba(56, 189, 248, 0.08);
}
.showcase-tab.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.1));
  border-color: rgba(56, 189, 248, 0.6);
  color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.showcase-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.showcase-scroll::-webkit-scrollbar { height: 6px; }
.showcase-scroll::-webkit-scrollbar-track { background: transparent; }
.showcase-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.showcase-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.showcase-card:hover {
  border-color: rgba(56, 189, 248, 0.2);
  transform: translateY(-4px);
}
.showcase-card img {
  width: 100%;
  height: auto;
}
.showcase-card span {
  display: block;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  text-align: center;
}
.showcase-placeholder {
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
}

/* ── Pricing ────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.price-card-featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.08);
}
.price-card-featured:hover {
  border-color: rgba(245, 158, 11, 0.5);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0f1a;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.price-tag span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
}
.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.price-desc {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.price-card ul {
  text-align: left;
}
.price-card li {
  padding: 6px 0;
  color: #94a3b8;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card li::before {
  content: '✓';
  color: #34d399;
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-early {
  text-align: center;
  color: #fbbf24;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* 2-column variant for individual/family */
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 400px; }
}

/* Pricing track label */
.pricing-track {
  text-align: center;
  margin-bottom: 28px;
}
.pricing-track-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.pricing-track-desc {
  color: #64748b;
  font-size: 0.9rem;
}

/* ── Difference ─────────────────────────────────────── */
.difference {
  padding: 100px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.diff-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.diff-card h3 {
  color: #38bdf8;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.diff-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}
.diff-disclaimer {
  text-align: center;
  color: #475569;
  font-size: 0.75rem;
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ── Backyard ───────────────────────────────────────── */
.backyard {
  padding: 60px 0;
}
.backyard-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
}
.backyard-emoji {
  flex-shrink: 0;
}
.backyard-emoji svg {
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.backyard h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.backyard p {
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .backyard-inner { flex-direction: column; text-align: center; }
}

/* ── Waitlist ───────────────────────────────────────── */
.waitlist {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.08) 50%, transparent 100%);
}
.waitlist-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group .optional {
  text-transform: none;
  font-weight: 400;
  color: #475569;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #475569; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option {
  background: #1e293b;
  color: #e2e8f0;
}
.form-note {
  text-align: center;
  color: #fbbf24;
  font-size: 0.85rem;
  margin-top: 16px;
}
.form-error {
  text-align: center;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
}
.form-error a {
  color: #fbbf24;
  text-decoration: underline;
}
.waitlist-success {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #0a0f1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.waitlist-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.waitlist-success p {
  color: #94a3b8;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-logo { width: 28px; height: 28px; border-radius: 6px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #64748b;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #e2e8f0; }
.footer-social a {
  color: #64748b;
  transition: color 0.2s;
}
.footer-social a:hover { color: #e2e8f0; }
.footer-bottom {
  text-align: center;
  color: #475569;
  font-size: 0.82rem;
}

@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.feature-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.3s; }
.feature-card.reveal:nth-child(7) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(8) { transition-delay: 0.3s; }
.feature-card.reveal:nth-child(9) { transition-delay: 0.4s; }
