/* ============ Tokens ============ */
:root {
  --bg: #070A10;
  --text: #E7EEF1;
  --t: #34E0D2;            /* teal accent */
  --t-2: #1FC6B8;
  --t-3: #7CF2E8;
  --t-deep: #11796F;
  --muted-1: #A8B4BF;
  --muted-2: #9AA6B1;
  --muted-3: #8893A0;
  --muted-4: #7E8A97;
  --muted-5: #6E7A87;
  --card: rgba(255,255,255,0.035);
  --card-border: rgba(255,255,255,0.08);
  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
::selection { background: var(--t); color: #04121A; }
h1, h2, h3 { font-family: 'Space Grotesk', system-ui, sans-serif; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--t); color: #04121A; padding: 0.6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }

/* ============ Ambient glows ============ */
.glow-wrap { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.glow { position: absolute; }
.glow-1 { top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; background: radial-gradient(ellipse at center, rgba(52,224,210,0.14), transparent 65%); }
.glow-2 { top: 38%; left: -160px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(52,224,210,0.07), transparent 60%); }

.page { position: relative; z-index: 1; }

/* ============ Header ============ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(7,10,16,0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--t), var(--t-deep));
  display: grid; place-items: center; box-shadow: 0 0 18px rgba(52,224,210,0.45);
  color: #04121A; font-family: 'Space Grotesk'; font-weight: 700; font-size: 16px;
}
.brand-id { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: 'Space Grotesk'; font-weight: 700; letter-spacing: 0.01em; font-size: 15px; }
.brand-sub { font-size: 11px; letter-spacing: 0.06em; color: var(--muted-4); }
.nav { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px); font-size: 14px; }
.nav a { color: #B7C2CC; text-decoration: none; transition: color 0.2s; }
.nav a:hover { color: var(--t); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #04121A !important; background: var(--t);
  padding: 10px 18px; border-radius: 999px; font-weight: 600;
  transition: box-shadow 0.25s, transform 0.15s;
}
.nav-cta:hover { box-shadow: 0 0 24px rgba(52,224,210,0.6); transform: translateY(-1px); }

/* ============ Hero ============ */
.hero { position: relative; padding: clamp(64px,9vw,140px) clamp(20px,5vw,72px) clamp(56px,7vw,100px); max-width: var(--wrap); margin: 0 auto; }
.hero-flow { position: absolute; top: -10px; right: clamp(-30px,0vw,12px); width: clamp(200px,36vw,440px); height: auto; opacity: 0.55; pointer-events: none; }
.hero-flow-lines { filter: drop-shadow(0 0 6px rgba(52,224,210,0.5)); }
.hero-flow-nodes { filter: drop-shadow(0 0 5px rgba(52,224,210,0.9)); }
.hero-inner { position: relative; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border: 1px solid rgba(52,224,210,0.35); border-radius: 999px;
  background: rgba(52,224,210,0.06); font-size: 12.5px; letter-spacing: 0.04em;
  color: #9FF0E7; margin: 0 0 30px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--t); box-shadow: 0 0 10px var(--t); }
.hero h1 {
  font-family: 'Space Grotesk'; font-weight: 700;
  font-size: clamp(2.7rem, 7.2vw, 6rem); line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 28px; max-width: 16ch; text-wrap: balance;
}
.grad { background: linear-gradient(120deg, var(--t), var(--t-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(1.05rem,1.5vw,1.3rem); line-height: 1.6; color: var(--muted-1); max-width: 54ch; margin: 0 0 40px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, var(--t), var(--t-2)); color: #04121A;
  text-decoration: none; font-weight: 700; font-size: 1.05rem; padding: 18px 32px;
  border-radius: 999px; box-shadow: 0 0 28px rgba(52,224,210,0.4);
  transition: box-shadow 0.25s, transform 0.15s;
}
.btn-primary .arrow { font-family: 'Space Grotesk'; }
.btn-primary:hover { box-shadow: 0 0 46px rgba(52,224,210,0.75); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px; color: var(--text);
  text-decoration: none; font-weight: 600; padding: 18px 26px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16); transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(52,224,210,0.6); background: rgba(52,224,210,0.06); }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin: 42px 0 0; padding: 0; font-size: 13.5px; color: var(--muted-4); }
.trust li::before { content: "● "; color: var(--muted-4); }

/* ============ Section heads ============ */
.sec { padding: clamp(40px,5vw,80px) clamp(20px,5vw,72px); max-width: var(--wrap); margin: 0 auto; }
.sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.sec-num { font-family: 'Space Grotesk'; font-size: 13px; letter-spacing: 0.12em; color: var(--t); text-transform: uppercase; }
.sec-rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(52,224,210,0.5), transparent); }

/* ============ Kennzahlen ============ */
.pool-panel {
  background: linear-gradient(160deg, rgba(52,224,210,0.12), rgba(52,224,210,0.02));
  border: 1px solid rgba(52,224,210,0.28); border-radius: 18px;
  padding: clamp(26px,4vw,44px); display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 22px; margin-bottom: 16px;
}
.pool-label { font-size: 13px; letter-spacing: 0.04em; color: #9FF0E7; }
.pool-num { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(3.2rem,8vw,5.4rem); line-height: 0.92; letter-spacing: -0.02em; color: #fff; margin-top: 10px; display: flex; align-items: baseline; }
.pool-num .plus { color: var(--t); }
.pool-text { font-size: 14px; line-height: 1.65; color: #9FB4B0; max-width: 34ch; margin: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr)); gap: 16px; }
.stat {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 30px; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; transition: border-color 0.25s, background 0.25s;
}
.stat:hover { border-color: rgba(52,224,210,0.4); background: rgba(52,224,210,0.05); }
.stat-label { font-size: 13px; letter-spacing: 0.04em; color: var(--muted-3); }
.stat-num { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; letter-spacing: -0.02em; color: #fff; }
.stat-num .unit { color: var(--t); }
.stat-sub { margin-top: 8px; font-size: 13.5px; color: var(--muted-4); }

/* ============ Manifest ============ */
.manifest { padding: clamp(40px,6vw,90px) clamp(20px,5vw,72px); max-width: 980px; margin: 0 auto; text-align: center; }
.manifest p { font-family: 'Space Grotesk'; font-weight: 500; font-size: clamp(1.5rem,3.4vw,2.5rem); line-height: 1.3; letter-spacing: -0.015em; color: var(--text); text-wrap: balance; }
.manifest .accent { color: var(--t); }

/* ============ Ablauf ============ */
.grid-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,260px),1fr)); gap: 16px; }
.step {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 30px; min-height: 210px; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(52,224,210,0.4); }
.step-code { font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.2rem; color: rgba(52,224,210,0.55); }
.step h3 { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.3rem; margin: 0 0 10px; color: #fff; }
.step p { font-size: 0.98rem; line-height: 1.55; color: var(--muted-2); }

/* ============ Positionen ============ */
.grid-pos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px),1fr)); gap: 16px; }
.pos {
  position: relative; background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 30px; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.pos:hover { transform: translateY(-5px); border-color: rgba(52,224,210,0.45); background: rgba(52,224,210,0.05); }
.pos-top { display: flex; align-items: center; justify-content: space-between; }
.pos-id { font-family: 'Space Grotesk'; font-size: 13px; color: var(--t); letter-spacing: 0.06em; }
.pos-tag { font-size: 11px; letter-spacing: 0.1em; color: var(--muted-5); text-transform: uppercase; }
.pos h3 { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.4rem; line-height: 1.12; margin: 0 0 12px; color: #fff; text-wrap: balance; }
.pos h3 a { color: inherit; text-decoration: none; }
.pos h3 a:hover { color: var(--t); }
.pos p { font-size: 0.97rem; line-height: 1.55; color: var(--muted-2); margin: 0; }
.pos-cta { background: linear-gradient(160deg, rgba(52,224,210,0.10), rgba(52,224,210,0.02)); border-color: rgba(52,224,210,0.3); }
.pos-cta a { display: inline-block; margin-top: 12px; color: var(--t); font-weight: 600; text-decoration: none; }
.pos-cta a:hover { color: #fff; }

/* ============ Anfrage ============ */
.anfrage-panel {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(52,224,210,0.25);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(8px);
}
.anfrage-glow { position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(52,224,210,0.18), transparent 65%); pointer-events: none; }
.anfrage-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px),1fr)); gap: clamp(28px,4vw,56px); padding: clamp(28px,4vw,56px); align-items: start; }
.anfrage-intro .sec-num { display: block; margin-bottom: 14px; }
.anfrage-intro h2 { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(1.9rem,4vw,3rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 20px; color: #fff; text-wrap: balance; }
.anfrage-intro > p { font-size: 1.05rem; line-height: 1.6; color: var(--muted-1); max-width: 42ch; margin: 0 0 26px; }
.anfrage-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; font-size: 14px; color: var(--muted-2); }
.anfrage-points li { display: flex; gap: 10px; }
.anfrage-points li span { color: var(--t); }

.form { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,200px),1fr)); gap: 15px; align-content: start; }
.span-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 12px; letter-spacing: 0.03em; color: var(--muted-3); }
.field input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  color: var(--text); padding: 13px 15px; font-family: 'Hanken Grotesk', sans-serif; font-size: 0.98rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input::placeholder { color: var(--muted-5); }
.field input:focus { border-color: var(--t); box-shadow: 0 0 0 3px rgba(52,224,210,0.15); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted-3); line-height: 1.5; }
.check input { margin-top: 2px; accent-color: var(--t); }
.submit {
  margin-top: 6px; background: linear-gradient(120deg, var(--t), var(--t-2)); color: #04121A;
  border: none; border-radius: 999px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.02rem;
  padding: 17px; cursor: pointer; box-shadow: 0 0 24px rgba(52,224,210,0.4);
  transition: box-shadow 0.25s, transform 0.15s;
}
.submit:hover { box-shadow: 0 0 44px rgba(52,224,210,0.7); transform: translateY(-1px); }
.hp { position: absolute; left: -9999px; }
.success { text-align: center; padding: 1rem; }
.success-mark { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--t); color: #04121A; font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.success h3 { font-family: 'Space Grotesk'; font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.success p { color: var(--muted-1); }

/* ============ FAQ ============ */
.faq-title { font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(1.5rem,3vw,2.2rem); letter-spacing: -0.015em; margin: 0 0 1.6rem; color: #fff; }
.faq-list { max-width: 860px; }
.faq-list details { border-bottom: 1px solid var(--card-border); padding: 1.15rem 0; }
.faq-list summary { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.08rem; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--t); font-size: 1.4rem; line-height: 1; transition: transform 0.25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted-2); margin-top: 0.8rem; line-height: 1.6; max-width: 70ch; }

/* ============ Footer ============ */
.ftr { border-top: 1px solid rgba(255,255,255,0.07); padding: clamp(34px,4vw,56px) clamp(20px,5vw,72px); max-width: var(--wrap); margin: 0 auto; }
.ftr-top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.ftr-brand { max-width: 32ch; }
.ftr-name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 16px; margin-bottom: 10px; color: #fff; }
.ftr-brand p { font-size: 13.5px; line-height: 1.7; color: var(--muted-3); }
.ftr-cols { display: flex; gap: clamp(28px,5vw,64px); flex-wrap: wrap; font-size: 14px; }
.ftr-col { display: flex; flex-direction: column; gap: 10px; }
.ftr-col > span { color: #fff; font-weight: 600; }
.ftr-col a { color: var(--muted-3); text-decoration: none; transition: color 0.2s; }
.ftr-col a:hover { color: var(--t); }
.ftr-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; color: var(--muted-5); }

/* ============ Sticky CTA (mobile) ============ */
.sticky-cta { display: none; }

/* ============ Responsive ============ */
@media (max-width: 720px) {
  .nav a:not(.nav-cta) { display: none; }
  .sticky-cta {
    display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
    text-align: center; background: linear-gradient(120deg, var(--t), var(--t-2)); color: #04121A;
    padding: 15px; border-radius: 14px; font-family: 'Space Grotesk'; font-weight: 700; text-decoration: none;
    box-shadow: 0 8px 30px rgba(52,224,210,0.4);
  }
}

/* ============ Subpages (Positionen / Recht) ============ */
.breadcrumb { max-width: var(--wrap); margin: 0 auto; padding: 18px clamp(20px,5vw,72px) 0; font-size: 13px; color: var(--muted-4); }
.breadcrumb a { color: var(--muted-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--t); }
.subhero { position: relative; max-width: var(--wrap); margin: 0 auto; padding: clamp(40px,6vw,90px) clamp(20px,5vw,72px) clamp(24px,3vw,48px); }
.subhero h1 { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(2.1rem,5.2vw,4rem); line-height: 1.02; letter-spacing: -0.02em; margin: 14px 0 22px; max-width: 20ch; text-wrap: balance; }
.subhero .lede { margin-bottom: 30px; }
.prose { max-width: 760px; margin: 0 auto; padding: clamp(20px,3vw,40px) clamp(20px,5vw,72px); }
.prose h2 { font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(1.4rem,3vw,2rem); letter-spacing: -0.015em; color: #fff; margin: 2.2rem 0 1rem; }
.prose h3 { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.15rem; color: #fff; margin: 1.6rem 0 0.5rem; }
.prose p { color: var(--muted-1); line-height: 1.7; margin: 0 0 1rem; }
.prose ul { color: var(--muted-1); line-height: 1.7; padding-left: 0; list-style: none; margin: 0 0 1rem; }
.prose ul li { position: relative; padding-left: 1.7rem; margin-bottom: 0.5rem; }
.prose ul li::before { content: "▸"; position: absolute; left: 0; color: var(--t); }
.prose a { color: var(--t); }
.cta-band { max-width: var(--wrap); margin: clamp(30px,4vw,60px) auto; padding: clamp(28px,4vw,48px) clamp(20px,5vw,72px); border-radius: 26px; border: 1px solid rgba(52,224,210,0.25); background: linear-gradient(160deg, rgba(52,224,210,0.12), rgba(52,224,210,0.02)); text-align: center; }
.cta-band h2 { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(1.5rem,3.4vw,2.4rem); color: #fff; letter-spacing: -0.015em; margin: 0 0 18px; text-wrap: balance; }
.cta-band .btn-primary { display: inline-flex; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
