/* Souhlas landing — dark-first, editorial, bold & novel */
:root, [data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --fg: #fafaf8;
  --fg-2: rgba(250, 250, 248, 0.72);
  --fg-3: rgba(250, 250, 248, 0.50);
  --fg-4: rgba(250, 250, 248, 0.32);
  --line: rgba(250, 250, 248, 0.10);
  --line-2: rgba(250, 250, 248, 0.18);
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --danger: #ef4444;
  --warn: #eab308;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

html[data-theme="light"] {
  --bg: #fafaf7 !important;
  --bg-2: #ffffff !important;
  --bg-3: #f2f1ec !important;
  --fg: #0a0a0a !important;
  --fg-2: rgba(10, 10, 10, 0.72) !important;
  --fg-3: rgba(10, 10, 10, 0.50) !important;
  --fg-4: rgba(10, 10, 10, 0.32) !important;
  --line: rgba(10, 10, 10, 0.10) !important;
  --line-2: rgba(10, 10, 10, 0.18) !important;
  color-scheme: light;
}
html[data-theme="dark"] {
  color-scheme: dark;
}
[data-theme="light"] .btn-primary { color: #ffffff; }
[data-theme="light"] .mock-btn-primary { color: #ffffff; }
[data-theme="light"] .price-badge { color: #ffffff; font-weight: 600; background: var(--fg); }
[data-theme="light"] .announce-pill { color: #ffffff; }
[data-theme="light"] .lang-toggle .on { background: var(--fg); color: var(--bg); }
[data-theme="light"] .price-toggle .on { background: var(--fg); color: var(--bg); }
[data-theme="light"] .final-mesh { opacity: 0.35; }
[data-theme="light"] body { background: var(--bg); }
[data-theme="light"] .feat-card,
[data-theme="light"] .how-card,
[data-theme="light"] .price-card,
[data-theme="light"] .cmv2-right,
[data-theme="light"] .hero-b-visual,
[data-theme="light"] .cz-map-wrap {
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04), 0 6px 24px -12px rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .tweaks { box-shadow: 0 24px 72px rgba(10, 10, 10, 0.18); }
[data-theme="light"] .announce { background: #ffffff; }
[data-theme="light"] .mock { background: #ffffff; }
[data-theme="light"] .mock-banner-btns .mock-btn { background: #ffffff; }
[data-theme="light"] .foot { background: var(--bg-2); }

/* Theme toggle (sun/moon) */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--fg-2);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.theme-toggle:hover { background: var(--bg-3); color: var(--fg); border-color: var(--fg-3); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle svg { display: block; width: 16px; height: 16px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Global keyboard focus ring — visible only on keyboard navigation */
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track, .logo-track { animation: none !important; transform: none !important; }
  .cz-map-live-dot { animation: none !important; box-shadow: 0 0 0 3px rgba(16,185,129,0.3); }
  .cz-event-ring, .cz-event-core { display: none !important; }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, red, blue)) {
  [data-theme="dark"] .nav { background: rgba(10, 10, 10, 0.84); }
  [data-theme="light"] .nav { background: rgba(250, 250, 247, 0.90); }
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 14px 40px;
  display: flex; align-items: center; gap: 40px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.brand-tld { font-family: var(--mono); font-size: 11px; color: var(--fg-3); margin-top: 6px; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; color: var(--fg-2); }
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 2px; }
.lang-toggle button {
  padding: 4px 10px; font-size: 11px; font-family: var(--mono); border-radius: 999px;
  color: var(--fg-3); letter-spacing: 1px;
}
.lang-toggle .on { background: var(--fg); color: var(--bg); }
.nav-login { font-size: 14px; color: var(--fg-2); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; font-size: 14px;
  transition: transform 0.12s, background 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #042017; font-weight: 500; }
.btn-primary:hover { transform: translateY(-1px); background: #17c98a; }
.btn-ghost { border: 1px solid var(--line-2); color: var(--fg); }
.btn-ghost:hover { background: var(--bg-3); border-color: var(--fg-3); }
.btn-big { padding: 16px 26px; font-size: 15px; }
.btn-small { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ ANNOUNCE ============ */
.announce {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 8px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  font-size: 13px; color: var(--fg-2);
}
.announce-pill {
  background: var(--accent); color: #042017;
  padding: 2px 8px; border-radius: 999px; font-size: 10px;
  font-family: var(--mono); letter-spacing: 1px; font-weight: 600;
}
.announce-arrow { color: var(--fg-3); margin-right: 8px; }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 18px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ============ HERO A ============ */
.hero { padding: 40px 40px 80px; position: relative; overflow: hidden; }
.hero-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start;
  min-height: 640px;
  padding-top: 24px;
}
.hero-h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.2vw, 84px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 24px 0 24px;
  text-wrap: balance;
}
.hero-line { display: block; }
.hero-accent {
  font-style: italic; color: var(--accent);
  display: inline;
}
.hero-sub {
  font-size: 18px; color: var(--fg-2); line-height: 1.6;
  max-width: 520px; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-cta-sub { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 1px; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  font-size: 12px; color: var(--fg-2);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-badge-legal .hero-badge-dot { background: #a78bfa; }
.hero-badge-iso .hero-badge-dot { background: #60a5fa; }
.hero-badge-eu .hero-badge-dot { background: #fbbf24; }

/* ============ MAP ============ */
.hero-right { position: relative; }
.map-label {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px; padding: 0 4px; gap: 12px;
}
.map-label-t { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; line-height: 1.15; }
.map-label-s { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 1px; margin-top: 6px; }
.map-label-badge {
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  border: 1px solid rgba(16,185,129,0.3); white-space: nowrap; flex-shrink: 0;
}
.cz-map-wrap {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 20px; position: relative;
  display: flex; flex-direction: column;
}
.cz-map-chrome {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--fg-3);
}
.cz-map-chrome-left { display: flex; align-items: center; gap: 8px; color: var(--fg-2); }
.cz-map-chrome-right { display: flex; gap: 6px; }
.cz-map-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
  animation: livepulse 1.6s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  100% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.cz-map-live-label { font-weight: 600; }
.cz-sep { opacity: 0.4; }
.cz-map-svg { width: 100%; height: 320px; display: block; margin: 8px 0; }

/* Live event pulses — CSS keyframes so re-mount always restarts cleanly */
.cz-event-ring {
  r: 4;
  opacity: 0.7;
  transform-box: fill-box;
  transform-origin: center;
  animation: czEventRing 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cz-event-core {
  r: 6;
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: czEventCore 2.5s ease-out forwards;
}
@keyframes czEventRing {
  0%   { r: 4;  opacity: 0.8; }
  100% { r: 48; opacity: 0;   }
}
@keyframes czEventCore {
  0%   { r: 6; opacity: 1; }
  70%  { r: 4; opacity: 0.6; }
  100% { r: 2; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cz-event-ring, .cz-event-core { animation-duration: 0.01ms; animation-iteration-count: 1; }
}
.cz-map-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding: 14px 6px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cz-stat-v { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.cz-stat-k { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--fg-3); text-transform: uppercase; margin-top: 2px; }
.cz-stat-ticker { font-family: var(--mono); font-size: 12px; }
.cz-feed {
  padding-top: 12px;
  height: 110px;            /* reserve 5-row slot so live events never resize the card */
  min-height: 110px;
  box-sizing: content-box;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.cz-feed-row { flex: 0 0 auto; height: 20px; }
.cz-feed-row {
  display: grid; grid-template-columns: 80px 50px 1fr 80px;
  gap: 10px; font-family: var(--mono); font-size: 11px; padding: 3px 0;
  animation: feedin 0.3s ease-out;
}
@keyframes feedin {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}
.cz-feed-t { color: var(--fg-4); }
.cz-feed-reg { color: var(--fg-2); }
.cz-feed-hash { color: var(--fg-4); text-align: right; }

/* ============ HERO B ============ */
.hero-b { padding: 60px 40px 80px; text-align: center; }
.hero-b-inner { max-width: 1100px; margin: 0 auto; }
.hero-b-h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8vw, 132px); line-height: 0.98;
  letter-spacing: -0.03em; margin: 32px 0 24px;
}
.hero-b-sub { font-size: 19px; color: var(--fg-2); max-width: 620px; margin: 0 auto 28px; }
.hero-b-ctas { justify-content: center; }
.hero-b-visual { margin-top: 48px; padding: 28px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; }
.hero-b-flow-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 2px; }
.hero-b-badges { justify-content: center; margin-top: 28px; }

/* ============ HERO C ============ */
.hero-c { padding: 40px 40px 40px; }
.hero-c-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto auto 1fr;
  gap: 24px 48px;
}
.hero-c-top { grid-column: 1 / -1; }
.hero-c-ticker {
  grid-column: 1 / -1;
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.ticker-track { display: flex; animation: ticker 40s linear infinite; white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-group { display: inline-flex; gap: 44px; padding-right: 44px; }
.ticker-word { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: var(--fg-2); letter-spacing: 1px; }
.ticker-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

.hero-c-h1 {
  grid-column: 1; grid-row: 3 / 5;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(90px, 14vw, 220px); line-height: 0.88;
  letter-spacing: -0.04em; margin: 0;
  display: flex; flex-direction: column;
}
.hero-c-line1 { color: var(--fg); }
.hero-c-line2 { color: var(--fg-3); padding-left: 0.3em; }
.hero-c-line3 em { color: var(--accent); font-style: italic; padding-left: 0.6em; }
.hero-c-side { grid-column: 2; grid-row: 3; padding-top: 40px; }
.hero-c-sub { font-size: 17px; color: var(--fg-2); margin: 0 0 24px; }
.hero-c-map { grid-column: 2; grid-row: 4; margin-top: 20px; }

/* ============ PROOF ============ */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 40px; background: var(--bg-2); }
.proof-title { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--fg-3); text-transform: uppercase; margin-bottom: 28px; }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; animation: ticker 45s linear infinite; }
.logo-item {
  flex-shrink: 0; padding: 0 48px;
  font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em;
  color: var(--fg-3);
}

/* ============ SECTION HEAD ============ */
.section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.0;
  letter-spacing: -0.02em; margin: 0 0 16px;
}
.section-sub { font-size: 18px; color: var(--fg-2); line-height: 1.6; max-width: 620px; margin: 0 auto; }

/* ============ FEATURES ============ */
.features { padding: 120px 40px; max-width: 1440px; margin: 0 auto; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.feat-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.feat-title { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
.feat-visual { margin: 8px -4px; min-height: 200px; }
.feat-body { color: var(--fg-2); font-size: 15px; margin: 0; }
.feat-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.feat-bullets li { display: flex; gap: 10px; font-size: 14px; color: var(--fg-2); }
.feat-check { color: var(--accent); }

/* Mocks */
.mock { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 12px; }
.mock-browser-head { display: flex; gap: 6px; padding: 8px 12px; border-bottom: 1px solid var(--line); }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.mock-banner-body { padding: 14px; }
.mock-banner-title { font-weight: 600; margin-bottom: 4px; font-size: 13px; }
.mock-banner-sub { color: var(--fg-3); font-size: 11px; margin-bottom: 12px; }
.mock-banner-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.mock-cat { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--fg-2); padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; }
.mock-toggle { width: 22px; height: 12px; background: var(--line-2); border-radius: 999px; position: relative; flex-shrink: 0; }
.mock-toggle span { position: absolute; top: 1px; left: 1px; width: 10px; height: 10px; background: var(--fg-3); border-radius: 50%; transition: 0.2s; }
.mock-cat.on .mock-toggle { background: var(--accent); }
.mock-cat.on .mock-toggle span { left: 11px; background: #042017; }
.mock-banner-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-btn { padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; font-size: 11px; color: var(--fg-2); background: transparent; }
.mock-btn-primary { background: var(--accent); color: #042017; border-color: var(--accent); font-weight: 600; }
.mock-btn-link { border: none; color: var(--accent); }

.mock-legal-head { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 12px; }
.mock-legal-ver { font-family: var(--mono); font-size: 10px; color: var(--fg-3); }
.mock-legal-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.mock-legal-line { height: 6px; background: var(--line-2); border-radius: 3px; }
.mock-legal-h { font-family: var(--serif); font-size: 14px; margin: 6px 0 2px; }
.mock-legal-foot { display: flex; justify-content: space-between; padding: 10px 14px; border-top: 1px solid var(--line); font-size: 11px; }
.mock-legal-badge { color: #a78bfa; }
.mock-legal-sync { color: var(--accent); }

.mock-log-head, .mock-log-row { display: grid; grid-template-columns: 1fr 1fr 1fr 0.7fr; gap: 8px; padding: 8px 12px; font-family: var(--mono); font-size: 10px; }
.mock-log-head { border-bottom: 1px solid var(--line); color: var(--fg-3); letter-spacing: 1px; }
.mock-log-row { border-bottom: 1px solid var(--line); }
.mock-log-id { color: var(--fg-2); }
.mock-log-v, .mock-log-t { color: var(--fg-3); }
.mock-log-foot { display: flex; justify-content: space-between; padding: 10px 12px; font-family: var(--mono); font-size: 10px; color: var(--fg-3); }

/* ============ HOW ============ */
.how { padding: 120px 40px; max-width: 1440px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.how-card { padding: 20px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line); }
.how-line { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.how-num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 1px; padding: 4px 8px; border: 1px solid var(--accent); border-radius: 6px; background: var(--accent-soft); }
.how-dash { flex: 1; height: 1px; background: var(--line-2); }
.how-t { font-family: var(--serif); font-size: 20px; font-weight: 400; margin: 0 0 6px; letter-spacing: -0.01em; }
.how-b { color: var(--fg-2); font-size: 13px; margin: 0; }
.how-done { margin-top: 24px; text-align: center; padding: 18px; background: var(--accent-soft); border: 1px solid rgba(16,185,129,0.3); border-radius: 16px; color: var(--fg); font-size: 15px; }
.how-done-check { color: var(--accent); margin-right: 10px; font-weight: 600; }

/* ============ AUDIT CTA ============ */
.audit { padding: 120px 40px; max-width: 1200px; margin: 0 auto; }
.audit-inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
.audit-head { text-align: center; max-width: 780px; margin: 0 auto; }
.audit-head .section-h2 { text-align: center; margin: 0 0 16px; font-size: clamp(34px, 4.2vw, 56px) !important; }
.audit-head .section-sub { text-align: center; margin: 0 auto; }

.audit-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  max-width: 900px; margin: 0 auto; width: 100%;
}

.audit-form {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch;
}
.audit-form input[type="url"] {
  padding: 16px 20px; border-radius: 14px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  color: var(--fg); font: inherit; font-size: 15px;
  min-height: 52px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.audit-form input[type="url"]::placeholder { color: var(--fg-4); }
.audit-form input[type="url"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.audit-submit { padding: 16px 26px !important; min-height: 52px; }

@media (max-width: 640px) {
  .audit-form { grid-template-columns: 1fr; }
}

.audit-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.audit-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  font-size: 12px; color: var(--fg-2);
}
.audit-pill-dot { width: 6px; height: 6px; border-radius: 50%; }

.audit-feedback {
  padding: 12px 16px; background: var(--accent-soft);
  border: 1px solid rgba(16,185,129,0.28); border-radius: 12px;
  color: var(--fg); font-size: 14px;
}
.audit-feedback code { background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

.audit-sample {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--bg-3);
  margin-top: 8px;
}
.audit-sample-head {
  padding: 12px 18px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--fg-3); text-transform: uppercase;
  display: flex; gap: 10px; align-items: baseline;
}
.audit-sample-meta { color: var(--fg-4); font-size: 10px; }
.audit-sample-body { font-family: var(--mono); font-size: 12px; }
.audit-sample-row {
  display: grid; grid-template-columns: 1.1fr 1.4fr 1fr 1.1fr;
  gap: 12px; padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--fg-2); align-items: center;
}
.audit-sample-row:last-child { border-bottom: none; }
.audit-sample-thead {
  color: var(--fg-4); letter-spacing: 1.5px; text-transform: uppercase; font-size: 10px;
  background: var(--bg-2);
}
.audit-sample-row code { color: var(--fg); font-size: 12px; }
.audit-sample-host { color: var(--fg-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.audit-note {
  margin: 0; font-size: 13px; color: var(--fg-3);
  text-align: center; font-family: var(--mono);
}

@media (max-width: 640px) {
  .audit-sample-row { grid-template-columns: 1fr 1fr; gap: 6px; font-size: 11px; }
  .audit-sample-row > *:nth-child(3), .audit-sample-row > *:nth-child(4) { grid-column: span 1; }
}

/* ============ CMv2 ============ */
.cmv2-section { padding: 120px 40px; max-width: 1440px; margin: 0 auto; }
.cmv2-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.cmv2-left .section-h2 { text-align: left; }
.cmv2-left .section-sub { text-align: left; margin-left: 0; }
.cmv2-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.cmv2-stat-v { font-family: var(--serif); font-size: 36px; letter-spacing: -0.02em; }
.cmv2-stat-k { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.cmv2-right { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.cmv2-viz-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--fg-3); padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }

.cmv2-flow { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; align-items: start; }
.cmv2-colhead { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--fg-4); text-transform: uppercase; margin-bottom: 10px; }
.cmv2-box { padding: 14px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; }
.cmv2-box-head { display: flex; flex-direction: column; gap: 6px; }
.cmv2-box-head span:first-child { font-weight: 600; font-size: 13px; }
.cmv2-pill { font-family: var(--mono); font-size: 10px; color: var(--accent); }
.cmv2-signals { display: flex; flex-direction: column; gap: 6px; }
.cmv2-signal {
  display: flex; justify-content: space-between; padding: 8px 10px;
  font-family: var(--mono); font-size: 11px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg-3);
  animation: signalin 0.5s ease-out backwards;
}
@keyframes signalin { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.cmv2-signal-key { color: var(--fg-2); }
.cmv2-signal.on .cmv2-signal-val { color: var(--accent); }
.cmv2-signal.off .cmv2-signal-val { color: var(--danger); }
.cmv2-dests { display: flex; flex-direction: column; gap: 6px; }
.cmv2-dest {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px;
  animation: signalin 0.5s ease-out backwards;
}
.cmv2-dest-dot { width: 6px; height: 6px; border-radius: 50%; }
.cmv2-dest-ok { margin-left: auto; color: var(--accent); font-family: var(--mono); }

/* ============ PRICING ============ */
.pricing { padding: 120px 40px; max-width: 1440px; margin: 0 auto; }
.price-toggle { display: inline-flex; margin: 20px auto 8px; border: 1px solid var(--line-2); border-radius: 999px; padding: 4px; }
.price-toggle button { padding: 8px 20px; font-size: 13px; border-radius: 999px; color: var(--fg-3); }
.price-toggle .on { background: var(--fg); color: var(--bg); }
.price-toggle-note { font-family: var(--mono); font-size: 11px; color: var(--fg-3); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { padding: 32px; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; position: relative; }
.price-highlight { border-color: var(--accent); background: linear-gradient(180deg, rgba(16,185,129,0.06), var(--bg-2) 40%); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #042017; padding: 4px 12px; border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 1px; font-weight: 600; }
.price-name { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; }
.price-tag { font-size: 13px; color: var(--fg-3); margin-top: -10px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-n { font-family: var(--serif); font-size: 56px; letter-spacing: -0.02em; line-height: 1; }
.price-u { font-family: var(--mono); font-size: 12px; color: var(--fg-3); }
.price-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--fg-2); }

/* ============ LAWYER ============ */
.lawyer { padding: 120px 40px; }
.lawyer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.lawyer-left .section-h2 { text-align: left; margin: 0 0 20px; }
.lawyer-h2 { font-size: clamp(34px, 4vw, 54px) !important; line-height: 1.05 !important; }
.lawyer-sub { font-size: 17px; color: var(--fg-2); margin: 0 0 28px; max-width: 520px; }

.lawyer-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.lawyer-card-top { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.lawyer-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-3));
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--fg);
  flex-shrink: 0;
}
.lawyer-ident { min-width: 0; }
.lawyer-name {
  font-family: var(--serif); font-size: 19px; letter-spacing: -0.01em;
  line-height: 1.2; color: var(--fg);
}
.lawyer-suffix {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px;
  color: var(--fg-3); margin-top: 4px; text-transform: uppercase;
}
.lawyer-role { font-size: 12px; color: var(--fg-3); margin-top: 4px; }
.lawyer-verified {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px;
  background: var(--accent-soft);
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  color: var(--accent); border: 1px solid rgba(16,185,129,0.28);
  flex-shrink: 0;
}
.lawyer-creds {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.lawyer-creds li { display: flex; gap: 10px; font-size: 14px; color: var(--fg-2); }
.lawyer-check { font-weight: 600; }

.lawyer-right {
  padding: 40px 32px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.lawyer-quote-mark {
  font-family: var(--serif); font-size: 120px; line-height: 0.55;
  margin: 0; font-style: italic; opacity: 0.9; user-select: none;
}
.lawyer-quote {
  margin: 0; padding: 0; border: none;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.3;
  letter-spacing: -0.01em; color: var(--fg);
  font-style: italic;
}
.lawyer-quote-attr {
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px;
  color: var(--fg-3); text-transform: uppercase;
}
.lawyer-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 8px 0;
}
.lawyer-stat-v { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; }
.lawyer-stat-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  color: var(--fg-3); text-transform: uppercase; margin-top: 4px;
}
.lawyer-cta { align-self: flex-start; }

@media (max-width: 900px) {
  .lawyer-inner { grid-template-columns: 1fr; }
  .lawyer-quote-mark { font-size: 80px; }
}

/* ============ COMPARE ============ */
.compare { padding: 120px 40px; max-width: 1080px; margin: 0 auto; }
.cmp-table { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--bg-2); }
.cmp-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 24px; border-bottom: 1px solid var(--line); align-items: center; font-size: 14px; }
.cmp-row:last-child { border-bottom: none; }
.cmp-head { background: var(--bg-3); font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: var(--fg-3); text-transform: uppercase; }
.cmp-head .cmp-us { color: var(--accent); }
.cmp-feat { color: var(--fg-2); }
.cmp-col { text-align: center; }
.cmp-us { background: rgba(16,185,129,0.05); }
.cmp-yes, .cmp-no { font-size: 18px; font-weight: 600; }
.cmp-partial { font-family: var(--mono); font-size: 12px; color: var(--warn); }

/* ============ FAQ ============ */
.faq { padding: 120px 40px; max-width: 880px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  padding: 20px 24px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 14px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 500;
  cursor: pointer; list-style: none; /* suppress default marker */
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text { margin: 0; font-size: inherit; font-weight: inherit; font-family: inherit; color: var(--fg); }
.faq-ic {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-3); font-family: var(--mono); font-size: 18px; line-height: 1;
  transition: transform 0.2s;
}
.faq-ic::before { content: "+"; }
.faq-item[open] .faq-ic { color: var(--accent); transform: rotate(45deg); }
.faq-a { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--fg-2); font-size: 15px; line-height: 1.65; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 120px 40px; position: relative; overflow: hidden; }
.final-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6vw, 88px); line-height: 1.0; letter-spacing: -0.02em; margin: 0 0 16px; }
.final-sub { font-size: 18px; color: var(--fg-2); margin: 0 0 32px; }
.final-ctas { justify-content: center; }
.final-mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(circle at 20% 50%, rgba(16,185,129,0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(96,165,250,0.1), transparent 40%);
}

/* ============ FOOTER ============ */
.foot { padding: 60px 40px 32px; border-top: 1px solid var(--line); background: var(--bg-2); }
.foot-top { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 3fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.foot-brand { display: flex; flex-direction: column; gap: 12px; }
.foot-tagline { font-family: var(--serif); font-size: 18px; color: var(--fg-3); max-width: 220px; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.foot-col-t { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: var(--fg-3); text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--fg-2); padding: 4px 0; }
.foot-col a:hover { color: var(--fg); }
.foot-bottom { max-width: 1440px; margin: 24px auto 0; display: flex; justify-content: space-between; font-size: 13px; color: var(--fg-3); }
.foot-pill { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; }

/* ============ TWEAKS PANEL ============ */
.tweaks { position: fixed; bottom: 24px; right: 24px; z-index: 200; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 18px; padding: 18px; width: 280px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); font-size: 13px; }
.tweaks-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tweaks-head h4 { margin: 0; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.tweaks-close { color: var(--fg-3); font-size: 18px; line-height: 1; }
.tweak-row { margin-bottom: 14px; }
.tweak-label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--fg-3); text-transform: uppercase; margin-bottom: 6px; }
.tweak-opts { display: flex; gap: 4px; }
.tweak-opts button { flex: 1; padding: 8px; border: 1px solid var(--line-2); border-radius: 8px; font-size: 12px; color: var(--fg-2); }
.tweak-opts button.on { background: var(--accent); color: #042017; border-color: var(--accent); font-weight: 600; }
.tweak-color { display: flex; gap: 6px; }
.tweak-color button { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line-2); }
.tweak-color button.on { border-color: var(--fg); }

@media (max-width: 900px) {
  .hero-inner, .hero-c-grid, .cmv2-grid, .feat-grid, .how-grid, .price-grid, .foot-top, .foot-cols { grid-template-columns: 1fr !important; }
  .cmp-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 12px; font-size: 12px; }
  .hero-c-h1 { font-size: 22vw !important; }
}
