/**
 * Home of Couriers — Premium Logistics Design System & Stylesheet
 */

:root, html.dark {
  --bg-primary: #070C15;
  --bg-secondary: #0B1220;
  --bg-tertiary: #111C2E;
  --bg-elevated: #162238;

  --accent-cyan: #38BDF8;
  --accent-cyan-light: #7DD3FC;
  --accent-cyan-soft: rgba(56, 189, 248, 0.12);
  --accent-cyan-glow: rgba(56, 189, 248, 0.35);

  --accent-blue: #3B82F6;
  --accent-indigo: #6366F1;
  --accent-emerald: #10B981;
  --accent-emerald-soft: rgba(16, 185, 129, 0.15);
  --accent-amber: #F59E0B;
  --accent-rose: #F43F5E;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-muted: #475569;
  --text-inverse: #070C15;

  --surface-glass: rgba(11, 18, 32, 0.85);
  --surface-card: rgba(17, 28, 46, 0.65);
  --surface-card-hover: rgba(22, 34, 56, 0.85);
  --surface-card-solid: #0B1220;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(56, 189, 248, 0.25);
  --border-active: rgba(56, 189, 248, 0.6);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--accent-cyan-glow);
  --shadow-indigo-glow: 0 0 35px rgba(99, 102, 241, 0.35);

  --nav-scrolled-bg: rgba(7, 12, 21, 0.85);
  --footer-bg: #04080F;
  --modal-card-bg: #0B1220;
  --toast-bg: #0B1220;

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

html.light {
  --bg-primary: #EEF2F7;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #E2E8F0;
  --bg-elevated: #FFFFFF;

  --accent-cyan: #0284C7;
  --accent-cyan-light: #0369A1;
  --accent-cyan-soft: rgba(2, 132, 199, 0.08);
  --accent-cyan-glow: rgba(2, 132, 199, 0.16);

  --accent-blue: #2563EB;
  --accent-indigo: #4F46E5;
  --accent-emerald: #059669;
  --accent-emerald-soft: rgba(5, 150, 105, 0.1);
  --accent-amber: #D97706;
  --accent-rose: #DC2626;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #64748B;
  --text-muted: #94A3B8;
  --text-inverse: #FFFFFF;

  --surface-glass: rgba(255, 255, 255, 0.92);
  --surface-card: #FFFFFF;
  --surface-card-hover: #F8FAFC;
  --surface-card-solid: #FFFFFF;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-highlight: rgba(2, 132, 199, 0.3);
  --border-active: rgba(2, 132, 199, 0.7);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px rgba(2, 132, 199, 0.15);
  --shadow-indigo-glow: 0 0 35px rgba(79, 70, 229, 0.15);

  --nav-scrolled-bg: rgba(238, 242, 247, 0.9);
  --footer-bg: #E2E8F0;
  --modal-card-bg: #FFFFFF;
  --toast-bg: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

html.dark {
  color-scheme: dark;
}

html.light {
  color-scheme: light;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
  min-height: 100vh;
  line-height: 1.6;
}

html.light body {
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(79, 70, 229, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(5, 150, 105, 0.03) 0%, transparent 40%);
}

/* Background Grid Pattern */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

html.light .bg-grid {
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
}

/* Ambient Radial Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-cyan {
  background: rgba(56, 189, 248, 0.15);
  width: 500px;
  height: 500px;
}

.ambient-indigo {
  background: rgba(99, 102, 241, 0.12);
  width: 450px;
  height: 450px;
}

html.light .ambient-cyan {
  background: rgba(2, 132, 199, 0.08);
}

html.light .ambient-indigo {
  background: rgba(79, 70, 229, 0.06);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

/* Typography Helpers */
.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #BAE6FD 50%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light .text-gradient {
  background: linear-gradient(135deg, #0F172A 0%, #0369A1 50%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light .text-gradient-cyan {
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light .text-gradient-gold {
  background: linear-gradient(135deg, #B45309 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card {
  background: var(--surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(56, 189, 248, 0.15);
}

html.light .glass-card:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1), 0 0 24px rgba(2, 132, 199, 0.08);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transition: 0.6s ease;
  pointer-events: none;
}

html.light .glass-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.glass-card:hover::after {
  left: 100%;
}

/* Glowing Badges & Tags */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

html.light .badge-pill {
  background: rgba(2, 132, 199, 0.06);
  border-color: rgba(2, 132, 199, 0.2);
}

.badge-pill-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
}

html.light .badge-pill-success {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite ease-in-out;
}

.status-dot-cyan {
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

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

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
  outline: none;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #4F46E5 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 0 20px rgba(56, 189, 248, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5), 0 0 30px rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, #0369A1 0%, #1D4ED8 50%, #4338CA 100%);
}

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

.btn-apk-cta {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #06B6D4 100%);
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35), 0 0 25px rgba(6, 182, 212, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
}

.btn-apk-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5), 0 0 35px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

html.light .btn-secondary {
  background: rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

html.light .btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 12px 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

html.light .navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.55rem;
  color: var(--accent-cyan);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme Toggle Button */
.btn-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  outline: none;
  position: relative;
  z-index: 10;
  user-select: none;
}

.btn-theme-toggle *,
#mobileThemeToggleBtn * {
  pointer-events: none;
}

.btn-theme-toggle:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-highlight);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sun/Moon Icon visibility */
html.dark .theme-icon-sun {
  display: inline-block !important;
}
html.dark .theme-icon-moon {
  display: none !important;
}

html.light .theme-icon-sun {
  display: none !important;
}
html.light .theme-icon-moon {
  display: inline-block !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html.light .mobile-nav {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.hero-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.hero-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-spec-item svg {
  color: var(--accent-emerald);
}

/* Phone Mockup & Simulated Radar */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  background: #0B1220;
  border-radius: 44px;
  border: 4px solid #1E293B;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(56, 189, 248, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #1E293B;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 20;
}

.mockup-screen {
  flex: 1;
  background: #070C15;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
}

/* Radar & Map Simulation in Phone */
.map-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, #0F1D33 0%, #070C15 80%);
  overflow: hidden;
}

.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  margin-top: -140px;
  margin-left: -140px;
  border-radius: 50%;
  border: 1px dashed rgba(56, 189, 248, 0.2);
  animation: radar-rotate 8s linear infinite;
}

.radar-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid var(--accent-cyan);
  transform: translate(-50%, -50%);
  animation: radar-ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

@keyframes radar-ping {
  0% { width: 10px; height: 10px; opacity: 1; }
  100% { width: 220px; height: 220px; opacity: 0; }
}

.route-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.route-path {
  stroke: var(--accent-cyan);
  stroke-width: 3;
  stroke-dasharray: 6 6;
  fill: none;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.courier-marker {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--accent-cyan);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070C15;
  box-shadow: 0 0 20px var(--accent-cyan);
  transform: translate(-50%, -50%);
  transition: all 1s ease;
  z-index: 10;
}

/* Floating Glass Badges */
.floating-glass-card {
  position: absolute;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 25;
  animation: float 4s ease-in-out infinite;
}

html.light .floating-glass-card {
  background: rgba(255, 255, 255, 0.92);
}

.float-top-left {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}

.float-bottom-right {
  bottom: 60px;
  right: -30px;
  animation-delay: 2s;
}

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

/* Stats Bar Section */
.stats-section {
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.5) 0%, rgba(7, 12, 21, 0.8) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

html.light .stats-section {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.5) 0%, rgba(238, 242, 247, 0.8) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

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

/* How It Works Section */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Tab Switcher */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: rgba(17, 28, 46, 0.5);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

html.light .tab-switcher {
  background: rgba(226, 232, 240, 0.6);
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active {
  background: var(--accent-cyan);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

html.light .tab-btn.active {
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

html.light .step-number {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.15);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

html.light .advantage-icon-wrapper {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.15);
}

.glass-card:hover .advantage-icon-wrapper {
  background: var(--accent-cyan);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--accent-cyan);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* Fare & ETA Estimator Interactive Demo */
.estimator-container {
  background: linear-gradient(135deg, rgba(17, 28, 46, 0.8) 0%, rgba(11, 18, 32, 0.9) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

html.light .estimator-container {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.vehicle-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.vehicle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

html.light .vehicle-card {
  background: rgba(15, 23, 42, 0.03);
}

.vehicle-card.active, .vehicle-card:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

html.light .vehicle-card.active, html.light .vehicle-card:hover {
  background: rgba(2, 132, 199, 0.08);
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.1);
}

.vehicle-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.vehicle-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vehicle-rate {
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.slider-container {
  margin: 24px 0;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.slider-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.custom-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
}

html.light .custom-range {
  background: rgba(15, 23, 42, 0.1);
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.estimate-result-box {
  background: rgba(7, 12, 21, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

html.light .estimate-result-box {
  background: #F1F5F9;
}

.price-display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin: 12px 0 24px 0;
}

.estimate-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.estimate-detail-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.estimate-detail-row span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* APK Download Center (The Main Conversion Section) */
.apk-download-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.apk-hub-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(56, 189, 248, 0.08) 50%, rgba(99, 102, 241, 0.08) 100%),
              var(--surface-card-solid);
  border: 1.5px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(56, 189, 248, 0.2);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

html.light .apk-hub-card {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.04) 0%, rgba(2, 132, 199, 0.05) 50%, rgba(79, 70, 229, 0.04) 100%), #FFFFFF;
  border-color: rgba(2, 132, 199, 0.25);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 0 35px rgba(2, 132, 199, 0.1);
}

.apk-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apk-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
}

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

.apk-spec-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

html.light .apk-spec-card {
  background: #F8FAFC;
  border-color: rgba(15, 23, 42, 0.08);
}

.apk-spec-title {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apk-spec-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}

.qr-code-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qr-canvas-holder {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-canvas-holder canvas, .qr-canvas-holder img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px;
}

.qr-caption {
  margin-top: 14px;
  color: #0F172A;
  font-size: 0.85rem;
  font-weight: 600;
}

.qr-subcaption {
  color: #64748B;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Install Guide Accordion */
.install-guide-box {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.install-step {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.install-step-num {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Hub Banner Section */
.hub-banner-section {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(99, 102, 241, 0.06) 50%, rgba(11, 18, 32, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

html.light .hub-banner-section {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.06) 0%, rgba(79, 70, 229, 0.04) 50%, #FFFFFF 100%);
}

/* Comparison Table */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  font-size: 0.95rem;
}

html.light .comparison-table th {
  background: rgba(15, 23, 42, 0.03);
}

.comparison-table th.highlight-col, .comparison-table td.highlight-col {
  background: rgba(56, 189, 248, 0.05);
  border-left: 1px solid rgba(56, 189, 248, 0.2);
  border-right: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--text-primary);
  font-weight: 600;
}

html.light .comparison-table th.highlight-col, html.light .comparison-table td.highlight-col {
  background: rgba(2, 132, 199, 0.05);
  border-left-color: rgba(2, 132, 199, 0.15);
  border-right-color: rgba(2, 132, 199, 0.15);
}

.check-icon {
  color: var(--accent-emerald);
  font-weight: bold;
}

.cross-icon {
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--border-highlight);
  background: var(--surface-card-hover);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 24px 24px;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--toast-bg);
  border: 1px solid var(--accent-cyan);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 12, 21, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

html.light .modal-overlay {
  background: rgba(15, 23, 42, 0.6);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--modal-card-bg);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

/* Floating Bottom Download Pill */
.floating-download-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-full);
  padding: 8px 12px 8px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg), 0 0 25px rgba(56, 189, 248, 0.25);
  z-index: 90;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-download-pill.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Footer */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-specs-row {
    justify-content: center;
  }

  .hero-mockup-wrapper {
    margin-top: 24px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .apk-hub-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .apk-info-box {
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .qr-code-box {
    max-width: 300px;
    margin: 0 auto;
  }

  .install-guide-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 12px;
  }

  section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-selector {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .float-top-left, .float-bottom-right {
    display: none;
  }

  /* Download / APK Section — edge-to-edge on mobile */
  .apk-download-section .container {
    padding: 0;
  }

  .apk-hub-card {
    padding: 20px 16px;
    gap: 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
    min-width: 0;
  }

  .apk-title {
    font-size: 1.5rem;
    min-height: 44px !important;
  }

  .apk-specs-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px; /* Room for scrollbar */
    scrollbar-width: thin;
    width: 100%;
    max-width: 100%;
  }
  
  .apk-specs-grid::-webkit-scrollbar {
    height: 4px;
  }
  
  .apk-specs-grid::-webkit-scrollbar-thumb {
    background: var(--border-highlight);
    border-radius: 4px;
  }

  .apk-spec-card {
    flex: 0 0 auto;
    width: 140px; /* Fixed reasonable width for cards */
    padding: 10px 12px !important;
    border-radius: var(--radius-sm);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .apk-spec-title {
    font-size: 0.65rem !important;
    letter-spacing: 0.5px;
  }

  .apk-spec-val {
    font-size: 0.8rem !important;
    margin-top: 4px;
    word-break: normal;
    overflow-wrap: normal;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
  }

  /* Action Buttons UX */
  .apk-actions-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
    width: 100%;
    margin-top: 8px;
  }

  .apk-actions-wrapper .btn-apk-cta {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .apk-actions-wrapper .btn-apk-cta i {
    width: 20px;
    height: 20px;
  }
  
  .apk-actions-wrapper .btn-apk-cta .text-sm {
    font-size: 0.85rem !important;
  }
  
  .apk-actions-wrapper .btn-apk-cta .text-xs {
    font-size: 0.65rem !important;
  }

  .apk-actions-wrapper .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .apk-actions-wrapper .btn-secondary i {
    width: 16px;
    height: 16px;
  }

  .qr-code-box {
    max-width: 220px;
    padding: 16px;
  }

  /* Tab Switcher */
  /* Tab Switcher */
  .tab-switcher {
    flex-direction: column;
    width: 100%;
    padding: 6px;
    border-radius: var(--radius-lg);
    gap: 6px;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
  }
  
  .tab-btn i {
    margin-right: 12px;
  }

  /* Install guide */
  .install-guide-box {
    gap: 12px;
    padding: 0 4px;
  }

  /* Estimator */
  .estimator-container {
    padding: 20px 16px;
  }

  /* Floating Download Pill */
  .floating-download-pill {
    padding: 6px 8px 6px 16px;
    gap: 12px;
    bottom: 16px;
    transform: translateX(-50%) translateY(120px);
  }

  .floating-download-pill.visible {
    transform: translateX(-50%) translateY(0);
  }

  .floating-download-pill .btn-apk-cta {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
  }
  
  .floating-download-pill img {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Blur Text Animation */
.blur-in-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  animation: blurIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  white-space: pre;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.blur-out-word {
  display: inline-block;
  animation: blurOut 0.4s ease-in forwards;
  white-space: pre;
}

@keyframes blurOut {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
  }
}
