/* === LOCAL FONTS === */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-500-latin.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --bg: #0f1014;
  --surface: #181a22;
  --surface-elev: #1f222c;
  --border: #262936;
  --border-strong: #353947;
  --text: #f0f1f4;
  --text-dim: #a3a7b3;
  --text-faint: #6b7080;
  --accent: #818cf8;
  --accent-bright: #a5b4fc;
  --accent-soft: rgba(129, 140, 248, 0.12);
  --pass: #4ade80;
  --warn: #fbbf24;
  --fail: #f87171;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; }

.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--accent); color: var(--bg);
  padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; z-index: 200;
}
.skip:focus { left: 8px; }

/* === NAV === */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 16, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.nav-brand {
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: var(--text); text-decoration: none; letter-spacing: -0.01em;
}
.nav-brand .arrow { color: var(--accent); }
.nav-brand .muted { color: var(--text-faint); }
.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-back:hover { border-color: var(--accent); color: var(--accent); }
.nav-back .back-arrow { transition: transform 0.2s; display: inline-block; }
.nav-back:hover .back-arrow { transform: translateX(-3px); }

/* === HERO === */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--accent-soft); border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.035em; line-height: 1.08;
  max-width: 820px; margin: 0 auto 18px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 600px; margin: 0 auto 32px;
}
.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.3s, color 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--bg);
  box-shadow: 0 6px 24px -6px rgba(129, 140, 248, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -6px rgba(129, 140, 248, 0.7); }
.btn-ghost {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow { display: inline-block; transition: transform 0.25s; font-family: var(--mono); }
.btn:hover .arrow { transform: translateX(4px); }

/* === SECTIONS === */
section.block {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}
section.block.alt {
  background: linear-gradient(180deg, var(--bg) 0%, #131520 100%);
}
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 50px;
}
.section-head::before {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: var(--accent); border-radius: 2px;
  margin: 0 auto 20px;
}
.section-head h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 16px;
  color: var(--text-dim);
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.card h3 .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* === STEPS === */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  counter-reset: steps;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px 22px 70px;
  position: relative;
  counter-increment: steps;
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 24px; top: 22px;
  font-family: var(--mono);
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}
.step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* === INFO BLOCK (realistische Erwartungen) === */
.info-block {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(129, 140, 248, 0.06) 100%);
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  padding: 36px 32px;
}
.info-block .info-intro {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.65;
}
.info-block .info-intro strong { color: var(--text); }
.info-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: flex-start;
}
.info-list li .label {
  flex-shrink: 0;
  min-width: 130px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.info-list li .text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.info-list li .text strong { color: var(--text); font-weight: 500; }
.info-block .info-outro {
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* === DISQUALIFY === */
.disqualify {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.disqualify-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .disqualify-grid { grid-template-columns: 1fr 1fr; }
}
.disqualify-col h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.disqualify-col.fit h3 { color: var(--pass); }
.disqualify-col.no-fit h3 { color: var(--warn); }
.disqualify-col h3::before {
  content: ''; width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-block;
}
.disqualify-col.fit h3::before {
  background: rgba(74, 222, 128, 0.18);
  border: 1.5px solid var(--pass);
}
.disqualify-col.no-fit h3::before {
  background: rgba(251, 191, 36, 0.18);
  border: 1.5px solid var(--warn);
}
.disqualify-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.disqualify-col li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.disqualify-col li::before {
  content: '–';
  position: absolute;
  left: 0; top: 0;
  color: var(--text-faint);
}

/* === CTA FINAL === */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(129, 140, 248, 0.10) 100%);
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  padding: 50px 32px;
  margin-top: 40px;
}
.cta-final h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-final p {
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 22px;
}

/* === RELATED SERVICES (Cross-Linking) === */
.related-services {
  border-top: 1px solid var(--border);
  padding: 60px 0 80px;
}
.related-services h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.related-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.related-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.related-card h3 .arrow {
  color: var(--accent); font-family: var(--mono);
  transition: transform 0.25s;
}
.related-card:hover h3 .arrow { transform: translateX(3px); }
.related-card p {
  font-size: 13px;
  color: var(--text-dim);
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 32px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-faint);
}
.footer-brand {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
}
.footer-brand .arrow { color: var(--accent); }
.footer-brand .muted { color: var(--text-faint); }
.footer-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
