/* ============================================================
   TeamDominant — VPN/Proxy
   Dark premium minimalism · warm near-black + gold accent
   ============================================================ */

:root {
  /* neutral dark-gray minimal */
  --bg:          oklch(0.17 0 0);
  --bg-2:        oklch(0.205 0 0);
  --surface:     oklch(0.225 0 0);
  --surface-2:   oklch(0.265 0 0);
  --border:      oklch(0.32 0 0);
  --border-strong: oklch(0.43 0 0);

  --text:   oklch(0.97 0 0);
  --muted:  oklch(0.74 0 0);
  --faint:  oklch(0.55 0 0);

  /* accent — mono white (overridable via Tweaks) */
  --accent:       oklch(0.96 0 0);
  --accent-soft:  oklch(0.96 0 0 / 0.12);
  --accent-line:  oklch(0.96 0 0 / 0.30);
  --accent-glow:  oklch(0.96 0 0 / 0.20);
  --accent-ink:   oklch(0.18 0 0);

  --radius:   14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-soft); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent-line);
}

.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  margin-top: 18px;
}
.section-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: 0 10px 40px -8px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--text); background: var(--surface); }

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.17 0 0 / 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}
.brand b { color: var(--text); font-weight: 600; }

.nav-collapse {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-tools { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.lang button {
  border: none;
  background: transparent;
  color: var(--faint);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color .2s, background .2s;
}
.lang button.on { background: var(--surface-2); color: var(--text); }

.burger {
  display: none;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.burger:hover { border-color: var(--accent-line); background: var(--surface-2); }
.burger svg { display: block; }
.burger svg path { transition: transform .3s var(--ease), opacity .2s; transform-origin: center; }
.burger[aria-expanded="true"] .l1 { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .l2 { opacity: 0; }
.burger[aria-expanded="true"] .l3 { transform: translateY(-5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
#hero-canvas, .hero-paths {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-paths {
  color: var(--accent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: transform;
}
.hero-paths.in { opacity: 1; }
.hero-paths svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-paths path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 0.55 0.45;
  animation: path-flow var(--dur, 24s) linear var(--delay, 0s) infinite;
  opacity: var(--op, 0.4);
  stroke-width: var(--sw, 1);
}
@keyframes path-flow { to { stroke-dashoffset: -1; } }
.hero-glow {
  position: absolute;
  z-index: 0;
  top: 30%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 62%);
  filter: blur(30px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 55%, var(--bg) 100%),
    linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
}
.hero .wrap { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: oklch(0.225 0 0 / 0.6);
  border: 1px solid var(--border);
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px transparent; } }

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* big name — smooth fade up */
.hero-name {
  font-size: clamp(46px, 11vw, 148px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 1s var(--ease) .1s forwards;
}
.hero-name .accent { color: var(--accent); }
@keyframes hero-rise { to { opacity: 1; transform: none; } }

/* slogan — clean mono, smooth fade up */
.hero-sign {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: clamp(15px, 2.1vw, 22px);
  letter-spacing: 0.04em;
  margin-top: clamp(16px, 2vw, 26px);
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 1s var(--ease) .35s forwards;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px, 4vw, 46px); justify-content: center; }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--accent-line), transparent); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat {
  background: var(--bg-2);
  padding: clamp(34px, 5vw, 54px) clamp(20px, 3vw, 40px);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .num .u { color: var(--accent); }
.stat .lbl { color: var(--muted); margin-top: 12px; font-size: 14.5px; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.glow-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), var(--accent-line), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.glow-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.glow-card:hover::before, .glow-card:hover::after { opacity: 1; }

.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--accent);
  position: relative; z-index: 1;
}
.feat-icon svg { width: 22px; height: 22px; }
.glow-card h3 { font-size: 22px; margin-top: 22px; position: relative; z-index: 1; }
.glow-card p { color: var(--muted); margin-top: 12px; font-size: 16px; position: relative; z-index: 1; }

/* ============================================================
   PRICING
   ============================================================ */
.period {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 48px;
}
.period button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s, background .25s;
}
.period button .save {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.period button.on { background: var(--accent); color: var(--accent-ink); }
.period button.on .save { color: var(--accent-ink); background: oklch(0.20 0.05 84 / 0.18); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--accent-line);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(160deg, var(--accent-line), transparent 55%) border-box;
  border: 1px solid transparent;
  /* simple static glow on the background — nothing else */
  box-shadow:
    0 0 54px -6px var(--accent-glow),
    0 26px 80px -44px var(--accent-glow);
  /* glow sits BELOW the neighbouring cards instead of bleeding over them */
  z-index: 0;
}
.price-card:not(.featured) { z-index: 1; }
.price-card .tier {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; justify-content: space-between;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card .devices { font-size: 16px; color: var(--text); margin-top: 16px; }
.price-card .devices b { font-family: var(--font-display); }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-top: 22px; flex-wrap: wrap; }
.price-row .old {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--faint);
  text-decoration: line-through;
  text-decoration-color: var(--accent-line);
  letter-spacing: -0.01em;
  margin-left: 2px;
}
.price-row .old:empty { display: none; }
.price-row .cur { color: var(--muted); font-size: 22px; font-family: var(--font-display); }
.price-row .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
@keyframes priceflash {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}
@keyframes priceflash-soft {
  from { opacity: 0.25; }
  to   { opacity: 1; }
}
.price-row .val.flash, .price-row .old.flash { animation: priceflash .38s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .price-row .val.flash, .price-row .old.flash { animation: priceflash-soft .3s var(--ease); }
}
body.no-anim .price-row .val.flash, body.no-anim .price-row .old.flash { animation: none; }
.price-permonth { color: var(--faint); font-size: 13.5px; font-family: var(--font-mono); margin-top: 10px; min-height: 18px; }
.price-card hr { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.price-card ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.price-card li { display: flex; gap: 11px; font-size: 15px; color: var(--muted); align-items: flex-start; }
.price-card li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; width: 100%; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.loc {
  background: var(--surface);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: background .25s;
}
.loc:hover { background: var(--surface-2); }
.loc .code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-ink);
  background: var(--accent);
  width: 38px; height: 26px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 700;
  flex: none;
}
.loc .name { font-size: 15px; }
.loc .ping { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--faint); display: flex; align-items: center; gap: 6px; }
.loc .ping i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.loc-note { margin-top: 22px; color: var(--faint); font-family: var(--font-mono); font-size: 13px; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 130% at 100% 0%, var(--accent-soft), transparent 60%),
    var(--bg-2);
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
}
.cta-panel h2 { font-size: clamp(30px, 4.4vw, 52px); max-width: 16ch; }
.cta-panel p { color: var(--muted); margin-top: 18px; max-width: 48ch; font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; margin-top: 36px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--muted);
  transition: border-color .25s, color .25s;
}
.contact-chip:hover { border-color: var(--accent-line); color: var(--text); }
.contact-chip svg { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: 60px 36px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--faint); margin-top: 16px; font-size: 14.5px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 56px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-weight: 500; }
.footer-col ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--border);
  color: var(--faint); font-size: 13px; font-family: var(--font-mono);
}
.footer-top.center { justify-content: center; }
.footer-top.center .footer-cols { justify-content: center; text-align: center; gap: clamp(40px, 8vw, 80px); }
.footer-top.center .footer-col ul { align-items: center; }

/* ============================================================
   SUBPAGE (faq / legal)
   ============================================================ */
.subhero { padding-top: 150px; padding-bottom: 20px; }
.subhero h1 { font-size: clamp(38px, 6vw, 68px); }
.subhero p { color: var(--muted); margin-top: 18px; font-size: 18px; max-width: 56ch; }

.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico {
  width: 26px; height: 26px; flex: none;
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: transform .3s var(--ease), border-color .3s;
}
.faq-item summary .ico::before, .faq-item summary .ico::after {
  content: ""; position: absolute; background: var(--accent);
  left: 50%; top: 50%;
}
.faq-item summary .ico::before { width: 11px; height: 1.6px; transform: translate(-50%,-50%); }
.faq-item summary .ico::after { width: 1.6px; height: 11px; transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-item[open] summary .ico { border-color: var(--accent-line); }
.faq-item[open] summary .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-answer { padding: 0 26px 24px; color: var(--muted); font-size: 16px; max-width: 70ch; }

.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.legal-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 4px; }
.legal-nav a { padding: 10px 14px; border-radius: 8px; font-size: 14.5px; color: var(--muted); transition: color .2s, background .2s; border-left: 2px solid transparent; }
.legal-nav a:hover, .legal-nav a.on { color: var(--text); background: var(--surface); border-left-color: var(--accent); }
.legal-doc { max-width: 760px; }
.legal-doc h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 64px; padding-top: 20px; }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-size: 19px; margin-top: 34px; }
.legal-doc p { color: var(--muted); margin-top: 14px; font-size: 16px; }
.legal-doc ul { color: var(--muted); margin-top: 14px; padding-left: 20px; }
.legal-doc li { margin-top: 8px; }
.legal-doc .meta { font-family: var(--font-mono); font-size: 13px; color: var(--faint); margin-top: 10px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { order: -1; }
}
@media (max-width: 980px) {
  .burger { display: inline-flex; }
  .nav-collapse {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: oklch(0.17 0 0 / 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 16px var(--gutter) 24px;
    margin: 0;
  }
  .nav-collapse.open { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-left: 0;
  }
  .nav-links a { padding: 14px 12px; font-size: 16px; }
  .nav-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-tools .lang { align-self: flex-start; }
  .nav-tools .btn { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px 22px; }
  .footer-cols { gap: 32px; }
  .period {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 16px;
    gap: 5px;
  }
  .period button { justify-content: center; padding: 12px 10px; }
}

/* tweaks panel mount stays above everything */
#tweaks-root { position: relative; z-index: 200; }
