/* ═══════════════════════════════════════════════════════════════
   Datahunter — Website Design System
   Aligned with the Datahunter TNT web app.
   No external fonts, no CDN, no third-party requests.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Light theme (default) */
  --bg: oklch(0.985 0.002 240);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.97 0.003 240);
  --surface-3: oklch(0.94 0.004 240);
  --grid-line: oklch(0.93 0.005 240);
  --border: oklch(0.9 0.005 240);
  --border-strong: oklch(0.82 0.006 240);
  --text: oklch(0.22 0.01 240);
  --text-muted: oklch(0.5 0.008 240);
  --text-faint: oklch(0.65 0.006 240);

  /* Brand accent — matches the logo (light blue on navy) */
  --accent: oklch(0.72 0.16 250);
  --accent-soft: oklch(0.94 0.04 250);
  --accent-text: oklch(0.5 0.16 258);
  --accent-ink: oklch(0.15 0.01 240);

  /* Status colours — same semantics as the TNT app */
  --pending: oklch(0.62 0.14 75);
  --pending-soft: oklch(0.95 0.04 75);
  --approved: oklch(0.55 0.14 158);
  --approved-soft: oklch(0.93 0.05 158);
  --rejected: oklch(0.55 0.19 25);
  --rejected-soft: oklch(0.94 0.05 25);
  --info: oklch(0.55 0.14 250);
  --info-soft: oklch(0.94 0.04 250);

  --shadow-1: 0 0 0 1px var(--border);
  --shadow-2: 0 8px 24px -8px oklch(0 0 0 / 0.12);
  --shadow-3: 0 24px 60px -20px oklch(0 0 0 / 0.18);

  --radius: 4px;
  --radius-sm: 3px;
  --radius-lg: 8px;

  --maxw: 1180px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', 'Cascadia Mono', Menlo, Consolas, monospace;

  /* Logofarben. Als Variablen, weil sie in den <use>-Schattenbaum vererbt
     werden müssen — normale Klassenregeln greifen dort nicht. */
  --logo-a: #022052;
  --logo-b: #098df9;
}

html[data-theme="dark"] {
  --bg: oklch(0.16 0.005 240);
  --surface: oklch(0.195 0.006 240);
  --surface-2: oklch(0.225 0.007 240);
  --surface-3: oklch(0.27 0.008 240);
  --grid-line: oklch(0.27 0.007 240);
  --border: oklch(0.3 0.008 240);
  --border-strong: oklch(0.4 0.01 240);
  --text: oklch(0.95 0.005 240);
  --text-muted: oklch(0.7 0.008 240);
  --text-faint: oklch(0.55 0.008 240);

  --accent-soft: oklch(0.32 0.08 258);
  --accent-text: oklch(0.85 0.13 250);

  --pending: oklch(0.78 0.14 75);
  --pending-soft: oklch(0.32 0.07 75);
  --approved: oklch(0.75 0.15 158);
  --approved-soft: oklch(0.3 0.07 158);
  --rejected: oklch(0.7 0.17 25);
  --rejected-soft: oklch(0.32 0.08 25);
  --info: oklch(0.78 0.13 250);
  --info-soft: oklch(0.3 0.07 250);

  --shadow-2: 0 12px 32px -8px oklch(0 0 0 / 0.5);
  --shadow-3: 0 32px 80px -30px oklch(0 0 0 / 0.7);

  /* Navy verschwindet auf dunklem Grund — hier hell und etwas kräftiger. */
  --logo-a: #e8eef7;
  --logo-b: #4da3ff;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Inline SVG icons — presentation attributes inherit into <use> content */
.ico {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mono { font-family: var(--font-mono); }
.num { font-variant-numeric: tabular-nums; }
button { font-family: inherit; font-size: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--text-faint); }
::-webkit-scrollbar-track { background: transparent; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.row { display: flex; align-items: center; gap: 8px; }
.grow { flex: 1; min-width: 0; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.small { font-size: 13px; }
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

/* ── Top bar ────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: oklch(from var(--bg) l c h / 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner { display: flex; align-items: center; gap: 16px; height: 60px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; flex-shrink: 0; }
.logo-img { width: 32px; height: 32px; display: block; flex-shrink: 0; overflow: visible; }
.logo-copy { display: flex; flex-direction: column; line-height: 1.1; }
.logo-copy .name { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; }
.logo-copy .sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.04em; white-space: nowrap; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 7px 10px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color .12s, background .12s;
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.active { color: var(--text); background: var(--surface-2); }

.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}
.nav-toggle:hover { background: var(--surface-2); color: var(--text); }

/* ── Language switcher ──────────────────────────────────────── */
.lang-switch { position: relative; }
.lang-switch summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 12.5px;
  user-select: none;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { background: var(--surface-2); color: var(--text); }
.lang-switch[open] summary { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.lang-switch .lang-code { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.lang-switch ul {
  position: absolute;
  top: calc(100% + 6px); right: 0;
  z-index: 60;
  min-width: 148px;
  margin: 0; padding: 5px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
.lang-switch ul a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.lang-switch ul a:hover { background: var(--surface-2); color: var(--text); }
.lang-switch ul a[aria-current="true"] {
  color: var(--accent-text);
  font-weight: 600;
  background: var(--accent-soft);
}

/* Theme toggle swaps its glyph with the active theme */
.icon-sun, .icon-moon { display: none; }
html[data-theme="dark"] .icon-sun { display: block; }
html[data-theme="light"] .icon-moon { display: block; }

/* Hängt unter der fixierten Leiste, damit es auch auf einer
   gescrollten Seite dort aufgeht, wo der Knopf ist. */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 49;
  max-height: calc(100dvh - 60px);
  overflow-y: auto;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-2);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 8px 28px 16px; display: flex; flex-direction: column; gap: 2px; }
/* Nur die Navigationseinträge — der CTA behält sein Button-Styling. */
.mobile-menu li:not(.mm-cta) a {
  display: block;
  padding: 11px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--text-muted);
}
.mobile-menu li:not(.mm-cta) a:hover,
.mobile-menu li:not(.mm-cta) a.active { background: var(--surface-2); color: var(--text); }
.mobile-menu .mm-cta { margin-top: 10px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 36px; padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500; font-size: 13.5px;
  transition: background .1s, border-color .1s, transform .1s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { background: var(--surface-3); border-color: var(--border-strong); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 600; }
.btn-primary:hover { filter: brightness(1.06); background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); border-color: transparent; }
.btn-outline { background: transparent; }
.btn-sm { height: 28px; padding: 0 10px; font-size: 12.5px; }
.btn-lg { height: 44px; padding: 0 20px; font-size: 14.5px; }
.btn-xl { height: 52px; padding: 0 26px; font-size: 15.5px; gap: 10px; font-weight: 600; }
.btn-block { width: 100%; }
.btn-primary.btn-xl, .btn-primary.btn-lg { box-shadow: 0 6px 18px -8px var(--accent); }
.btn-primary.btn-xl:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -10px var(--accent); }
.btn svg { flex-shrink: 0; }

/* ── Pills ──────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  height: 21px; padding: 0 8px;
  border-radius: 3px;
  font-size: 10.5px; font-weight: 600;
  background: var(--surface-3);
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pill .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.pill-accent { color: var(--accent-text); background: var(--accent-soft); }
.pill-pending { color: var(--pending); background: var(--pending-soft); }
.pill-approved { color: var(--approved); background: var(--approved-soft); }
.pill-rejected { color: var(--rejected); background: var(--rejected-soft); }
.pill-outline { background: transparent; border: 1px solid var(--border); }

/* ── Sections & typography ──────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; position: relative; }
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

.h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 0 0 22px;
}
.h1 .accent { color: var(--accent-text); }
.h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.lead { font-size: 16.5px; color: var(--text-muted); max-width: 640px; line-height: 1.62; }
.lead-lg { font-size: 18.5px; line-height: 1.58; }

/* Section header with split layout */
.sec-hd {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-hd .left h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.026em; line-height: 1.06; margin: 0; font-weight: 600; }
.sec-hd .right { color: var(--text-muted); font-size: 15.5px; line-height: 1.62; padding-bottom: 6px; }

/* Section backgrounds for rhythm */
.sec-bg-soft { background: radial-gradient(ellipse 70% 50% at 20% 0%, var(--accent-soft) 0%, transparent 60%), var(--bg); }
.sec-bg-mesh { position: relative; background: var(--surface-2); }
.sec-bg-mesh::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}
.sec-bg-mesh > * { position: relative; }
.sec-bg-dark { background: oklch(0.14 0.005 240); color: oklch(0.95 0.005 240); }
.sec-bg-dark h2, .sec-bg-dark .h2 { color: oklch(0.97 0.005 240); }
.sec-bg-dark .lead { color: oklch(0.75 0.008 240); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; padding: 80px 0 104px; overflow: hidden; }
.hero .glow-a, .hero .glow-b {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.28;
}
.hero .glow-a { background: radial-gradient(circle, var(--accent) 0%, transparent 60%); top: -260px; left: -220px; }
.hero .glow-b { background: radial-gradient(circle, oklch(0.7 0.14 200) 0%, transparent 60%); bottom: -300px; right: -180px; opacity: 0.2; }
html[data-theme="dark"] .hero .glow-a { opacity: 0.5; }
html[data-theme="dark"] .hero .glow-b { opacity: 0.35; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero .h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: 1.02; }
.hero .h1 .strike {
  text-decoration: line-through;
  text-decoration-color: oklch(from var(--rejected) l c h / 0.55);
  text-decoration-thickness: 3px;
  color: var(--text-faint);
  font-weight: 500;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 12px 0 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.hero-badge .new {
  background: var(--accent-soft);
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-weight: 600; font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-cta { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; align-items: center; }
.hero-trust {
  margin-top: 26px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex; gap: 10px; align-items: flex-start;
  max-width: 560px;
}
.hero-trust .t-body { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.hero-trust strong { color: var(--text); display: block; margin-bottom: 2px; font-weight: 600; }

/* Rotating hero word — always on its own line so the longest translation
   still has the full column width available. */
.rotate-word { display: block; position: relative; height: 1.05em; width: 100%; }
.rotate-word > span {
  position: absolute; inset: 0;
  white-space: nowrap;
  color: var(--accent-text);
  animation: rwFade 12s infinite;
  opacity: 0;
}
.rotate-word > span:nth-child(1) { animation-delay: 0s; }
.rotate-word > span:nth-child(2) { animation-delay: 3s; }
.rotate-word > span:nth-child(3) { animation-delay: 6s; }
.rotate-word > span:nth-child(4) { animation-delay: 9s; }
@keyframes rwFade {
  0%, 22%   { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-12px); }
}

/* ── App mock ───────────────────────────────────────────────── */
.mock-wrap {
  position: relative;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 30px 80px oklch(0 0 0 / 0.18));
}
.mock-wrap:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }
html[data-theme="dark"] .mock-wrap { filter: drop-shadow(0 30px 80px oklch(0 0 0 / 0.45)); }

.mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
}
.mock-titlebar {
  display: flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); border: 1px solid var(--border); }
.mock-crumb { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-left: 6px; }
.mock-crumb .here { color: var(--text); font-weight: 500; }
.mock-body {
  padding: 16px;
  background:
    linear-gradient(var(--surface-2), var(--surface-2)),
    repeating-linear-gradient(0deg, transparent, transparent 23px, var(--grid-line) 23px, var(--grid-line) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, var(--grid-line) 23px, var(--grid-line) 24px);
  background-blend-mode: normal, multiply, multiply;
  background-size: 100% 100%, 24px 24px, 24px 24px;
  min-height: 380px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}

.mock-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text);
  box-shadow: var(--shadow-2);
  position: relative;
}
.mock-page-title { font-size: 10.5px; color: var(--text-faint); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; gap: 12px; border-bottom: 1px dotted var(--border); }
.mock-row:last-child { border-bottom: 0; }
.mock-row .label { color: var(--text-muted); }
.mock-row .num { font-variant-numeric: tabular-nums; margin-left: auto; }
.mock-row.total { font-weight: 600; border-top: 1px solid var(--text); border-bottom: 0; margin-top: 4px; padding-top: 8px; }
.mock-row.total .label { color: var(--text); }
.mock-row.err, .mock-row.err .label { color: var(--rejected); }
.mock-row.warn, .mock-row.warn .label { color: var(--pending); }

.mock-tick {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--surface);
  border: 1px solid;
  white-space: nowrap;
}
.mock-tick.ok { color: var(--approved); border-color: var(--approved); }
.mock-tick.err { color: var(--rejected); border-color: var(--rejected); }
.mock-tick.warn { color: var(--pending); border-color: var(--pending); }

.mock-cmd {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.mock-cmd .prompt { color: var(--accent-text); }
.mock-cmd .out { color: var(--text-muted); }
.caret { display: inline-block; width: 6px; height: 12px; background: var(--accent); animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
  animation: scan 5.5s linear infinite;
  box-shadow: 0 0 14px var(--accent);
}
@keyframes scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

/* Floating finding chips */
.find-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  box-shadow: var(--shadow-2);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}
.find-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.find-chip.ok { color: var(--approved); }
.find-chip.err { color: var(--rejected); }
.find-chip.warn { color: var(--pending); }
.find-chip.a1 { top: 10%; left: -54px; animation-delay: 0s; }
.find-chip.a2 { top: 38%; right: -62px; animation-delay: 1.4s; }
.find-chip.a3 { bottom: 20%; left: -62px; animation-delay: 2.8s; }
.find-chip.a4 { bottom: 2%; right: -34px; animation-delay: 4s; }
@media (max-width: 1180px) { .find-chip { display: none; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Fact strip ─────────────────────────────────────────────── */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.fact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 50%);
  opacity: 0.4;
  pointer-events: none;
}
.fact {
  padding: 26px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.fact:last-child { border-right: 0; }
.fact .v {
  font-size: 38px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 5px;
}
.fact .v .unit { font-size: 20px; color: var(--accent-text); font-weight: 600; }
.fact .lbl { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.45; }

/* ── Feature cards ──────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 200px 120px at 100% 0%, var(--accent-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.feat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 0.7; }
.feat-card .ico-box {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid; place-items: center;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.feat-card h3 { font-size: 17.5px; font-weight: 600; margin: 0 0 8px; position: relative; z-index: 1; }
.feat-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; position: relative; z-index: 1; }
.feat-card .corner-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Manual vs. TNT comparison ──────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface);
}
.compare .col { padding: 34px 30px; display: flex; flex-direction: column; gap: 10px; }
.compare .col.before {
  background: linear-gradient(180deg, oklch(from var(--rejected) l c h / 0.06) 0%, transparent 100%);
  border-right: 1px solid var(--border);
}
.compare .col.after { background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 100%); }
.compare .col .tag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.compare .col.before .tag { color: var(--rejected); background: oklch(from var(--rejected) l c h / 0.12); }
.compare .col.after .tag { color: var(--accent-text); background: var(--accent-soft); }
.compare h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; margin: 0; line-height: 1.25; }
.compare ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.compare ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.compare ul li .mark {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  margin-top: 1px;
}
.compare .col.before .mark { background: oklch(from var(--rejected) l c h / 0.15); color: var(--rejected); }
.compare .col.after .mark { background: var(--accent-soft); color: var(--accent-text); }
.compare .divider {
  position: absolute;
  top: 50%; left: 50%;
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700; font-size: 12.5px;
  color: var(--accent-text);
  z-index: 2;
  box-shadow: var(--shadow-2);
}

/* ── Workflow ───────────────────────────────────────────────── */
.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.workflow::before {
  content: '';
  position: absolute;
  left: 12%; right: 12%; top: 62px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
.wf-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  z-index: 1;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.wf-step:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 16px 40px -20px var(--accent); }
.wf-step .num-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700; font-size: 17px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.wf-step h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.015em; }
.wf-step p { color: var(--text-muted); font-size: 14px; margin: 0 0 16px; line-height: 1.55; }
.wf-mock {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  min-height: 96px;
  display: flex; flex-direction: column; gap: 7px;
}
.wf-mock .l { display: flex; gap: 8px; align-items: center; }
.wf-mock .l .r { margin-left: auto; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--accent-soft) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  flex-wrap: wrap;
}
.cta-band .copy { display: flex; flex-direction: column; gap: 4px; }
.cta-band .copy strong { font-size: 17px; font-weight: 600; }
.cta-band .copy span { color: var(--text-muted); font-size: 14px; }
.cta-band .acts { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Checks (tabbed) ────────────────────────────────────────── */
.check-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: stretch;
}
.check-tabs {
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--border);
  padding-right: 8px;
}
.check-tab {
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: background .1s, color .1s, border-color .1s;
}
.check-tab:hover { background: var(--surface-2); color: var(--text); }
.check-tab[aria-selected="true"] { background: var(--surface-2); color: var(--text); border-left-color: var(--accent); }
.check-tab .label { font-weight: 600; }
.check-tab .idx { font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.08em; }
.check-tab .sub { font-size: 11px; color: var(--text-faint); }

.check-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.check-panel[hidden] { display: none; }
.check-panel h3 { font-family: var(--font-mono); font-size: 18px; font-weight: 600; margin: 10px 0; letter-spacing: -0.01em; }
.check-panel p { color: var(--text-muted); margin: 0 0 14px; line-height: 1.6; font-size: 14.5px; }
.panel-mock {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  min-height: 210px;
}
.panel-mock .line { display: flex; gap: 10px; align-items: baseline; padding: 3px 0; }
.panel-mock .line .lbl { color: var(--text-muted); }
.panel-mock .line .v { margin-left: auto; font-variant-numeric: tabular-nums; white-space: nowrap; }
.panel-mock .line.ind { padding-left: 14px; }
.panel-mock .ok { color: var(--approved); }
.panel-mock .err { color: var(--rejected); }
.panel-mock .warn { color: var(--pending); }
.panel-mock .sep { height: 1px; background: var(--border); margin: 6px 0; }
ul.bullets { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
ul.bullets li { font-size: 14px; color: var(--text); display: flex; gap: 10px; }
ul.bullets li::before { content: '→'; color: var(--accent-text); font-family: var(--font-mono); font-weight: 600; }

/* ── Security ───────────────────────────────────────────────── */
.security-wrap {
  background: oklch(0.185 0.006 240);
  border: 1px solid oklch(0.3 0.008 240);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.security-list { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.security-list .item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.security-list .ico {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.security-list .item strong { display: block; margin-bottom: 2px; }
.security-list .item .desc { color: oklch(0.7 0.008 240); font-size: 12.5px; line-height: 1.5; }

.netproof-label {
  font-size: 11.5px; font-weight: 600;
  color: oklch(0.75 0.008 240);
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.netproof {
  background: oklch(0.12 0.005 240);
  color: oklch(0.92 0.005 240);
  border-radius: var(--radius);
  border: 1px solid oklch(0.3 0.008 240);
  font-family: var(--font-mono);
  font-size: 11.5px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.netproof-hd {
  display: flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px;
  background: oklch(0.18 0.006 240);
  border-bottom: 1px solid oklch(0.3 0.008 240);
  font-size: 11px;
  color: oklch(0.7 0.008 240);
}
.netproof-hd .tab { padding: 0 8px; color: oklch(0.55 0.008 240); }
.netproof-hd .tab.active { color: oklch(0.92 0.005 240); }
.netproof-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.netproof-row {
  display: grid;
  grid-template-columns: 46px 1fr 74px 46px;
  gap: 10px;
  font-size: 10.8px;
  align-items: center;
}
.netproof-row.head { color: oklch(0.55 0.008 240); padding-bottom: 6px; border-bottom: 1px solid oklch(0.3 0.008 240); margin-bottom: 4px; }
.netproof-row .name { color: oklch(0.85 0.005 240); overflow: hidden; text-overflow: ellipsis; }
.netproof-row .type { color: oklch(0.6 0.008 240); }
.netproof-row .stat { color: oklch(0.8 0.15 158); font-weight: 600; }
.netproof-row.note { opacity: 0.6; font-style: italic; }
.netproof-foot {
  border-top: 1px solid oklch(0.3 0.008 240);
  padding: 10px 16px;
  font-size: 10.8px;
  color: oklch(0.6 0.008 240);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.netproof-foot .ok { color: oklch(0.8 0.15 158); font-weight: 600; }

/* ── Plans ──────────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
.plan-card:hover { transform: translateY(-3px); }
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 38%);
  box-shadow: 0 24px 60px -30px var(--accent);
}
.plan-card .plan-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.plan-card .plan-name {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.plan-card.featured .plan-name { color: var(--accent-text); }
.plan-card .plan-head { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 8px; }
.plan-card .plan-sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 22px; line-height: 1.5; }
.plan-card ul.pl { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-card ul.pl li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.plan-card ul.pl li::before { content: '✓'; color: var(--accent-text); font-weight: 700; flex-shrink: 0; width: 14px; }
.plan-card ul.pl li.no { color: var(--text-faint); }
.plan-card ul.pl li.no::before { content: '–'; color: var(--text-faint); }

/* ── Steps / onboarding block ───────────────────────────────── */
.steps-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.steps-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 50%, var(--accent-soft) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.6;
}
.steps-wrap > * { position: relative; z-index: 1; }
.steps { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; font-family: var(--font-mono); font-size: 12.5px; }
.steps .step { display: flex; gap: 12px; padding: 4px 0; color: var(--text-muted); }
.steps .step .n { color: var(--accent-text); font-weight: 600; }
.steps-actions { display: flex; flex-direction: column; gap: 10px; min-width: 270px; }

/* ── Secondary product band ─────────────────────────────────── */
.also {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.also::before {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 260px; height: 100%;
  background: radial-gradient(ellipse at 100% 50%, oklch(0.72 0.16 250 / 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.also .badge-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, oklch(0.72 0.16 250), oklch(0.58 0.14 255));
  border-radius: 12px;
  display: grid; place-items: center;
  color: oklch(0.99 0 0);
  position: relative; z-index: 1;
}
.also .copy { position: relative; z-index: 1; }
.also .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
.also h3 { font-size: 22px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.015em; }
.also h3 .tag { font-family: var(--font-mono); color: var(--text-faint); font-weight: 500; font-size: 14px; margin-left: 6px; }
.also p { color: var(--text-muted); font-size: 14.5px; margin: 0; max-width: 560px; line-height: 1.55; }
.also .actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; min-width: 190px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 18px;
}
.faq[open] summary::after { content: '–'; }
.faq summary .q-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.06em; }
.faq-body { padding: 0 20px 18px 56px; color: var(--text-muted); font-size: 14.5px; line-height: 1.62; }
.faq-body code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--text);
}
.faq-body a { color: var(--accent-text); text-decoration: underline; }

/* ── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, oklch(0.55 0.13 240) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 44px;
  text-align: center;
  overflow: hidden;
  color: oklch(0.15 0.01 240);
  border: 1px solid var(--accent);
}
html[data-theme="dark"] .final-cta {
  background: linear-gradient(135deg, oklch(0.24 0.06 250) 0%, oklch(0.17 0.045 230) 100%);
  color: oklch(0.97 0.005 240);
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, oklch(from var(--accent) l c h / 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, oklch(0.6 0.18 280 / 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.025em; line-height: 1.12; margin: 0 auto 14px; max-width: 760px; color: inherit; font-weight: 700; }
.final-cta .lead { color: oklch(0.18 0.01 240 / 0.78); max-width: 620px; margin: 0 auto 30px; font-size: 16.5px; }
html[data-theme="dark"] .final-cta .lead { color: oklch(0.88 0.008 240 / 0.85); }
.final-cta .acts { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final-cta .btn { height: 48px; padding: 0 22px; font-size: 15px; }
.final-cta .btn-primary { background: oklch(0.15 0.01 240); color: oklch(0.97 0.005 240); border-color: oklch(0.15 0.01 240); }
html[data-theme="dark"] .final-cta .btn-primary { background: oklch(0.97 0.005 240); color: oklch(0.15 0.01 240); border-color: oklch(0.97 0.005 240); }
.final-cta .btn-ghost { background: transparent; border-color: oklch(0.15 0.01 240 / 0.3); color: oklch(0.15 0.01 240); }
.final-cta .btn-ghost:hover { background: oklch(0.15 0.01 240 / 0.1); }
html[data-theme="dark"] .final-cta .btn-ghost { border-color: oklch(0.97 0.005 240 / 0.3); color: oklch(0.97 0.005 240); }
html[data-theme="dark"] .final-cta .btn-ghost:hover { background: oklch(0.97 0.005 240 / 0.1); }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 0 32px;
  margin-top: 80px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin: 0 0 14px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-col li a, .foot-col li span { color: var(--text-muted); font-size: 13.5px; }
.foot-col li a:hover { color: var(--text); }
.foot-base {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* ── Sub-page hero ──────────────────────────────────────────── */
.page-hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 15% 0%, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 18px; }

/* ── Prose (legal pages) ────────────────────────────────────── */
.prose {
  max-width: 780px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.prose h2 {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; }
.prose h4 { font-size: 14.5px; font-weight: 600; margin: 18px 0 6px; }
.prose p { color: var(--text-muted); line-height: 1.7; margin: 0 0 14px; font-size: 14.5px; }
.prose ul, .prose ol { color: var(--text-muted); line-height: 1.7; margin: 0 0 16px; padding-left: 22px; font-size: 14.5px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-text); text-decoration: underline; }
.prose strong { color: var(--text); font-weight: 600; }
.prose address { font-style: normal; color: var(--text-muted); line-height: 1.7; font-size: 14.5px; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 13.5px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  transition: border-color .12s, box-shadow .12s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { resize: vertical; min-height: 150px; }

.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ico {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid; place-items: center;
}
.contact-item h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 600; }
.contact-item p, .contact-item address { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; font-style: normal; }

/* ── Cards (generic) ────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color .12s;
}
.card:hover { border-color: var(--border-strong); }
.card h3 { font-size: 17px; margin: 0 0 8px; }
.card p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.55; }

/* Product detail row */
.prod-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.prod-row .visual {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)),
    repeating-linear-gradient(0deg, transparent, transparent 23px, var(--grid-line) 23px, var(--grid-line) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, var(--grid-line) 23px, var(--grid-line) 24px);
  background-blend-mode: normal, multiply, multiply;
  background-size: 100% 100%, 24px 24px, 24px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid; place-items: center;
  min-height: 300px;
}
ul.feats { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
ul.feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
ul.feats li::before { content: '✓'; color: var(--accent-text); font-weight: 700; flex-shrink: 0; }

/* ── Download hub ───────────────────────────────────────────── */
.hub-tip {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.hub-tip .ico { color: var(--accent-text); flex-shrink: 0; margin-top: 2px; }
.hub-tip h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 600; }
.hub-tip p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hub-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hub-head h2 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.hub-version {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent-text);
  padding: 3px 9px;
  border-radius: 999px;
}
.hub-date { font-size: 12px; color: var(--text-faint); margin: 6px 0 0; font-family: var(--font-mono); }
.hub-assets { display: grid; gap: 8px; margin: 20px 0; }
.asset-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  font-size: 13.5px;
  transition: border-color .12s, background .12s;
}
.asset-link:hover { border-color: var(--accent); background: var(--accent-soft); }
.asset-link .nm { font-weight: 500; }
.asset-link .sz { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); }
.hub-loader {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hub-changelog {
  max-height: 260px; overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.hub-changelog h5 {
  margin: 14px 0 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-text);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hub-changelog h5:first-child { margin-top: 0; }
.hub-changelog ul { margin: 0; padding-left: 18px; }
.hub-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-faint);
  margin: 0 0 12px;
  font-weight: 600;
}

.cmd-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  flex-wrap: wrap;
}
.cmd-row code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent-text); }
.copy-btn.done { color: var(--approved); border-color: var(--approved); }

.doc-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--accent-text);
}
.doc-link:hover { text-decoration: underline; }

/* ── Reveal on scroll ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  /* Der Start-Button steht im Mobile-Menü — in der Leiste fehlt der Platz. */
  .topbar-cta { display: none; }
  .topbar-inner { gap: 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 72px; }
  .section { padding: 64px 0; }
  .sec-hd { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--border); }
  .fact:last-child { border-bottom: 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare .col.before { border-right: 0; border-bottom: 1px solid var(--border); }
  .compare .divider { display: none; }
  .workflow { grid-template-columns: 1fr; }
  .workflow::before { display: none; }
  .check-row { grid-template-columns: 1fr; gap: 20px; }
  .check-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 8px; }
  .check-tab { min-width: 170px; border-left: 0; border-bottom: 2px solid transparent; }
  .check-tab[aria-selected="true"] { border-left-color: transparent; border-bottom-color: var(--accent); }
  .check-panel { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .security-list { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; padding: 32px 26px; }
  .steps-actions { min-width: 0; }
  .also { grid-template-columns: 1fr; padding: 28px 26px; }
  .also .actions { min-width: 0; }
  .prod-row { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .find-chip { display: none; }
  .mock-wrap { transform: none; }
  .mock-wrap:hover { transform: none; }
}

@media (max-width: 560px) {
  body { font-size: 14.5px; }
  .container { padding: 0 20px; }
  .logo-copy .sub { display: none; }
  .topbar-inner { gap: 8px; }
  .mobile-menu ul { padding-left: 20px; padding-right: 20px; }
  .foot-grid { grid-template-columns: 1fr; }
  .prose { padding: 26px 22px; }
  .form-card { padding: 24px 20px; }
  .steps-wrap { padding: 26px 20px; }
  .security-wrap { padding: 24px 20px; }
  .final-cta { padding: 40px 24px; }
  .compare .col { padding: 26px 22px; }
  .netproof-row { grid-template-columns: 40px 1fr 44px; }
  .netproof-row > :nth-child(3) { display: none; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rotate-word { min-width: 0; height: auto; }
  .rotate-word > span { position: static; opacity: 1; }
  .rotate-word > span:not(:first-child) { display: none; }
  .reveal { opacity: 1; transform: none; }
  .scanline { display: none; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .topbar, .mobile-menu, .final-cta, .cta-band, footer .foot-grid { display: none; }
  body { background: #fff; color: #000; }
}
