:root {
  /* Core colors */
  --dark-bg: #0a0a0f;
  --dark-surface: #111118;
  --dark-panel: rgba(255, 255, 255, 0.03);
  --dark-border: rgba(255, 255, 255, 0.06);
  --dark-border-hover: rgba(255, 255, 255, 0.12);

  /* Neon accents */
  --neon-blue: #3b82f6;
  --neon-purple: #8b5cf6;
  --neon-pink: #ec4899;
  --neon-green: #10b981;

  /* Text */
  --text-white: #f1f5f9;
  --text-slate-300: #cbd5e1;
  --text-slate-400: #94a3b8;
  --text-slate-500: #64748b;

  /* Layout */
  --max-w: 1200px;
  --header-h: 80px;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Ambient Background Glows ─── */
.ambient-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  transform: translateZ(0);
  will-change: transform;
  contain: strict;
}
.glow-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.08);
}
.glow-2 {
  top: 30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.06);
}
.glow-3 {
  bottom: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.04);
}

/* ─── Glassmorphism ─── */
.glass-nav {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dark-border);
  transform: translateZ(0);
}

.glass-panel {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
  contain: content;
}
.glass-panel:hover {
  border-color: var(--dark-border-hover);
}

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease;
}
.logo-link:hover .logo-icon {
  transform: scale(1.08);
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--dark-bg);
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text .accent {
  -webkit-text-fill-color: var(--neon-blue);
}

/* Nav Links */
.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-slate-300);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--neon-blue); }

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--text-slate-300);
  cursor: pointer;
}

/* Mobile Dropdown */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 400px;
  opacity: 1;
  padding: 1.25rem 1.5rem;
  border-top-color: var(--dark-border);
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-slate-300);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--neon-blue); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-full);
  padding: 0 1.5rem;
  font-size: 0.8125rem;
}
.btn-xl {
  padding: 0 2rem;
  min-height: 48px;
  font-size: 0.9375rem;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}
.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
}
.btn-gradient:active { transform: scale(0.95); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--dark-border);
}
.btn-ghost:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.07);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-radius: var(--radius-xl);
  width: 100%;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
}
.btn-whatsapp:hover { background: #1fba59; transform: scale(1.02); }

.btn-telegram {
  background: #0088cc;
  color: white;
  border-radius: var(--radius-xl);
  width: 100%;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
}
.btn-telegram:hover { background: #0077b5; transform: scale(1.02); }

.btn-order {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ─── Hero Section ─── */
.hero {
  padding: 3rem 1rem 5rem;
  position: relative;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-slate-400);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}
.hero-sub strong {
  color: var(--text-white);
  font-weight: 600;
}
.hero-sub .blue { color: var(--neon-blue); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  padding-top: 0.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
  width: 100%;
  max-width: 400px;
}
.hero-stats div h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}
.hero-stats div p {
  font-size: 0.625rem;
  color: var(--text-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  display: none;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}

/* TV Card */
.tv-card {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 85%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.1);
  z-index: 10;
  transform: rotate(-6deg);
  transition: transform 0.5s ease;
}
.tv-card:hover { transform: rotate(-3deg) scale(1.02); }
.tv-toolbar {
  height: 24px;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid var(--dark-border);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: rgba(239,68,68,0.8); }
.dot-yellow { background: rgba(234,179,8,0.8); }
.dot-green { background: rgba(34,197,94,0.8); }
.tv-version {
  font-size: 10px;
  color: var(--text-slate-500);
  margin-left: 8px;
  font-family: monospace;
}
.tv-body {
  width: 100%;
  height: calc(100% - 24px);
  background: radial-gradient(ellipse at center, #27272a, black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  position: relative;
}
.tv-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, rgba(0,0,0,0.3), transparent);
  z-index: 1;
}
.live-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #dc2626;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 20;
  animation: pulse 2s infinite;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
.tv-info {
  z-index: 20;
}
.tv-info .label {
  font-size: 10px;
  color: var(--neon-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tv-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-top: 2px;
}
.tv-info .quality {
  font-size: 9px;
  color: var(--text-slate-400);
  margin-top: 2px;
}

/* VOD Card */
.vod-card {
  position: absolute;
  bottom: 20%;
  right: -3%;
  width: 55%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
  z-index: 20;
  transform: rotate(8deg);
  transition: transform 0.5s ease;
}
.vod-card:hover { transform: rotate(3deg) scale(1.02); }
.vod-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1c22, #0f0f15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.vod-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.vod-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vod-icon svg { width: 14px; height: 14px; color: var(--neon-purple); }
.vod-badge {
  font-size: 8px;
  background: rgba(139, 92, 246, 0.2);
  color: var(--neon-purple);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.vod-bottom h4 {
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 65%;
  background: var(--neon-purple);
  border-radius: 4px;
}
.progress-times {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: var(--text-slate-500);
  margin-top: 4px;
}

/* Phone Card */
.phone-card {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 32%;
  aspect-ratio: 9 / 19;
  border-radius: 1.25rem;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  background: black;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  z-index: 30;
  transform: rotate(-12deg);
  transition: transform 0.5s ease;
}
.phone-card:hover { transform: rotate(-6deg) scale(1.02); }
.phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 12px;
  background: black;
  border-radius: 9999px;
  z-index: 40;
  border: 1px solid var(--dark-border);
}
.phone-inner {
  width: 100%;
  height: 100%;
  padding: 24px 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #09090b;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  color: var(--text-slate-400);
}
.phone-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.play-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn svg { width: 14px; height: 14px; color: var(--dark-bg); fill: var(--dark-bg); }
.phone-center span {
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  color: white;
}
.phone-bottom {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 4px;
  text-align: center;
  font-size: 7px;
  color: var(--neon-green);
}

@media (min-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-ctas { flex-direction: row; max-width: none; }
  .hero-stats { max-width: none; }
}
@media (min-width: 1024px) {
  .hero { padding: 4rem 1.5rem 7rem; }
  .hero-grid { grid-template-columns: 7fr 5fr; }
  .hero-content { align-items: flex-start; text-align: left; }
  .hero-visual { display: flex; }
  .hero h1 { font-size: 3.5rem; }
  .hero-sub { font-size: 1.125rem; }
}

/* ─── Device Ticker ─── */
.device-ticker {
  width: 100%;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.device-ticker::before,
.device-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}
.device-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}
.device-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}
.ticker-label svg {
  width: 14px;
  height: 14px;
  color: var(--neon-blue);
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-slate-400);
  white-space: nowrap;
  cursor: default;
  transition: color 0.2s;
}
.ticker-item:hover { color: white; }
.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ─── Features Section ─── */
.features {
  padding: 5rem 1rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}
.section-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--neon-blue);
  text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 0.9375rem;
  color: var(--text-slate-400);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-card {
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.feature-card .glow-spot {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.2s;
  opacity: 0.5;
  transform: translateZ(0);
}
.feature-card:hover .glow-spot { opacity: 1; }
.glow-blue { background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); }
.glow-purple { background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%); }
.glow-pink { background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%); }

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.icon-blue {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
}
.icon-blue svg { color: var(--neon-blue); }
.icon-purple {
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
}
.icon-purple svg { color: var(--neon-purple); }
.icon-pink {
  background: rgba(236,72,153,0.12);
  border: 1px solid rgba(236,72,153,0.2);
}
.icon-pink svg { color: var(--neon-pink); }

.feature-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.badge-blue {
  background: rgba(59,130,246,0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(59,130,246,0.2);
}
.badge-green {
  background: rgba(16,185,129,0.1);
  color: var(--neon-green);
  border: 1px solid rgba(16,185,129,0.2);
}
.badge-pink {
  background: rgba(236,72,153,0.1);
  color: var(--neon-pink);
  border: 1px solid rgba(236,72,153,0.2);
}
.badge-purple {
  background: rgba(139,92,246,0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(139,92,246,0.2);
}

.feature-body {
  margin-top: 2rem;
}
.feature-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.feature-body p {
  font-size: 0.875rem;
  color: var(--text-slate-400);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card.wide {
    grid-column: span 2;
  }
  .section-title { font-size: 2.25rem; }
}

/* ─── Geo Banner ─── */
.geo-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  color: var(--neon-green);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.geo-banner.visible { opacity: 1; }
.geo-banner svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Pricing Section ─── */
.pricing {
  padding: 5rem 1rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 1200px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1rem;
}
.pricing-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.pricing-card:hover { transform: scale(1.02); }

.pricing-card.highlighted {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}
.plan-sub {
  font-size: 0.6875rem;
  color: var(--text-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.plan-save {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1.25rem;
}
.plan-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
}
.plan-price .period {
  font-size: 0.875rem;
  color: var(--text-slate-500);
  font-weight: 500;
}

.plan-monthly {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-slate-400);
}
.plan-monthly svg { width: 14px; height: 14px; color: var(--neon-blue); flex-shrink: 0; }
.plan-monthly strong { color: white; font-weight: 700; }

.plan-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 1.5rem 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-slate-300);
}
.plan-features li svg {
  width: 16px;
  height: 16px;
  color: var(--neon-blue);
  flex-shrink: 0;
}

.plan-cta {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Setup Guide ─── */
.setup {
  padding: 5rem 1rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.setup-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}
.setup-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.setup-card p {
  font-size: 0.875rem;
  color: var(--text-slate-400);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .setup-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 1rem;
  will-change: opacity;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.2s ease;
  position: relative;
  will-change: transform;
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--text-slate-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.05); color: white; }
.modal-close svg { width: 20px; height: 20px; }

.modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.modal-desc {
  font-size: 0.875rem;
  color: var(--text-slate-400);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.modal-desc strong {
  color: white;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-slate-500);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--dark-border);
  padding: 3rem 1rem;
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-slate-500);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-slate-400);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon-blue); }

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: black;
  color: white;
  border: 1px solid var(--dark-border);
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  min-height: 48px;
  transition: all 0.2s;
}
.app-store-btn:hover {
  border-color: var(--dark-border-hover);
  transform: translateY(-1px);
}
.app-store-btn svg { width: 24px; height: 24px; }
.app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-store-small {
  font-size: 0.6rem;
  line-height: 1;
  margin-bottom: 2px;
  color: var(--text-slate-400);
}
.app-store-large {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ─── Animations ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(59,130,246,0.25); }
  50% { box-shadow: 0 4px 24px rgba(59,130,246,0.45); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* Selection */
::selection {
  background: var(--neon-blue);
  color: var(--dark-bg);
}

/* ─── AEO Elements ─── */
.aeo-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-panel);
}
.aeo-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  color: var(--text-slate-300);
  font-size: 0.875rem;
}
.aeo-table th {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-weight: 700;
  padding: 1rem;
  border-bottom: 1px solid var(--dark-border);
}
.aeo-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.aeo-table tr:last-child td {
  border-bottom: none;
}
.aeo-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
ol.setup-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ─── Modern Footer ─── */
.footer-link {
  font-size: 0.875rem;
  color: var(--text-slate-400);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-link:hover {
  color: var(--neon-blue);
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row !important;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row !important;
    justify-content: space-between;
    text-align: left !important;
  }
}

/* ─── Article/Guide Layout ─── */
.article-page {
  padding: 4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.article-header {
  margin-bottom: 3rem;
  text-align: center;
}
.article-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article-header h1 { font-size: 3.5rem; }
}
.article-header .meta {
  color: var(--neon-blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-content {
  color: var(--text-slate-300);
  font-size: 1.125rem;
  line-height: 1.75;
}
.article-content h2 {
  font-size: 1.75rem;
  color: white;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}
.article-content h3 {
  font-size: 1.35rem;
  color: white;
  margin: 2rem 0 1rem;
  font-weight: 600;
}
.article-content p {
  margin-bottom: 1.5rem;
}
.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content a {
  color: var(--neon-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-content .cta-block {
  margin: 3rem 0;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  text-align: center;
}
.article-content .cta-block h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
