@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  color-scheme: dark;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bg: #05070d;
  --bg-2: #070a12;
  --surface: #10141f;
  --surface-2: #161b29;
  --surface-soft: rgba(16, 20, 31, 0.7);
  --border: rgba(238, 241, 247, 0.09);
  --border-strong: rgba(238, 241, 247, 0.18);
  --text: #eef1f7;
  --muted: #9aa4b8;
  --muted-2: #6b7386;
  --accent: #2dd4bf;
  --accent-2: #818cf8;
  --accent-ink: #04211c;
  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.12);
  --warn: #fbbf24;
  --grad-brand: linear-gradient(135deg, #2dd4bf 0%, #818cf8 100%);
  --grad-panel: linear-gradient(160deg, #12172a 0%, #0b0f1a 60%, #0a1a17 100%);
  --glow: rgba(45, 212, 191, 0.28);
  --glow-2: rgba(129, 140, 248, 0.22);
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 16px 36px -18px rgba(0, 0, 0, 0.55);
  --header-bg: rgba(5, 7, 13, 0.78);
  --dot: rgba(238, 241, 247, 0.07);
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f4f6fb;
    --bg-2: #eef1f8;
    --surface: #ffffff;
    --surface-2: #f6f8fc;
    --surface-soft: rgba(255, 255, 255, 0.75);
    --border: rgba(11, 18, 32, 0.09);
    --border-strong: rgba(11, 18, 32, 0.18);
    --text: #0b1220;
    --muted: #4b5568;
    --muted-2: #6b7386;
    --accent: #0d9488;
    --accent-2: #4f46e5;
    --accent-ink: #ffffff;
    --success: #059669;
    --success-bg: rgba(5, 150, 105, 0.1);
    --grad-panel: linear-gradient(160deg, #ffffff 0%, #eef1f8 55%, #e7f6f3 100%);
    --glow: rgba(13, 148, 136, 0.16);
    --glow-2: rgba(79, 70, 229, 0.14);
    --shadow-lg: 0 30px 70px -30px rgba(15, 23, 42, 0.22);
    --shadow-md: 0 16px 36px -18px rgba(15, 23, 42, 0.18);
    --header-bg: rgba(244, 246, 251, 0.82);
    --dot: rgba(11, 18, 32, 0.06);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 600; line-height: 1.14; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
svg { flex-shrink: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 820px; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--tight { padding: 3rem 0; }
@media (max-width: 640px) { .section { padding: 3.25rem 0; } }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.eyebrow::before { content: ''; width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--grad-brand); display: inline-block; }
.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1.25rem; max-width: 1180px; margin: 0 auto; }
@media (min-width: 640px) { .site-header__inner { padding: 0.7rem 2rem; } }
.brand { display: flex; align-items: center; gap: 0.55rem; min-width: 0; }
.brand__mark { height: 2.1rem; width: 2.1rem; border-radius: 0.6rem; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: #04211c; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.brand span { font-family: 'Space Grotesk', sans-serif; font-size: 1.12rem; font-weight: 600; white-space: nowrap; letter-spacing: -0.01em; }
.nav-desktop { display: none; align-items: center; gap: 1.35rem; font-size: 0.9rem; font-weight: 500; }
@media (min-width: 960px) { .nav-desktop { display: flex; } }
.nav-link { color: var(--muted); transition: color 0.15s var(--ease); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.55rem; border: 1px solid var(--border); background: var(--surface); color: var(--text); }
@media (min-width: 960px) { .nav-mobile-toggle { display: none; } }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-mobile-panel { display: none; border-top: 1px solid var(--border); background: var(--bg); }
.nav-mobile-panel.open { display: block; }
.nav-mobile-panel .container { display: flex; flex-direction: column; padding: 1rem 1.25rem 1.5rem; gap: 0.15rem; }
.nav-mobile-panel a { padding: 0.65rem 0.25rem; border-bottom: 1px solid var(--border); font-weight: 500; }

/* Geo bar + country switcher */
.geo-bar { background: var(--surface-2); border-bottom: 1px solid var(--border); font-size: 0.83rem; display: none; }
.geo-bar.show { display: block; }
.geo-bar .container { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.55rem 1.25rem; flex-wrap: wrap; text-align: center; }
.geo-bar a { color: var(--accent); font-weight: 600; }
.geo-bar__dismiss { margin-left: 0.4rem; color: var(--muted-2); border: none; background: none; cursor: pointer; font-size: 0.9rem; }

.country-switcher { position: relative; }
.country-switcher__btn { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--border); background: var(--surface); border-radius: 999px; padding: 0.4rem 0.7rem; font-size: 0.82rem; font-weight: 500; cursor: pointer; color: var(--text); }
.country-switcher__panel { display: none; position: absolute; top: calc(100% + 0.5rem); right: 0; width: 15.5rem; max-height: 20rem; overflow-y: auto; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 0.8rem; box-shadow: var(--shadow-lg); padding: 0.4rem; z-index: 40; }
.country-switcher__panel.open { display: block; }
.country-switcher__item { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.5rem 0.65rem; border-radius: 0.5rem; font-size: 0.85rem; }
.country-switcher__item:hover { background: var(--surface-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), filter 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--grad-brand); color: var(--accent-ink); }
.btn--accent:hover { filter: brightness(1.08); }
.btn--ink { background: var(--text); color: var(--bg); }
.btn--ink:hover { filter: brightness(0.92); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 0.45rem 0.85rem; font-size: 0.83rem; }
.btn--lg { padding: 0.8rem 1.5rem; font-size: 0.98rem; }
.btn--block { width: 100%; }

/* Hero */
.hero { padding: 3.25rem 0 2.5rem; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: -25% -10% auto -10%;
  height: 30rem;
  background: radial-gradient(closest-side, var(--glow), transparent 70%), radial-gradient(closest-side, var(--glow-2), transparent 72%);
  background-position: 20% 0%, 85% 20%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; } }
.hero h1 { font-size: 2.1rem; }
@media (min-width: 640px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1000px) { .hero h1 { font-size: 2.95rem; } }
.hero p.lead { font-size: 1.05rem; color: var(--muted); max-width: 40rem; margin-top: 1.1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.85rem; }
.breadcrumb { font-size: 0.85rem; color: var(--muted-2); margin-bottom: 1.25rem; }
.breadcrumb a:hover { color: var(--accent); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 2.25rem; max-width: 30rem; }
.stat-pill { border: 1px solid var(--border); border-radius: 0.8rem; padding: 0.75rem 0.85rem; background: var(--surface-soft); }
.stat-pill dt { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted-2); margin: 0; }
.stat-pill dd { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; margin: 0.3rem 0 0; }

.hero-panel { border-radius: 1.4rem; border: 1px solid var(--border-strong); background: var(--grad-panel); box-shadow: var(--shadow-lg); padding: 1.6rem; position: relative; overflow: hidden; }
.hero-panel::after { content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 60%; background: var(--glow); filter: blur(40px); border-radius: 999px; pointer-events: none; }
.hero-panel__label { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin: 0; position: relative; }
.hero-panel__sub { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-top: 0.3rem; position: relative; }
.hero-panel__chips { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; position: relative; }
.chip { display: flex; align-items: flex-start; gap: 0.55rem; border: 1px solid var(--border); background: var(--surface-soft); border-radius: 0.7rem; padding: 0.65rem 0.7rem; }
.chip__icon { flex-shrink: 0; color: var(--accent); margin-top: 0.1rem; }
.chip__label { font-size: 0.82rem; font-weight: 600; margin: 0; font-family: 'Space Grotesk', sans-serif; }
.chip__desc { font-size: 0.72rem; color: var(--muted-2); margin: 0.1rem 0 0; }

/* Grids & cards */
.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: 1fr; } @media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
.grid--3 { grid-template-columns: 1fr; } @media (min-width: 640px) { .grid--3 { grid-template-columns: 1fr 1fr; } } @media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.1rem;
  padding: 1.5rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; background: var(--success-bg); color: var(--accent); margin-bottom: 0.9rem; }
.card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.region-card { display: block; border: 1px solid var(--border); background: var(--surface); border-radius: 1rem; padding: 1.15rem 1.3rem; transition: border-color 0.15s var(--ease), transform 0.15s var(--ease); }
.region-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.region-card--match { border-color: var(--accent); box-shadow: 0 0 0 3px var(--success-bg); }
.region-card__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; }
.region-card__meta { font-size: 0.82rem; color: var(--muted-2); margin-top: 0.2rem; }
.region-card__cta { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.6rem; font-size: 0.82rem; font-weight: 600; color: var(--accent); }

.plan-card { border: 1px solid var(--border); background: var(--surface); border-radius: 1.2rem; padding: 1.85rem; position: relative; }
.plan-card--popular { border-color: var(--accent); box-shadow: 0 0 0 3px var(--success-bg); }
.plan-card__badge { position: absolute; top: -0.7rem; left: 1.5rem; background: var(--grad-brand); color: #04211c; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.6rem; border-radius: 999px; font-family: 'Space Grotesk', sans-serif; }
.plan-card__price { margin-top: 0.85rem; display: flex; align-items: baseline; gap: 0.4rem; }
.plan-card__price .num { font-family: 'Space Grotesk', sans-serif; font-size: 2.3rem; font-weight: 700; }
.plan-card__price .unit { font-size: 0.85rem; color: var(--muted); }
.plan-card__list { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.plan-card__list li { font-size: 0.88rem; color: var(--muted); padding-left: 1.4rem; position: relative; }
.plan-card__list li::before { content: ''; position: absolute; left: 0; top: 0.3rem; width: 0.85rem; height: 0.85rem; border-radius: 999px; background: var(--success-bg); }
.plan-card__list li::after { content: '✓'; position: absolute; left: 0.14rem; top: -0.02rem; color: var(--success); font-weight: 700; font-size: 0.65rem; }

.pay-pill { display: flex; align-items: center; gap: 0.85rem; border: 1px solid var(--border); border-radius: 0.9rem; padding: 0.9rem 1rem; background: var(--surface); }
.pay-pill__icon { flex-shrink: 0; width: 2.4rem; height: 2.4rem; border-radius: 0.65rem; background: var(--success-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.pay-pill h4 { font-size: 0.95rem; font-weight: 600; margin: 0; font-family: 'Space Grotesk', sans-serif; }
.pay-pill p { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }

.why-card { border: 1px solid var(--border); border-radius: 1rem; padding: 1.3rem; background: var(--surface); }
.why-card__icon { color: var(--accent); }
.why-card h3 { font-size: 1rem; margin-top: 0.65rem; }
.why-card p { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem; }

.step-card { border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; background: var(--surface); position: relative; }
.step-card__num { display: inline-flex; align-items: center; justify-content: center; width: 2.1rem; height: 2.1rem; border-radius: 0.6rem; background: var(--grad-brand); color: #04211c; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.step-card h3 { margin-top: 1rem; font-size: 1.05rem; }
.step-card p { margin-top: 0.5rem; font-size: 0.88rem; color: var(--muted); }

.insight-card { display: flex; gap: 0.9rem; border: 1px solid var(--border); border-radius: 1rem; padding: 1.15rem; background: var(--surface); }
.insight-card__icon { color: var(--accent); flex-shrink: 0; }
.insight-card h3 { font-size: 1rem; }
.insight-card p { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

.device-strip { display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; align-items: center; justify-content: center; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.device-strip img { height: 1.5rem; width: auto; opacity: 0.55; filter: grayscale(1) brightness(1.6); }
@media (prefers-color-scheme: light) { .device-strip img { filter: grayscale(1) brightness(0.4); opacity: 0.6; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0.25rem; text-align: left; background: none; border: none; cursor: pointer; font-weight: 600; font-size: 0.98rem; color: var(--text); font-family: 'Space Grotesk', sans-serif; }
.faq-item__chev { transition: transform 0.2s var(--ease); flex-shrink: 0; color: var(--muted-2); }
.faq-item.open .faq-item__chev { transform: rotate(180deg); color: var(--accent); }
.faq-item__body { display: none; padding: 0 0.25rem 1.1rem; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.faq-item.open .faq-item__body { display: block; }

/* Contact */
.contact-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { border: 1px solid var(--border); border-radius: 1.1rem; padding: 1.5rem; background: var(--surface); }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.9rem; }
.contact-line { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.contact-line:last-child { border-bottom: none; }
.contact-line a { color: var(--accent); font-weight: 600; }

/* Closing CTA */
.cta-card { border-radius: 1.6rem; background: var(--grad-panel); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); padding: 3rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; inset: -20% -10% auto -10%; height: 60%; background: radial-gradient(closest-side, var(--glow), transparent 70%); pointer-events: none; }
@media (min-width: 640px) { .cta-card { padding: 3.5rem 3.5rem; } }
.cta-card h2 { font-size: 1.65rem; position: relative; }
.cta-card p { margin-top: 0.6rem; color: var(--muted); max-width: 32rem; margin-left: auto; margin-right: auto; position: relative; }
.cta-card .hero-ctas { justify-content: center; margin-top: 2rem; position: relative; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); margin-top: 3rem; padding: 3rem 0 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted-2); margin-bottom: 0.85rem; font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid a { color: var(--muted); font-size: 0.88rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; font-size: 0.8rem; color: var(--muted-2); }

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #04210f;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px) scale(1.03); }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 34rem; }
.max-w-xl { max-width: 40rem; }
.max-w-2xl { max-width: 48rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 0.85rem; } .mt-3 { margin-top: 1.25rem; } .mt-4 { margin-top: 1.75rem; } .mt-6 { margin-top: 2.5rem; }
.section-head { margin-bottom: 2.25rem; }
.badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.22rem 0.6rem; border-radius: 999px; background: var(--success-bg); color: var(--accent); font-family: 'Space Grotesk', sans-serif; }
.prose { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.prose h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--text); }
.prose h3 { font-size: 1.08rem; margin: 1.5rem 0 0.5rem; color: var(--text); }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.4rem; list-style: disc; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--accent); text-decoration: underline; }

.callout { display: flex; align-items: flex-start; gap: 0.75rem; border: 1px solid var(--border-strong); background: var(--success-bg); border-radius: 0.9rem; padding: 1rem 1.15rem; }
.callout__icon { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.callout a { color: var(--accent); font-weight: 600; }

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table thead tr { text-align: left; border-bottom: 2px solid var(--border-strong); }
table th, table td { padding: 0.65rem 0.6rem; }
table tbody tr { border-bottom: 1px solid var(--border); }
table tbody tr.row-match { background: var(--success-bg); }
table a { color: var(--accent); font-weight: 600; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--text); color: var(--bg); padding: 0.6rem 1rem; border-radius: 0 0 0.5rem 0; z-index: 100; }
.skip-link:focus { left: 0; }

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