/* ============================================================
   onVPS — Shared Stylesheet
   Theme: deep navy dark mode, electric blue + sharp red accents
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #080b14;
  --bg-2:         #0b0f1c;
  --surface:      #111626;
  --surface-2:    #161c2e;
  --surface-3:    #1d2538;
  --border:       rgba(255,255,255,0.07);
  --border-strong:rgba(255,255,255,0.14);

  /* Text */
  --text:         #eaeef7;
  --text-muted:   #9aa6bf;
  --text-dim:     #6b7488;

  /* Accents */
  --blue:         #3b82f6;
  --blue-bright:  #5b9bff;
  --blue-deep:    #1d4ed8;
  --blue-glow:    rgba(59,130,246,0.45);
  --red:          #ef4444;
  --red-bright:   #ff5a5a;
  --red-glow:     rgba(239,68,68,0.40);

  /* Gradients */
  --grad-br:      linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 55%, var(--red) 130%);
  --grad-blue:    linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  --grad-text:    linear-gradient(100deg, #fff 0%, #bcd0ff 45%, #5b9bff 100%);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --maxw:         1200px;
  --radius:       16px;
  --radius-sm:    10px;
  --header-h:     72px;

  --shadow:       0 24px 60px -20px rgba(0,0,0,0.7);
  --shadow-blue:  0 18px 50px -16px var(--blue-glow);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric background layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(59,130,246,0.16), transparent 60%),
    radial-gradient(700px 500px at 8% 8%, rgba(239,68,68,0.08), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

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

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--text-muted); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
.section-sm { padding: 60px 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.red { color: var(--red-bright); }
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.lead { font-size: 1.12rem; max-width: 620px; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -16px var(--blue-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--blue-bright); color: #fff; background: rgba(59,130,246,0.08); }
.btn-red {
  background: linear-gradient(135deg, var(--red-bright), #c81e1e);
  color: #fff;
  box-shadow: 0 18px 50px -16px var(--red-glow);
}
.btn-red:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(8,11,20,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,11,20,0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-br);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -4px var(--blue-glow);
  position: relative;
  flex: none;
}
.brand .logo svg { width: 18px; height: 18px; }
.brand .on { color: var(--text); }
.brand .vps { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav a.active { color: #fff; }
.nav a.active::after { content: ""; display:block; height:2px; width: 60%; margin: 3px auto 0; background: var(--grad-blue); border-radius: 2px; }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--border);
}
.nav-toggle span { display:block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(70px, 11vw, 130px) 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero .lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .item { font-size: 0.88rem; color: var(--text-muted); display:flex; align-items:center; gap:8px; }
.hero-trust .item strong { font-family: var(--font-mono); color: var(--text); font-weight: 600; }

.hero-visual { position: relative; }
.hero-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; opacity: 0.92; }
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,11,20,0.55) 100%),
              linear-gradient(120deg, rgba(59,130,246,0.20), transparent 60%);
}
.hero-badge {
  position: absolute; z-index: 2;
  background: rgba(11,15,28,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  box-shadow: var(--shadow);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display:inline-block; margin-right: 8px; box-shadow: 0 0 10px #2ecc71; }
.hero-badge.b1 { bottom: 22px; left: -18px; }
.hero-badge.b2 { top: 22px; right: -14px; }
.hero-badge .big { display:block; font-size: 1.25rem; color:#fff; }

/* ---------- Marquee strip ---------- */
.strip {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 22px 0;
}
.strip .row { display:flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items:center; font-family: var(--font-mono); font-size: 0.84rem; color: var(--text-dim); letter-spacing: .04em; }
.strip .row span { display:flex; align-items:center; gap:9px; }
.strip .row b { color: var(--blue-bright); font-weight: 600; }

/* ---------- Cards / Features ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content:""; position:absolute; inset: 0;
  background: radial-gradient(420px 200px at var(--mx,30%) -10%, rgba(59,130,246,0.14), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card.accent-red:hover { box-shadow: 0 24px 60px -20px var(--red-glow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px;
  display:grid; place-items:center; margin-bottom: 18px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-bright);
}
.card.accent-red .icon { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.25); color: var(--red-bright); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.96rem; }
.card .icon svg { width: 24px; height: 24px; }

/* Stat blocks */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat {
  text-align:center; padding: 30px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
}
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem,3.5vw,2.6rem); background: var(--grad-text); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing:.12em; text-transform:uppercase; color: var(--text-dim); margin-top: 6px; }

/* Split feature row */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.split .visual img { border-radius: var(--radius); border: 1px solid var(--border); height: 360px; width:100%; object-fit: cover; box-shadow: var(--shadow); }
.split.rev .visual { order: -1; }
.feature-list { margin-top: 22px; display:grid; gap: 14px; }
.feature-list li { display:flex; gap: 13px; align-items:flex-start; }
.feature-list .tick { flex:none; width: 24px; height:24px; border-radius:7px; background: rgba(59,130,246,0.14); color: var(--blue-bright); display:grid; place-items:center; margin-top:2px; }
.feature-list .tick svg { width: 14px; height:14px; }
.feature-list b { color: var(--text); font-weight: 600; }
.feature-list small { display:block; color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Pricing ---------- */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display:flex; flex-direction:column;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.plan.featured { border-color: rgba(59,130,246,0.5); box-shadow: var(--shadow-blue); }
.plan.featured::after {
  content:"RECOMANDAT"; position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing:.16em;
  background: var(--grad-blue); color:#fff; padding: 5px 14px; border-radius: 999px;
}
.plan .pname { font-family: var(--font-display); font-weight:700; font-size:1.15rem; }
.plan .pdesc { font-size:0.88rem; color: var(--text-dim); margin: 6px 0 18px; min-height: 38px; }
.plan .price { font-family: var(--font-display); font-weight:800; font-size: 2.4rem; }
.plan .price small { font-size: 0.95rem; font-weight:500; color: var(--text-dim); font-family: var(--font-body); }
.plan ul { margin: 22px 0 26px; display:grid; gap: 11px; }
.plan ul li { font-size:0.92rem; color: var(--text-muted); display:flex; gap:10px; align-items:center; }
.plan ul li svg { width:16px; height:16px; color: var(--blue-bright); flex:none; }
.plan .btn { margin-top: auto; justify-content:center; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow:hidden;
  border-radius: 24px;
  padding: 56px clamp(28px,5vw,72px);
  background: linear-gradient(120deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--border);
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 85% 50%, rgba(239,68,68,0.18), transparent 60%),
              radial-gradient(600px 360px at 12% 20%, rgba(59,130,246,0.22), transparent 60%);
}
.cta-band > * { position: relative; z-index:1; }
.cta-band h2 { max-width: 620px; }
.cta-band .actions { display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }

/* ---------- Page header (interior pages) ---------- */
.page-head { padding: clamp(56px,8vw,90px) 0 44px; position: relative; }
.page-head h1 { margin: 16px 0 16px; }
.page-head .lead { font-size: 1.1rem; }
.breadcrumb { font-family: var(--font-mono); font-size:0.78rem; color: var(--text-dim); letter-spacing:.05em; }
.breadcrumb a:hover { color: var(--blue-bright); }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-row { display:flex; gap:16px; align-items:flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { flex:none; width:44px; height:44px; border-radius:11px; background: rgba(59,130,246,0.12); color: var(--blue-bright); display:grid; place-items:center; border:1px solid rgba(59,130,246,0.25); }
.contact-row.red .ic { background: rgba(239,68,68,0.12); color: var(--red-bright); border-color: rgba(239,68,68,0.25); }
.contact-row .ic svg { width:20px; height:20px; }
.contact-row .k { font-family: var(--font-mono); font-size:0.74rem; letter-spacing:.12em; text-transform:uppercase; color: var(--text-dim); }
.contact-row .v { font-size: 1.02rem; color: var(--text); font-weight:600; word-break: break-word; }
.contact-row .v a:hover { color: var(--blue-bright); }
.contact-row p { font-size:0.88rem; margin-top:4px; }

.field { margin-bottom: 18px; }
.field label { display:block; font-size:0.84rem; font-weight:600; margin-bottom:7px; color: var(--text-muted); }
.field input, .field textarea, .field select {
  width:100%; padding: 12px 15px;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size:0.82rem; color: var(--text-dim); margin-top: 4px; }

/* FAQ */
.faq { display:grid; gap: 14px; max-width: 800px; margin-inline:auto; }
.faq details {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq summary {
  cursor:pointer; list-style:none; padding: 18px 0; font-family: var(--font-display);
  font-weight:600; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.5rem; color: var(--blue-bright); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; font-size:0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 56px 0 28px;
  margin-top: 30px;
}
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { font-size: 0.92rem; margin: 14px 0 18px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size:0.76rem; letter-spacing:.14em; text-transform:uppercase; color: var(--text-dim); margin-bottom: 16px; font-weight:600; }
.footer-col a { display:block; color: var(--text-muted); font-size:0.92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; margin-top: 44px; padding-top: 24px; border-top:1px solid var(--border); font-size:0.84rem; color: var(--text-dim); }
.footer-bottom .legal { display:flex; gap:18px; flex-wrap:wrap; }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; z-index: 200; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(140%);
  width: min(720px, calc(100% - 32px));
  background: rgba(11,15,28,0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display:flex; gap: 20px; align-items:center; flex-wrap: wrap;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie .ic { flex:none; width:46px; height:46px; border-radius:12px; background: var(--grad-br); display:grid; place-items:center; }
.cookie .ic svg { width:22px; height:22px; }
.cookie .txt { flex:1 1 280px; }
.cookie .txt strong { font-family: var(--font-display); display:block; margin-bottom: 4px; }
.cookie .txt p { font-size:0.86rem; }
.cookie .txt a { color: var(--blue-bright); text-decoration: underline; }
.cookie .actions { display:flex; gap:10px; flex: 0 0 auto; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align:center; }
.section-head h2 { margin: 14px 0 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .visual { order: 0; }
  .grid-3, .grid-4, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display:block; }
  .nav.mobile-open {
    display:flex; flex-direction: column; align-items: stretch;
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(8,11,20,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; gap: 4px;
  }
  .nav.mobile-open a { padding: 14px; border-radius: 10px; font-size: 1rem; }
  .nav.mobile-open a.active::after { display:none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .price-grid, .stats, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge.b1 { left: 8px; }
  .hero-badge.b2 { right: 8px; }
  .footer-bottom { flex-direction: column; align-items:flex-start; }
  .cta-band { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity:1; transform:none; }
}

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal .notice {
  background: linear-gradient(180deg, rgba(239,68,68,0.09), rgba(59,130,246,0.05));
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 40px;
  font-size: 0.92rem;
}
.legal .notice strong { color: var(--text); font-family: var(--font-display); }
.legal .toc {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 46px;
}
.legal .toc h4 { font-family: var(--font-mono); font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; color: var(--text-dim); margin-bottom:14px; }
.legal .toc ol { columns: 2; column-gap: 34px; padding-left: 20px; list-style: decimal; }
.legal .toc li { margin: 5px 0; }
.legal .toc a { color: var(--text-muted); font-size:.92rem; }
.legal .toc a:hover { color: var(--blue-bright); }
.legal h2 { font-size: 1.38rem; margin: 46px 0 14px; scroll-margin-top: 92px; }
.legal h2 .n { color: var(--blue-bright); font-family: var(--font-mono); font-size: 1rem; margin-right: 10px; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin: 7px 0; color: var(--text-muted); }
.legal a.inline { color: var(--blue-bright); text-decoration: underline; }
.legal .meta { font-family: var(--font-mono); font-size:.8rem; color: var(--text-dim); }
.legal .fill { color: var(--red-bright); font-style: italic; }
.legal .backtop { display:inline-block; margin-top: 8px; font-family: var(--font-mono); font-size:.78rem; color: var(--text-dim); }
.legal .backtop:hover { color: var(--blue-bright); }
.legal .data-box { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; margin: 16px 0; }
.legal .data-box p { margin: 4px 0; font-size: 0.94rem; }
@media (max-width: 700px){ .legal .toc ol { columns: 1; } }
