/* Telec.ai — AI Tel-Tech Company | Mobile-first dark theme */
/* Version 2.0 — Full production quality */

:root {
  --bg: #080810;
  --bg2: #0e0e1a;
  --bg3: #161624;
  --accent: #00e5ff;
  --accent2: #7c3aed;
  --accent3: #06b6d4;
  --green: #10b981;
  --text: #f0f0f8;
  --muted: #7777a0;
  --muted2: #5555800;
  --border: #1e1e32;
  --border2: #2a2a45;
  --card: #0f0f1e;
  --gradient: linear-gradient(135deg, #00e5ff 0%, #7c3aed 100%);
  --gradient-r: linear-gradient(135deg, #7c3aed 0%, #00e5ff 100%);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 8px 40px rgba(0,229,255,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(0,229,255,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: 96px; /* 36px banner + 60px nav */
}

/* ── ANIMATIONS ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes grid-glow {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.07; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(8,8,16,0.98);
  border-bottom-color: var(--border2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #000;
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active-nav { color: var(--text); }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-left: 10px;
  padding: 3px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.lang-btn {
  background: transparent;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.15s;
  opacity: 0.45;
  filter: grayscale(40%);
}
.lang-btn:hover { opacity: 0.85; filter: grayscale(0%); }
.lang-active { opacity: 1 !important; filter: grayscale(0%) !important; background: rgba(255,255,255,0.08) !important; }

.nav-cta {
  background: var(--gradient) !important;
  color: #000 !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: opacity 0.2s, transform 0.15s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
  color: #000 !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.2s;
}

.nav-mobile-toggle:hover { border-color: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,229,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124,58,237,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated grid background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  animation: fade-up 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.dot.green { background: var(--green); }

h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #000;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.25);
  opacity: 0.95;
  color: #000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0,229,255,0.05);
  transform: translateY(-1px);
  color: var(--text);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 8px; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.4;
}

/* ── SECTIONS ── */
section {
  padding: 80px 5%;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 5% 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0,229,255,0.07) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-hero .hero-badge { margin-bottom: 20px; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.product-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.06) 0%, transparent 70%);
}

.device-art {
  font-size: 90px;
  filter: drop-shadow(0 0 50px rgba(0,229,255,0.4));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.product-badge {
  display: inline-block;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.spec-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.spec-val {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spec-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── MAP ── */
.map-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.map-placeholder {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-icon { font-size: 60px; position: relative; z-index: 1; }

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 180px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── WAITLIST SECTION ── */
.waitlist-section {
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(124,58,237,0.06) 100%);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.waitlist-form input:focus {
  border-color: var(--accent);
  background: rgba(0,229,255,0.04);
}

.waitlist-form input::placeholder { color: var(--muted); }

.form-success {
  display: none;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 18px 24px;
  color: var(--green);
  font-weight: 600;
  max-width: 480px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

.waitlist-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.waitlist-count strong { color: var(--accent); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}

/* ── FEATURE HIGHLIGHT ── */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.feature-highlight.reverse { direction: rtl; }
.feature-highlight.reverse > * { direction: ltr; }

.feature-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 70%);
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  align-items: flex-start;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.timeline-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── PILL TAG ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.tag.accent { background: rgba(0,229,255,0.08); border-color: rgba(0,229,255,0.2); color: var(--accent); }
.tag.purple { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #a78bfa; }
.tag.green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .product-showcase,
  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-highlight.reverse { direction: ltr; }

  .map-container {
    grid-template-columns: 1fr;
  }

  .map-legend {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  section { padding: 56px 5%; }
  .hero { padding: 60px 5% 48px; min-height: auto; }
  h1 { letter-spacing: -0.8px; }
  .section-title { letter-spacing: -0.4px; }
  
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    gap: 16px;
    z-index: 999;
  }
  
  .nav-mobile-toggle { display: block; }

  .stats-bar { padding: 20px 5%; }
  .stat-item { min-width: 50%; }

  footer {
    grid-template-columns: 1fr;
    padding: 48px 5% 32px;
  }

  .waitlist-section { padding: 48px 24px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .product-specs { grid-template-columns: 1fr 1fr; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GLOW RING ── */
.glow-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(0,229,255,0.08);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}

/* ── COUNTER ANIMATION ── */
.counter { transition: all 0.3s ease; }

/* ── COVERAGE REGIONS ── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.region-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.15s;
}

.region-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateY(-2px);
}

.region-flag { font-size: 2rem; }

.region-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.region-info p { font-size: 12px; color: var(--muted); }

.region-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.status-live { background: rgba(16,185,129,0.1); color: var(--green); }
.status-soon { background: rgba(0,229,255,0.1); color: var(--accent); }
.status-planned { background: rgba(124,58,237,0.1); color: #a78bfa; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.2s;
}

.team-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-3px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
}

.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table td.yes { color: var(--green); font-weight: 700; }
.compare-table td.no { color: #ef4444; }
.compare-table tr.highlight td { background: rgba(0,229,255,0.03); }
.compare-table tr.highlight td:first-child { color: var(--accent); }

/* ── ANNOUNCE BANNER ── */
.announce-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0a1a2e, #0d1f3a, #0a1a2e);
  border-bottom: 1px solid rgba(0,229,255,0.2);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announce-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  font-size: 12.5px;
  color: var(--muted);
}

.announce-item strong { color: #e2e8f0; font-weight: 700; }
.announce-item a { color: var(--accent); text-decoration: none; font-weight: 600; }
.announce-item a:hover { text-decoration: underline; }

.announce-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(0,229,255,0.4);
  border-radius: 50%;
  margin: 0 12px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
