/* =========================================================================
   Krypto-Steuer — shared styles
   Selbst-gehostet. Null externe Requests. System-Font-Stack.
   ========================================================================= */

:root {
  --bg:        #FAFAF7;
  --bg-tint:   #F3F2EC;
  --surface:   #FFFFFF;
  --surface-2: #FBFBF8;
  --ink:       #161A22;
  --ink-2:     #4C5361;
  --ink-3:     #7A8090;
  --line:      #E7E5DC;
  --line-2:    #DCDAD0;

  --accent:      #0F7A63;
  --accent-deep: #0B5F4D;
  --accent-2:    #10876E;
  --accent-tint: #E7F1ED;
  --accent-line: #C7E0D7;

  --danger:      #A84234;
  --danger-tint: #F6EBE8;
  --amber:       #9A6B12;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", Menlo, Consolas, monospace;

  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(22,26,34,.04), 0 1px 3px rgba(22,26,34,.06);
  --shadow-md: 0 4px 14px rgba(22,26,34,.06), 0 12px 40px rgba(22,26,34,.08);
  --shadow-lg: 0 10px 30px rgba(22,26,34,.10), 0 30px 80px rgba(22,26,34,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0E1116;
    --bg-tint:   #12161C;
    --surface:   #161A21;
    --surface-2: #12161C;
    --ink:       #ECEEF2;
    --ink-2:     #A8AEBC;
    --ink-3:     #767D8C;
    --line:      #262B34;
    --line-2:    #2F3540;

    --accent:      #37B79A;
    --accent-deep: #2AA487;
    --accent-2:    #45C6A9;
    --accent-tint: #14231F;
    --accent-line: #234238;

    --danger:      #E08476;
    --danger-tint: #241816;
    --amber:       #D9AC55;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 8px 30px rgba(0,0,0,.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.55);
  }
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  overflow-x: hidden;
}

/* Atmospheric background wash — pure CSS, no external assets */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 620px at 82% -8%, var(--accent-tint), transparent 60%),
    radial-gradient(900px 520px at -10% 4%, var(--bg-tint), transparent 55%);
  opacity: .9;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 680;
}
p { margin: 0; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: #fff; }

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

.mono { font-family: var(--font-mono); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 116px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 41px);
  margin-top: 16px;
}
.section-head p {
  color: var(--ink-2);
  font-size: 18px;
  margin-top: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(11,95,77,.24), 0 8px 22px rgba(15,122,99,.22);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(11,95,77,.28), 0 14px 30px rgba(15,122,99,.30);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--accent-line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 16px 28px; font-size: 16.5px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(22,26,34,.02), 0 8px 30px rgba(22,26,34,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 18px;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 2px 8px rgba(15,122,99,.35);
  flex: none;
}
.brand-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  transition: color .16s, background .16s;
}
.nav-links a:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 5%, transparent); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 12px 24px 22px; }
.mobile-menu a {
  display: block;
  padding: 13px 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.window { max-width: 100%; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  padding: 7px 14px;
  border-radius: 999px;
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 720;
  margin-top: 22px;
  letter-spacing: -0.032em;
}
.hero h1 .accent { color: var(--accent-deep); }
.hero-sub {
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 19.5px);
  margin-top: 22px;
  max-width: 34em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.trust-line {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
}
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-line span::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- Window / browser frame ---------- */
.window {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.window-bar .lights { display: flex; gap: 7px; }
.window-bar .lights i {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.window-bar .lights i:nth-child(1) { background: #E8695A; }
.window-bar .lights i:nth-child(2) { background: #E7B44C; }
.window-bar .lights i:nth-child(3) { background: #66B863; }
.window-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.window-title svg { width: 12px; height: 12px; }
.window-body { display: block; background: #fff; }
.window-body img { width: 100%; height: auto; display: block; }
.hero-window { transform: none; }

/* ---------- Generic cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-tint);
  color: var(--accent-deep);
  border: 1px solid var(--accent-line);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 9px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card p + p { margin-top: 10px; }

/* Problem section variant */
.problem { background: var(--bg-tint); border-block: 1px solid var(--line); }
.num-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-deep);
  font-weight: 600;
}

/* ---------- Security (core) ---------- */
.security { background: var(--bg-tint); border-block: 1px solid var(--line); }

.tut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.tut-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.tut-col.does { border-top: 3px solid var(--accent); }
.tut-col.doesnt { border-top: 3px solid var(--danger); }
.tut-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; margin-bottom: 18px;
}
.tut-col h3 .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
}
.does h3 .tag  { color: var(--accent-deep); background: var(--accent-tint); }
.doesnt h3 .tag { color: var(--danger); background: var(--danger-tint); }
.tut-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.tut-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15.5px;
  color: var(--ink-2);
}
.tut-list li strong { color: var(--ink); font-weight: 640; }
.tut-list li svg { width: 20px; height: 20px; margin-top: 2px; flex: none; }
.does .tut-list svg { color: var(--accent); }
.doesnt .tut-list svg { color: var(--danger); }
.doesnt .tut-list li .txt { text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--danger) 45%, transparent); text-decoration-thickness: 1.5px; }

/* Terminal — the memorable element */
.verify-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.verify-grid > * { min-width: 0; }
.terminal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #1c2530;
  background: #0E141B;
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #141C25;
  border-bottom: 1px solid #212c38;
}
.terminal-bar .lights i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.terminal-bar .lights { display: flex; gap: 7px; }
.terminal-bar .lights i:nth-child(1){ background:#E8695A;}
.terminal-bar .lights i:nth-child(2){ background:#E7B44C;}
.terminal-bar .lights i:nth-child(3){ background:#66B863;}
.terminal-bar .ttitle {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8B98A8;
}
.terminal-body {
  padding: 22px 24px 26px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.8;
  color: #C4D0DC;
  overflow-x: auto;
}
.term-comment { color: #5E7386; display: block; }
.term-prompt  { color: #37B79A; }
.term-line { display: block; white-space: nowrap; }
.term-group {
  color: #E7B44C;
  font-weight: 600;
  display: block;
  margin-top: 16px;
}
.term-host { color: #DCE5EE; }
.term-note { color: #6E8294; }
.term-none {
  color: #37B79A;
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #26323f;
}
.term-none strong { color: #45C6A9; font-weight: 700; display: block; margin-bottom: 4px; }

.verify-side { display: grid; gap: 20px; align-content: start; }
.compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.compare h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.compare.cloud h4 { color: var(--danger); }
.compare.local h4 { color: var(--accent-deep); }
.compare p { color: var(--ink-2); font-size: 15px; }
.compare p strong { color: var(--ink); }
.compare .lead { font-size: 16.5px; color: var(--ink); font-weight: 620; margin-bottom: 6px; letter-spacing: -.01em; }
.compare.local { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-tint), var(--surface) 62%); }

.verify-foot {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: 11px;
  padding: 14px 18px;
}
.verify-foot svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

/* Embedded proof screenshot */
.proof {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 36px;
  align-items: center;
}
.proof .caption h3 { font-size: 22px; margin-bottom: 12px; }
.proof .caption p { color: var(--ink-2); font-size: 16px; }

/* ---------- Features ---------- */
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; overflow: hidden; }
.feature-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  padding: 3px 9px;
  border-radius: 7px;
}
.chip.law { color: var(--ink-2); background: var(--bg-tint); border-color: var(--line-2); }

/* Paragraph split cards */
.law-grid { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.law-card { text-align: left; min-width: 0; }
.law-card .para {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: -.02em;
}
.law-card h4 { font-size: 14.5px; margin: 8px 0 8px; hyphens: auto; }
.law-card p { color: var(--ink-2); font-size: 13.5px; }

/* ---------- Steuerberater ---------- */
.berater { background: var(--bg-tint); border-block: 1px solid var(--line); }
.berater-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.berater-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 20px; }
.berater-list li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.berater-list .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--accent-deep);
  box-shadow: var(--shadow-sm);
}
.berater-list .ic svg { width: 20px; height: 20px; }
.berater-list h4 { font-size: 16.5px; margin-bottom: 4px; }
.berater-list p { color: var(--ink-2); font-size: 15px; }
.report-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }

/* ---------- Honesty ---------- */
.honesty-grid { grid-template-columns: repeat(3,1fr); }
.honesty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.honesty-card h3 { font-size: 18px; margin-bottom: 10px; }
.honesty-card p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--accent-deep);
  transition: transform .28s var(--ease), background .2s;
}
.faq-item .chev svg { width: 15px; height: 15px; }
.faq-item[open] .chev { transform: rotate(45deg); background: var(--accent-tint); border-color: var(--accent-line); }
.faq-answer {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 68ch;
}
.faq-answer .mono { font-size: 14px; color: var(--ink); }

/* ---------- CTA ---------- */
.cta-final {
  background:
    radial-gradient(900px 500px at 20% -20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 60%),
    linear-gradient(160deg, var(--accent-deep), #0a4d3f);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb,#fff 6%,transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb,#fff 6%,transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(600px 400px at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(600px 400px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(28px, 4vw, 42px); }
.cta-final p { color: rgba(255,255,255,.85); font-size: 18px; margin: 18px auto 0; max-width: 44em; }
.cta-final .btn-primary {
  background: #fff; color: var(--accent-deep);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.cta-final .btn-primary:hover { background: #fff; color: var(--accent-deep); transform: translateY(-2px); }
.cta-final .cta-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-final .phone {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.cta-final .phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 48px 40px;
  background: var(--bg-tint);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer .brand { margin-bottom: 12px; }
.footer .tagline { color: var(--ink-2); font-size: 14.5px; max-width: 34ch; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-2); font-size: 15px; font-weight: 500; }
.footer-links a:hover { color: var(--accent-deep); }
.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 13.5px;
}
.footer-disclaimer { max-width: 60ch; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 88px);
}
.legal .back {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-2); margin-bottom: 28px;
}
.legal .back svg { width: 14px; height: 14px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -.03em; }
.legal .lead-note { color: var(--ink-2); margin-top: 14px; font-size: 16px; }
.legal h2 {
  font-size: 20px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal h3 { font-size: 17px; margin-top: 26px; color: var(--ink); }
.legal p { color: var(--ink-2); margin-top: 12px; font-size: 16px; }
.legal address {
  font-style: normal;
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.75;
}
.legal .ph {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--amber);
  background: color-mix(in srgb, var(--amber) 10%, transparent);
  border: 1px dashed color-mix(in srgb, var(--amber) 45%, transparent);
  border-radius: 6px;
  padding: 1px 7px;
}
.legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .07s; }
[data-delay="2"] { transition-delay: .14s; }
[data-delay="3"] { transition-delay: .21s; }
[data-delay="4"] { transition-delay: .28s; }
[data-delay="5"] { transition-delay: .35s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta.desk { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-window { transform: none; margin-top: 12px; }
  .verify-grid { grid-template-columns: 1fr; }
  .berater-grid { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; }
  .proof .frame { order: -1; }
  .grid-3, .feature-grid, .honesty-grid, .law-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .tut-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .feature-grid, .honesty-grid, .law-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .hero h1 { font-size: clamp(29px, 8vw, 40px); word-break: break-word; }
  .br-hero { display: none; }
  .hero h1 .accent { display: inline; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-final .cta-row .btn { width: 100%; justify-content: center; }
  /* Long button labels must wrap instead of overflowing narrow screens */
  .hero-cta .btn, .cta-final .cta-row .btn, .mobile-menu .btn { white-space: normal; text-align: center; }
  .verify-foot { font-size: 12.5px; }
}

/* ---------- Very small screens (≤380px, e.g. 360px) ---------- */
@media (max-width: 380px) {
  .wrap { padding-inline: 15px; }
  .terminal-body { padding: 18px 16px 20px; font-size: 12.5px; }
  .window-title { font-size: 11px; }
  .card, .tut-col, .honesty-card, .compare { padding-left: 20px; padding-right: 20px; }
  .faq-item summary { font-size: 16.5px; gap: 12px; }
  .btn-lg { padding: 15px 20px; font-size: 15.5px; }
}

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

@media print {
  .nav, .mobile-menu, .footer .footer-links, .cta-final, body::before { display: none !important; }
  body { background: #fff; color: #000; }
  .legal { max-width: none; }
}
