/* ============================================================
   PokeScan — Stylesheet
   Brand palette pulled directly from the logo assets.
   ============================================================ */

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

:root {
  --bg-base:      #0e0a1c;
  --bg-surface:   #160f2a;
  --bg-card:      #1e1638;
  --bg-card-hover:#251d46;
  --accent-purple:#9b7fe8;
  --accent-light: #bba9f5;
  --accent-red:   #c0392b;
  --accent-glow:  rgba(155, 127, 232, 0.18);
  --text-primary: #ffffff;
  --text-muted:   #a09bc0;
  --text-dim:     #6b6488;
  --border:       rgba(155, 127, 232, 0.15);
  --border-bright:rgba(155, 127, 232, 0.35);
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-card:  0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow:  0 0 40px rgba(155, 127, 232, 0.22);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

:root {
  --mouse-x: 50vw;
  --mouse-y: 30vh;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(155, 127, 232, 0.22) 0%, transparent 60%),
    radial-gradient(circle, rgba(155, 127, 232, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  background-attachment: fixed, fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom cursor */
body { cursor: none; }
a, button, [role="button"], label { cursor: none; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
/* Small solid dot — snaps instantly to cursor */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  top: 0; left: 0;
}
/* Larger ring — follows with a lag applied by JS */
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(155, 127, 232, 0.7);
  background: transparent;
  top: 0; left: 0;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s;
}
/* Expand ring on hover over interactive elements */
body.cursor-hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(155, 127, 232, 1);
  background: rgba(155, 127, 232, 0.06);
}
/* Hide custom cursor when mouse leaves window */
body.cursor-out .cursor-dot,
body.cursor-out .cursor-ring { opacity: 0; }

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

/* ---------- Typography ---------- */
.section-heading {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
.text-center { text-align: center; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subheading { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 4px 24px rgba(155, 127, 232, 0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 32px rgba(155, 127, 232, 0.55);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-bright);
}
.btn-secondary:hover {
  background: var(--accent-glow);
  border-color: var(--accent-purple);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 1.0625rem; border-radius: var(--radius-sm); }

/* Hero-specific oversized buttons */
.btn-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 60%, #6d28d9 100%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 22px 48px;
  border-radius: 10px;
  border: none;
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.3),
    0 8px 32px rgba(124, 58, 237, 0.55),
    0 2px 8px rgba(0,0,0,0.3);
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: hero-btn-pulse 3s ease-in-out infinite;
}
/* Shimmer sweep */
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.45s ease;
}
.btn-hero:hover::before { left: 150%; }
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.5),
    0 12px 40px rgba(124, 58, 237, 0.75),
    0 4px 12px rgba(0,0,0,0.35);
  animation: none;
}
.btn-hero:active { transform: translateY(-1px) scale(1.00); }

@keyframes hero-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(167,139,250,0.3), 0 8px 32px rgba(124,58,237,0.55), 0 2px 8px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 0 3px rgba(167,139,250,0.2), 0 8px 44px rgba(124,58,237,0.75), 0 2px 8px rgba(0,0,0,0.3); }
}

.btn-outline-hero {
  position: relative;
  overflow: hidden;
  background: rgba(155, 127, 232, 0.07);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 21px 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(155, 127, 232, 0.45);
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-outline-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(155,127,232,0.12), transparent);
  transition: left 0.45s ease;
}
.btn-outline-hero:hover::before { left: 150%; }
.btn-outline-hero:hover {
  background: rgba(155, 127, 232, 0.14);
  border-color: rgba(155, 127, 232, 0.8);
  box-shadow: 0 4px 24px rgba(155, 127, 232, 0.2);
  transform: translateY(-2px);
}
.btn-outline-hero:active { transform: translateY(0); }

.btn-arrow { flex-shrink: 0; transition: transform 0.2s; }
.btn-hero:hover .btn-arrow,
.btn-outline-hero:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 10, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.nav-logo-word { color: var(--text-primary); }
.nav-logo-scan { color: var(--accent-purple); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  background: rgba(14, 10, 28, 0.97);
  padding: 12px 0 16px;
}
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--text-primary); }
.mobile-menu .btn { margin: 8px 24px 0; }
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(155,127,232,0.2) 0%, rgba(155,127,232,0.06) 45%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,127,232,0.12);
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge::before { content: '●'; color: #4ade80; font-size: 0.6rem; }
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent-purple);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.hero-visual {
  flex: 0 0 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  /* Soft radial fade — hides the hard square edge without a visible clip line */
  -webkit-mask-image: radial-gradient(circle, black 52%, transparent 72%);
  mask-image: radial-gradient(circle, black 52%, transparent 72%);
  filter: drop-shadow(0 0 48px rgba(155,127,232,0.5));
}
/* Radar rings */
.radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(155,127,232,0.2);
  animation: radar-pulse 3s ease-out infinite;
}
.radar-ring:nth-child(1) { width: 320px; height: 320px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 0.8s; }
.radar-ring:nth-child(3) { width: 440px; height: 440px; animation-delay: 1.6s; }
@keyframes radar-pulse {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.85); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--accent-purple);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
  position: relative;
  z-index: 99;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 20px;
}
.ticker-sep {
  color: rgba(255,255,255,0.5);
  font-size: 0.625rem;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Comparison ---------- */
.comparison {
  background: var(--accent-purple);
  padding: 80px 0;
}
.comparison-inner { text-align: center; }
.comparison-label {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.comparison-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.comparison-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #0e0a1c;
}
.comparison-table thead tr {
  background: #0e0a1c;
}
.comparison-table thead th {
  padding: 16px 28px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  border-bottom: 1px solid rgba(155,127,232,0.15);
}
.comparison-table thead th:last-child { text-align: right; }
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(155,127,232,0.1);
  transition: background 0.15s;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td {
  padding: 22px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}
.comparison-rank {
  color: var(--text-dim) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  width: 60px;
}
.comparison-name { text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-price { text-align: right !important; }
/* Highlighted (PokeScan) row */
tr.comparison-highlight {
  background: #1a1330 !important;
  border: none !important;
  outline: 1.5px solid var(--accent-purple);
  outline-offset: -1px;
}
tr.comparison-highlight td { color: #fff !important; }
tr.comparison-highlight .comparison-rank { color: var(--accent-light) !important; }
tr.comparison-highlight .comparison-price {
  color: var(--accent-light) !important;
  font-size: 1.0625rem !important;
  font-weight: 800 !important;
}

/* ---------- Features ---------- */
.features { background: rgba(22, 15, 42, 0.7); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Coverage ---------- */
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.retailer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}
.retailer-chip:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.retailer-flag { font-size: 1rem; line-height: 1; }
.retailer-name { white-space: nowrap; }

/* ---------- Pricing ---------- */
.pricing { background: rgba(22, 15, 42, 0.7); }
.pricing-card-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-bright);
  border-radius: 20px;
  padding: 48px 52px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  text-align: center;
}
.pricing-badge {
  display: inline-flex;
  background: var(--accent-purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 8px;
}
.pricing-amount {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-amount sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}
.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0;
}
.pricing-trial {
  font-size: 0.875rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 32px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing-feature::before {
  content: '✓';
  color: var(--accent-purple);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-cta { width: 100%; justify-content: center; font-size: 1.0625rem; padding: 16px; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-bright); }
.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--accent-purple); font-style: normal; font-size: 1.25rem; }
.testimonial-quote::after  { content: '"'; color: var(--accent-purple); font-style: normal; font-size: 1.25rem; }
.testimonial-author { font-weight: 700; font-size: 0.9375rem; }
.testimonial-detail { font-size: 0.8125rem; color: var(--text-dim); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { background: rgba(22, 15, 42, 0.7); }
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-bright); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent-purple);
  transition: transform 0.25s, background 0.2s;
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-purple); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(155,127,232,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.cta-inner .section-heading { margin-bottom: 16px; }
.cta-inner .section-subheading { margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-base);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 800;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 50%; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-muted); }
.footer-disclaimer {
  font-size: 0.78125rem;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.65;
}
.footer-copy { font-size: 0.8125rem; color: var(--text-dim); }

/* ---------- Divider ---------- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent-purple);
  border-radius: 99px;
  margin: 20px auto 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 48px; text-align: center; }
  .hero-sub, .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-visual { flex: none; width: 100%; }
  .hero-logo-wrap { width: 200px; height: 200px; margin: 0 auto; }
  .radar-ring:nth-child(1) { width: 240px; height: 240px; }
  .radar-ring:nth-child(2) { width: 290px; height: 290px; }
  .radar-ring:nth-child(3) { width: 340px; height: 340px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pricing-card { padding: 40px 28px; }
}

@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-headline { font-size: 2.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .comparison { padding: 60px 0; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 14px 16px; }
  .comparison-rank { width: 44px; }
  .comparison-price { font-size: 0.875rem !important; }
}

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