/* ==========================================================================
   ONLY CREATOR Management — Designsystem
   Farben: #090A0D / #111216 Basis · #F23882 Akzent
   ========================================================================== */

:root {
  --bg: #090a0d;
  --bg-2: #0d0e12;
  --surface: #111216;
  --surface-2: #16171d;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);
  --pink: #f23882;
  --pink-soft: #ff6ba5;
  --pink-deep: #c81f62;
  --text: #ffffff;
  --muted: #9a9ca5;
  --muted-2: #6f717b;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --wrap: 1280px;
  --section-y: clamp(56px, 7vw, 104px);

  --font: "Helvetica Neue", "SF Pro Display", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Inter", Arial, sans-serif;

  --shadow-pink: 0 10px 30px -12px rgba(242, 56, 130, .55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
p, li, h1, h2, h3, h4, td, th, summary { overflow-wrap: break-word; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.08; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.15em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--pink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.eyebrow {
  display: block;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head { max-width: 760px; margin: 0 auto clamp(32px, 4vw, 56px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--muted); margin-bottom: 0; }

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--muted); }
.pink { color: var(--pink); }
.muted { color: var(--muted); }
small, .small { font-size: .85rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: var(--shadow-pink);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(242, 56, 130, .8); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { border-color: #fff; box-shadow: none; background: rgba(255, 255, 255, .04); }

.btn--outline {
  background: transparent;
  border-color: rgba(242, 56, 130, .55);
  color: #fff;
  box-shadow: none;
}
.btn--outline:hover { background: rgba(242, 56, 130, .12); border-color: var(--pink); box-shadow: none; }

.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 10, 13, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .95rem; color: rgba(255, 255, 255, .78); position: relative; padding: 6px 0;
  transition: color .16s ease;
}
.nav a:hover { color: #fff; }
.nav a.is-active { color: var(--pink); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--pink); border-radius: 2px;
}
.header .btn { flex: 0 0 auto; }

.burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line-strong);
  align-items: center; justify-content: center; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: #fff; position: relative; transition: .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; transition: .2s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: flex; }
  .header__inner { height: 68px; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 24px;
    transform: translateY(-120%);
    transition: transform .28s ease;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a.is-active::after { display: none; }
  .nav .btn { margin-top: 18px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__media {
  position: absolute; inset: 0 0 0 42%;
  background-size: cover; background-position: 62% center;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(9, 10, 13, .92) 22%, rgba(9, 10, 13, .25) 55%, rgba(9, 10, 13, .45) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(9, 10, 13, 0) 40%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(56px, 8vw, 108px);
  max-width: 620px;
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 34em; }
.hero .btn-row { margin: 30px 0 26px; }

.trust {
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  padding: 0; margin: 0; list-style: none;
}
.trust li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255, 255, 255, .82); }
.trust svg { width: 18px; height: 18px; color: var(--pink); flex: 0 0 auto; }

@media (max-width: 900px) {
  /* Mobil: Text zuerst, Bild darunter */
  .hero { display: flex; flex-direction: column; }
  .hero__media { position: relative; inset: auto; height: 300px; margin-top: 8px; order: 2; }
  .hero__media::after {
    background: linear-gradient(0deg, var(--bg) 2%, rgba(9, 10, 13, .1) 60%);
  }
  .hero__inner { max-width: none; padding-block: 40px 0; }
  .hero .btn-row .btn { flex: 1 1 100%; justify-content: center; }
  .hero__wrap { order: 1; padding-bottom: 8px; }
  .hero__media::after { background: linear-gradient(0deg, var(--bg) 2%, rgba(9, 10, 13, .1) 55%), linear-gradient(180deg, var(--bg) 0%, rgba(9, 10, 13, 0) 30%); }
}

/* Page hero (Unterseiten) */
.pagehead {
  padding-block: clamp(48px, 6vw, 84px) clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 380px at 12% -10%, rgba(242, 56, 130, .18), transparent 70%),
    var(--bg);
}
.pagehead p { color: var(--muted); max-width: 62ch; margin-bottom: 0; }
.crumbs { font-size: .82rem; color: var(--muted-2); margin-bottom: 18px; }
.crumbs a:hover { color: var(--pink); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Benefit-Bar ---------- */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: calc(var(--section-y) * -.35);
  position: relative; z-index: 3;
}
.benefit { padding: 26px 24px; border-right: 1px solid var(--line); }
.benefit:last-child { border-right: 0; }
.benefit h3 { font-size: 1.02rem; color: var(--pink); display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.benefit svg { width: 22px; height: 22px; flex: 0 0 auto; }
.benefit p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (max-width: 980px) {
  .benefits { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .benefit:nth-child(2n) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) {
  .grid--5, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted); font-size: .95rem; }
a.card:hover, .card--hover:hover { transform: translateY(-4px); border-color: rgba(242, 56, 130, .5); background: var(--surface-2); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242, 56, 130, .12); color: var(--pink);
  margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__link { color: var(--pink); font-weight: 700; font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }

/* Plattformkarten */
.platforms { text-align: center; }
.platform h3 { font-size: 1.05rem; }
.platform .logo-slot {
  height: 44px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-weight: 800; letter-spacing: -.02em; font-size: 1.15rem;
}
.platform .logo-slot svg { width: 34px; height: 34px; color: var(--pink); }
@media (max-width: 680px) {
  .platforms .grid {
    grid-auto-flow: column; grid-auto-columns: 78%; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 12px; margin-inline: -20px; padding-inline: 20px;
    scrollbar-width: thin;
  }
  .platforms .card { scroll-snap-align: center; }
}

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 0 8px; }
.step::before {
  content: ""; position: absolute; top: 38px; left: calc(50% + 46px); right: calc(-50% + 46px);
  border-top: 2px dashed rgba(255, 255, 255, .16);
}
.step:last-child::before { display: none; }
.step__dot {
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%;
  background: rgba(242, 56, 130, .1); border: 1px solid rgba(242, 56, 130, .35);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
  position: relative;
}
.step__dot svg { width: 30px; height: 30px; }
.step__dot::after {
  counter-increment: step; content: counter(step);
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pink); color: #fff; font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--bg);
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
  .step:nth-child(2n)::before { display: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .step::before { display: none; }
}

/* ---------- Split (Über uns) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split img { border-radius: var(--radius-lg); border: 1px solid var(--line); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.stats { display: grid; gap: 22px; }
.stat { display: flex; align-items: center; gap: 16px; }
.stat__icon {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  border: 1px solid rgba(242, 56, 130, .35); background: rgba(242, 56, 130, .1);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
}
.stat__icon svg { width: 22px; height: 22px; }
.stat b { display: block; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; color: var(--pink); letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Pakete ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center; position: relative;
}
.plan--featured { border-color: var(--pink); background: linear-gradient(180deg, rgba(242, 56, 130, .07), transparent 45%), var(--surface); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan__price { font-size: clamp(2.2rem, 4vw, 2.9rem); font-weight: 800; color: var(--pink); line-height: 1; letter-spacing: -.03em; margin: 0 0 6px; }
.plan__unit { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; font-size: .93rem; color: rgba(255, 255, 255, .86); }
.plan li svg { width: 16px; height: 16px; color: var(--pink); flex: 0 0 auto; margin-top: 5px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(242, 56, 130, .45); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 52px 16px 18px; position: relative;
  font-weight: 600; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--pink); font-size: 1.4rem; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq__body { padding: 0 18px 18px; color: var(--muted); font-size: .94rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
@media (max-width: 860px) { .faq-cols { grid-template-columns: 1fr; } }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(242, 56, 130, .22), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(242, 56, 130, .35);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--muted); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 56px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer img.logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer h4 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a, .footer p { color: var(--muted); font-size: .92rem; }
.footer a:hover { color: var(--pink); }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  color: var(--muted-2); font-size: .84rem;
}
.footer__bottom a { font-size: .84rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Formulare / Funnel ---------- */
.form-shell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
}
.progress { margin-bottom: 30px; }
.progress__bar { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.progress__fill {
  height: 100%; width: 33.33%; border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  transition: width .35s ease;
}
.progress__labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: .8rem; color: var(--muted-2); gap: 8px; }
.progress__labels span.is-current { color: var(--pink); font-weight: 700; }

.fstep { display: none; }
.fstep.is-active { display: block; animation: fadeUp .3s ease both; }
.field { margin-bottom: 18px; }
.field > label, .field > legend, .field .field__label {
  display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: rgba(255, 255, 255, .9);
}
.field .hint { display: block; font-size: .82rem; color: var(--muted-2); margin-top: 6px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 13px 14px;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(242, 56, 130, .2);
}
textarea { min-height: 120px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea, .field--error .checkline { border-color: #ff5470; }
.error-msg { display: none; color: #ff8095; font-size: .82rem; margin-top: 6px; }
.field--error .error-msg { display: block; }

.checkline {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--bg); cursor: pointer; font-size: .92rem;
  transition: border-color .16s ease;
}
.checkline:hover { border-color: var(--line-strong); }
.checkline input { margin: 3px 0 0; width: 18px; height: 18px; accent-color: var(--pink); flex: 0 0 auto; }
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }

.form-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 28px; }
.form-nav .btn { flex: 1 1 auto; justify-content: center; }
.form-note { color: var(--muted-2); font-size: .82rem; margin-top: 18px; }
.form-note a { color: var(--pink); }

.callout {
  background: rgba(242, 56, 130, .08);
  border: 1px solid rgba(242, 56, 130, .3);
  border-left-width: 3px;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: rgba(255, 255, 255, .88);
  font-size: .94rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout--neutral { background: var(--surface); border-color: var(--line); }

/* ---------- Prosa (Rechtstexte, Ratgeber) ---------- */
.prose { max-width: 78ch; hyphens: auto; }
.prose h2 { margin-top: 2em; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.prose h3 { margin-top: 1.6em; }
.prose li { margin-bottom: 6px; color: rgba(255, 255, 255, .84); }
.prose p, .prose li { color: rgba(255, 255, 255, .84); }
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .92rem; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--pink); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 8px; list-style: none; }
.tag {
  font-size: .78rem; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--muted);
}

/* ---------- Consent-Banner ---------- */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 560px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .9);
  display: none;
}
.consent.is-visible { display: block; animation: fadeUp .3s ease both; }
.consent h4 { font-size: 1rem; margin-bottom: 8px; }
.consent p { font-size: .86rem; color: var(--muted); }
.consent a { color: var(--pink); text-decoration: underline; }
.consent .btn-row { margin-top: 16px; }
.consent .btn { flex: 1 1 140px; justify-content: center; }

/* ---------- Motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.narrow { max-width: 760px; margin-inline: auto; }
.hidden { display: none !important; }
.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;
}
.note-line {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--muted); font-size: .88rem; margin-top: 22px;
}
.note-line svg { width: 17px; height: 17px; color: var(--pink); flex: 0 0 auto; }
