/* 10x CEO — geteilte Styles für index / impressum / datenschutz
   Design-System: Dunkles Studio, Amber-Akzent, IBM Plex + Instrument Serif */

:root {
  --ink: #0b0b0d;
  --ink-2: #111114;
  --navy: #0d1120;           /* Hintergrund des Cover-Arts */
  --paper: #ece7dd;
  --paper-dim: #9b968c;
  --amber: #e8a33d;
  --amber-hot: #ffc468;
  --line: rgba(236, 231, 221, 0.14);
  --mono: "IBM Plex Mono", monospace;
  --sans: "IBM Plex Sans", sans-serif;
  --serif: "Instrument Serif", serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Korn-Textur über allem — Studio-Atmosphäre statt flachem Schwarz */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 50;
}
::selection { background: var(--amber); color: var(--ink); }

.shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Topbar ---------- */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.wordmark { font-family: var(--mono); font-size: 15px; letter-spacing: 0.02em; }
.wordmark b { color: var(--amber); font-weight: 500; }
.wordmark a { color: inherit; text-decoration: none; }
.status {
  font-family: var(--mono); font-size: 11px; color: var(--paper-dim);
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- Hero ---------- */
.hero { padding: 110px 0 80px; position: relative; }
/* Amber-Glut hinter der Headline — einziger Lichtfleck der Seite */
.hero::before {
  content: "";
  position: absolute; top: -120px; left: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232,163,61,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.kicker {
  font-family: var(--mono); font-size: 12px; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 28px;
  opacity: 0; animation: rise 0.7s ease 0.1s forwards;
}
h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 1.04; letter-spacing: -0.01em;
  max-width: 17ch;
  opacity: 0; animation: rise 0.7s ease 0.25s forwards;
}
h1 em { font-style: italic; color: var(--amber-hot); }
.hero p.lede {
  margin-top: 30px; max-width: 56ch;
  font-size: 18px; color: var(--paper-dim);
  opacity: 0; animation: rise 0.7s ease 0.4s forwards;
}
.hero p.lede strong { color: var(--paper); font-weight: 500; }
.meta-line {
  margin-top: 26px;
  font-family: var(--mono); font-size: 12px; color: var(--paper-dim);
  display: flex; gap: 22px; flex-wrap: wrap;
  opacity: 0; animation: rise 0.7s ease 0.55s forwards;
}
.meta-line span::before { content: "▸ "; color: var(--amber); }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Abonnieren-Strip ---------- */
.sub-strip {
  margin-top: 56px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 22px 26px;
  opacity: 0; animation: rise 0.7s ease 0.65s forwards;
}
.sub-strip .cover {
  width: 96px; height: 96px; flex: 0 0 auto;
  border: 1px solid var(--line);
  display: block;
}
.sub-strip .sub-body { flex: 1 1 320px; }
.sub-strip .sub-label {
  font-family: var(--mono); font-size: 11px; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 14px;
}
.sub-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono); font-size: 13px;
  color: var(--paper); text-decoration: none;
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.btn:hover { border-color: var(--amber); color: var(--amber-hot); }
.btn.primary { background: var(--amber); border-color: var(--amber); color: var(--ink); font-weight: 500; }
.btn.primary:hover { background: var(--amber-hot); border-color: var(--amber-hot); color: var(--ink); }
.btn.soon {
  color: var(--paper-dim); cursor: default;
  border-style: dashed;
}
.btn.soon:hover { border-color: var(--line); color: var(--paper-dim); }
.btn.soon .tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--amber); border: 1px solid var(--line);
  padding: 2px 6px; margin-left: 4px;
}

/* ---------- Newsletter ---------- */
.capture {
  margin-top: 48px;
  opacity: 0; animation: rise 0.7s ease 0.75s forwards;
}
.capture form { display: flex; max-width: 520px; border: 1px solid var(--line); }
.capture input {
  flex: 1; padding: 16px 18px;
  background: var(--ink-2); border: none; outline: none;
  color: var(--paper); font-family: var(--mono); font-size: 14px;
}
.capture input::placeholder { color: var(--paper-dim); }
.capture input:focus { background: #16161a; }
.capture button {
  padding: 16px 26px; cursor: pointer;
  background: var(--amber); border: none;
  color: var(--ink); font-family: var(--mono); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.15s ease;
}
.capture button:hover { background: var(--amber-hot); }
.capture .fine {
  margin-top: 12px; font-family: var(--mono);
  font-size: 11px; color: var(--paper-dim);
}
.capture .pending {
  max-width: 520px; border: 1px dashed var(--line);
  padding: 16px 18px;
  font-family: var(--mono); font-size: 13px; color: var(--paper-dim);
}
.capture .pending b { color: var(--amber); font-weight: 500; }

/* ---------- Sektionen ---------- */
section { padding: 90px 0; border-top: 1px solid var(--line); }
.sec-label {
  font-family: var(--mono); font-size: 11px; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 36px;
}
.sec-label::before { content: "// "; color: var(--paper-dim); }

/* ---------- Manifest ---------- */
.manifest { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tenet {
  background: var(--ink); padding: 28px 26px;
  transition: background 0.2s ease;
}
.tenet:hover { background: var(--ink-2); }
.tenet .num { font-family: var(--mono); font-size: 11px; color: var(--amber); }
.tenet h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 10px 0 6px; }
.tenet p { font-size: 14px; color: var(--paper-dim); }

/* ---------- Hosts — asymmetrisch versetzt ---------- */
.hosts { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.host:last-child { transform: translateY(44px); }
.host .role { font-family: var(--mono); font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.18em; }
.host h3 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 12px 0 4px; }
.host h3 em { font-style: italic; color: var(--amber-hot); }
.host p { color: var(--paper-dim); font-size: 15px; max-width: 38ch; }
.host .host-links { margin-top: 14px; display: none; gap: 10px; }
.host .host-links a {
  font-family: var(--mono); font-size: 12px; color: var(--paper-dim);
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.host .host-links a:hover { color: var(--amber-hot); border-color: var(--amber); }
.vs {
  text-align: center; margin: 64px 0 0;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--paper-dim);
}
.vs b { color: var(--paper); font-weight: 400; }

/* ---------- Pipeline-Terminal ---------- */
.terminal {
  border: 1px solid var(--line); background: var(--ink-2);
  font-family: var(--mono); font-size: 13px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.term-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  color: var(--paper-dim); font-size: 11px;
}
.term-head i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: inline-block; }
.term-body { padding: 22px 20px; line-height: 2.05; }
.term-body .row { opacity: 0; animation: rise 0.4s ease forwards; }
.term-body .row:nth-child(1) { animation-delay: 0.2s; }
.term-body .row:nth-child(2) { animation-delay: 0.7s; }
.term-body .row:nth-child(3) { animation-delay: 1.2s; }
.term-body .row:nth-child(4) { animation-delay: 1.7s; }
.term-body .row:nth-child(5) { animation-delay: 2.2s; }
.term-body .row:nth-child(6) { animation-delay: 2.9s; }
.ok { color: var(--amber); }
.dim { color: var(--paper-dim); }
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--amber); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.pipeline-note { margin-top: 26px; color: var(--paper-dim); font-size: 15px; max-width: 62ch; }
.pipeline-note strong { color: var(--paper); font-weight: 500; }

/* ---------- Intro-Sting ---------- */
.sting {
  display: block; width: 100%; max-width: 680px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  margin-bottom: 64px;
  background: var(--navy);
}

/* ---------- Episoden ---------- */
.ep {
  display: flex; gap: 40px; align-items: baseline; flex-wrap: wrap;
}
.ep .no {
  font-family: var(--serif); font-size: clamp(90px, 14vw, 170px);
  line-height: 0.85; color: transparent;
  -webkit-text-stroke: 1px var(--amber);
}
.ep h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; max-width: 22ch; }
.ep p { color: var(--paper-dim); margin-top: 12px; max-width: 52ch; font-size: 15px; }
.ep .ep-meta {
  margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.ep-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 56px; }
.ep-row {
  display: flex; align-items: baseline; gap: 26px;
  background: var(--ink); padding: 24px 26px;
  text-decoration: none; color: inherit;
  transition: background 0.2s ease;
}
a.ep-row:hover { background: var(--ink-2); }
.ep-row .ep-no { font-family: var(--mono); font-size: 13px; color: var(--amber); flex: 0 0 44px; }
.ep-row .ep-title { font-family: var(--serif); font-size: 22px; font-weight: 400; flex: 1; }
.ep-row .ep-date { font-family: var(--mono); font-size: 11px; color: var(--paper-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.ep-row .ep-play { font-family: var(--mono); font-size: 12px; color: var(--amber); }
[hidden] { display: none !important; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 60px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; color: var(--paper-dim);
}
footer a { color: var(--paper-dim); }
footer a:hover { color: var(--amber-hot); }

/* ---------- Legal-Seiten (Impressum / Datenschutz) ---------- */
.legal { max-width: 760px; padding: 80px 0 40px; }
.legal h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  max-width: none; margin-bottom: 40px;
  opacity: 1; animation: none;
}
.legal h2 {
  font-family: var(--mono); font-weight: 500; font-size: 13px;
  color: var(--amber); text-transform: uppercase; letter-spacing: 0.18em;
  margin: 40px 0 12px;
}
.legal p, .legal li { color: var(--paper-dim); font-size: 15px; margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--paper); }
.legal address { font-style: normal; color: var(--paper); line-height: 1.8; }
.todo {
  color: var(--amber-hot);
  border-bottom: 1px dashed var(--amber);
  font-family: var(--mono); font-size: 0.92em;
}

@media (max-width: 720px) {
  .hosts { grid-template-columns: 1fr; }
  .host:last-child { transform: none; }
  .capture form { flex-direction: column; }
  .sub-strip { align-items: flex-start; }
  .ep-row { flex-wrap: wrap; gap: 8px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; }
}
