/* ============================================================
   §3 WPflG Freiheitsportal – Stylesheet v8
   Dark Mode · Satirisch · Bürokratie-Ästhetik als Ironie
   Palette: Near-black + Neon-Chartreuse (#c8ff00) + Signal-Rot
   ============================================================ */

:root {
  /* --- Backgrounds --- */
  --bg:          #0c0e0a;
  --bg-card:     #111410;
  --bg-elevated: #181c14;
  --bg-input:    #0e110b;

  /* --- Text --- */
  --text:        #cdd4c2;
  --text-muted:  #6e7862;
  --text-dim:    #3e4636;

  /* --- Accents --- */
  --neon:        #c8ff00;          /* Neon-Chartreuse: der Witz an sich */
  --neon-dim:    rgba(200,255,0,0.07);
  --neon-glow:   rgba(200,255,0,0.14);
  --red:         #ff3b30;
  --red-dim:     rgba(255,59,48,0.12);
  --olive:       #3e4e2e;
  --olive-mid:   #2e3a20;

  /* --- Borders --- */
  --border:      #181e12;
  --border-mid:  #252e1c;
  --border-vis:  #364228;

  /* --- Typography --- */
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-mono: 'Courier New', 'Lucida Console', monospace;

  /* --- Misc --- */
  --radius:   3px;
  --shadow:   0 8px 32px rgba(0,0,0,0.7);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--neon); text-decoration: none; }
a:hover { color: #fff; }

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============================================================
   COOKIE BANNER – blocking overlay modal
   ============================================================ */
body.cookie-locked { overflow: hidden; }

#cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 4, 0.92);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-vis);
  border-top: 3px solid var(--neon);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-inner h2 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
}
.cookie-inner p { margin: 0; font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }
.cookie-inner a { color: var(--neon); }
.cookie-inner ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.btn-cookie {
  background: var(--neon);
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--bg);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.btn-cookie:hover { opacity: 0.82; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  color: var(--neon) !important;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-statement {
  color: var(--neon) !important;
  border: 1px solid rgba(200,255,0,0.4);
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s !important;
}
.nav-statement:hover {
  background: var(--neon) !important;
  color: var(--bg) !important;
  border-color: var(--neon);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border-mid);
  padding: 72px 28px 56px;
  position: relative;
  overflow: hidden;
}
/* Giant decorative § in background */
.hero::before {
  content: '§';
  position: absolute;
  right: -60px;
  top: -80px;
  font-size: 520px;
  font-weight: 900;
  color: var(--neon);
  opacity: 0.035;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; }

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 .hl { color: var(--neon); }

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-sub strong { color: var(--text); }
.hero-link { color: var(--neon); border-bottom: 1px solid transparent; }
.hero-link:hover { border-bottom-color: var(--neon); color: var(--neon); }

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badge {
  background: var(--bg-elevated);
  border: 1px solid var(--border-vis);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.hero-warning {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--red-dim);
  border: 1px solid rgba(255,59,48,0.25);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
}
.hero-warning strong { color: #ffa09a; }
.hero-warning a { color: #ff8a84; }

.hero-statement { border-bottom: 2px solid var(--neon); }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content { max-width: 920px; margin: 0 auto; padding: 44px 20px; }

/* ============================================================
   EXPLAINER
   ============================================================ */
.explainer { margin-bottom: 52px; }

.explainer > h2 {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

/* Cards fused together in a grid – separated by 1px gaps */
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border-mid);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.explainer-card {
  background: var(--bg-card);
  padding: 28px 22px;
}
.explainer-icon { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.explainer-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.01em;
}
.explainer-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.card-link { color: var(--neon); font-size: 0.8rem; }

/* Examples box */
.examples-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 20px;
}
.examples-box h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 20px;
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.example-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border-left: 2px solid var(--border-vis);
  transition: border-color 0.15s;
}
.example-item:hover { border-left-color: var(--neon); }
.ex-icon { font-size: 1.1rem; }
.example-item strong { font-size: 0.84rem; color: var(--text); }
.example-item span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.examples-plaene-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 200, 0, 0.07);
  border: 1px solid rgba(255, 200, 0, 0.25);
  border-left: 3px solid #ffc800;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 16px 0 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
}
.examples-plaene-box .plaene-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.65;
}
.examples-plaene-box strong { color: #ffc800; }
.examples-plaene-box em { color: var(--text); font-style: italic; }
.examples-footer { font-size: 0.78rem; color: var(--text-muted); }
.examples-footer strong { color: var(--text); }
.examples-footer a { color: var(--neon); }

/* Satire summary box */
.satire-box {
  border: 1px solid var(--border-vis);
  border-left: 3px solid var(--neon);
  background: var(--neon-dim);
  border-radius: var(--radius);
  padding: 26px;
}
.satire-box h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 16px;
}
.satire-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.satire-box strong { color: var(--text); }
.satire-box em { color: var(--text); font-style: italic; }
.btn-satire {
  display: inline-block;
  margin-top: 8px;
  color: var(--neon);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.btn-satire:hover { border-bottom-color: var(--neon); color: var(--neon); }

/* ============================================================
   FORM
   ============================================================ */
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}
.form-section h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-mid);
  letter-spacing: -0.02em;
}
/* § prefix decorates the form heading automatically */
.form-section h2::before { content: '§  '; color: var(--neon); }

fieldset {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  background: var(--bg-elevated);
}
legend {
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
  margin-bottom: 14px;
}
.form-group--wide { flex: 3; }
.form-group--narrow { flex: 1; min-width: 80px; }

label {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
textarea,
select {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  background: var(--bg-input);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); font-size: 0.88rem; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px var(--neon-glow);
  background: #0c100a;
}
/* Date input tweak */
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5); }

.field-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* Karrierecenter info box (shows after PLZ lookup) */
.kc-info {
  background: var(--neon-dim);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--neon);
  margin-top: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* ============================================================
   TONE CARDS
   ============================================================ */
.tone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.tone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 18px 10px;
  gap: 6px;
  background: var(--bg-input);
  transition: border-color 0.15s, background 0.15s;
}
.tone-card input[type="radio"] { display: none; }
.tone-card:has(input:checked) {
  border-color: var(--neon);
  background: var(--neon-dim);
}
.tone-card:hover { border-color: var(--border-vis); }
.tone-icon { font-size: 1.7rem; }
.tone-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tone-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.45; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  background: var(--olive-mid);
  color: var(--text-muted);
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border-vis);
}
.badge-info {
  background: rgba(0,80,180,0.25);
  color: #7ab8ff;
  border-color: rgba(0,80,180,0.4);
}

/* ============================================================
   LEGAL CHECKBOXES
   ============================================================ */
.legal-fieldset { background: var(--bg); }
.legal-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  transition: border-color 0.15s;
}
.legal-check:hover { border-color: var(--border-vis); }
.legal-check label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sans);
  line-height: 1.6;
}
.legal-check input[type="checkbox"] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--neon);
}
.legal-check--highlight {
  border-color: rgba(255,59,48,0.3);
  background: var(--red-dim);
}
.legal-check a { color: var(--neon); }
.legal-check strong { color: var(--text); }

/* ============================================================
   BUTTONS — Bureaucratic hesitation micro-animation
   The hover effect delays 80ms before reacting (Beamten-Modus)
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--neon);
  color: var(--bg);
  border: 1px solid var(--neon);
}
.btn-primary:hover:not(:disabled) {
  background: transparent;
  color: var(--neon);
  /* 80ms delay: Bürokratische Bedenkzeit */
  transition: background 0.25s 0.08s, color 0.25s 0.08s;
}
.btn-primary:disabled {
  background: var(--border-vis);
  color: var(--text-dim);
  border-color: var(--border-vis);
  cursor: not-allowed;
}

.btn-send {
  background: var(--red);
  color: #fff;
  font-size: 0.88rem;
  padding: 13px 32px;
  border: 1px solid var(--red);
}
.btn-send:hover:not(:disabled) {
  background: transparent;
  color: var(--red);
  transition: background 0.25s 0.08s, color 0.25s 0.08s;
}
.btn-send:disabled {
  background: var(--border-mid);
  color: var(--text-dim);
  border-color: var(--border-mid);
  cursor: not-allowed;
}

.form-actions { text-align: center; padding-top: 8px; }

/* ============================================================
   EMAIL PREVIEW
   ============================================================ */
.preview-section {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-top: 2px solid var(--neon);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.preview-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Compose box – webmailer style */
.compose-box {
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 14px;
  overflow: hidden;
}
.compose-field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-mid);
  padding: 0 14px;
  min-height: 40px;
}
.compose-field-to { min-height: 38px; }
.compose-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  width: 64px;
  flex-shrink: 0;
}
.compose-value {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  word-break: break-all;
}
.compose-subject {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--text);
  padding: 8px 0;
  caret-color: var(--neon);
}
.compose-subject::placeholder { color: var(--text-dim); }
.compose-divider {
  height: 1px;
  background: var(--border-mid);
}
.email-textarea {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* ============================================================
   REGION SELECTOR
   ============================================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.region-option {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  transition: border-color 0.12s, background 0.12s;
  user-select: none;
}
.region-option input[type="radio"] { display: none; }
.region-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
}
.region-count {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.68rem;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
  padding: 1px 5px;
  border-radius: 3px;
}
.region-option:hover { border-color: var(--neon); }
.region-option:hover .region-label { color: var(--text); }
.region-option-active {
  border-color: var(--neon);
  background: var(--neon-dim);
}
.region-option-active .region-label { color: var(--neon); font-weight: 700; }
.region-option-active .region-count {
  background: rgba(200,255,0,0.12);
  border-color: rgba(200,255,0,0.3);
  color: var(--neon);
}

.preview-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.preview-tab {
  padding: 5px 12px;
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.72rem;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  letter-spacing: 0.04em;
}
.preview-tab:hover { border-color: var(--neon); color: var(--text); }
.preview-tab.active { background: var(--neon); color: var(--bg); border-color: var(--neon); font-weight: 700; }

/* Send-All banner */
#send-all-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--neon-dim);
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.btn-send-all {
  background: var(--neon);
  color: var(--bg);
  border: 1px solid var(--neon);
  border-radius: var(--radius);
  padding: 11px 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: none;
}
.btn-send-all:hover:not(:disabled) {
  background: transparent;
  color: var(--neon);
  transition: background 0.25s 0.08s, color 0.25s 0.08s;
}
.btn-send-all:disabled {
  background: var(--border-vis);
  color: var(--text-dim);
  border-color: var(--border-vis);
  cursor: not-allowed;
}
.send-all-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.5;
}

.email-textarea {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.65;
  padding: 18px;
  border: none;
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  resize: vertical;
  min-height: 340px;
  box-sizing: border-box;
}
.email-textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--neon);
}
.compose-box:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px var(--neon-glow);
}

.send-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.countdown {
  background: var(--bg-elevated);
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  flex: 1;
}
.countdown strong { color: var(--neon); }

.send-result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.send-result.success { background: var(--neon-dim); color: var(--neon); border: 1px solid rgba(200,255,0,0.25); }
.send-result.error   { background: var(--red-dim); color: #ff8a84; border: 1px solid rgba(255,59,48,0.3); }

.preview-hint {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  line-height: 1.55;
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.loading-box {
  background: var(--bg-card);
  border: 1px solid var(--border-vis);
  border-top: 2px solid var(--neon);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 340px;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border-vis);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box p { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-mono); }
.progress-bar { height: 2px; background: var(--border-mid); border-radius: 1px; overflow: hidden; margin: 16px 0 8px; }
#progress-fill { height: 100%; background: var(--neon); transition: width 0.3s; }
#progress-label { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ============================================================
   HINTERGRUND PAGE
   ============================================================ */
.hg-page { max-width: 820px; margin: 0 auto; }

/* TOC navigation */
.hg-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.hg-toc h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.hg-toc ol { margin-left: 20px; }
.hg-toc li { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 6px; }
.hg-toc a { color: var(--text-muted); border-bottom: 1px solid transparent; }
.hg-toc a:hover { color: var(--neon); border-bottom-color: var(--neon); }

.hg-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-mid);
}
.hg-section:last-child { border-bottom: none; }
.hg-page h2 { font-size: 1.4rem; color: #fff; margin-bottom: 18px; }
.hg-page h3 { font-size: 1rem; color: var(--text); margin: 20px 0 10px; }
.hg-page p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 14px; }
.hg-page strong { color: var(--text); }
.hg-page em { color: var(--text); font-style: italic; }
.hg-page a { color: var(--neon); }
.hg-page a.btn-primary { color: var(--bg); }
.hg-page a.btn-primary:hover { color: var(--neon); }
.hg-page a.btn-statement-primary { color: var(--bg); }
.hg-page a.btn-statement-primary:hover { color: var(--neon); }
.hg-page ul { margin-left: 22px; margin-bottom: 14px; }
.hg-page li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.65; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--border-mid);
}
.tl-item:last-child::before { display: none; }
.tl-year {
  flex-shrink: 0;
  width: 56px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon);
  font-weight: 700;
  text-align: right;
  padding-top: 2px;
  line-height: 1.3;
}
.tl-content {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.tl-content strong { color: var(--text); }
.tl-item--highlight .tl-content {
  border-color: rgba(200,255,0,0.2);
  border-left: 2px solid var(--neon);
  background: var(--neon-dim);
}
.tl-item--highlight .tl-year { color: var(--neon); }

/* Law box */
.law-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.law-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-mid);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 8px;
}
.law-source-link { font-size: 0.72rem; color: var(--neon); text-transform: none; letter-spacing: 0; }
.law-text { margin: 0 !important; padding: 18px 20px; font-style: italic; }
.law-note {
  padding: 12px 20px;
  border-top: 1px solid var(--border-mid);
  font-size: 0.8rem !important;
  margin: 0 !important;
  background: var(--bg-elevated);
}

/* Simple explanation */
.explain-simple {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.explain-simple h3 { margin-top: 0 !important; color: #fff; }

/* Examples detailed */
.examples-detailed { display: flex; flex-direction: column; gap: 16px; margin: 16px 0 24px; }
.example-detailed {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.ex-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ex-num { font-size: 1.2rem; }
.ex-header strong { color: #fff; font-size: 0.92rem; }
.example-detailed p { margin-bottom: 8px; }
.example-verdict {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-mid);
  font-size: 0.83rem !important;
}

/* Comparison box */
.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 24px;
}
.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.compare-col h4 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: var(--text-muted);
}
.compare-before { border-top: 2px solid var(--border-vis); }
.compare-after { border-top: 2px solid var(--red); }
.verdict-good { color: #6fcf97; font-size: 0.82rem; font-family: var(--font-mono); margin: 0; }
.verdict-bad { color: var(--red); font-size: 0.82rem; font-family: var(--font-mono); margin: 0; }

/* Contradiction list */
.contradiction-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.contradiction-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.contra-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.contradiction-item strong { color: #fff; display: block; margin-bottom: 6px; font-size: 0.92rem; }
.contradiction-item p { margin: 0; }

/* Satire rating */
.satire-rating {
  text-align: center;
  margin: 24px 0 28px;
}
.rating-stars { font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 6px; }
.rating-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Satire points */
.satire-points { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.satire-point {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.sp-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.satire-point p { margin: 0; }
.satire-point strong { color: #fff; }

/* Satire verdict */
.satire-verdict {
  background: var(--neon-dim);
  border: 1px solid rgba(200,255,0,0.2);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 24px;
}
.satire-verdict h3 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
  margin: 0 0 14px;
}
.satire-verdict p { margin-bottom: 10px; }
.satire-verdict p:last-child { margin-bottom: 0; }

/* Action grid (Was tun?) */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-icon { font-size: 1.4rem; }
.action-card h3 {
  font-size: 0.88rem;
  color: #fff;
  margin: 0;
}
.action-card p { margin: 0; flex: 1; }
.action-card .btn { margin-top: auto; align-self: flex-start; }

/* Disclaimer box */
.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 8px;
}
.disclaimer-box h4 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 0 0 12px;
}
.disclaimer-box p { margin-bottom: 8px; font-size: 0.85rem; }
.disclaimer-box p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .comparison-box { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
}

blockquote {
  border-left: 2px solid var(--neon);
  padding: 12px 20px;
  margin: 20px 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--neon-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================================ */
.legal-page {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h2 {
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.legal-page h3 { font-size: 0.95rem; margin: 22px 0 8px; color: var(--text); }
.legal-page h4 { font-size: 0.85rem; margin: 14px 0 6px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.legal-page p  { margin-bottom: 12px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }
.legal-page ul { margin-left: 22px; margin-bottom: 12px; }
.legal-page li { margin-bottom: 4px; font-size: 0.87rem; color: var(--text-muted); }
.legal-page a  { color: var(--neon); }
.legal-page strong { color: var(--text); }
.legal-page address {
  font-style: normal;
  line-height: 2;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--text-muted);
}
.cookie-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 0.82rem; }
.cookie-table th, .cookie-table td {
  border: 1px solid var(--border-mid);
  padding: 8px 12px;
  text-align: left;
  color: var(--text-muted);
}
.cookie-table th { background: var(--bg-elevated); color: var(--text); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   STATEMENT PAGE
   ============================================================ */
.statement-page { max-width: 820px; margin: 0 auto; }

.statement-disclaimer {
  background: var(--red-dim);
  border: 1px solid rgba(255,59,48,0.25);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.statement-disclaimer strong { color: #ff8a84; }

.statement-quote {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--neon);
  padding: 16px 24px;
  margin-bottom: 36px;
  background: var(--neon-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}
.statement-quote cite {
  display: block;
  font-size: 0.75rem;
  color: var(--neon);
  font-style: normal;
  margin-top: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.statement-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-mid);
}
.statement-section h2 { font-size: 1.25rem; color: #fff; margin-bottom: 16px; }
.statement-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.statement-section strong { color: var(--text); }
.statement-section em { color: var(--text); }
.statement-inline-quote {
  border-left: 2px solid var(--border-vis);
  padding: 12px 20px;
  margin: 20px 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-elevated);
  font-size: 0.88rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.statement-section--serious {
  background: var(--bg-elevated);
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  padding: 28px;
}
.statement-section--serious h2 { color: var(--neon); }

.statement-demand {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-mid);
}
.statement-demand:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.statement-demand h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.statement-demand p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.75; }

.statement-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 24px;
}
.btn-statement-primary {
  display: inline-block;
  background: var(--neon);
  color: var(--bg);
  padding: 11px 20px;
  border: 1px solid var(--neon);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: none;
}
.btn-statement-primary:hover {
  background: transparent;
  color: var(--neon);
  transition: background 0.25s 0.08s, color 0.25s 0.08s;
}
.btn-statement-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  padding: 11px 20px;
  border: 1px solid var(--border-vis);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s;
}
.btn-statement-secondary:hover { border-color: var(--text-muted); color: var(--text); }

.statement-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-mid);
  color: var(--text-dim);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  line-height: 1.65;
}
.footer-inner { max-width: 680px; margin: 0 auto; }
.footer-inner p { margin-bottom: 6px; }
.site-footer a { color: var(--text-muted); transition: color 0.15s; }
.site-footer a:hover { color: var(--text); }
.footer-tiny { font-size: 0.64rem; color: var(--border-vis); margin-top: 16px !important; line-height: 1.7; }

/* ============================================================
   MINI KC ANIMATION WIDGET (bottom-right corner)
   ============================================================ */
#anim-toggle {
  position: fixed;
  bottom: 14px;
  right: 14px;
  background: rgba(18, 22, 14, 0.88);
  color: var(--text-dim);
  border: 1px solid var(--border-vis);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 10px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.45;
  transition: opacity 0.2s;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  user-select: none;
}
#anim-toggle:hover { opacity: 1; }
#anim-toggle.anim-toggle-on {
  background: rgba(180,50,10,0.88);
  color: #ffc0a0;
  opacity: 0.88;
  border-color: rgba(255,59,48,0.4);
}

#kc-mini {
  position: fixed;
  bottom: 0;
  right: 50px;
  display: none;
  z-index: 999;
  pointer-events: none;
}
#kc-mini.kc-mini-active { display: block; }

@keyframes kc-flicker-a {
  0%,100% { transform: scaleY(1)    scaleX(1);    }
  30%     { transform: scaleY(1.12) scaleX(0.94); }
  60%     { transform: scaleY(0.92) scaleX(1.06); }
}
@keyframes kc-flicker-b {
  0%,100% { transform: scaleY(1)    scaleX(1);    }
  40%     { transform: scaleY(0.88) scaleX(1.08); }
  70%     { transform: scaleY(1.1)  scaleX(0.96); }
}
.kc-flame   { transform-origin: center bottom; }
.kc-flame-a { animation: kc-flicker-a 0.75s ease-in-out infinite; }
.kc-flame-b { animation: kc-flicker-b 0.60s ease-in-out infinite 0.08s; }
.kc-flame-c { animation: kc-flicker-a 0.80s ease-in-out infinite 0.18s; }
.kc-flame-d { animation: kc-flicker-b 0.55s ease-in-out infinite 0.25s; }

@keyframes kc-smoke-rise {
  0%   { transform: translateY(0)    scale(1);   opacity: 0.55; }
  100% { transform: translateY(-50px) scale(2.2); opacity: 0; }
}
.kc-smoke-1 { animation: kc-smoke-rise 2.4s ease-out infinite; }
.kc-smoke-2 { animation: kc-smoke-rise 3.0s ease-out infinite 0.6s; }
.kc-smoke-3 { animation: kc-smoke-rise 2.2s ease-out infinite 1.2s; }
.kc-smoke-4 { animation: kc-smoke-rise 2.8s ease-out infinite 1.8s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .main-nav { padding: 0 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.68rem; }
  .hero { padding: 52px 20px 40px; }
  .hero::before { font-size: 300px; right: -40px; top: -30px; }
  .main-content { padding: 28px 16px; }
  .form-section { padding: 24px 18px; }
  fieldset { padding: 16px; }
  #anim-toggle { bottom: 10px; right: 10px; }
  #kc-mini { right: 40px; transform: scale(0.75); transform-origin: bottom right; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 16px 32px; }
  .hero::before { display: none; }
  .nav-links a:not(.nav-statement) { display: none; }
  .form-section { padding: 20px 14px; }
  .send-area { flex-direction: column; align-items: stretch; }
  .statement-cta { flex-direction: column; }
  #kc-mini { right: 30px; transform: scale(0.55); }
}

/* ============================================================
   MOBILE RESPONSIVENESS – comprehensive additions
   These rules are appended last so they cascade correctly
   and override earlier blocks where needed.
   ============================================================ */

/* ---------- 768 px ---------- */
@media (max-width: 768px) {
  .nav-logo { font-size: 0.75rem; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.72rem; }
  .hero { padding: 52px 20px; }
  .explainer-grid { grid-template-columns: 1fr; }
  .comparison-box { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr 1fr; }
  .hg-section { padding: 28px 20px; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- 600 px ---------- */
@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 10px; }
  .form-group,
  .form-group--wide,
  .form-group--narrow { min-width: unset; width: 100%; }
  label { font-size: 0.82rem; }
  input, select, textarea { padding: 12px 14px; font-size: 0.95rem; }
  .field-hint { font-size: 0.75rem; }
  legend { font-size: 0.78rem; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .region-label { font-size: 0.72rem; padding: 8px 10px; }
  .tone-grid { grid-template-columns: repeat(2, 1fr); }
  .tone-card { padding: 14px 10px; }
  .tone-name { font-size: 0.82rem; }
  .tone-desc { font-size: 0.68rem; }
  .legal-check label { font-size: 0.82rem; }
  .legal-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; }
  .examples-grid { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .examples-plaene-box,
  .hero-warning { font-size: 0.8rem; }
  .compose-label { display: none; }
  .email-textarea { min-height: 220px; }
  .send-area { flex-direction: column; align-items: stretch; }
  #btn-send, #btn-send-all, #btn-generate { width: 100%; padding: 14px; }
  .loading-box { padding: 24px 20px; max-width: 90vw; }
  .legal-page { padding: 20px 16px; }
  .preview-hint { font-size: 0.78rem; }
  .countdown { font-size: 0.82rem; }
  .satire-box { padding: 20px 16px; }
  .satire-box p { font-size: 0.88rem; }
}

/* ---------- 480 px ---------- */
@media (max-width: 480px) {
  /* Nav: stack vertically, show ALL links (wrapping) */
  .main-nav { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }
  .nav-logo { font-size: 0.8rem; white-space: normal; line-height: 1.3; }
  .nav-links { display: flex; flex-wrap: wrap; gap: 8px 14px; padding-bottom: 4px; }
  /* Override the earlier rule that hid non-statement links */
  .nav-links a:not(.nav-statement) { display: inline; }
  .nav-links a { font-size: 0.72rem; }

  /* Hero */
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 0.88rem; }
  .hero-badges { flex-direction: column; }

  /* Cards & sections */
  .explainer-card { padding: 20px 16px; }
  .form-section { padding: 20px 14px; }
  fieldset { padding: 14px 12px; }

  /* Tone grid stays 2-col */
  .tone-grid { grid-template-columns: repeat(2, 1fr); }

  /* Compose area */
  .compose-field { min-height: 36px; }

  /* Preview tabs */
  .preview-tabs { gap: 4px; }
  .preview-tab { font-size: 0.72rem; padding: 5px 10px; }
}
