/* ==========================================================================
   VELA Messe- & Eventpersonal — Demo-Website von Feschwerk
   Design-System: tiefes Schwarz mit warmem Korn, Champagner-Gold, Off-White.
   ========================================================================== */

@font-face { font-family: 'Syne'; font-style: normal; font-display: swap; font-weight: 400 800; src: url(../fonts/syne.woff2) format('woff2-variations'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-display: swap; font-weight: 200 800; src: url(../fonts/manrope.woff2) format('woff2-variations'); }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-display: swap; font-weight: 400; src: url(../fonts/instrument-serif-italic.woff2) format('woff2'); }

:root {
  --bg: #0C0C10;
  --bg-2: #121217;
  --surface: #17171D;
  --surface-2: #1E1E26;
  --text: #F3EFE6;
  --text-2: #C9C4B8;
  --muted: #8F8B82;
  --line: rgba(243, 239, 230, 0.09);
  --line-strong: rgba(243, 239, 230, 0.2);
  --gold: #D4B483;
  --gold-bright: #EBD3A6;
  --gold-deep: #A98A5A;
  --gold-soft: rgba(212, 180, 131, 0.12);
  --green: #7FD1A4;
  --danger: #E08A7A;

  --font-display: 'Syne', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;

  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 9rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
/* Korn-Textur */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.045; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.015em; line-height: 1.15; }
.h4 { font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--text-2); font-weight: 400; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.serif { font-family: var(--font-accent); font-style: italic; font-weight: 400; letter-spacing: 0; color: var(--gold-bright); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.num-outline { font-family: var(--font-display); font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(243, 239, 230, 0.35); letter-spacing: -0.03em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 880px; }
.section { padding: var(--section) 0; position: relative; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .lead { margin-top: 1.25rem; }
.section-head--row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; max-width: none; }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 1.7rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; font-size: 0.98rem; line-height: 1; white-space: nowrap; letter-spacing: 0.005em;
  transition: transform 0.35s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--gold); color: #141109; box-shadow: 0 8px 30px rgba(212, 180, 131, 0.22); }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212, 180, 131, 0.32); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); background: rgba(243, 239, 230, 0.04); }
.btn--dark { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn--dark:hover { background: #26262f; transform: translateY(-2px); }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.link { position: relative; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--text); }
.link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0.3); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.link:hover::after { transform: scaleX(1); }
.link--gold { color: var(--gold); }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background-color 0.35s, transform 0.5s var(--ease-out), border-color 0.35s; border-bottom: 1px solid transparent; }
.header.is-scrolled { background: rgba(12, 12, 16, 0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: var(--line); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.22em; text-transform: uppercase; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand small { font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-left: 0.2rem; display: none; }
@media (min-width: 700px) { .brand small { display: inline; } }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a:not(.btn) { font-weight: 600; font-size: 0.92rem; color: var(--text-2); position: relative; padding: 0.3rem 0; transition: color 0.25s; }
.nav a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out); }
.nav a:not(.btn):hover { color: var(--text); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { margin-left: 0.5rem; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; flex-direction: column; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 3px 0; border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.2s; }
.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 960px) {
  .burger { display: inline-flex; }
  .nav { position: fixed; inset: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: flex-start; padding: 6rem var(--gutter) 3rem; gap: 0.25rem; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
  .menu-open .nav { opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { font-family: var(--font-display); font-size: clamp(2rem, 8vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text); padding: 0.35rem 0; transform: translateY(20px); opacity: 0; transition: transform 0.6s var(--ease-out), opacity 0.4s; }
  .menu-open .nav a:not(.btn) { transform: none; opacity: 1; }
  .menu-open .nav a:nth-child(1) { transition-delay: 0.05s; } .menu-open .nav a:nth-child(2) { transition-delay: 0.1s; } .menu-open .nav a:nth-child(3) { transition-delay: 0.15s; } .menu-open .nav a:nth-child(4) { transition-delay: 0.2s; } .menu-open .nav a:nth-child(5) { transition-delay: 0.25s; } .menu-open .nav a:nth-child(6) { transition-delay: 0.3s; }
  .nav .btn { margin: 2rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(78px + 3rem) 0 4rem; overflow: hidden; }
.spot { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.75; will-change: transform; }
.spot--1 { width: 60vw; height: 60vw; max-width: 820px; max-height: 820px; right: -18vw; top: -22vw; background: radial-gradient(circle, rgba(212, 180, 131, 0.38), rgba(212, 180, 131, 0) 62%); animation: drift 18s ease-in-out infinite alternate; }
.spot--2 { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; left: -16vw; bottom: -18vw; background: radial-gradient(circle, rgba(150, 120, 200, 0.22), rgba(150, 120, 200, 0) 62%); animation: drift 22s ease-in-out infinite alternate-reverse; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; width: 100%; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } .hero { min-height: 0; } }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero h1 .line > span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease-out) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.2s; }
.hero .lead { margin-top: 1.6rem; max-width: 560px; opacity: 0; animation: fade-up 0.9s var(--ease-out) 0.45s forwards; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; opacity: 0; animation: fade-up 0.9s var(--ease-out) 0.6s forwards; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.75rem; opacity: 0; animation: fade-up 0.9s var(--ease-out) 0.75s forwards; }
.hero__meta div b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.hero__meta div span { font-size: 0.82rem; color: var(--muted); }

.status { position: relative; background: linear-gradient(160deg, rgba(243, 239, 230, 0.06), rgba(243, 239, 230, 0.02)); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(10px); opacity: 0; animation: fade-up 1s var(--ease-out) 0.9s forwards; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.status__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.status__head .label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; flex: none; }
.live::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--green); opacity: 0; animation: pulse 2s ease-out infinite; }
.status__week { font-size: 0.8rem; color: var(--muted); }
.status__rows { display: grid; gap: 0.6rem; }
.status__row { display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; align-items: center; padding: 0.7rem 0.9rem; border-radius: 12px; background: rgba(12, 12, 16, 0.45); border: 1px solid var(--line); }
.status__row .role { font-weight: 600; font-size: 0.95rem; }
.status__row .bar { grid-column: 1 / -1; height: 4px; border-radius: 4px; background: rgba(243, 239, 230, 0.08); overflow: hidden; }
.status__row .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 4px; transition: width 1.4s var(--ease-out); }
.status__row b { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.02em; }
.status__row b small { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-left: 0.25rem; }
.status__foot { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.status__foot b { color: var(--text); }
.status__badge { position: absolute; top: -14px; right: 22px; background: var(--gold); color: #141109; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 999px; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 1rem 0; }
.marquee__track { display: flex; width: max-content; gap: 3.5rem; animation: marquee 55s linear infinite; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
.marquee__track span { display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap; }
.marquee__track span::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Leistungen ---------- */
.service { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2.1rem); position: relative; overflow: hidden; transition: transform 0.5s var(--ease-out), border-color 0.3s, background-color 0.3s; min-height: 100%; display: flex; flex-direction: column; }
.service::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(212, 180, 131, 0.16), transparent 45%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.service:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.service:hover::before { opacity: 1; }
.service .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 1.4rem; }
.service .ico svg { width: 22px; height: 22px; }
.service h3 { margin-bottom: 0.6rem; }
.service p { color: var(--text-2); font-size: 0.97rem; flex: 1; }
.service .from { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; font-size: 0.85rem; color: var(--muted); }
.service .from b { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); letter-spacing: -0.02em; }
.note { font-size: 0.85rem; color: var(--muted); margin-top: 1.5rem; }

/* ---------- Ablauf ---------- */
.flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; position: relative; }
@media (max-width: 860px) { .flow { grid-template-columns: 1fr; } }
.flow__step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; position: relative; }
.flow__step .t { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.flow__step .t::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.flow__step .big { font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 1rem; }
.flow__step .big small { font-size: 0.42em; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-left: 0.3rem; }
.flow__step h3 { margin-bottom: 0.5rem; }
.flow__step p { color: var(--text-2); font-size: 0.97rem; }
.flow__step .num-outline { position: absolute; right: 1.4rem; top: 1.1rem; font-size: 3.4rem; line-height: 1; }
.timeline { margin-top: 2.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem clamp(1.25rem, 3vw, 2.5rem); }
.timeline__track { position: relative; height: 4px; background: rgba(243, 239, 230, 0.08); border-radius: 4px; margin: 2.4rem 0 1.2rem; }
.timeline__track i { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 4px; transition: width 2.2s var(--ease-out); }
.timeline.in .timeline__track i { width: 100%; }
.timeline__points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.timeline__points div { position: relative; padding-top: 0; font-size: 0.86rem; color: var(--muted); }
.timeline__points div::before { content: ''; position: absolute; top: calc(-1.2rem - 8px); left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--bg); border: 3px solid var(--gold); }
.timeline__points b { display: block; color: var(--text); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.15rem; letter-spacing: -0.01em; }
@media (max-width: 640px) { .timeline__points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; } .timeline__points div:nth-child(n+3)::before { display: none; } }

/* ---------- Pool ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filters button { border: 1px solid var(--line-strong); background: transparent; color: var(--text-2); border-radius: 999px; padding: 0.55rem 1rem; font-size: 0.88rem; font-weight: 600; transition: background-color 0.25s, color 0.25s, border-color 0.25s; }
.filters button:hover { border-color: var(--text); color: var(--text); }
.filters button.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.pool { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 1100px) { .pool { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px) { .pool { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .pool { grid-template-columns: 1fr; } }
.profile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; transition: transform 0.5s var(--ease-out), opacity 0.4s, border-color 0.3s; position: relative; }
.profile:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.profile.is-hidden { display: none; }
.profile.is-new { animation: fade-up 0.6s var(--ease-out) both; }
.profile__top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.avatar { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #141109; letter-spacing: 0; flex: none; position: relative; }
.avatar::after { content: ''; position: absolute; right: 1px; bottom: 1px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 2px solid var(--surface); }
.avatar.away::after { background: var(--muted); }
.av-1 { background: linear-gradient(135deg, #EBD3A6, #C39A62); } .av-2 { background: linear-gradient(135deg, #C9D6F0, #7F93C4); } .av-3 { background: linear-gradient(135deg, #F0C9C9, #C67F7F); } .av-4 { background: linear-gradient(135deg, #CDEBD9, #7FB897); } .av-5 { background: linear-gradient(135deg, #E9D6F0, #A889B9); } .av-6 { background: linear-gradient(135deg, #F0E6C9, #B9A66B); } .av-7 { background: linear-gradient(135deg, #C9E9F0, #6FA8B8); } .av-8 { background: linear-gradient(135deg, #F0D9C9, #C48E6B); }
.profile .h4 { margin-bottom: 0.1rem; }
.profile .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.profile .facts { display: grid; gap: 0.35rem; font-size: 0.86rem; color: var(--text-2); }
.profile .facts span b { color: var(--text); font-weight: 600; }
.profile .tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
.profile .tags span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.55rem; border-radius: 6px; background: rgba(243, 239, 230, 0.06); color: var(--text-2); }
.pool-note { margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- Kalkulator ---------- */
.calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 960px) { .calc { grid-template-columns: 1fr; } }
.calc__box { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }
.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--text-2); display: flex; justify-content: space-between; }
.field label output { color: var(--gold); font-variant-numeric: tabular-nums; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field input[type="time"], .field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 0.9rem 1rem; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(12, 12, 16, 0.5); color: var(--text); transition: border-color 0.25s, box-shadow 0.25s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9C4B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field select option { background: var(--surface-2); color: var(--text); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212, 180, 131, 0.15); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--gold) var(--p, 0%), rgba(243, 239, 230, 0.12) var(--p, 0%)); margin: 0.6rem 0 0.2rem; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--text); border: 4px solid var(--bg); box-shadow: 0 0 0 1px var(--line-strong), 0 4px 12px rgba(0, 0, 0, 0.4); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--text); border: 4px solid var(--bg); box-shadow: 0 0 0 1px var(--line-strong); cursor: pointer; }
.check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--text-2); margin: 0.25rem 0 1.2rem; }
.check input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--gold); flex: none; }
.calc__total { margin-top: 0.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: grid; gap: 0.5rem; }
.calc__total .lbl { font-size: 0.82rem; color: var(--muted); }
.calc__total .sum { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; margin-top: 0.3rem; white-space: nowrap; }
.calc__total .sum small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.calc__per { font-size: 0.85rem; color: var(--muted); }
.calc__per b { color: var(--text); }
.calc__box .btn { margin-top: 1.4rem; }
.calc__hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; }

/* ---------- Warum ---------- */
.why { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 700px) { .why { grid-template-columns: 1fr; } }
.why > div { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(243, 239, 230, 0.02); display: grid; grid-template-columns: 40px 1fr; gap: 1rem; }
.why svg { width: 40px; height: 40px; color: var(--gold); }
.why .h4 { margin-bottom: 0.3rem; }
.why p { font-size: 0.95rem; color: var(--text-2); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2.5rem; border-top: 1px solid var(--line); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat .num small { font-size: 0.45em; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.stat .num sup { font-size: 0.45em; vertical-align: top; position: relative; top: 0.35em; color: var(--gold); }
.stat .cap { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }

/* ---------- Karriere & Kontakt ---------- */
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); }
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 1.4rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.85rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .checkmark { width: 64px; height: 64px; margin: 0 auto 1rem; }
.form-success .h4 { margin-bottom: 0.4rem; }
.form.is-sent form { display: none; }
.form.is-sent .form-success { display: block; }
.form-error { display: none; margin-top: 0.85rem; padding: 0.85rem 1rem; border-radius: 12px; background: rgba(224, 138, 122, 0.12); color: var(--danger); font-size: 0.9rem; }
.form.has-error .form-error { display: block; }
.contact__info { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
.contact__info .h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; font-weight: 700; }
.contact__info p { color: var(--text-2); }
.contact__info a { color: var(--text); font-weight: 600; }
.perks { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
.perks div { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-2); font-size: 0.97rem; }
.perks svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 0.2rem; }

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta-band .spot--1 { top: -30vw; right: -20vw; opacity: 0.5; }
.cta-band .inner { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
.cta-band .lead { margin: 1.25rem auto 2rem; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) 0 2rem; background: var(--bg); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer p { font-size: 0.95rem; color: var(--muted); max-width: 320px; margin-top: 1rem; }
.footer .h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer ul a, .footer ul li { color: var(--text-2); font-size: 0.95rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; color: var(--muted); }
.footer__bottom a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(243, 239, 230, 0.35); }
.footer__bottom a:hover { color: var(--gold); }
.footer p.demo-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--muted); max-width: 680px; }

/* ---------- Feschwerk-Badge ---------- */
.fw-badge { position: fixed; left: 16px; bottom: 16px; z-index: 60; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.85rem 0.55rem 0.6rem; border-radius: 999px; background: #F5F1EA; color: #14161A; border: 1px solid rgba(20, 22, 26, 0.12); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); font-size: 0.8rem; font-weight: 500; font-family: var(--font-body); transition: transform 0.4s var(--ease-out), box-shadow 0.4s, opacity 0.3s; }
.fw-badge:hover { transform: translateY(-2px); }
.fw-badge__mark { width: 26px; height: 26px; border-radius: 50%; background: #1E3A8A; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; }
.fw-badge b { font-weight: 700; }
.fw-badge .more { color: #4B5563; }
@media (max-width: 640px) { .fw-badge .more { display: none; } }
@media (max-width: 1000px) { body.sheet-open .fw-badge { opacity: 0; pointer-events: none; } }

/* ---------- Reveal / Motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; } .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.13s; } .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.21s; } .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.29s; } .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.37s; } .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.45s; } .reveal-stagger.in > *:nth-child(7) { transition-delay: 0.53s; } .reveal-stagger.in > *:nth-child(8) { transition-delay: 0.61s; }

@keyframes rise { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-6vw, 5vw, 0) scale(1.12); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero h1 .line > span, .hero .lead, .hero__cta, .hero__meta, .status { transform: none; opacity: 1; animation: none; }
  .marquee__track, .spot { animation: none; }
}
