/* ============================================================
   KI–SETUP · Dark Neon
   Palette: #00DCFF Cyan · #00FF88 Green · #FF2D78 Pink · #FFAA00 Amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-2:        #F5F5F7;
  --bg-3:        #EBEBED;
  --text:        #1D1D1F;
  --text-2:      #424245;
  --text-3:      #86868B;
  --teal:        #00DCFF;
  --teal-dark:   #008FAD;
  --teal-soft:   rgba(0,220,255,.07);
  --teal-border: rgba(0,220,255,.2);
  --blue:        #0071E3;
  --border:      #D2D2D7;
  --border-light:#E8E8ED;
  --dark:        #1D1D1F;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);

  --ff:          'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-mono:     'Space Mono', 'SF Mono', 'Courier New', monospace;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --max-w:       1080px;
  --article-w:   700px;
  --pad-x:       clamp(20px, 5vw, 80px);
  --nav-h:       52px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--text);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em;
}
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 600; }

.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid var(--teal-border);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 20px;
}

.mono { font-family: var(--ff-mono); font-size: .85em; color: var(--teal-dark); }

/* ── Tag pill ─────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid var(--teal-border);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider { display: block; height: 1px; background: var(--border-light); margin: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: .88rem; font-weight: 500;
  padding: 13px 26px; border-radius: 100px;
  transition: all .25s var(--ease);
  white-space: nowrap; letter-spacing: -.01em;
}
.btn-dark {
  background: var(--dark); color: #fff;
}
.btn-dark:hover { background: #3a3a3c; transform: scale(1.02); }

.btn-teal {
  background: var(--teal); color: #fff;
  box-shadow: 0 2px 12px rgba(0,220,255,.25);
}
.btn-teal:hover { background: var(--teal-dark); transform: scale(1.02); box-shadow: 0 4px 20px rgba(0,220,255,.35); }

.btn-ghost {
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-3); transform: scale(1.02); }

.btn-amazon {
  background: linear-gradient(to bottom, #FFD814 0%, #F5A623 100%);
  color: #000000;
  font-weight: 600;
  border: 1px solid #FFA41C;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 2px 5px rgba(0,0,0,.1);
  letter-spacing: 0;
}
.btn-amazon:hover {
  background: linear-gradient(to bottom, #F0C000 0%, #E89200 100%);
  border-color: #E89200;
  transform: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 2px 5px rgba(0,0,0,.15);
}
.btn-amazon::before { content: none; }

.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--ff-mono);
  font-size: 1rem; font-weight: 700; letter-spacing: .02em;
  color: var(--text); display: flex; align-items: center; gap: 0;
}
.nav-logo .accent { color: var(--teal-dark); }
.footer-logo .accent { color: var(--teal-dark); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 400; color: var(--text-2);
  transition: color .2s; padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--teal-dark); transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-burger { display: none; flex-direction: column; gap: 4px; width: 22px; }
.nav-burger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  padding: 20px var(--pad-x) 28px;
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-6px); opacity: 0;
  pointer-events: none; transition: all .3s var(--ease); z-index: 99;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile a {
  display: block; font-size: 1rem; font-weight: 400;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  color: var(--text-2); transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(60px, 9vw, 110px) var(--pad-x) clamp(60px, 8vw, 100px);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 65% at 80% 15%, rgba(0,220,255,.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5% 85%, rgba(0,200,150,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 78% 30%, rgba(0,220,255,.05) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; gap: clamp(40px, 6vw, 72px);
}
.hero-left { flex: 1; min-width: 0; }
.hero h1 { margin: 16px 0 24px; }
.hero h1 .dim { color: var(--text-3); }
.hero-sub {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-2); font-weight: 300;
  max-width: 460px; margin: 0 0 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-metrics {
  display: flex; gap: 0; margin-top: 52px;
  border: 1px solid var(--border-light);
  border-radius: 16px; overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.hero-metric {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--border-light);
}
.hero-metric:last-child { border-right: none; }
.hero-metric strong {
  display: block;
  font-family: var(--ff-mono);
  font-size: 1.45rem; font-weight: 700;
  color: var(--teal-dark); line-height: 1; margin-bottom: 5px;
}
.hero-metric span { font-size: .7rem; color: var(--text-3); letter-spacing: .04em; }

/* ── Terminal ─────────────────────────────────────────────── */
.hero-terminal-wrap {
  margin-top: 56px; text-align: left;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-terminal {
  background: #1C1C1E; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06), 0 0 40px rgba(0,220,255,.06);
  flex-shrink: 0; width: clamp(280px, 38%, 440px);
  animation: float 7s ease-in-out infinite;
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: #2C2C2E;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #FF5F57; }
.terminal-dot:nth-child(2) { background: #FFBD2E; }
.terminal-dot:nth-child(3) { background: #28C840; }
.terminal-title {
  margin-left: auto; font-family: var(--ff-mono);
  font-size: .68rem; color: #636366; letter-spacing: .04em;
}
.terminal-body {
  padding: 20px 22px;
  font-family: var(--ff-mono); font-size: .78rem; line-height: 1.9;
  color: #8E8E93;
}
.t-prompt::before { content: '❯ '; color: var(--teal); }
.t-out { color: rgba(0,220,255,.7); padding-left: 14px; }
.t-dim { color: #48484A; padding-left: 14px; }
.t-gap { display: block; height: 4px; }
.t-cursor {
  display: inline-block; width: 7px; height: 13px;
  background: var(--teal); vertical-align: middle;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ── Numbers bar ──────────────────────────────────────────── */
.numbers-bar, .numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--dark);
}
.number-cell {
  padding: 40px 32px; border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.number-cell:last-child { border-right: none; }
.number-val {
  display: block;
  font-family: var(--ff-mono); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--teal);
  line-height: 1; margin-bottom: 8px;
}
.number-label { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.5; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: clamp(60px, 9vw, 110px) var(--pad-x); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header p { color: var(--text-3); max-width: 520px; margin-top: 10px; font-size: 1.05rem; font-weight: 300; }

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 52px) var(--pad-x) 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.page-hero-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 10% 50%, rgba(0,220,255,.05) 0%, transparent 65%);
}
.page-hero-inner { max-width: var(--article-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { margin: 14px 0 20px; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero .meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-3); font-family: var(--ff-mono);
}

/* ── Cards ────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px 24px;
  transition: all .3s var(--ease); display: block;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,220,255,.1);
  border-color: var(--teal-border);
}
.card-num {
  font-family: var(--ff-mono); font-size: .68rem;
  color: var(--text-3); letter-spacing: .1em;
  display: block; margin-bottom: 18px;
}
.card-icon { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.card h3 { font-size: 1rem; margin-bottom: 8px; }
.card p { font-size: .86rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; font-weight: 300; }
.card-link {
  font-size: .76rem; font-weight: 600; color: var(--teal-dark);
  display: flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.card:hover .card-link { gap: 9px; }
.card-link::after { content: '→'; }

/* ── Why grid ─────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--bg-2); border-radius: 16px;
  padding: 32px 24px; border: 1px solid var(--border-light);
}
.why-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: .86rem; color: var(--text-2); font-weight: 300; }

/* ── Article ──────────────────────────────────────────────── */
.article-wrap { padding: clamp(44px, 6vw, 72px) var(--pad-x); }
.article-inner { max-width: var(--article-w); margin: 0 auto; }

.article-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin: 52px 0 14px; scroll-margin-top: 70px;
}
.article-content h3 { font-size: 1.1rem; margin: 32px 0 10px; }
.article-content p {
  margin-bottom: 20px; font-size: 1.02rem;
  line-height: 1.82; color: var(--text-2); font-weight: 300;
}
.article-content strong { color: var(--text); font-weight: 600; }
.article-content a { color: var(--teal-dark); border-bottom: 1px solid var(--teal-border); transition: border-color .2s; }
.article-content a:hover { border-color: var(--teal-dark); }
.article-content ul, .article-content ol { margin: 0 0 20px 0; }
.article-content li {
  padding: 5px 0 5px 20px; position: relative;
  font-size: 1.02rem; color: var(--text-2); line-height: 1.7; font-weight: 300;
}
.article-content ul li::before {
  content: '·'; position: absolute; left: 4px;
  color: var(--teal); font-size: 1.4em; line-height: 1.2;
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li { counter-increment: ol-counter; }
.article-content ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute; left: 0;
  font-family: var(--ff-mono); font-size: .7rem;
  color: var(--teal-dark); top: 9px; font-weight: 700;
}

/* ── Boxes ────────────────────────────────────────────────── */
.box {
  border-radius: 12px; padding: 20px 24px; margin: 28px 0;
  font-size: .95rem; font-weight: 300; line-height: 1.7;
}
.box-tip {
  background: rgba(0,200,150,.06);
  border: 1px solid var(--teal-border);
}
.box-tip strong { color: var(--teal-dark); }
.box-warn {
  background: #FFF9EC; border: 1px solid #FBBF24;
}

/* ── Takeaways / Kurz erklärt ─────────────────────────────── */
.takeaways-box {
  background: var(--teal-soft);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 36px 0;
}
.takeaways-title {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 14px;
}
.takeaways-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}
.takeaways-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}
.takeaways-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .8rem;
  top: 2px;
}
.takeaways-list li:last-child { margin-bottom: 0; }

/* ── TOC ──────────────────────────────────────────────────── */
.toc {
  background: var(--bg-2); border: 1px solid var(--border-light);
  border-radius: 12px; padding: 24px 28px; margin-bottom: 44px;
}
.toc-label {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px; display: block;
}
.toc ol { counter-reset: toc-counter; }
.toc li { counter-increment: toc-counter; padding: 4px 0; }
.toc a {
  color: var(--text-2); font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--ff-mono); font-size: .68rem;
  color: var(--text-3); min-width: 20px; font-weight: 700;
}
.toc a:hover { color: var(--teal-dark); }

/* ── Spec table ───────────────────────────────────────────── */
.spec-wrap { overflow-x: auto; margin: 24px 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table thead th {
  background: var(--bg-2); padding: 13px 16px;
  text-align: left; font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); font-weight: 400;
  border-bottom: 1px solid var(--border-light);
}
.spec-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border-light);
  color: var(--text-2); vertical-align: middle; font-weight: 300;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--bg-2); }
.spec-table .hl td { color: var(--text); font-weight: 500; }
.spec-table .hl td:first-child { color: var(--teal-dark); }
.check { color: var(--teal-dark); font-weight: 700; }
.cross { color: #EF4444; }

/* ── Affiliate box ────────────────────────────────────────── */
.affiliate-box {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-md);
  margin: 36px 0;
}
.affiliate-box.top { border-color: var(--teal-border); background: linear-gradient(135deg, rgba(0,220,255,.04), var(--bg)); }
.affiliate-box-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
}
.affiliate-box h3 { font-size: 1.05rem; margin-bottom: 5px; }
.affiliate-box .sub { font-size: .86rem; color: var(--text-2); font-weight: 300; }
.affiliate-price .val {
  font-family: var(--ff-mono); font-size: 1.5rem; font-weight: 700;
  color: var(--text); display: block; line-height: 1;
}
.affiliate-price small { font-size: .7rem; color: var(--text-3); font-family: var(--ff-mono); }
.affiliate-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.affiliate-tag {
  font-size: .7rem; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
  background: var(--teal-soft); color: var(--teal-dark);
  border: 1px solid var(--teal-border);
}
.affiliate-note { font-size: .72rem; color: var(--text-3); margin-top: 12px; font-family: var(--ff-mono); }

/* ── Cost compare ─────────────────────────────────────────── */
.cost-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0;
}
.cost-cell {
  background: var(--bg-2); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 32px 24px; text-align: center;
}
.cost-cell.winner { background: rgba(0,220,255,.07); border-color: var(--teal-border); }
.cost-label-sm { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; display: block; }
.cost-num { font-family: var(--ff-mono); font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; margin-bottom: 6px; color: var(--text); }
.cost-cell.winner .cost-num { color: var(--teal-dark); }
.cost-period { font-size: .8rem; color: var(--text-3); font-weight: 300; }
.cost-badge { display: inline-block; margin-top: 14px; font-size: .72rem; font-weight: 600; padding: 5px 14px; border-radius: 100px; letter-spacing: .04em; }
.cost-cell.winner .cost-badge { background: #dcfce7; color: #166534; }
.cost-cell .cost-badge { background: #FEE2E2; color: #991B1B; }

/* ── Model grid ───────────────────────────────────────────── */
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.model-cell {
  background: var(--bg-2); border: 1px solid var(--border-light);
  border-radius: 12px; padding: 18px 16px;
  transition: border-color .25s;
}
.model-cell:hover { border-color: var(--teal-border); }
.model-name { font-weight: 600; font-size: .9rem; margin-bottom: 3px; }
.model-size { font-family: var(--ff-mono); font-size: .68rem; color: var(--text-3); margin-bottom: 10px; }
.model-bar { height: 3px; background: var(--border-light); margin-bottom: 6px; border-radius: 2px; }
.model-bar-fill { height: 100%; background: var(--teal); border-radius: 2px; }
.model-desc { font-size: .74rem; color: var(--text-3); }

/* ── Steps ────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { display: flex; gap: 0; border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm); }
.step-num {
  background: var(--dark); color: var(--teal);
  font-family: var(--ff-mono); font-size: 1rem; font-weight: 700;
  min-width: 60px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content { padding: 22px 24px; }
.step-content h3 { margin-bottom: 6px; font-size: .95rem; }
.step-content p { font-size: .88rem; color: var(--text-2); margin-bottom: 12px; font-weight: 300; }
.step-code {
  background: #1C1C1E; border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--ff-mono); font-size: .75rem;
  color: rgba(0,220,255,.8); line-height: 1.8;
}
.step-code .comment { color: #48484A; }

/* ── Mic cards ────────────────────────────────────────────── */
.mic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mic-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px 22px;
  box-shadow: var(--shadow-sm); position: relative;
}
.mic-card.top { border-color: var(--teal-border); box-shadow: 0 4px 24px rgba(0,220,255,.12); }
.mic-card.top::before {
  content: '★ Empfehlung';
  position: absolute; top: -1px; right: 20px;
  background: var(--teal); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 8px 8px;
}
.mic-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.mic-name { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.mic-price-tag { font-family: var(--ff-mono); color: var(--teal-dark); font-size: .82rem; margin-bottom: 14px; font-weight: 700; }
.mic-spec-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border-light); font-size: .8rem; }
.mic-spec-row span:first-child { color: var(--text-3); font-weight: 300; }
.mic-spec-row span:last-child { color: var(--text); font-family: var(--ff-mono); font-size: .74rem; }
.mic-specs { margin-bottom: 16px; }
.mic-verdict { font-size: .82rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; font-weight: 300; }

/* ── Cost abo grid ────────────────────────────────────────── */
.abo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 24px 0; }
.abo-cell { background: var(--bg-2); border: 1px solid var(--border-light); border-radius: 12px; padding: 24px 16px; text-align: center; }
.abo-cell.local { background: rgba(0,220,255,.07); border-color: var(--teal-border); }
.abo-name { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; display: block; }
.abo-price { font-family: var(--ff-mono); font-size: 1.5rem; font-weight: 700; color: var(--text); display: block; }
.abo-cell.local .abo-price { color: var(--teal-dark); }
.abo-mo { font-size: .74rem; color: var(--text-3); margin-bottom: 8px; display: block; }
.abo-year { font-size: .8rem; font-family: var(--ff-mono); color: var(--text-2); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { margin: 24px 0; }
.timeline-row { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; margin-bottom: 10px; }
.timeline-year { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-3); text-align: right; }
.timeline-bar-wrap { height: 28px; background: var(--bg-2); border-radius: 6px; overflow: hidden; border: 1px solid var(--border-light); }
.timeline-bar { height: 100%; display: flex; align-items: center; padding-left: 10px; border-radius: 6px; }
.timeline-bar span { font-family: var(--ff-mono); font-size: .68rem; color: #fff; font-weight: 700; white-space: nowrap; }
.bar-local { background: var(--teal); }
.bar-abo { background: #EF4444; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); background: var(--bg); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 18px 22px;
  text-align: left; font-size: .92rem; font-weight: 500;
  color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--teal-dark); }
.faq-icon { color: var(--teal-dark); font-family: var(--ff-mono); font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
  font-size: .9rem; color: var(--text-2); line-height: 1.75; font-weight: 300;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 4px 22px 20px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border-light);
  padding: 56px var(--pad-x) 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 44px; border-bottom: 1px solid var(--border-light); margin-bottom: 28px;
}
.footer-logo { font-family: var(--ff-mono); font-size: .95rem; font-weight: 700; display: block; margin-bottom: 12px; color: var(--text); }
.footer-logo .accent { color: var(--teal-dark); }
.footer-brand p { font-size: .84rem; color: var(--text-3); line-height: 1.75; max-width: 280px; font-weight: 300; }
.footer-disclaimer { font-size: .72rem; color: var(--text-3); margin-top: 14px; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--ff-mono); font-size: .65rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: .84rem; color: var(--text-2); margin-bottom: 8px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--teal-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: var(--text-3); flex-wrap: wrap; gap: 10px;
}

/* ── Reading progress ────────────────────────────────────── */
.progress-bar {
  position: fixed; top: var(--nav-h); left: 0; z-index: 200;
  height: 2px; width: 0%;
  background: linear-gradient(to right, var(--teal), #00FF88);
  transition: width .15s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Scroll reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .abo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-terminal { width: 360px; }
}
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 48px; }
  .hero-terminal { width: 100%; animation: none; }
  .hero-metrics { flex-direction: column; border-radius: 12px; }
  .hero-metric { border-right: none; border-bottom: 1px solid var(--border-light); }
  .hero-metric:last-child { border-bottom: none; }
  .numbers-bar, .numbers-grid { grid-template-columns: 1fr; }
  .number-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .number-cell:last-child { border-bottom: none; }
  .cost-compare { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .mic-grid { grid-template-columns: 1fr; }
  .abo-grid { grid-template-columns: 1fr 1fr; }
  .step { flex-direction: column; }
  .step-num { min-width: 100%; padding: 12px; justify-content: flex-start; padding-left: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: block; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .abo-grid { grid-template-columns: 1fr; }
  .affiliate-box-top { flex-direction: column; }
}
