/* ═══════════════════════════════════════════
   SIGNAL · Design System
   Aesthetic: Editorial-tech, deep navy + electric blue
   Typography: Fraunces (display) + Inter (body) + JetBrains Mono (data)
   ═══════════════════════════════════════════ */

:root {
  /* Colors */
  --bg: #08080d;
  --bg-2: #10101a;
  --bg-3: #16161f;
  --panel: #161622;
  --panel-2: #1c1c2c;
  --panel-3: #252538;
  --line: #252538;
  --line-2: #34344a;

  --text: #f5f3ee;
  --muted: #8a8aa3;
  --dim: #5a5a73;

  --signal: #3b82f6;
  --signal-bright: #60a5fa;
  --signal-deep: #1d4ed8;
  --plasma: #06b6d4;
  --neon: #10b981;
  --solar: #f59e0b;
  --rose: #f43f5e;
  --orange: #fb923c;

  /* Spacing & sizing */
  --container: 1200px;
  --container-narrow: 780px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Animations */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 800px at 78% -5%, rgba(59, 130, 246, 0.10), transparent 55%),
    radial-gradient(900px 700px at 8% 95%, rgba(6, 182, 212, 0.06), transparent 55%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

em {
  font-style: italic;
}

button, input, select, textarea {
  font-family: inherit;
  letter-spacing: -0.005em;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

input, select, textarea {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 16px 32px;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--signal), var(--plasma));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 20px -6px rgba(59, 130, 246, 0.5);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand-name em {
  color: var(--signal-bright);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: 0.15s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--panel);
}

.nav-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px -4px rgba(59, 130, 246, 0.5);
  transition: 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -4px rgba(59, 130, 246, 0.7);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  padding: 80px 32px 100px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-bright);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 30px;
  font-weight: 600;
  animation: fadeUp 0.8s var(--ease-out);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 12px var(--signal-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.024em;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s var(--ease-out) both;
}

.hero h1 em {
  color: var(--signal-bright);
  font-style: italic;
}

.hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(245, 243, 238, 0.72);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.2s var(--ease-out) both;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s var(--ease-out) both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(59, 130, 246, 0.7);
}

.btn-secondary {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line-2);
}

.btn-secondary:hover {
  background: var(--panel-2);
  border-color: var(--signal);
}

.btn-large {
  padding: 18px 36px;
  font-size: 15.5px;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.8s 0.4s var(--ease-out) both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-v {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--signal-bright);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: 100px 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-narrow {
  max-width: var(--container-narrow);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-title em {
  color: var(--signal-bright);
}

.section-sub {
  font-size: 17px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: 56px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-bright);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--signal-bright);
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--solar));
}

.problem-stat {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 72px;
  color: var(--rose);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.problem-stat.solar {
  color: var(--solar);
}

.problem-text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.78);
  margin-bottom: 14px;
}

.problem-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  padding: 36px 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--signal-bright);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   TRUST / SOCIAL PROOF
   ═══════════════════════════════════════════ */

.trust-band {
  background: var(--bg-2);
  padding: 64px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: rgba(245, 243, 238, 0.5);
  letter-spacing: -0.01em;
  transition: 0.2s;
}

.partner-logo:hover {
  color: var(--text);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.88);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--plasma));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-info {
  font-size: 13px;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--signal-bright);
  font-weight: 600;
  flex-shrink: 0;
  transition: 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.72);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */

.final-cta {
  padding: 100px 32px;
  text-align: center;
  background:
    radial-gradient(800px 600px at 50% 50%, rgba(59, 130, 246, 0.08), transparent 70%),
    var(--bg);
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 em {
  color: var(--signal-bright);
}

.final-cta p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding: 56px 32px 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(245, 243, 238, 0.78);
  transition: 0.15s;
}

.footer-col a:hover {
  color: var(--signal-bright);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   DIAGNOSE FUNNEL PAGE
   ═══════════════════════════════════════════ */

.funnel-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.funnel-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  padding: 6px 0;
  transition: 0.15s;
}

.funnel-back:hover {
  color: var(--text);
}

.funnel-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.4);
}

/* Progress */
.funnel-progress {
  display: flex;
  padding: 18px 28px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  gap: 14px;
  align-items: center;
}

.fp-step {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
}

.fp-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--panel-3);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: 0.3s;
}

.fp-step.done .fp-num {
  background: linear-gradient(135deg, var(--neon), #059669);
  color: #fff;
  border: none;
}

.fp-step.active .fp-num {
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  color: #fff;
  border: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.fp-name {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.fp-step.done .fp-name { color: var(--neon); }
.fp-step.active .fp-name { color: var(--signal-bright); font-weight: 600; }

.fp-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 14px;
}

.fp-step.done + .fp-line { background: var(--neon); }

/* Funnel Body */
.funnel-body {
  padding: 48px 56px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--signal-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.step-sub {
  font-size: 15px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
}

/* Job Search */
.job-search {
  position: relative;
  margin-bottom: 22px;
}

.job-input {
  width: 100%;
  padding: 18px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  transition: 0.15s;
}

.job-input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.job-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  max-height: 280px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.job-dropdown.open {
  display: block;
}

.job-item {
  padding: 13px 22px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.1s;
}

.job-item:hover { background: var(--panel-3); }
.job-item:last-child { border-bottom: none; }

.job-item-risk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}

.risk-h { background: rgba(244, 63, 94, 0.1); color: var(--rose); border: 1px solid rgba(244, 63, 94, 0.25); }
.risk-m { background: rgba(245, 158, 11, 0.1); color: var(--solar); border: 1px solid rgba(245, 158, 11, 0.25); }
.risk-l { background: rgba(16, 185, 129, 0.1); color: var(--neon); border: 1px solid rgba(16, 185, 129, 0.25); }

/* Chips */
.chips-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  padding: 9px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
  transition: 0.15s;
}

.chip:hover {
  border-color: var(--signal-bright);
  color: var(--text);
}

.chip.active {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--signal);
  color: var(--signal-bright);
  font-weight: 600;
}

/* Form Fields */
.field-block { margin-bottom: 22px; }

.field-label {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.field-label .v {
  color: var(--signal-bright);
  font-weight: 600;
}

.slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--signal);
}

.slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  cursor: pointer;
  border: 3px solid var(--bg);
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  transition: 0.15s;
}

.input-field:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  color: #fff;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  width: 100%;
  box-shadow: 0 8px 24px -6px rgba(59, 130, 246, 0.5);
  transition: 0.2s;
}

.btn-cta:hover {
  box-shadow: 0 12px 32px -6px rgba(59, 130, 246, 0.7);
  transform: translateY(-1px);
}

.btn-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-cta.neon {
  background: linear-gradient(135deg, var(--neon), #059669);
  box-shadow: 0 8px 24px -6px rgba(16, 185, 129, 0.5);
}

/* Loading */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  min-height: 380px;
}

.loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--signal);
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-msg {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.loading-sub {
  font-size: 13px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Result */
.result-hero {
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(245, 158, 11, 0.04));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.result-hero.medium { background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(59, 130, 246, 0.04)); }
.result-hero.low { background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.04)); }

.result-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
}

.score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--rose) calc(var(--score) * 1%), var(--panel-2) 0);
  display: grid;
  place-items: center;
  position: relative;
}

.score-circle.medium { background: conic-gradient(var(--solar) calc(var(--score) * 1%), var(--panel-2) 0); }
.score-circle.low { background: conic-gradient(var(--neon) calc(var(--score) * 1%), var(--panel-2) 0); }

.score-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--panel);
}

.score-circle-inner {
  position: relative;
  text-align: center;
}

.score-v {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--rose);
  line-height: 1;
  font-weight: 600;
}

.score-circle.medium .score-v { color: var(--solar); }
.score-circle.low .score-v { color: var(--neon); }

.score-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.result-body { min-width: 0; }

.result-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--rose);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-weight: 600;
}

.result-hero.medium .result-l { color: var(--solar); }
.result-hero.low .result-l { color: var(--neon); }

.result-title {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 7px;
}

.result-desc {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.72);
  line-height: 1.5;
  max-width: 480px;
}

.result-meta { text-align: right; }

.result-meta-v {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--rose);
  line-height: 1;
  font-weight: 500;
}

.result-hero.medium .result-meta-v { color: var(--solar); }
.result-hero.low .result-meta-v { color: var(--neon); }

.result-meta-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.result-content { padding: 32px; }

.result-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-h::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--signal-bright);
}

.task-list {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.task-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.task-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(244, 63, 94, 0.08);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.task-name {
  font-size: 13.5px;
  font-weight: 500;
}

.task-by {
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.task-impact {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--rose);
  font-weight: 600;
}

/* Email Gate */
.email-gate {
  padding: 36px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), transparent);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  margin-top: 8px;
}

.eg-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--signal-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.eg-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.eg-sub {
  font-size: 13.5px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.5;
  margin-bottom: 22px;
}

.eg-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.eg-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 243, 238, 0.85);
}

.eg-feat::before {
  content: "✓";
  color: var(--signal-bright);
  font-weight: 700;
  font-size: 14px;
}

.eg-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

/* Partners (after email) */
.partners-section { padding: 32px; }

.partner-card {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  border-color: var(--signal-bright);
  transform: translateY(-2px);
}

.partner-card.matched::before {
  content: "BEST MATCH";
  position: absolute;
  top: -10px;
  left: 18px;
  background: linear-gradient(135deg, var(--neon), #059669);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.partner-card.matched {
  border-color: var(--neon);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), var(--bg-2));
}

.partner-logo {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  background: var(--panel-3);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--signal-bright);
  font-size: 14px;
  border: 1px solid var(--line-2);
}

.partner-info { min-width: 0; }

.partner-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.partner-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.008em;
  margin-bottom: 4px;
}

.partner-pitch {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.45;
}

.partner-cta {
  padding: 10px 18px;
  background: var(--signal);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.partner-cta.matched {
  background: linear-gradient(135deg, var(--neon), #059669);
}

/* ═══════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════ */

#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  animation: slideIn 0.35s var(--ease);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
}

.toast.success { border-color: rgba(16, 185, 129, 0.4); background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), var(--panel)); }
.toast.warn { border-color: rgba(245, 158, 11, 0.4); background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), var(--panel)); }
.toast.info { border-color: rgba(59, 130, 246, 0.4); background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), var(--panel)); }

.toast-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.toast.success .toast-icon { background: rgba(16, 185, 129, 0.15); color: var(--neon); }
.toast.warn .toast-icon { background: rgba(245, 158, 11, 0.15); color: var(--solar); }
.toast.info .toast-icon { background: rgba(59, 130, 246, 0.15); color: var(--signal-bright); }

.toast-text { font-size: 13px; line-height: 1.4; }
.toast-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.toast-text span { color: var(--muted); font-size: 11.5px; font-family: 'JetBrains Mono', monospace; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .problem-grid,
  .steps,
  .testimonials,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 32px;
  }

  .funnel-body {
    padding: 32px 24px;
  }

  .section {
    padding: 64px 24px;
  }

  .hero {
    padding: 56px 24px 80px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .result-meta {
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .partner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-logo {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .funnel-progress {
    padding: 14px 18px;
    gap: 8px;
  }

  .fp-name {
    display: none;
  }

  .funnel-body {
    padding: 28px 20px;
  }

  .step-title {
    font-size: 28px;
  }

  .result-content {
    padding: 24px 20px;
  }

  .partners-section {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════
   PERFEKTIONIERUNG · Accessibility & Detail-Politur
   ═══════════════════════════════════════════ */

/* Skip-Link für Screenreader & Keyboard-Navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--signal);
  color: #fff;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* Sichtbarer Fokus-Ring für Keyboard-Nutzer (a11y) */
*:focus-visible {
  outline: 2px solid var(--signal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Maus-Klicks bekommen keinen Ring (nur Keyboard) */
*:focus:not(:focus-visible) {
  outline: none;
}
.btn:focus-visible,
.btn-cta:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 4px;
}

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

/* Reduzierte Bewegung respektieren (a11y / Vestibular-Disorders) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-pulse,
  .pulse-dot,
  .eyebrow .dot {
    animation: none !important;
  }
}

/* Custom Scrollbar (Detail) */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--dim);
}

/* Text-Selektion in Markenfarbe (Detail) */
::selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--text);
}

/* Buttons: aktiver Druck-Zustand (haptisches Feedback-Gefühl) */
.btn:active,
.btn-cta:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.99);
}

/* Disabled-Inputs sauber */
input:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Bessere Touch-Targets auf Mobile (min 44px, Apple HIG) */
@media (max-width: 600px) {
  .nav-link,
  .footer-col a,
  .faq-q {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .chip {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

/* Lazy-load Schutz gegen Layout-Shift */
img {
  height: auto;
}

/* Print-Styles (falls jemand das Ergebnis druckt) */
@media print {
  .navbar,
  .urgency-strip,
  .live-ticker,
  #toast,
  .nav-cta,
  .hero-cta-row,
  .final-cta,
  .footer,
  #cookieBanner {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .result-hero,
  .score-circle,
  .task-row {
    border: 1px solid #ccc;
  }
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER (DSGVO)
   ═══════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.6);
  animation: slideIn 0.4s var(--ease-out);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.72);
  line-height: 1.55;
  margin-bottom: 18px;
}
.cookie-text a {
  color: var(--signal-bright);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.15s;
  text-align: center;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--signal), var(--signal-deep));
  color: #fff;
}
.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -4px rgba(59, 130, 246, 0.5);
}
.cookie-decline {
  background: var(--panel-2);
  color: var(--muted);
  border: 1px solid var(--line);
}
.cookie-decline:hover {
  color: var(--text);
  border-color: var(--line-2);
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ═══════════════════════════════════════════ */

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 100px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
  padding: 6px 0;
  transition: 0.15s;
}
.legal-back:hover {
  color: var(--text);
}
.legal-wrap h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-wrap h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
}
.legal-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 28px 0 10px;
}
.legal-wrap p,
.legal-wrap li {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.78);
  margin-bottom: 14px;
}
.legal-wrap ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-wrap li {
  margin-bottom: 8px;
}
.legal-wrap strong {
  color: var(--text);
  font-weight: 600;
}
.legal-wrap a {
  color: var(--signal-bright);
  text-decoration: underline;
}
.legal-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}
.legal-box p:last-child {
  margin-bottom: 0;
}
.legal-placeholder {
  background: rgba(245, 158, 11, 0.06);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--solar);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.5;
  margin: 14px 0;
}

/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */

.error-page {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.error-code {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, var(--signal), var(--plasma));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.error-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}
.error-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 420px;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   GRANULARE EINWILLIGUNG (Art. 7 DSGVO)
   ═══════════════════════════════════════════ */

.consent-group {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.15s;
}
.consent-row:hover {
  border-color: var(--signal-bright);
}
.consent-row:has(.consent-check:checked) {
  border-color: var(--signal);
  background: rgba(59, 130, 246, 0.06);
}
.consent-check {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--signal);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(245, 243, 238, 0.82);
}
.consent-text strong {
  color: var(--text);
  font-weight: 600;
}
.btn-skip {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  transition: 0.15s;
}
.btn-skip:hover {
  color: var(--text);
  background: var(--panel-2);
}

/* ═══════════════════════════════════════════
   E-MAIL-GATE VOR ERGEBNIS (Phase B in Step 3)
   ═══════════════════════════════════════════ */
#emailGatePhase { padding: 8px 4px; }
.gate-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--neon);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 30px;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.gate-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.gate-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}
.gate-preview {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  overflow: hidden;
  min-height: 120px;
}
.gate-preview-blur {
  display: flex;
  align-items: center;
  gap: 20px;
  filter: blur(9px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.gate-preview-score {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--rose);
}
.gate-preview-lines { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.gate-preview-lines span {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: var(--line-2);
}
.gate-preview-lines span:nth-child(1) { width: 80%; }
.gate-preview-lines span:nth-child(2) { width: 95%; }
.gate-preview-lines span:nth-child(3) { width: 65%; }
.gate-preview-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.gate-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 14px 0;
  cursor: pointer;
}
.gate-consent span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245,243,238,0.75);
}
.gate-consent:has(.consent-check:checked) {
  border-color: var(--signal);
  background: rgba(59,130,246,0.06);
}
.gate-trust {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.doi-notice {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.28);
  border-left: 3px solid var(--solar);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,243,238,0.85);
}
.doi-notice strong { color: var(--solar); display: block; margin-bottom: 4px; }
.doi-notice.confirmed {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.28);
  border-left-color: var(--neon);
}
.doi-notice.confirmed strong { color: var(--neon); }
