/* ── FONTS ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@700;800&display=swap');

/* ── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0A0A0F;
  --bg-secondary:  #0D0D16;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --accent-violet: #7B2FFF;
  --accent-cyan:   #00D4FF;
  --accent-gold:   #FFD700;
  --accent-green:  #00FF88;
  --accent-red:    #FF3B30;
  --text-primary:  #FFFFFF;
  --text-secondary:#A0AEC0;
  --text-muted:    #4A5568;
  --border:        rgba(255, 255, 255, 0.08);
  --border-hover:  rgba(255, 255, 255, 0.15);
  --gradient-main: linear-gradient(135deg, #7B2FFF, #00D4FF);
  --gradient-gold: linear-gradient(135deg, #FFD700, #FF8C00);
  --font-heading:  'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;
  --nav-height:    72px;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── KEYFRAMES ──────────────────────────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes navPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,47,255,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(123,47,255,0); }
}
@keyframes borderGlow {
  0%   { border-color: var(--accent-violet); }
  50%  { border-color: var(--accent-cyan); }
  100% { border-color: var(--accent-violet); }
}
@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,59,48,0.3), 0 8px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 50px rgba(255,59,48,0.6), 0 8px 32px rgba(0,0,0,0.4); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-15px) rotate(-2deg); }
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(10px) translateX(-50%); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes liveDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50%       { transform: scale(1.1); opacity: 0.2; }
}

/* ── GLASS CARDS ────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* ── GLOW EFFECTS ───────────────────────────────────────────────────────── */
.glow-violet { box-shadow: 0 0 40px rgba(123,47,255,0.3), 0 0 80px rgba(123,47,255,0.1); }
.glow-cyan   { box-shadow: 0 0 40px rgba(0,212,255,0.3), 0 0 80px rgba(0,212,255,0.1); }
.glow-gold   { box-shadow: 0 0 40px rgba(255,215,0,0.3), 0 0 80px rgba(255,215,0,0.1); }

/* ── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── HERO ANIMATE ───────────────────────────────────────────────────────── */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-animate.visible { opacity: 1; transform: translateY(0); }

/* ── GRADIENT TEXT ──────────────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,47,255,0.4);
}
.btn-gradient:hover::before { animation: shine 0.6s ease forwards; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: 1.5px solid var(--accent-cyan);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.btn-android {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent-green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: 1.5px solid var(--accent-green);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-android:hover {
  background: rgba(0,255,136,0.1);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

/* ── SECTION LAYOUT ─────────────────────────────────────────────────────── */
section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }

.section-wrapper { border-top: 1px solid var(--border); }
.section-wrapper.bg-secondary { background: var(--bg-secondary); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 60px;
}

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  display: inline-block;
}
.nav-beta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(123,47,255,0.2);
  border: 1px solid rgba(123,47,255,0.4);
  color: var(--accent-violet);
  padding: 2px 7px;
  border-radius: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-cta { animation: navPulse 2s infinite; }

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-toggle.open span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu-toggle span:nth-child(4) { display: none; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 24px;
  background: linear-gradient(135deg, #0A0A0F 0%, #0D0A1F 25%, #0A0F1F 50%, #0A0A0F 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

#particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: pulse-orb 6s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: var(--accent-violet);
  opacity: 0.12;
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--accent-cyan);
  opacity: 0.08;
  bottom: -80px; left: -80px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 36px;
}

.dot {
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: liveDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-label {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}
.hero-h1-main {
  font-family: var(--font-heading);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-h1-outline {
  font-family: var(--font-heading);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  -webkit-text-stroke: 2px var(--accent-violet);
  color: transparent;
  display: block;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
}

.ticker-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 10px 0;
  margin-bottom: 36px;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0 24px;
}
.ticker-sep { margin: 0 24px; color: var(--text-muted); }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note { font-size: 13px; color: var(--text-muted); margin-bottom: 60px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  transform: translateX(-50%);
}
.scroll-arrow {
  display: block;
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
  margin-top: 6px;
}

/* ── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.stat-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ── HOW IT WORKS ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  animation: borderGlow 2s infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.step-num {
  position: absolute;
  top: -12px; right: 16px;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.08;
}
.step-icon { font-size: 48px; display: block; margin-bottom: 16px; position: relative; z-index: 1; }
.step-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ── PHONE MOCKUP SECTION ───────────────────────────────────────────────── */
.mockup-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mockup-text .section-label { text-align: left; }
.mockup-h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.mockup-desc { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.feature-pill:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

.phone-wrapper {
  display: flex;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.phone {
  width: 280px;
  height: 560px;
  background: #111827;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 48px 12px 16px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), 0 0 60px rgba(123,47,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: #000;
  border-radius: 3px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.phone-online { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--accent-green); }
.phone-online .dot { width: 5px; height: 5px; background: var(--accent-green); animation: none; }
.phone-team-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0 4px;
}
.phone-chat { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.phone-msg { display: flex; }
.phone-msg-left { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
.phone-msg-right { justify-content: flex-end; }
.phone-bubble-left, .phone-bubble-right {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 500;
  max-width: 75%;
  line-height: 1.4;
}
.phone-bubble-left {
  background: rgba(123,47,255,0.25);
  border: 1px solid rgba(123,47,255,0.3);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.phone-bubble-right {
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.25);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.reaction-pill {
  font-size: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 8px;
  margin-top: 3px;
  color: var(--text-secondary);
  display: inline-block;
}
.phone-input-bar {
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 10px;
  color: var(--text-muted);
}

/* ── FEATURES ───────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 20px 0 0 20px;
}
.feature-card.fc-violet::before { background: var(--accent-violet); }
.feature-card.fc-cyan::before   { background: var(--accent-cyan); }
.feature-card.fc-green::before  { background: var(--accent-green); }
.feature-card.fc-pink::before   { background: #FF2D9E; }
.feature-card.fc-gold::before   { background: var(--accent-gold); }
.feature-card.fc-blue::before   { background: #3B82F6; }
.feature-card.fc-emerald::before { background: #22C55E; }

.feature-card:hover { transform: translateY(-6px); }
.feature-card.fc-violet:hover { box-shadow: 0 20px 60px rgba(123,47,255,0.2); border-color: rgba(123,47,255,0.3); }
.feature-card.fc-cyan:hover   { box-shadow: 0 20px 60px rgba(0,212,255,0.2); border-color: rgba(0,212,255,0.3); }
.feature-card.fc-green:hover  { box-shadow: 0 20px 60px rgba(0,255,136,0.2); border-color: rgba(0,255,136,0.3); }
.feature-card.fc-pink:hover   { box-shadow: 0 20px 60px rgba(255,45,158,0.2); border-color: rgba(255,45,158,0.3); }
.feature-card.fc-gold:hover   { box-shadow: 0 20px 60px rgba(255,215,0,0.2); border-color: rgba(255,215,0,0.3); }
.feature-card.fc-blue:hover    { box-shadow: 0 20px 60px rgba(59,130,246,0.2); border-color: rgba(59,130,246,0.3); }
.feature-card.fc-emerald:hover { box-shadow: 0 20px 60px rgba(34,197,94,0.2); border-color: rgba(34,197,94,0.3); }

.feature-icon-circle {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.fc-violet .feature-icon-circle { background: rgba(123,47,255,0.15); }
.fc-cyan   .feature-icon-circle { background: rgba(0,212,255,0.12); }
.fc-green  .feature-icon-circle { background: rgba(0,255,136,0.12); }
.fc-pink   .feature-icon-circle { background: rgba(255,45,158,0.12); }
.fc-gold   .feature-icon-circle { background: rgba(255,215,0,0.12); }
.fc-blue    .feature-icon-circle { background: rgba(59,130,246,0.12); }
.fc-emerald .feature-icon-circle { background: rgba(34,197,94,0.12); }

.feature-title { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── MATCH CARDS ────────────────────────────────────────────────────────── */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.match-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.match-card-live { border-color: rgba(255,59,48,0.4); animation: liveGlow 2s infinite; }
.match-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-red);
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.3);
  padding: 4px 10px;
  border-radius: 50px;
}
.venue { font-size: 11px; color: var(--text-muted); }
.match-stage { font-size: 11px; color: var(--text-muted); margin-bottom: 20px; }
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}
.team-block { text-align: center; flex: 1; }
.team-flag-lg { font-size: 40px; display: block; margin-bottom: 6px; }
.team-name { font-size: 13px; font-weight: 700; }
.vs-badge { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--text-muted); flex-shrink: 0; }
.match-score { font-family: var(--font-heading); font-size: 28px; font-weight: 800; flex-shrink: 0; }
.btn-live {
  display: block;
  text-align: center;
  padding: 12px;
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.35);
  color: var(--accent-red);
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-live:hover { background: rgba(255,59,48,0.22); }
.upcoming-label { font-size: 10px; font-weight: 800; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.countdown-small {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}

/* ── PRICING ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-paid {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(160deg, rgba(255,215,0,0.04) 0%, rgba(10,10,15,0) 100%);
}
.pricing-card-paid:hover { box-shadow: 0 0 40px rgba(255,215,0,0.15), 0 0 80px rgba(255,215,0,0.05); }
.pricing-top-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.pricing-most-popular {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--gradient-gold);
  color: #000;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  pointer-events: none;
}
.pricing-tier { font-family: var(--font-heading); font-size: 15px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-heading); font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.pricing-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.check { color: var(--accent-green); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--text-muted); flex-shrink: 0; }

.trust-badges { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-badge { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-outer {
  overflow: hidden;
  position: relative;
  padding: 8px 0 40px;
}
.testimonials-outer::before,
.testimonials-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testimonials-outer::before { left: 0; background: linear-gradient(90deg, var(--bg-primary), transparent); }
.testimonials-outer::after  { right: 0; background: linear-gradient(-90deg, var(--bg-primary), transparent); }

.section-wrapper.bg-secondary .testimonials-outer::before { background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.section-wrapper.bg-secondary .testimonials-outer::after  { background: linear-gradient(-90deg, var(--bg-secondary), transparent); }

.testimonial-track { display: flex; gap: 20px; width: max-content; }
.testimonial-card {
  width: 280px; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-stars { color: var(--accent-gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 600; }

/* ── TEAMS ──────────────────────────────────────────────────────────────── */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.team-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(123,47,255,0.4);
  box-shadow: 0 12px 40px rgba(123,47,255,0.2);
}
.team-flag { font-size: 32px; display: block; margin-bottom: 8px; }
.team-name-small { font-size: 12px; font-weight: 700; color: var(--text-secondary); margin-bottom: 3px; }
.team-fans { font-size: 10px; color: var(--text-muted); }
.team-hot-badge {
  position: absolute;
  top: -8px; right: -4px;
  font-size: 9px; font-weight: 700;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 7px;
  border-radius: 50px;
}
.teams-more { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 24px; }

/* ── COUNTDOWN ──────────────────────────────────────────────────────────── */
.countdown-inner { text-align: center; }
.countdown-event { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--accent-violet); text-transform: uppercase; margin-bottom: 8px; display: block; }
.countdown-title { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 6px; }
.countdown-date { font-size: 15px; color: var(--text-muted); margin-bottom: 52px; }
.countdown-grid { display: flex; gap: 12px; justify-content: center; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; }
.countdown-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px;
  min-width: 90px;
  text-align: center;
}
.countdown-num {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 800; line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 8px;
}
.countdown-unit { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.countdown-colon {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 24px;
}
.countdown-cta { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; }

/* ── DOWNLOAD CTA ───────────────────────────────────────────────────────── */
.download-inner { text-align: center; }
.download-ball { font-size: 64px; display: block; margin-bottom: 24px; animation: spin 8s linear infinite; }
.download-h2 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 64px); font-weight: 800; margin-bottom: 12px; }
.download-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 48px; }
.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.download-card:hover { transform: translateY(-4px); }
.download-card-android { border-color: rgba(0,255,136,0.2); }
.download-card-android:hover { box-shadow: 0 16px 48px rgba(0,255,136,0.15); }
.download-card-web { border-color: rgba(123,47,255,0.3); background: rgba(123,47,255,0.03); }
.download-card-web:hover { box-shadow: 0 16px 48px rgba(123,47,255,0.2); }
.download-card-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.download-card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.download-card-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.download-card-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.download-note { font-size: 13px; color: var(--text-muted); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-logo-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-about { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.footer-email-link { font-size: 14px; color: var(--accent-cyan); transition: opacity 0.2s; text-decoration: none; }
.footer-email-link:hover { opacity: 0.8; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: var(--text-primary); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-made { font-size: 13px; color: var(--text-muted); }

/* Legacy policy-page footer layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; text-decoration: none; }
.footer-nav a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto; }
.footer-logo { font-family: var(--font-heading); font-size: 18px; font-weight: 800; text-decoration: none; }
.footer-email { font-size: 13px; color: var(--accent-cyan); text-decoration: none; }

/* ── POLICY PAGES ───────────────────────────────────────────────────────── */
.policy-header {
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(123,47,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 10px;
}
.policy-date { font-size: 14px; color: var(--text-muted); }

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.policy-content h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin: 40px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.policy-content ul { margin: 12px 0 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.policy-content ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.7; list-style: disc; }
.policy-content a { color: var(--accent-cyan); }

/* ── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.contact-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.contact-type { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.contact-email { font-size: 15px; font-weight: 600; color: var(--accent-cyan); margin-bottom: 10px; }
.contact-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.contact-info-block {
  max-width: 600px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.75; text-align: center;
}

/* ── PHONES ROW ─────────────────────────────────────────────────────────── */
.phones-row {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
}
.phone-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.phones-row .phone-wrapper:nth-child(2) {
  animation-direction: alternate-reverse;
}

/* ── PRIVACY BANNER ─────────────────────────────────────────────────────── */
.privacy-banner {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 60px auto;
}
.privacy-banner-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.privacy-icon { font-size: 48px; flex-shrink: 0; line-height: 1; }
.privacy-text { flex: 1; min-width: 240px; }
.privacy-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #22C55E;
  margin-bottom: 8px;
}
.privacy-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.privacy-badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22C55E;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .teams-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 18px; }
  .nav-menu .btn-gradient { padding: 14px 40px; font-size: 16px; }
  .nav-menu-toggle { display: flex; }

  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .matches-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-grid { grid-template-columns: repeat(3, 1fr); }
  .download-cards { grid-template-columns: 1fr; }
  .mockup-section { grid-template-columns: 1fr; }
  .phone-wrapper { order: -1; }
  .phones-row { flex-direction: column; align-items: center; }
  .phones-row .phone-wrapper { order: 0; }
  .privacy-banner { padding: 28px 20px; }
  .privacy-banner-inner { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-bottom, .footer-bottom-bar { flex-direction: column; text-align: center; }
  .countdown-grid { gap: 8px; }
  .countdown-block { padding: 20px 14px; min-width: 70px; }
  .countdown-num { font-size: 36px; }
  .countdown-colon { font-size: 36px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  section { padding: 70px 20px; }
}

@media (max-width: 480px) {
  .teams-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1-main, .hero-h1-outline { font-size: clamp(52px, 15vw, 72px); letter-spacing: -2px; }
  .pricing-card { padding: 32px 24px; }
  .contact-info-block { padding: 28px 24px; }
}
