/* ========================================
   VPN Wave Landing — Design Tokens & Base
   ======================================== */

:root {
  /* Colors — Light Theme */
  --color-bg: #F2F2F7;
  --color-bg-alt: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-hero: linear-gradient(165deg, #e4ebfe66 0%, #f2f2f7 40%, #ffffff 100%);
  --color-bg-cta: linear-gradient(135deg, #5A88FA 0%, #5C59FD 100%);
  --color-surface: #FFFFFF;

  --color-text-primary: #121122;
  --color-text-secondary: #6F6E7A;
  --color-text-muted: #A0A0A7;
  --color-text-inverse: #FFFFFF;

  --color-accent: #5A88FA;
  --color-accent-hover: #4A75E0;
  --color-accent-secondary: #5C59FD;

  --color-border: rgba(18, 17, 34, 0.08);
  --color-card-border: rgba(255, 255, 255, 0.8);
  --color-card-shadow: rgba(44, 129, 247, 0.1);

  --color-badge-bg: rgba(90, 136, 250, 0.1);
  --color-badge-text: #5A88FA;

  --color-feature-gradient: linear-gradient(141deg, #FFFFFF 18%, #EFF4FF 90%);
  --color-feature-icon-bg: rgba(90, 136, 250, 0.08);

  --color-nav-bg: rgba(255, 255, 255, 0.85);
  --color-nav-border: rgba(18, 17, 34, 0.06);

  --color-footer-bg: #121122;
  --color-footer-text: rgba(255, 255, 255, 0.6);
  --color-footer-link: rgba(255, 255, 255, 0.8);

  color-scheme: light dark;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(11, 5, 45, 0.08);
  --shadow-md: 0 3px 10px rgba(22, 14, 73, 0.08);
  --shadow-lg: 0 8px 30px rgba(22, 14, 73, 0.1);
  --shadow-xl: 0 12px 40px rgba(22, 14, 73, 0.12);
  --shadow-card: 0 7px 20px rgba(44, 129, 247, 0.1);
  --shadow-phone: 0 20px 60px rgba(22, 14, 73, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
}

/* Dark Theme — system based */
@media (prefers-color-scheme: dark) {
:root {
  --color-bg: #080715;
  --color-bg-alt: #0E0D1D;
  --color-bg-card: #1E1D2D;
  --color-bg-hero: linear-gradient(165deg, #0E0D1D 0%, #080715 40%, #0a0920 100%);
  --color-surface: #1E1D2D;

  --color-text-primary: #FFFFFF;
  --color-text-secondary: #A0A0A7;
  --color-text-muted: #6F6E7A;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-card-border: rgba(255, 255, 255, 0.06);
  --color-card-shadow: rgba(0, 0, 0, 0.3);

  --color-badge-bg: rgba(90, 136, 250, 0.15);

  --color-feature-gradient: linear-gradient(141deg, #1E1D2D 18%, #252438 90%);
  --color-feature-icon-bg: rgba(90, 136, 250, 0.12);

  --color-nav-bg: rgba(8, 7, 21, 0.9);
  --color-nav-border: rgba(255, 255, 255, 0.06);

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 3px 10px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 7px 20px rgba(0, 0, 0, 0.3);
  --shadow-phone: 0 20px 60px rgba(0, 0, 0, 0.5);

}
} /* end @media (prefers-color-scheme: dark) */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

/* Scroll margin for anchor targets */
[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--space-4));
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(90, 136, 250, 0.15);
}

a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(90, 136, 250, 0.15);
}

ul, ol {
  list-style: none;
}

/* ========================================
   Utility
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__phone {
    animation: none !important;
  }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  text-decoration: none;
}

.nav__logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  letter-spacing: -0.3px;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-text-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: -0.3px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 12px rgba(90, 136, 250, 0.3);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90, 136, 250, 0.4);
}

.nav__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Mobile-only nav CTA — shown only inside the open mobile menu */
.nav__link--cta {
  display: none;
}

.nav__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.nav__mobile-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  position: relative;
  transition: background var(--transition-fast);
}

.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.nav__mobile-toggle span::before { top: -7px; }
.nav__mobile-toggle span::after { top: 7px; }

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-bg-hero);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 136, 250, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) { .hero__bg-glow {
  background: radial-gradient(circle, rgba(90, 136, 250, 0.08) 0%, transparent 70%);
} }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: -0.3px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: var(--space-6);
  text-wrap: balance;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-10);
  max-width: 480px;
  letter-spacing: -0.3px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__appstore-link {
  display: inline-block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero__appstore-link:hover {
  transform: scale(1.03);
}

.hero__appstore-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.hero__appstore-img {
  height: 52px;
  width: auto;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.hero__stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
}

.hero__stars svg {
  width: 16px;
  height: 16px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__phone {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(22, 14, 73, 0.15));
}

@media (prefers-color-scheme: dark) { .hero__phone {
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
} }

.hero__phone img {
  width: 280px;
  height: auto;
  border-radius: 36px;
}

.hero__phone-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 136, 250, 0.2) 0%, transparent 70%);
  z-index: 1;
}

@media (prefers-color-scheme: dark) { .hero__phone-glow {
  background: radial-gradient(circle, rgba(90, 136, 250, 0.15) 0%, transparent 70%);
} }

/* ========================================
   Section Common
   ======================================== */
.section {
  padding: var(--space-24) 0;
}

/* Modifier: section on base bg color (replaces inline style="background: var(--color-bg)") */
.section--bg-base {
  background: var(--color-bg);
}

/* Section title left-aligned (replaces inline style="text-align:left") */
.section__title--left,
.section__subtitle--left {
  text-align: left;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  letter-spacing: -0.3px;
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  letter-spacing: -0.3px;
}

/* ========================================
   Fox Hero Visual
   ======================================== */
.fox-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 380px;
  height: 440px;
}

.fox-hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 136, 250, 0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

@media (prefers-color-scheme: dark) { .fox-hero__glow {
  background: radial-gradient(circle, rgba(90, 136, 250, 0.12) 0%, transparent 70%);
} }

.fox-hero__img {
  position: relative;
  z-index: 1;
  width: 320px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(22, 14, 73, 0.15));
}

@media (prefers-color-scheme: dark) { .fox-hero__img {
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
} }

.fox-hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3) var(--space-2) var(--space-2);
  /* Solid background with a subtle blur for glass effect */
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(11, 5, 45, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: #121122;
  letter-spacing: -0.2px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

/* Dark mode: invert to a dark glass badge with light text */
@media (prefers-color-scheme: dark) {
  .fox-hero__badge {
    background: rgba(30, 29, 45, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
  }
}

.fox-hero__badge--secured {
  top: 60px;
  right: 10px;
  animation-delay: -2s;
}

.fox-hero__badge--protection {
  bottom: 100px;
  left: 10px;
  animation-delay: -4s;
}

.fox-hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.fox-hero__badge-icon--blue {
  background: rgba(90, 136, 250, 0.15);
}

.fox-hero__badge-icon--yellow {
  background: rgba(255, 184, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
  .fox-hero__badge-icon--blue {
    background: rgba(90, 136, 250, 0.25);
  }
  .fox-hero__badge-icon--yellow {
    background: rgba(255, 184, 0, 0.2);
  }
}

.fox-hero__badge-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ========================================
   CTA Fox
   ======================================== */
.cta__fox {
  position: absolute;
  right: 5%;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cta__fox img {
  width: 160px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.cta__card {
  position: relative;
  overflow: hidden;
}

/* ========================================
   Problems Section
   ======================================== */
.problems {
  background: var(--color-bg);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.problem-card {
  background: var(--color-feature-gradient);
  border: 2px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-card);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  background: var(--color-feature-icon-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.problem-card__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.5px;
}

.problem-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

/* ========================================
   Features Section
   ======================================== */
.features {
  background: var(--color-bg-alt);
  
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-feature-icon-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.feature-card__content {
  flex: 1;
  min-width: 0;
}

.feature-card__title {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  letter-spacing: -0.5px;
}

.feature-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

/* ========================================
   App Showcase Section
   ======================================== */
.showcase {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.showcase__content {
  max-width: 480px;
}

.showcase__list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.showcase__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.showcase__list-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-feature-icon-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.showcase__list-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.showcase__list-text strong {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: var(--space-1);
}

.showcase__list-text span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.showcase__phones {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Single centered iPhone screenshot */
.showcase__phone {
  position: relative;
  animation: float 7s ease-in-out infinite;
}

.showcase__phone--single {
  filter: drop-shadow(0 24px 60px rgba(22, 14, 73, 0.22));
}

@media (prefers-color-scheme: dark) { .showcase__phone--single {
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
} }

.showcase__phone img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 44px;
}

/* glow ring behind phone */
.showcase__phone::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 136, 250, 0.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) { .showcase__phone::before {
  background: radial-gradient(circle, rgba(90, 136, 250, 0.12) 0%, transparent 70%);
} }

/* ========================================
   Streaming Section
   ======================================== */
.streaming {
  background: var(--color-bg-alt);
  
}

.streaming__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  align-items: center;
}

.streaming__logo {
  width: 132px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Always white so dark-text logos (YouTube, Apple TV+) stay readable */
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.streaming__logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.streaming__logo img {
  width: auto;
  height: auto;
  max-width: 108px;
  max-height: 38px;
  object-fit: contain;
}

.streaming__note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
  background: var(--color-bg-cta);
  padding: var(--space-16) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat {
  color: #FFFFFF;
}

.stat__number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: var(--font-size-sm);
  opacity: 0.85;
  font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.cta__card {
  background: var(--color-bg-cta);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  right: -100px;
}

.cta__card::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -100px;
  left: -50px;
}

.cta__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.cta__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta__appstore-link {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.cta__appstore-link:hover {
  transform: scale(1.05);
}

.cta__appstore-link:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.cta__appstore-img {
  height: 56px;
  width: auto;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-footer-bg);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  color: var(--color-footer-text);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: #FFFFFF;
  text-decoration: none;
}

.footer__logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer__col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-5);
}

.footer__col a {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-footer-link);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-footer-text);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-links a {
  font-size: var(--font-size-xs);
  color: var(--color-footer-text);
}

.footer__bottom-links a:hover {
  color: #FFFFFF;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  background: var(--color-bg-card);
  
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.3px;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: var(--radius-lg);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-item__answer p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  letter-spacing: -0.2px;
}

/* ========================================
   Mobile Navigation
   ======================================== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-1);
    border-bottom: 1px solid var(--color-nav-border);
    box-shadow: var(--shadow-lg);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    width: 100%;
    font-size: var(--font-size-base);
  }

  .nav__link:hover,
  .nav__link:active {
    background: var(--color-feature-icon-bg);
    color: var(--color-accent);
  }

  .nav__link--cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-accent);
    color: #FFFFFF !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    justify-content: center;
  }

  .nav__link--cta:hover,
  .nav__link--cta:active {
    background: var(--color-accent-hover);
    color: #FFFFFF !important;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .nav__cta-desktop {
    display: none;
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.75rem;
    --font-size-4xl: 2rem;
  }

  .hero__inner {
    gap: var(--space-10);
  }

  .fox-hero {
    width: 320px;
    height: 380px;
  }

  .fox-hero__img {
    width: 280px;
  }

  .features__grid {
    gap: var(--space-4);
  }

  .showcase__inner {
    gap: var(--space-10);
  }

  .showcase__phone img {
    width: 260px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --space-24: 3.5rem;
    --space-16: 2.5rem;
  }

  /* ---- Nav ---- */
  .nav__cta-desktop {
    display: none;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-10);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    letter-spacing: -1px;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: var(--font-size-base);
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .hero__visual {
    order: -1;
  }

  .fox-hero {
    width: 280px;
    height: 320px;
  }

  .fox-hero__img {
    width: 230px;
  }

  .fox-hero__badge--secured {
    top: 20px;
    right: 0;
  }

  .fox-hero__badge--protection {
    bottom: 50px;
    left: 0;
  }

  .cta__fox {
    display: none;
  }

  /* ---- Sections ---- */
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .problem-card {
    padding: var(--space-5);
    text-align: center;
  }

  .problem-card__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .feature-card {
    padding: var(--space-5);
  }

  /* ---- Showcase ---- */
  .showcase__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .showcase__content {
    max-width: 100%;
  }

  /* Keep list items left-aligned despite parent text-align: center */
  .showcase__list {
    text-align: left;
    max-width: 440px;
    margin: var(--space-6) auto 0;
  }

  .showcase__list-item {
    text-align: left;
  }

  .showcase__phone img {
    width: 220px;
    border-radius: 28px;
  }

  /* ---- Stats ---- */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat__number {
    font-size: var(--font-size-2xl);
  }

  .stat__label {
    font-size: var(--font-size-xs);
  }

  /* ---- CTA ---- */
  .cta__card {
    padding: var(--space-10) var(--space-5);
  }

  .cta__title {
    font-size: var(--font-size-3xl);
  }

  /* ---- Footer ---- */
  .footer {
    padding: var(--space-10) 0 var(--space-6);
  }

  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: var(--space-2);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  /* ---- Streaming ---- */
  .streaming__logos {
    gap: var(--space-3);
  }

  .streaming__logo {
    width: 112px;
    height: 58px;
    padding: var(--space-2);
  }

  .streaming__logo img {
    max-width: 94px;
    max-height: 34px;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.875rem;
    --font-size-4xl: 1.5rem;
    --space-24: 2.75rem;
    --space-16: 2rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .hero__title {
    letter-spacing: -0.5px;
    font-size: 1.875rem;
  }

  .hero__badge {
    font-size: var(--font-size-xs);
  }

  .hero__appstore-img {
    height: 48px;
  }

  .hero__rating {
    font-size: var(--font-size-xs);
  }

  .fox-hero {
    width: 260px;
    height: 300px;
  }

  .fox-hero__img {
    width: 210px;
  }

  .fox-hero__badge {
    font-size: 10px;
    padding: 6px 8px 6px 6px;
  }

  .fox-hero__badge-icon {
    width: 28px;
    height: 28px;
  }

  .problems__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .problem-card {
    padding: var(--space-4);
    text-align: left;
  }

  .problem-card__icon {
    margin-left: 0;
    margin-right: 0;
  }

  .section__title {
    font-size: var(--font-size-4xl);
  }

  .section__subtitle {
    font-size: var(--font-size-sm);
  }

  .showcase__phone img {
    width: 200px;
  }

  .stats__grid {
    gap: var(--space-4);
  }

  .stat__number {
    font-size: var(--font-size-xl);
    letter-spacing: -0.5px;
  }

  .streaming__logos {
    gap: var(--space-2);
  }

  .streaming__logo {
    width: 100px;
    height: 54px;
  }

  .streaming__logo img {
    max-width: 84px;
    max-height: 32px;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .faq-item__question {
    font-size: var(--font-size-sm);
    padding: var(--space-4) var(--space-5);
  }

  .cta__card {
    padding: var(--space-8) var(--space-4);
  }
}

/* ========================================
   Location Cards (homepage grid + related)
   ======================================== */
.location-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.location-cards--related {
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.location-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  min-width: 0;
}

.location-card img {
  flex-shrink: 0;
  border-radius: 2px;
  display: block;
  width: 24px;
  height: 17px;
  object-fit: cover;
}

.location-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.location-card:hover,
.location-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.location-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.location-card--small {
  font-size: var(--font-size-xs);
  padding: var(--space-2) var(--space-3);
}

/* ========================================
   Country pSEO Page
   ======================================== */

/* Breadcrumb */
.country-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.country-breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.country-breadcrumb a:hover { color: var(--color-accent); }
.country-breadcrumb span[aria-current] { color: var(--color-text-primary); font-weight: 500; }

/* ---- Hero ---- */
.cp-hero {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-16);
  background: var(--color-bg-hero);
}

.cp-hero__inner {
  max-width: 700px;
}

.cp-hero__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.cp-hero__flag-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg-alt);
}

.cp-hero__flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: -0.3px;
}

.cp-hero__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.cp-hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  letter-spacing: -0.3px;
}

.cp-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cp-hero__appstore {
  display: inline-block;
  transition: transform var(--transition-fast);
}
.cp-hero__appstore:hover { transform: scale(1.03); }
.cp-hero__appstore:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; border-radius: var(--radius-sm); }

.cp-hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.cp-hero__stars {
  display: flex;
  gap: 1px;
  color: #FFB800;
}

/* ---- Trust stats bar ---- */
.cp-stats {
  background: var(--color-bg-cta);
  padding: var(--space-6) 0;
}

.cp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.cp-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  color: #FFFFFF;
}

.cp-stat__num {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cp-stat__label {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  font-weight: 500;
}

/* ---- Highlights grid ---- */
.cp-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto;
}

.cp-highlight {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cp-highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cp-highlight__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-feature-icon-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.cp-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.cp-highlight__body {
  flex: 1;
  min-width: 0;
}

.cp-highlight__title {
  font-size: var(--font-size-base);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: var(--space-1);
}

.cp-highlight__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* All-locations CTA below related */
.cp-all-locations {
  text-align: center;
  margin-top: var(--space-8);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .cp-hero__title {
    font-size: var(--font-size-3xl);
    letter-spacing: -1px;
  }

  .cp-hero__subtitle {
    font-size: var(--font-size-base);
  }

  .cp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .cp-stat__num {
    font-size: var(--font-size-xl);
  }

  .cp-highlights {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .location-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .location-cards--related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .cp-hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .location-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-cards--related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .cp-hero {
    padding-top: calc(var(--nav-height) + var(--space-6));
    padding-bottom: var(--space-10);
  }

  .cp-hero__title {
    font-size: var(--font-size-2xl);
    letter-spacing: -0.5px;
  }

  .cp-highlight {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  .cp-highlight__icon {
    width: 36px;
    height: 36px;
  }
  .cp-highlight__icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Smart App Banner
   ======================================== */
.app-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(11, 5, 45, 0.1);
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-color-scheme: dark) { .app-banner {
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
} }

.app-banner.is-visible {
  transform: translateY(0);
}

.app-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.app-banner__icon img {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 14px;
}

.app-banner__info {
  flex: 1;
  min-width: 0;
}

.app-banner__name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-banner__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
  letter-spacing: -0.2px;
}

.app-banner__stars {
  color: #FFB800;
  margin-right: 2px;
  font-size: 10px;
}

.app-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: -0.3px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 2px 10px rgba(90, 136, 250, 0.3);
}

.app-banner__cta:hover,
.app-banner__cta:focus-visible {
  background: var(--color-accent-hover);
  color: #FFFFFF;
  transform: scale(1.03);
}

.app-banner__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.app-banner__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
  padding: 0;
  border: none;
}

.app-banner__close:hover {
  color: var(--color-text-primary);
  background: var(--color-feature-icon-bg);
}

.app-banner__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .app-banner {
    transition: none;
  }
}
