/* ============================================================
   hey contact heroes — Design System 2030
   ============================================================ */
@font-face {
  font-family: 'Aspekta';
  src: url('../fonts/AspektaVF.woff2') format('woff2-variations');
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  --teal: #1fc9ca;
  --teal-deep: #19a4a5;
  --magenta: #d42fa5;
  --magenta-deep: #a21b80;
  --orange: #f49a1c;
  --bg: #070a12;
  --bg-2: #0b0f1c;
  --ink: #eef2f9;
  --ink-dim: #9aa5b8;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.09);
  --grad-brand: linear-gradient(100deg, var(--teal) 0%, var(--magenta) 55%, var(--orange) 110%);
  --radius: 22px;
  --maxw: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Aspekta', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 380;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--magenta); color: #fff; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Aurora background ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(162, 27, 128, .22), transparent 60%),
    radial-gradient(800px 600px at -10% 20%, rgba(25, 164, 165, .18), transparent 60%),
    radial-gradient(700px 500px at 60% 110%, rgba(244, 154, 28, .10), transparent 60%),
    var(--bg);
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 26s var(--ease) infinite alternate;
}
.aurora::before { width: 46vw; height: 46vw; left: -12vw; top: 8vh; background: radial-gradient(circle, rgba(31,201,202,.28), transparent 65%); }
.aurora::after { width: 40vw; height: 40vw; right: -10vw; top: 42vh; background: radial-gradient(circle, rgba(212,47,165,.24), transparent 65%); animation-delay: -13s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6vw, -7vh, 0) scale(1.18); }
}
.noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 70px 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 640; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }

h1, h2, h3 { font-weight: 780; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 840; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 20px; }
h3 { font-size: 1.22rem; margin-bottom: 10px; font-weight: 680; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-dim); max-width: 46ch; }
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 28px)); z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 14px 10px 18px; border-radius: 60px;
  background: rgba(10, 13, 24, .55); border: 1px solid var(--stroke);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(8, 10, 18, .82); box-shadow: 0 12px 40px rgba(0, 0, 0, .45); }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 9px 15px; border-radius: 40px; font-size: .93rem; font-weight: 480; color: var(--ink-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: var(--glass-strong); }
.nav-links a.active { color: #fff; background: var(--glass-strong); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex; border: 1px solid var(--stroke); border-radius: 40px; overflow: hidden; font-size: .78rem; font-weight: 600;
}
.lang-switch a { padding: 6px 11px; color: var(--ink-dim); }
.lang-switch a.on { background: var(--glass-strong); color: #fff; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 50px; font-weight: 640; font-size: .98rem;
  border: 0; cursor: pointer; font-family: inherit;
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 8px 30px rgba(212, 47, 165, .35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(212, 47, 165, .5); }
.btn-ghost {
  background: var(--glass); color: #fff; border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: var(--glass-strong); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 150px 0 80px; position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero .lead { margin: 26px 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img.main {
  max-height: 560px; width: auto; position: relative; z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-22px) rotate(1.5deg); }
}
.hero-art .halo {
  position: absolute; inset: 10% 5%; border-radius: 50%; z-index: 1;
  background: conic-gradient(from 120deg, rgba(31,201,202,.35), rgba(212,47,165,.35), rgba(244,154,28,.3), rgba(31,201,202,.35));
  filter: blur(70px); animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.chip-float {
  position: absolute; z-index: 3; padding: 10px 16px; border-radius: 16px;
  background: rgba(12, 16, 28, .75); border: 1px solid var(--stroke);
  backdrop-filter: blur(12px); font-size: .82rem; font-weight: 560;
  display: flex; align-items: center; gap: 8px;
  animation: float 7s ease-in-out infinite;
}
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.chip-float.c1 { top: 12%; left: -2%; animation-delay: -2s; }
.chip-float.c2 { bottom: 20%; right: -4%; animation-delay: -4s; }
.chip-float.c3 { top: 55%; left: -10%; animation-delay: -1s; }
.chip-float .dot.m { background: var(--magenta); box-shadow: 0 0 12px var(--magenta); }
.chip-float .dot.o { background: var(--orange); box-shadow: 0 0 12px var(--orange); }

/* ---------- Radio ---------- */
.radio {
  position: fixed; top: calc(var(--nav-h) + 26px); right: 16px; z-index: 99;
  display: flex; align-items: center; gap: 11px;
  padding: 9px 14px 9px 9px; border-radius: 50px;
  background: rgba(10, 13, 24, .72); border: 1px solid var(--stroke);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.radio-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer; flex-shrink: 0;
  background: var(--grad-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.radio-btn:hover { transform: scale(1.1); }
.radio-meta { display: flex; flex-direction: column; line-height: 1.25; }
.radio-name { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.radio-track { font-size: .74rem; color: var(--ink-dim); white-space: nowrap; }
.radio.playing .radio-track::after { content: " ♪"; color: var(--orange); }
.radio-vol {
  -webkit-appearance: none; appearance: none; width: 74px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.18); outline: none; cursor: pointer;
}
.radio-vol::-webkit-slider-thumb {
  -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px rgba(31,201,202,.7); cursor: pointer;
}
.radio-vol::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--teal); cursor: pointer; }
@media (max-width: 720px) {
  .radio { top: auto; bottom: 14px; right: 12px; padding: 8px 12px 8px 8px; }
  .radio-vol { width: 52px; }
  .radio-name { display: none; }
}

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); padding: 18px 0; background: rgba(255,255,255,.015); }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: .95rem; font-weight: 560; color: var(--ink-dim); white-space: nowrap; display: flex; align-items: center; gap: 14px; }
.ticker-track span::after { content: "✦"; color: var(--orange); font-size: .7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  padding: 30px 24px; border-radius: var(--radius); text-align: center;
  background: var(--glass); border: 1px solid var(--stroke);
}
.stat .num { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 850; letter-spacing: -.02em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: .88rem; color: var(--ink-dim); margin-top: 6px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid.g2 { grid-template-columns: repeat(2, 1fr); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 34px 30px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--stroke);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(31, 201, 202, .4); background: var(--glass-strong); }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .35s;
}
.card:hover::before { opacity: 1; }
.card p { color: var(--ink-dim); font-size: .96rem; }
.card .icon {
  width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(31,201,202,.18), rgba(212,47,165,.18));
  border: 1px solid var(--stroke);
}
.card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: .9rem; font-weight: 600; color: var(--teal); }

/* tag list inside cards */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tags span {
  font-size: .76rem; font-weight: 560; padding: 5px 12px; border-radius: 30px;
  background: rgba(255,255,255,.05); border: 1px solid var(--stroke); color: var(--ink-dim);
}

/* ---------- Model cards (delivery) ---------- */
.model { text-align: left; }
.model .flagline { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 640; margin-bottom: 12px; }
.model.on .flagline { color: var(--teal); }
.model.near .flagline { color: var(--orange); }
.model.off .flagline { color: var(--magenta); }
.model.hyb .flagline { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.model ul { margin-top: 14px; }
.model ul li { font-size: .92rem; color: var(--ink-dim); padding: 7px 0 7px 26px; position: relative; }
.model ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .art { position: relative; }
.split .art img { border-radius: var(--radius); }
.split .art .heroimg { border-radius: 0; max-height: 520px; margin: 0 auto; filter: drop-shadow(0 24px 48px rgba(0,0,0,.5)); }
.split .art::before {
  content: ""; position: absolute; inset: 8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,201,202,.25), transparent 70%); filter: blur(50px);
}
.checklist li { padding: 10px 0 10px 34px; position: relative; color: var(--ink-dim); }
.checklist li strong { color: var(--ink); font-weight: 640; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 50%; font-size: .72rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--magenta)); color: #fff; font-weight: 800;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--stroke); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 2.4rem; font-weight: 880; letter-spacing: -.03em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px;
}
.step p { color: var(--ink-dim); font-size: .92rem; }

/* ---------- Quote / band ---------- */
.band {
  border-radius: calc(var(--radius) + 8px); padding: 70px 50px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(25,164,165,.16), rgba(162,27,128,.18) 50%, rgba(244,154,28,.14));
  border: 1px solid var(--stroke);
}
.band h2 { max-width: 22ch; margin: 0 auto 18px; }
.band .lead { margin: 0 auto 34px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.member { text-align: center; }
.member img {
  border-radius: 50%; width: 100%; max-width: 150px; margin: 0 auto 12px;
  border: 3px solid transparent;
  background: var(--grad-brand) border-box;
  transition: transform .3s var(--ease);
}
.member:hover img { transform: scale(1.07) rotate(2deg); }
.member .name { font-weight: 640; font-size: .95rem; }
.member .role { font-size: .8rem; color: var(--ink-dim); }

/* ---------- Testimonials ---------- */
.testimonial { display: flex; flex-direction: column; gap: 22px; }
.testimonial blockquote {
  font-size: 1.02rem; line-height: 1.7; color: var(--ink);
  font-style: italic; position: relative; padding-top: 34px;
}
.testimonial blockquote::before {
  content: "„"; position: absolute; top: -14px; left: -6px;
  font-size: 4rem; font-style: normal; line-height: 1;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial .who img { width: 54px; height: 54px; border-radius: 50%; }
.testimonial .who .name { font-weight: 680; font-size: .95rem; }
.testimonial .who .firm { font-size: .82rem; color: var(--ink-dim); }

/* ---------- Fieldset / Checkbox-Gruppen ---------- */
fieldset { border: 1px solid var(--stroke); border-radius: 14px; padding: 16px 18px; }
legend { font-size: .85rem; font-weight: 580; color: var(--ink-dim); padding: 0 8px; }
.check-row { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.check-row label {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-size: .9rem; color: var(--ink); cursor: pointer; font-weight: 420;
}
.check-row input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--teal); padding: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--stroke); border-radius: 18px; margin-bottom: 14px; background: var(--glass); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 22px 26px; font-weight: 620; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--teal); transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-dim); font-size: .96rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: .85rem; font-weight: 580; display: block; margin-bottom: 8px; color: var(--ink-dim); }
input, select, textarea {
  width: 100%; padding: 15px 18px; border-radius: 14px; font-family: inherit; font-size: .95rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--stroke); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(31,201,202,.15);
}
textarea { min-height: 140px; resize: vertical; }
select option { background: var(--bg-2); }

/* ---------- Contact info panel ---------- */
.info-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--stroke); }
.info-tile:last-child { border-bottom: 0; }
.info-tile .icon { flex-shrink: 0; }
.info-tile a { color: var(--teal); font-weight: 580; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--stroke); padding: 70px 0 36px; margin-top: 60px; background: rgba(5, 7, 13, .6); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr; gap: 36px; margin-bottom: 50px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--stroke); color: var(--ink-dim); transition: .25s;
}
.socials a:hover { color: #fff; border-color: var(--teal); transform: translateY(-3px); }
.foot-grid img { height: 40px; width: auto; margin-bottom: 18px; }
.foot-grid p { color: var(--ink-dim); font-size: .9rem; max-width: 34ch; }
.foot-grid h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-dim); margin-bottom: 16px; font-weight: 640; }
.foot-grid ul li { margin-bottom: 10px; }
.foot-grid ul a { color: var(--ink-dim); font-size: .93rem; transition: color .2s; }
.foot-grid ul a:hover { color: var(--teal); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--stroke); font-size: .82rem; color: var(--ink-dim); }
.foot-bottom .legal { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--teal); }

/* ---------- Terminkalender (Kontakt) ---------- */
.slot-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border: 1px solid var(--stroke); border-radius: 16px; padding: 20px; background: rgba(255,255,255,.02); }
.sp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sp-head span { font-weight: 640; font-size: .95rem; }
.sp-head button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--stroke); background: var(--glass);
  color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: .2s;
}
.sp-head button:hover:not(:disabled) { border-color: var(--teal); }
.sp-head button:disabled { opacity: .3; cursor: default; }
.sp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.sp-grid .dow { font-size: .68rem; color: var(--ink-dim); text-align: center; padding: 4px 0; font-weight: 600; }
.sp-day {
  aspect-ratio: 1; border-radius: 10px; border: 1px solid transparent; background: none;
  color: var(--ink); font-size: .84rem; font-family: inherit; cursor: pointer; transition: .15s;
}
.sp-day:hover:not(:disabled) { background: var(--glass-strong); border-color: var(--stroke); }
.sp-day:disabled { color: rgba(255,255,255,.18); cursor: default; }
.sp-day.sel { background: var(--grad-brand); color: #fff; font-weight: 700; }
.sp-times { display: flex; flex-direction: column; }
.sp-times h5 { font-size: .85rem; font-weight: 620; margin-bottom: 12px; color: var(--ink-dim); }
.sp-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; overflow-y: auto; max-height: 300px; padding-right: 4px; }
.sp-slot {
  padding: 9px 4px; border-radius: 10px; border: 1px solid var(--stroke); background: var(--glass);
  color: var(--ink); font-size: .84rem; font-family: inherit; cursor: pointer; transition: .15s;
}
.sp-slot:hover { border-color: var(--teal); }
.sp-slot.sel { background: var(--grad-brand); border-color: transparent; color: #fff; font-weight: 700; }
.sp-hint { font-size: .85rem; color: var(--ink-dim); margin: auto 0; text-align: center; }
.sp-chosen { margin-top: 14px; font-size: .88rem; color: var(--teal); font-weight: 600; }
@media (max-width: 720px) { .slot-picker { grid-template-columns: 1fr; } }

/* ---------- Blog-Kopfgrafik ---------- */
.post-hero-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--stroke); }
.card .card-img { margin: -34px -30px 22px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.card .card-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* ---------- Team-Hovercard ---------- */
.member { position: relative; }
.member-card {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 250px; padding: 18px; border-radius: 16px; text-align: left; z-index: 30;
  background: rgba(12, 16, 28, .96); border: 1px solid var(--stroke);
  backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.member:hover .member-card, .member:focus-within .member-card {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.member-card::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: rgba(12, 16, 28, .96);
}
.member-card .bio { font-size: .8rem; color: var(--ink-dim); line-height: 1.55; margin-bottom: 12px; }
.member-card a {
  display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 580;
  color: var(--teal); padding: 4px 0;
}
.member-card a:hover { color: #fff; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 190px 0 90px; position: relative; }
.page-hero .lead { margin-top: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid.g4, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid.g3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img.main { max-height: 380px; }
  .split .art .heroimg { max-height: 400px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; padding: 14px;
    background: rgba(8, 10, 18, .96); border: 1px solid var(--stroke); border-radius: 24px;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .grid.g2, .grid.g3, .grid.g4, .steps, .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .band { padding: 50px 26px; }
  .section { padding: 76px 0; }
  .chip-float { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
