/* ============================================
   REVENDUM — Coming Soon Landing Page
   Default theme: Hybrid Light
   ============================================ */

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

html {
  scrollbar-width: thin;
}

body {
  font-size: 16px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 2026 Neural Aura (Reactive Lighting) */
.neural-aura {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.5s ease;
}

[data-theme="dark"] .neural-aura {
  background: radial-gradient(circle, rgba(92, 203, 234, 0.12) 0%, transparent 70%);
  mix-blend-mode: screen;
}

@media (max-width: 1023px) { .neural-aura { display: none; } }

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* ----- COLOR TOKENS ----- */
:root {
  --color-primary: #1B7FA8;
  --color-primary-light: #5CCBEA;
  --color-accent-blue: #3A8DFF;
  --color-accent-violet: #8B5CF6;
  --color-accent-electric: #2563EB;
  --color-gold: #F5B84B;

  --color-dark-bg: #050B12;
  --color-dark-surface: #0B1724;
  --color-dark-surface-soft: #101F2F;

  --color-light-bg: #F5FAFC;
  --color-light-surface: #FFFFFF;
  --color-light-surface-soft: #EEF6FA;

  --color-text-dark: #07111F;
  --color-text-light: #F8FBFF;

  --color-muted-dark: #8EA6B8;
  --color-muted-light: #6B8A9E;

  --color-success: #22c55e;
  --color-success-rgb: 34, 197, 94;
  --color-error: #ef4444;

  --color-border-dark: rgba(255, 255, 255, 0.12);
  --color-border-light: rgba(27, 127, 168, 0.12);

  --shadow-glow: 0 0 40px rgba(27, 127, 168, 0.35);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.22);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --nav-height: 72px;
  --max-width: 1200px;
}

/* ----- THEME: HYBRID LIGHT (DEFAULT) ----- */
[data-theme="hybrid-light"] {
  --bg: #F5FAFC;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: #EEF6FA;
  --text: #07111F;
  --text-secondary: #3A5266;
  --muted: #6B8A9E;
  --border: rgba(27, 127, 168, 0.12);
  --border-strong: rgba(27, 127, 168, 0.22);
  --shadow-elevated: 0 4px 24px rgba(7, 17, 31, 0.08);
  --nav-bg: rgba(245, 250, 252, 0.55);
  --nav-bg-scrolled: rgba(245, 250, 252, 0.92);
  --surface-glass: rgba(255, 255, 255, 0.72);
}

[data-theme="hybrid-light"] .section-tag,
[data-theme="hybrid-light"] .hero-eyebrow {
  color: #0A6A88;
  background: rgba(27, 127, 168, 0.07);
  border-color: rgba(27, 127, 168, 0.18);
}

/* ----- THEME: DARK ----- */
[data-theme="dark"] {
  --bg: var(--color-dark-bg);
  --surface: var(--color-dark-surface);
  --surface-soft: var(--color-dark-surface-soft);
  --text: var(--color-text-light);
  --text-secondary: #B0C8DB;
  --muted: var(--color-muted-dark);
  --border: var(--color-border-dark);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.5);
  --nav-bg: rgba(5, 11, 18, 0.15);
  --nav-bg-scrolled: rgba(5, 11, 18, 0.82);
  --surface-glass: rgba(11, 23, 36, 0.75);
}

/* ----- THEME: LIGHT (kept for backwards compatibility) ----- */
[data-theme="light"] {
  --bg: var(--color-light-bg);
  --surface: var(--color-light-surface);
  --surface-soft: var(--color-light-surface-soft);
  --text: var(--color-text-dark);
  --text-secondary: #3A5266;
  --muted: var(--color-muted-light);
  --border: var(--color-border-light);
  --border-strong: rgba(8, 17, 28, 0.16);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.10);
  --nav-bg: rgba(245, 250, 252, 0.15);
  --nav-bg-scrolled: rgba(245, 250, 252, 0.82);
  --surface-glass: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .section-tag,
[data-theme="light"] .hero-eyebrow {
  color: #0A6A88;
}

/* ----- UTILITY ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }
/* ----- SECTIONS ----- */
.section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.1);
  border: 1px solid rgba(27, 127, 168, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
@media (min-width: 768px) { .section-title { font-size: 2.8rem; } }
@media (min-width: 1200px) { .section-title { font-size: 3.2rem; } }

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 768px) { .section-desc { font-size: 1.05rem; } }

/* ----- HEADER ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header.scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 1px 0 var(--border);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) { .header-container { padding: 0 40px; } }

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex: 1;
}

.logo-wordmark {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-transform: lowercase;
}

.logo-reg {
  font-size: 0.5em;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
  opacity: 0.75;
}

/* ----- NAV ----- */
.header-nav { display: none; }

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(27, 127, 168, 0.08);
}

.nav-link.is-active {
  color: var(--color-primary-light);
  font-weight: 600;
  background: rgba(27, 127, 168, 0.05);
}

[data-theme="hybrid-light"] .nav-link.is-active {
  color: var(--color-primary);
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.city-chip:focus-visible,
.mobile-toggle:focus-visible,
.header-logo:focus-visible,
.footer-links ul li a:focus-visible,
.footer-theme-toggle:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* ----- HEADER ACTIONS ----- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.header-cta {
  display: none;
}
@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

/* ----- THEME TOGGLE ----- */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  box-shadow: 0 0 20px rgba(27, 127, 168, 0.15);
}

/* Active/pressed state */
.theme-toggle:active {
  transform: scale(0.92);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

/* Enhanced focus indicator */
.theme-toggle:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(27, 127, 168, 0.15);
}

.theme-toggle svg {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dark theme: show sun (click to go to hybrid-light) */
[data-theme="dark"] .theme-toggle .sun-icon { opacity: 1; transform: rotate(0deg); }
[data-theme="dark"] .theme-toggle .moon-icon { opacity: 0; transform: rotate(-90deg); }

/* Hybrid-light theme: show moon (click to go to dark) */
[data-theme="hybrid-light"] .theme-toggle .sun-icon { opacity: 0; transform: rotate(90deg); }
[data-theme="hybrid-light"] .theme-toggle .moon-icon { opacity: 1; transform: rotate(0deg); }

/* Light fallback */
[data-theme="light"] .theme-toggle .sun-icon { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .theme-toggle .moon-icon { opacity: 1; transform: rotate(0deg); }

/* ----- MOBILE TOGGLE ----- */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.open .mobile-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.open .mobile-toggle-bar:nth-child(2) { opacity: 0; }
.mobile-toggle.open .mobile-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ----- MOBILE NAV OVERLAY ----- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 11, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

[data-theme="hybrid-light"] .mobile-nav-overlay,
[data-theme="light"] .mobile-nav-overlay {
  background: rgba(245, 250, 252, 0.97);
}

.mobile-nav-overlay .nav-link {
  font-size: 1.4rem;
  padding: 12px 24px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

/* In hybrid-light, use an accessible darker gradient */
[data-theme="hybrid-light"] .btn-primary {
  background: linear-gradient(135deg, #096079, #1E6ED9);
  box-shadow: 0 4px 20px rgba(9, 96, 121, 0.22);
}

/* Restore brighter gradient inside dark contrast sections */
[data-theme="hybrid-light"] .stats .btn-primary,
[data-theme="hybrid-light"] .contact .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue));
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 127, 168, 0.5);
}

[data-theme="hybrid-light"] .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(9, 107, 138, 0.32);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(27, 127, 168, 0.08);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

/* ----- HERO ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 96px 24px 64px;
}

/* Hybrid-light hero: soft gradient base */
[data-theme="hybrid-light"] .hero {
  background: linear-gradient(150deg, #E6F4FA 0%, #F5FAFC 50%, #EEF2FF 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ----- HERO GRADIENT MESH (hybrid-light only) ----- */
.hero-mesh {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-theme="hybrid-light"] .hero-mesh {
  display: block;
  background:
    radial-gradient(ellipse 65% 80% at 15% 50%, rgba(27, 127, 168, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 82% 18%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 60% 88%, rgba(139, 92, 246, 0.05) 0%, transparent 55%);
}

/* ----- HERO LOGO WATERMARK ----- */
.hero-logo-watermark {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  opacity: 0.018;
  color: var(--color-primary-light);
  pointer-events: none;
  z-index: 0;
}

[data-theme="hybrid-light"] .hero-logo-watermark {
  opacity: 0.055;
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .hero-logo-watermark { width: 180px; height: 180px; opacity: 0.012; }
  [data-theme="hybrid-light"] .hero-logo-watermark { opacity: 0.035; }
}

.hero-logo-watermark svg {
  width: 100%;
  height: 100%;
}

/* ----- HERO GRID ----- */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 127, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 127, 168, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 12s linear infinite;
}

[data-theme="hybrid-light"] .hero-grid {
  background-image:
    linear-gradient(rgba(27, 127, 168, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 127, 168, 0.07) 1px, transparent 1px);
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* ----- HERO ORBS ----- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.15), transparent 70%);
  animation: floatOrb1 10s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
  animation: floatOrb2 12s ease-in-out infinite;
}

[data-theme="hybrid-light"] .hero-orb--1 {
  background: radial-gradient(circle, rgba(27, 127, 168, 0.07), transparent 70%);
}

[data-theme="hybrid-light"] .hero-orb--2 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 70%);
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.06); }
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.06), transparent 60%);
  pointer-events: none;
}

[data-theme="hybrid-light"] .hero-bg-glow {
  background: radial-gradient(circle, rgba(27, 127, 168, 0.035), transparent 60%);
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ----- HERO RING ----- */
.hero-ring-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 85vw, 480px);
  height: clamp(280px, 85vw, 480px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transition: transform 0.1s ease-out; /* For parallax */
}
@media (min-width: 768px) { .hero-ring-container { width: 560px; height: 560px; } }

[data-theme="hybrid-light"] .hero-ring-container {
  opacity: 0.22;
}

.hero-ring {
  width: 100%;
  height: 100%;
  animation: ringRotate 30s linear infinite;
}

.ring-outer { animation: ringPulseOuter 6s ease-in-out infinite; }
.ring-mid { animation: ringPulseMid 8s ease-in-out infinite; }
.ring-inner { animation: ringPulseInner 5s ease-in-out infinite; }
.ring-dashed { animation: ringSpin 20s linear infinite reverse; }

@keyframes ringRotate { to { transform: rotate(360deg); } }
@keyframes ringSpin { to { transform: rotate(-360deg); } }
@keyframes ringPulseOuter { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } }
@keyframes ringPulseMid { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.6; } }
@keyframes ringPulseInner { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.5; } }

.hero-ring-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(160px, 50vw, 280px);
  height: clamp(160px, 50vw, 280px);
  background: radial-gradient(circle, rgba(92, 203, 234, 0.06), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

[data-theme="hybrid-light"] .hero-ring-glow {
  background: radial-gradient(circle, rgba(27, 127, 168, 0.04), transparent 70%);
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* ----- HERO CONTENT ----- */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.1);
  border: 1px solid rgba(27, 127, 168, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: clamp(20px, 5vh, 32px);
}

.hero-title {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2.2rem, 8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}
@media (min-width: 768px) { .hero-title { font-size: 3.8rem; } }
@media (min-width: 1200px) { .hero-title { font-size: 4.5rem; } }

.hero-title-accent {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-electric), var(--color-accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.1rem; } }

.hero-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-launch svg {
  color: var(--color-primary-light);
}

/* ----- COUNTDOWN (Minimal Luxury Redesign) ----- */
.countdown {
  display: flex;
  align-items: center;
  gap: clamp(12px, 4vw, 32px);
  margin-bottom: 24px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: unset;
}

.countdown-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.05em;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: unset;
  text-align: center;
  box-shadow: none;
  display: block;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(to bottom, var(--text) 50%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  [data-theme="hybrid-light"] .countdown-value {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 768px) {
  .countdown-value { font-size: 4.8rem; }
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
  opacity: 0.6;
}

.countdown.is-live .countdown-value { 
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Neural Glow for AI cards */
.service-card[data-ai] {
  position: relative;
}
.service-card[data-ai]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.1);
  pointer-events: none;
  transition: box-shadow 0.4s ease;
}
.service-card[data-ai]:hover::after {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.3);
}

/* Variable AI Pulse */
@keyframes ai-pulse {
  0%, 100% { opacity: 0.4; filter: blur(2px); }
  50% { opacity: 0.8; filter: blur(4px); }
}
.service-card[data-ai] .card-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--color-accent-violet);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: ai-pulse 2s ease-in-out infinite;
}
.service-card[data-ai]:hover .card-icon::before {
  opacity: 0.15;
}

/* ----- COUNTDOWN LIVE ----- */
.countdown-live {
  display: none;
  margin-bottom: 36px;
}

.countdown-live.is-visible {
  display: block;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.12);
  border: 1px solid rgba(27, 127, 168, 0.3);
  padding: 12px 28px;
  border-radius: 100px;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(27, 127, 168, 0.15); }
  50% { box-shadow: 0 0 40px rgba(27, 127, 168, 0.35); }
}

.live-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(var(--color-success-rgb), 0.6); }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 12px rgba(var(--color-success-rgb), 0.9); }
}

/* ----- HERO CTA ----- */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  pointer-events: none;
}

.scroll-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0.3); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.6; }
}

/* ----- TEASER CHIPS ----- */
.teaser-chip {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.08);
  border: 1px solid rgba(27, 127, 168, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

[data-theme="hybrid-light"] .teaser-chip {
  color: var(--color-primary);
  background: rgba(27, 127, 168, 0.06);
  border-color: rgba(27, 127, 168, 0.12);
}

/* ----- LAUNCH GIFT BADGE ----- */
.launch-gift-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: var(--color-accent-violet);
  font-size: 0.85rem;
  font-weight: 500;
  animation: gift-glow 3s ease-in-out infinite;
}

[data-theme="hybrid-light"] .contact .launch-gift-badge {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.15);
}

@keyframes gift-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(139, 92, 246, 0); }
  50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.4); }
}

/* ----- SURPRISE ELEMENTS ----- */
.countdown-surprise {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0.8;
}

.footer-brand-built {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ----- [data-reveal] ANIMATIONS ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- VISION / ABOUT ----- */
.vision { position: relative; }

.vision-bg-ornament {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.04), transparent 70%);
  pointer-events: none;
}

.vision-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.68;
}
@media (min-width: 768px) { .vision-lead { font-size: 1.15rem; } }

.vision-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .vision-grid { grid-template-columns: repeat(3, 1fr); } }

.vision-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .vision-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.vision-card:hover {
  border-color: rgba(27, 127, 168, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

[data-theme="hybrid-light"] .vision-card:hover {
  box-shadow: 0 16px 48px rgba(27, 127, 168, 0.1);
}

.vision-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 127, 168, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-primary-light);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

[data-theme="hybrid-light"] .vision-icon {
  color: var(--color-primary);
  background: rgba(27, 127, 168, 0.08);
  border: 1px solid rgba(27, 127, 168, 0.12);
}

.vision-card:hover .vision-icon {
  background: rgba(27, 127, 168, 0.18);
  box-shadow: 0 0 24px rgba(27, 127, 168, 0.12);
}

.vision-card-title {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.vision-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ----- SERVICES ----- */
.services { position: relative; }

.services-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } } /* 4 columns for 8 cards */

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .service-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

/* Glass Card Elevation */
.glass-card-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-10deg);
  transition: transform 0.1s ease-out; /* Parallax target */
}

[data-theme="hybrid-light"] .glass-card-mockup {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(27, 127, 168, 0.15);
  box-shadow: 0 20px 40px rgba(27, 127, 168, 0.12);
}

.glass-card-content {
  pointer-events: none;
}

.glass-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.glass-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glass-card-line {
  height: 6px;
  background: rgba(27, 127, 168, 0.1);
  border-radius: 3px;
}

.glass-card-line:nth-child(1) { width: 90%; }
.glass-card-line:nth-child(2) { width: 75%; }
.glass-card-line:nth-child(3) { width: 85%; }
.glass-card-line:nth-child(4) { width: 60%; }

.glass-card-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245, 184, 75, 0.4);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  [data-theme="hybrid-light"] .service-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.service-card:hover {
  border-color: rgba(27, 127, 168, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

[data-theme="hybrid-light"] .service-card:hover {
  box-shadow: 0 20px 60px rgba(27, 127, 168, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 127, 168, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-primary-light);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

[data-theme="hybrid-light"] .card-icon {
  color: var(--color-primary);
  background: rgba(27, 127, 168, 0.07);
  border: 1px solid rgba(27, 127, 168, 0.12);
}

.service-card:hover .card-icon {
  background: rgba(27, 127, 168, 0.18);
  box-shadow: 0 0 24px rgba(27, 127, 168, 0.1);
  transform: scale(1.1) rotate(-3deg);
}

.card-title {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* AI-distinct cards */
.service-card[data-ai] .card-icon {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-accent-violet);
}

[data-theme="hybrid-light"] .service-card[data-ai] .card-icon {
  background: rgba(139, 92, 246, 0.07);
  border-color: rgba(139, 92, 246, 0.15);
}

.service-card[data-ai]:hover .card-icon {
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.15);
}

.service-card[data-ai] .card-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06), transparent 70%);
}

.card-glow {
  position: absolute;
  top: -60%;
  right: -60%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.05), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .card-glow { opacity: 0.35; }

/* Gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-blue), var(--color-accent-violet));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card:hover::before { opacity: 0.5; }


/* ----- STATS (dark navy contrast section in hybrid-light) ----- */
.stats {
  background: var(--surface-soft);
  position: relative;
}

[data-theme="hybrid-light"] .stats {
  background: linear-gradient(135deg, #0A1528 0%, #06111F 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: inline;
}
@media (min-width: 768px) { .stat-number { font-size: 3.2rem; } }

.stat-plus {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-left: 2px;
  display: inline;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}

[data-theme="hybrid-light"] .stat-label {
  color: rgba(176, 200, 219, 0.65);
}

/* ----- CITIES ----- */
.cities { position: relative; }

.cities-visual {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.cities-line { display: none; }
@media (min-width: 640px) {
  .cities-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary-light), var(--color-accent-violet), transparent);
    opacity: 0.2;
  }
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.35s ease;
  cursor: default;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  [data-theme="hybrid-light"] .city-chip {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.city-chip:hover {
  border-color: rgba(27, 127, 168, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="hybrid-light"] .city-chip:hover {
  box-shadow: 0 8px 24px rgba(27, 127, 168, 0.1);
}

.city-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
  animation: cityPulse 3s ease-in-out infinite;
}

.city-chip[data-city="delhi"] .city-dot { background: var(--color-primary-light); animation-delay: 0s; }
.city-chip[data-city="bangalore"] .city-dot { background: var(--color-accent-blue); animation-delay: 0.5s; }
.city-chip[data-city="pune"] .city-dot { background: var(--color-accent-violet); animation-delay: 1s; }
.city-chip[data-city="mumbai"] .city-dot { background: var(--color-primary); animation-delay: 1.5s; }
.city-chip[data-city="chandigarh"] .city-dot { background: var(--color-primary-light); animation-delay: 2s; }

@keyframes cityPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.city-name {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
}

/* ----- CONTACT ----- */
.contact {
  position: relative;
  background: var(--surface-soft);
}

/* Hybrid-light: dark navy contrast for the final CTA */
[data-theme="hybrid-light"] .contact {
  background: linear-gradient(150deg, #06111F 0%, #0A1A2E 100%);
}

[data-theme="hybrid-light"] .contact .section-tag {
  color: var(--color-primary-light);
  background: rgba(92, 203, 234, 0.1);
  border-color: rgba(92, 203, 234, 0.2);
}

[data-theme="hybrid-light"] .contact .section-title { color: #F0F8FF; }
[data-theme="hybrid-light"] .contact .section-desc { color: rgba(176, 200, 219, 0.8); }

.contact-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 127, 168, 0.05), transparent 60%);
  pointer-events: none;
}

[data-theme="hybrid-light"] .contact-bg-glow {
  background: radial-gradient(circle, rgba(27, 127, 168, 0.08), transparent 60%);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.contact-content {
  perspective: 1200px;
}

.contact-form {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 
    0 8px 30px rgba(5, 11, 18, 0.15),
    0 2px 8px rgba(5, 11, 18, 0.1);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .contact-form {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

[data-theme="hybrid-light"] .contact-form {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(5, 11, 18, 0.2),
    0 2px 10px rgba(13, 126, 161, 0.05);
}

.contact-form:hover,
.contact-form:focus-within {
  border-color: rgba(92, 203, 234, 0.25);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

[data-theme="hybrid-light"] .contact .form-label {
  color: rgba(176, 200, 219, 0.95);
}

.form-input {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  outline: none;
  width: 100%;
  
  /* Tactile Inner Depth */
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="hybrid-light"] .contact .form-input {
  background: rgba(5, 11, 18, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #F0F8FF;
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.35);
}

[data-theme="hybrid-light"] .contact .form-input::placeholder {
  color: rgba(176, 200, 219, 0.5);
}

/* Error state */
.form-input.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23EF4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

[data-theme="hybrid-light"] .contact .form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Valid state (subtle) */
.form-input.valid {
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231B7FA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

/* Focus treatment */
.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 
    0px 0px 8px rgba(27, 127, 168, 0.3),
    inset 0px 1px 1px rgba(255, 255, 255, 0.05);
}

[data-theme="hybrid-light"] .contact .form-input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 
    0px 0px 8px rgba(92, 203, 234, 0.3),
    inset 0px 1px 1px rgba(255, 255, 255, 0.05);
}

/* Invalid focus (error + focus) */
.form-input.error:focus {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

/* Hurdle Chips Grid */
.hurdle-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.hurdle-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="hybrid-light"] .hurdle-chip {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(176, 200, 219, 0.8);
}

.hurdle-chip svg {
  transition: transform 0.25s ease, stroke 0.25s ease;
  stroke: var(--text-secondary);
}

[data-theme="hybrid-light"] .hurdle-chip svg {
  stroke: rgba(176, 200, 219, 0.6);
}

.hurdle-chip:hover {
  background: rgba(27, 127, 168, 0.08);
  border-color: rgba(92, 203, 234, 0.3);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="hybrid-light"] .hurdle-chip:hover {
  background: rgba(92, 203, 234, 0.06);
  border-color: rgba(92, 203, 234, 0.25);
  color: #fff;
}

/* Selected State */
.hurdle-chip.is-selected {
  background: radial-gradient(circle at top, rgba(92, 203, 234, 0.15), rgba(27, 127, 168, 0.03));
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  transform: translateY(1px);
  box-shadow: 
    0 0 14px rgba(92, 203, 234, 0.25),
    inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="hybrid-light"] .hurdle-chip.is-selected {
  background: radial-gradient(circle at top, rgba(92, 203, 234, 0.12), rgba(92, 203, 234, 0.02));
  border-color: #5ccbea;
  color: #5ccbea;
  box-shadow: 
    0 0 16px rgba(92, 203, 234, 0.2),
    inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hurdle-chip.is-selected svg {
  stroke: var(--color-primary-light);
  transform: scale(1.1);
}

[data-theme="hybrid-light"] .hurdle-chip.is-selected svg {
  stroke: #5ccbea;
}

/* Referral Badge */
.referral-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  background: rgba(92, 203, 234, 0.06);
  border: 1px dashed rgba(92, 203, 234, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  color: #5ccbea;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  animation: badgeGlow 2s infinite alternate;
  box-shadow: 0 0 10px rgba(92, 203, 234, 0.05);
}

@keyframes badgeGlow {
  0% {
    border-color: rgba(92, 203, 234, 0.25);
    box-shadow: 0 0 8px rgba(92, 203, 234, 0.04);
  }
  100% {
    border-color: rgba(92, 203, 234, 0.45);
    box-shadow: 0 0 16px rgba(92, 203, 234, 0.12);
  }
}

/* Inline field error messages */
/* Inline field error messages - visually hidden to prevent layout shifting */
.form-field-error {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.btn-form {
  align-self: flex-start;
  padding: 14px 36px;
  margin-top: 8px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

[data-theme="hybrid-light"] .contact .form-privacy {
  color: rgba(176, 200, 219, 0.45);
}

.form-status {
  font-size: 0.85rem;
  min-height: 24px;
  color: var(--color-primary-light);
  margin-top: 16px;
}

.form-status.error { color: var(--color-error); }

.contact-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .contact-success {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

[data-theme="hybrid-light"] .contact-success {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(5, 11, 18, 0.2),
    0 2px 10px rgba(13, 126, 161, 0.05);
}

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

.success-icon {
  stroke: var(--color-primary-light);
  filter: drop-shadow(0 0 8px rgba(92, 203, 234, 0.3));
  margin-bottom: 8px;
  animation: iconPulse 2s infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(92, 203, 234, 0.25)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(92, 203, 234, 0.55)); }
}

.success-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

[data-theme="hybrid-light"] .success-title {
  color: #F0F8FF;
}

.success-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0;
}

[data-theme="hybrid-light"] .success-desc {
  color: rgba(176, 200, 219, 0.85);
}

.success-referral {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-top: 8px;
  align-items: stretch;
}

.viral-link {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--color-primary-light);
  outline: none;
  cursor: text;
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 0; /* Prevents flex items from overflowing */
}

[data-theme="hybrid-light"] .viral-link {
  background: rgba(5, 11, 18, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #5ccbea;
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.35);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(92, 203, 234, 0.08);
  border: 1px solid rgba(92, 203, 234, 0.3);
  color: var(--color-primary-light);
  border-radius: var(--radius-sm) !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: unset !important; /* Override standard button min-height */
  height: auto;
}

[data-theme="hybrid-light"] .btn-copy {
  color: #5ccbea;
  border-color: rgba(92, 203, 234, 0.25);
}

.btn-copy:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: #05111a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92, 203, 234, 0.2);
}

@media (max-width: 480px) {
  .success-referral {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .viral-link {
    text-align: center;
  }
  .btn-copy {
    padding: 14px 20px;
  }
}

[data-theme="hybrid-light"] .btn-copy:hover {
  background: #5ccbea;
  border-color: #5ccbea;
}

.success-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

[data-theme="hybrid-light"] .success-details {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.success-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.success-detail span {
  color: var(--text-secondary);
}

[data-theme="hybrid-light"] .success-detail span {
  color: rgba(176, 200, 219, 0.6);
}

.success-detail strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

[data-theme="hybrid-light"] .success-detail strong {
  color: #F0F8FF;
}

/* ----- FOOTER (dark navy in hybrid-light) ----- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

[data-theme="hybrid-light"] .footer {
  background: #06111F;
  border-top-color: rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 280px; }
.footer-brand .header-logo { margin-bottom: 14px; }

.footer-brand-line {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

[data-theme="hybrid-light"] .footer .logo-wordmark { color: #5CCBEA; }
[data-theme="hybrid-light"] .footer-brand-line { color: rgba(176, 200, 219, 0.6); }

.footer-heading {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}

[data-theme="hybrid-light"] .footer-heading { color: rgba(176, 200, 219, 0.4); }

.footer-links ul li { margin-bottom: 6px; }

.footer-links ul li a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.footer-links ul li a:hover { color: var(--color-primary-light); }

[data-theme="hybrid-light"] .footer-links ul li a { color: rgba(176, 200, 219, 0.6); }
[data-theme="hybrid-light"] .footer-links ul li a:hover { color: var(--color-primary-light); }

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.08);
  border: 1px solid rgba(27, 127, 168, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
}

.footer-status-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.footer-theme-toggle {
  width: 44px;
  height: 44px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

[data-theme="hybrid-light"] .footer-bottom { border-top-color: rgba(255, 255, 255, 0.07); }

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

[data-theme="hybrid-light"] .footer-bottom p { color: rgba(176, 200, 219, 0.35); }

/* ----- SECTION CTA ----- */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ----- TRUST BAR ----- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

.trust-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .trust-bar-content {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.trust-bar-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-bar-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   HERO ENHANCEMENTS — Londonist style
   ============================================ */

/* Giant "COMING SOON" watermark in hero-bg */
.hero-cs-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(52px, 11vw, 175px);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: hero-cs-shimmer 5s ease-in-out infinite;
}
[data-theme="hybrid-light"] .hero-cs-text {
  color: var(--color-primary);
  opacity: 0.045;
}
[data-theme="dark"] .hero-cs-text {
  color: #5CCBEA;
  opacity: 0.035;
}

/* Misty cityscape atmosphere at hero bottom */
.hero-atmosphere {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  pointer-events: none;
  z-index: 1;
}
.hero-cityscape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  animation: city-sway 18s ease-in-out infinite;
}
[data-theme="hybrid-light"] .hero-cityscape { color: var(--color-primary); opacity: 0.05; }
[data-theme="dark"] .hero-cityscape { color: #5CCBEA; opacity: 0.065; }

.hero-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-mist--1 {
  height: 210px;
  animation: mist-drift 11s ease-in-out infinite;
}
.hero-mist--2 {
  height: 140px;
  left: -5%; right: -5%;
  animation: mist-drift 15s ease-in-out infinite reverse;
}
[data-theme="hybrid-light"] .hero-mist--1 {
  background: linear-gradient(to top, #F5FAFC 0%, rgba(245,250,252,0.7) 45%, transparent 100%);
}
[data-theme="hybrid-light"] .hero-mist--2 {
  background: linear-gradient(to top, rgba(238,246,250,0.85) 0%, transparent 100%);
}
[data-theme="dark"] .hero-mist--1 {
  background: linear-gradient(to top, #050B12 0%, rgba(5,11,18,0.7) 45%, transparent 100%);
}
[data-theme="dark"] .hero-mist--2 {
  background: linear-gradient(to top, rgba(11,23,36,0.85) 0%, transparent 100%);
}

/* Animated hero orbs */
.hero-orb--1 { animation: orb-float-1 13s ease-in-out infinite; }
.hero-orb--2 { animation: orb-float-2 17s ease-in-out infinite; }

/* Spinning rings */
.ring-outer { animation: ring-cw 32s linear infinite; transform-origin: 200px 200px; }
.ring-mid   { animation: ring-ccw 22s linear infinite; transform-origin: 200px 200px; }
.ring-inner { animation: ring-cw 40s linear infinite; transform-origin: 200px 200px; }
.ring-dashed { animation: ring-ccw 16s linear infinite; transform-origin: 200px 200px; }

/* Hero title gradient animation */
.hero-title-accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light), var(--color-accent-blue), var(--color-primary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

/* ============================================
   ROADMAP SECTION — VOOI style
   ============================================ */
}

/* ============================================
   NEW KEYFRAME ANIMATIONS
   ============================================ */

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hero-cs-shimmer {
  0%, 100% { opacity: 0.04; }
  50%       { opacity: 0.07; }
}
[data-theme="hybrid-light"] .hero-cs-text { animation-name: hero-cs-shimmer-light; }
@keyframes hero-cs-shimmer-light {
  0%, 100% { opacity: 0.038; }
  50%       { opacity: 0.062; }
}

@keyframes mist-drift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(18px); }
}

@keyframes city-sway {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50%       { transform: translateX(6px) scaleX(1.002); }
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -18px) scale(1.06); }
  66%       { transform: translate(-14px, 12px) scale(0.94); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-22px, 16px) scale(0.94); }
  66%       { transform: translate(18px, -12px) scale(1.06); }
}

@keyframes ring-cw  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes ring-ccw { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

@keyframes path-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(92,203,234,0.45)); }
  50%       { filter: drop-shadow(0 0 14px rgba(92,203,234,0.75)); }
}

@keyframes rm-ring-expand {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

@keyframes sparkle-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 22px rgba(27,127,168,0.45), 0 4px 20px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 0 44px rgba(27,127,168,0.7), 0 0 88px rgba(27,127,168,0.18), 0 4px 20px rgba(0,0,0,0.15); }
}

@keyframes count-tick-up {
  0%   { transform: translateY(0);    opacity: 1; }
  30%  { transform: translateY(-10px); opacity: 0; }
  31%  { transform: translateY(10px);  opacity: 0; }
  60%  { transform: translateY(0);    opacity: 1; }
}

/* ============================================
   GLOW BUTTON
   ============================================ */
.btn-glow {
  animation: btn-glow-pulse 2.8s ease-in-out infinite;
}

/* ============================================
   SERVICE CARD — enhanced hover + tilt
   ============================================ */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card.is-tilting {
  transition: transform 0.08s ease;
}

/* Countdown digit tick */
.countdown-value.ticking {
  animation: count-tick-up 0.35s ease;
}


/* ============================================
   TURNSTILE CAPTCHA + FORM IMPROVEMENTS
   ============================================ */

/* Hide honeypot from everyone */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.turnstile-wrap {
  margin: 4px 0 8px;
}

/* Ensure Turnstile widget doesn't overflow narrow contact panels */
.turnstile-wrap iframe {
  max-width: 100%;
}

.trust-bar-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
  background: rgba(27, 127, 168, 0.06);
  border: 1px solid rgba(27, 127, 168, 0.12);
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-logo-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow: 0 0 8px var(--color-primary-light);
}

[data-theme="hybrid-light"] .trust-logo-chip {
  color: var(--color-primary);
  background: #fff;
  border-color: rgba(27, 127, 168, 0.1);
}

.trust-logo-chip:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 15px rgba(27, 127, 168, 0.12);
}

/* ----- MOBILE UI REFINEMENTS ----- */
@media (max-width: 640px) {
  .hero-cityscape {
    display: none; /* Hide excessive visual clutter on mobile */
  }

  .hero-atmosphere {
    height: 60px; /* Reduce space occupied by atmosphere */
  }

  .section { padding: 70px 0; }

  .vision-card, .service-card {
    padding: 24px 20px;
  }

  .trust-bar-logos {
    gap: 8px;
  }

  .trust-logo-chip {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

/* ----- REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .particle-canvas { display: none; }
  .hero-grid { animation: none; }
  .hero-orb { animation: none; }
  .hero-ring { animation: none; }
  .ring-outer, .ring-mid, .ring-inner, .ring-dashed { animation: none; }
  .hero-ring-glow { animation: none; }
  .countdown-live { animation: none; }
  .live-badge { animation: none; }
  .live-badge .badge-dot { animation: none; }
  .scroll-line { animation: none; }
  .city-dot { animation: none; }
  .badge-dot { animation: none; }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-launch { font-size: 0.78rem; }

  .countdown-value { font-size: 1.4rem; min-width: 52px; padding: 10px 10px; }
  .countdown-item { min-width: 52px; }
  .countdown { gap: 6px; }

  .hero-cta { flex-direction: column; width: 100%; max-width: 260px; }
  .hero-cta .btn { width: 100%; }

  .stats-grid { gap: 24px; }
  .stat-number { font-size: 2rem; }

  .contact-form { padding: 24px 20px; }
}

@media (max-width: 380px) {
  .countdown { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767px) {
  .cities-grid { gap: 12px; }
  .city-chip { padding: 12px 22px; font-size: 0.85rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .hero-cta .btn { font-size: 0.82rem; padding: 10px 20px; }
  .countdown-value { min-width: 44px; font-size: 1.2rem; padding: 8px; }
}

@media (min-width: 1440px) {
  .container { padding: 0 80px; }
  .hero-title { font-size: 5rem; }
  .hero-subtitle { font-size: 1.25rem; }
}
