/* ==========================================================================
   Shuffl Landing (shuffl.ch), nur dunkel.
   Aus dem Design-Export "Shuffl-Landing-standalone" uebertragen: alle Inline-
   Styles sind hier Klassen, damit die CSP ohne 'unsafe-inline' auskommen kann.
   Schriften: /fonts/fonts.css (lokal). Ohne JavaScript: /landing-nojs.css.
   ========================================================================== */

:root {
  --bg: #121110;
  --bg-deep: #0A0908;
  --card: #1A1917;
  --text: #F3F1EC;
  --gold: #E8C77A;
  --gold-hover: #F2DC9C;
  --ink: #171308;
  --light: #F5F2EC;
  --light-text: #171512;
  --gold-deep: #8A6B21;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --mq: 70s;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
::selection { background: rgba(232, 199, 122, .28); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.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;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  border-radius: 6px; font-weight: 600;
}
.skip-link:focus { top: 12px; color: var(--ink); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes orb { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, 30px); } }
@keyframes shimmer { from { transform: translateX(-120%); } to { transform: translateX(220%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes riseUp { from { transform: translate3d(0, 18%, 0); } to { transform: translate3d(0, calc(-100% - 30vh), 0); } }
@keyframes fadeCard { 0% { opacity: 0; } 14% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; } }
@keyframes swayX { from { transform: translate3d(calc(var(--sw) * -1), 0, 0); } to { transform: translate3d(var(--sw), 0, 0); } }
@keyframes breathe { from { opacity: .55; transform: scale(.94); } to { opacity: 1; transform: scale(1.06); } }
@keyframes sweepMove { from { background-position: 160% 0; } to { background-position: -160% 0; } }

/* Scroll-Reveal: versteckt wird NUR, wenn motion.js die Klasse gesetzt hat.
   Ohne JS (oder bei prefers-reduced-motion) bleibt alles sichtbar. */
.reveal-ready [data-reveal] {
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1), transform .42s cubic-bezier(.22, 1, .36, 1);
}
.reveal-ready [data-reveal]:not(.is-visible) { opacity: 0; transform: translateY(18px); }

/* overflow-x: clip statt overflow: hidden. hidden macht den Wrapper zum
   Scroll-Container, und position: sticky der Navigation greift dann nicht. */
.page { min-height: 100vh; overflow-x: hidden; overflow-x: clip; }

/* --- Hintergrund ---------------------------------------------------------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg > span { position: absolute; }
.bg-dots {
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 62%);
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}
.bg-orb { border-radius: 50%; }
.bg-orb--1 {
  top: -22%; left: 8%; width: 46vw; height: 46vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(232, 199, 122, .22), transparent 68%);
  animation: breathe 24s ease-in-out infinite alternate;
}
.bg-orb--2 {
  top: 26%; right: -12%; width: 38vw; height: 38vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(232, 199, 122, .16), transparent 70%);
  animation: breathe 31s ease-in-out -8s infinite alternate;
}
.bg-cards { position: absolute; inset: -12% 0; }
.fc { position: absolute; bottom: 0; animation: riseUp var(--d) linear var(--o) infinite, fadeCard var(--d) linear var(--o) infinite; }
.fc-sway { display: block; animation: swayX var(--sd) ease-in-out infinite alternate; }
.fc-card {
  display: block; width: 100%; aspect-ratio: 3 / 4.2; border-radius: 11px;
  border: 1px solid rgba(232, 199, 122, .42);
  background: linear-gradient(152deg, rgba(232, 199, 122, .20), rgba(232, 199, 122, .05) 52%, transparent 78%);
  box-shadow: inset 0 1px 0 rgba(232, 199, 122, .34), 0 12px 40px rgba(232, 199, 122, .10);
  opacity: var(--op); filter: blur(var(--bl)); transform: rotate(var(--rot));
}
.fc:nth-child(1)  { left: 4%;  width: 132px; --d: 62s; --o: -6s;  --sw: 24px; --sd: 21s; --op: .30; --bl: 1.4px; --rot: -7deg; }
.fc:nth-child(2)  { left: 14%; width: 196px; --d: 84s; --o: -38s; --sw: 30px; --sd: 27s; --op: .44; --bl: 0px;   --rot: 5deg; }
.fc:nth-child(3)  { left: 26%; width: 98px;  --d: 54s; --o: -20s; --sw: 19px; --sd: 18s; --op: .22; --bl: 2.4px; --rot: -10deg; }
.fc:nth-child(4)  { left: 38%; width: 160px; --d: 72s; --o: -52s; --sw: 26px; --sd: 24s; --op: .38; --bl: .7px;  --rot: 8deg; }
.fc:nth-child(5)  { left: 49%; width: 116px; --d: 58s; --o: -12s; --sw: 22px; --sd: 20s; --op: .26; --bl: 1.8px; --rot: -4deg; }
.fc:nth-child(6)  { left: 61%; width: 208px; --d: 90s; --o: -66s; --sw: 32px; --sd: 29s; --op: .44; --bl: 0px;   --rot: 6deg; }
.fc:nth-child(7)  { left: 72%; width: 102px; --d: 50s; --o: -30s; --sw: 18px; --sd: 17s; --op: .20; --bl: 2.6px; --rot: -9deg; }
.fc:nth-child(8)  { left: 82%; width: 174px; --d: 76s; --o: -44s; --sw: 28px; --sd: 25s; --op: .36; --bl: .9px;  --rot: 4deg; }
.fc:nth-child(9)  { left: 92%; width: 124px; --d: 66s; --o: -18s; --sw: 21px; --sd: 19s; --op: .30; --bl: 1.6px; --rot: -6deg; }
.fc:nth-child(10) { left: 56%; width: 88px;  --d: 46s; --o: -40s; --sw: 16px; --sd: 15s; --op: .18; --bl: 3px;   --rot: 11deg; }
.bg-sweep {
  inset: 0;
  background: linear-gradient(104deg, transparent 40%, rgba(232, 199, 122, .09) 50%, transparent 60%);
  background-size: 320% 100%; animation: sweepMove 26s linear infinite;
}
.bg-vignette { inset: 0; background: radial-gradient(115% 85% at 50% 44%, transparent 42%, rgba(18, 17, 16, .55) 100%); }

/* --- Ankuendigungsleiste -------------------------------------------------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 9px 20px; background: var(--bg-deep); border-bottom: 1px solid rgba(232, 199, 122, .16);
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(243, 241, 236, .6);
}
.announce-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s ease-in-out infinite; }
.announce a { color: var(--gold); border-bottom: 1px solid rgba(232, 199, 122, .4); padding-bottom: 1px; }

/* --- Navigation ----------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; display: flex; justify-content: center; padding: 16px 24px 0; }
.nav-pill {
  position: relative; display: flex; align-items: center; gap: 20px; padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, .1); background: rgba(18, 17, 16, .72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 9999px; max-width: 100%; flex-wrap: wrap; justify-content: center;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--text); }
.brand:hover { color: var(--text); }
.brand img, .footer-brand img { width: 30px; height: 30px; border-radius: 7px; flex: none; display: block; }
.nav-links { display: flex; gap: 4px; font-size: 14px; flex-wrap: wrap; justify-content: center; }
.nav-links a { display: block; color: rgba(243, 241, 236, .75); padding: 8px 12px; border-radius: 9999px; }
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(255, 255, 255, .08); color: var(--text); }
.btn-nav { background: var(--gold); color: var(--ink); font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 9999px; white-space: nowrap; }
.btn-nav:hover, .btn-nav:focus-visible { background: var(--gold-hover); color: var(--ink); }
.nav-toggle { display: none; }
.nav-toggle .i-close { display: none; }

@media (max-width: 860px) {
  .site-header { padding: 12px 16px 0; }
  .nav-pill { flex-wrap: nowrap; gap: 8px; padding: 6px 6px 6px 16px; }
  .brand { margin-right: 8px; }
  .site-nav { order: 9; margin-left: -8px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0;
    border-radius: 9999px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .06);
    color: var(--text); cursor: pointer; flex: none;
  }
  .nav-toggle:hover { background: rgba(255, 255, 255, .1); }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; flex-wrap: nowrap; gap: 2px; padding: 8px;
    /* Deckend und ohne eigenes backdrop-filter: Das Menue haengt unter der Pille,
       die selbst backdrop-filter hat. Chrome liess dort mit halbtransparentem
       Grund (auch .96) die Hero-Ueberschrift sichtbar durchscheinen (gemessen). */
    border: 1px solid rgba(255, 255, 255, .1); background: #151413; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
  }
  .nav-links a { padding: 12px 16px; border-radius: 10px; font-size: 16px; }
  .site-header.nav-open .nav-links { display: flex; }
  .site-header.nav-open .nav-toggle .i-open { display: none; }
  .site-header.nav-open .nav-toggle .i-close { display: inline; }
}

/* --- Gemeinsame Bausteine ------------------------------------------------- */
.section { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.h2 { margin: 0 0 56px; font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; max-width: 680px; text-wrap: balance; }
.input { background: var(--bg-deep); border: 1px solid rgba(255, 255, 255, .12); border-radius: 6px; color: var(--text); font-size: 15px; font-family: inherit; }
.input:focus { border-color: var(--gold); outline: none; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--ink); font-weight: 600; font-size: 15px; padding: 14px 22px;
  border: 0; border-radius: 6px; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--gold-hover); }
.btn-primary:disabled { opacity: .7; cursor: progress; }
.hp-field { display: none; }
/* Rueckmeldung von newsletter.js (Farbe setzt das Skript selbst). */
.form-msg { margin-top: 12px; font-family: var(--mono); font-size: 12px; line-height: 1.6; }
.card { background: var(--card); border: 1px solid rgba(255, 255, 255, .08); border-radius: 8px; padding: 28px; }
.card--hover { transition: transform .2s ease, border-color .2s ease; }
.card--hover:hover { transform: translateY(-3px); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 88px 32px 100px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; align-items: center;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb--1 { width: 560px; height: 560px; right: -160px; top: -200px; background: radial-gradient(circle, rgba(232, 199, 122, .16), transparent 70%); animation: orb 16s ease-in-out infinite; }
.hero-orb--2 { width: 420px; height: 420px; left: -200px; bottom: -140px; background: radial-gradient(circle, rgba(208, 168, 79, .11), transparent 70%); animation: orb 14s ease-in-out infinite reverse; }
.hero-copy { position: relative; min-width: 0; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { margin: 0 0 24px; font-size: clamp(44px, 6vw, 76px); line-height: 1.02; font-weight: 800; letter-spacing: -.035em; text-wrap: balance; }
.grad-text {
  background: linear-gradient(135deg, #F8EB95, #D0A84F, #F8EB95); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
.hero-lead { margin: 0 0 14px; font-size: 19px; line-height: 1.5; color: rgba(243, 241, 236, .72); max-width: 560px; text-wrap: pretty; }
.hero-sub { margin: 0 0 36px; font-size: 16px; line-height: 1.6; color: rgba(243, 241, 236, .55); max-width: 520px; }
.hero-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 500px; }
.hero-form .input { flex: 1 1 220px; min-width: 0; padding: 14px 16px; }
.hero-form .btn-primary { box-shadow: 0 0 32px rgba(232, 199, 122, .3); }
.hero-trust { display: flex; gap: 20px; margin-top: 40px; font-size: 13px; color: rgba(243, 241, 236, .5); flex-wrap: wrap; }
.hero-media { position: relative; justify-self: center; min-width: 0; }
.hero-card {
  position: relative; width: min(330px, 82vw); aspect-ratio: 555 / 928; border-radius: 14px; overflow: hidden;
  background: var(--bg-deep); box-shadow: 0 40px 90px rgba(0, 0, 0, .6), 0 0 70px rgba(232, 199, 122, .14);
  outline: 1px solid rgba(232, 199, 122, .3); outline-offset: -1px;
}
.hero-card picture { display: block; width: 100%; height: 100%; }
.hero-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-shimmer { position: absolute; inset: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent); animation: shimmer 4s ease-in-out infinite; pointer-events: none; }
.hero-trend {
  position: absolute; left: -46px; bottom: 54px; background: var(--card); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px; padding: 10px 14px; font-family: var(--mono); font-size: 12px;
  display: flex; gap: 8px; align-items: center; box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: inline-block; animation: pulse 2s ease-in-out infinite; }

/* --- Nutzen 01-04 --------------------------------------------------------- */
.benefits { padding: 0 32px 40px; }
.grid-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.benefit:hover { border-color: rgba(232, 199, 122, .4); }
.benefit-num {
  width: 40px; height: 40px; border-radius: 6px; background: rgba(232, 199, 122, .14);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-family: var(--mono); font-size: 13px; margin-bottom: 22px;
}
.benefit h3 { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.benefit p { font-size: 14px; line-height: 1.55; color: rgba(243, 241, 236, .65); }

/* --- Spiele-Laufband ------------------------------------------------------ */
.games { padding: 48px 0; border-top: 1px solid rgba(255, 255, 255, .06); border-bottom: 1px solid rgba(255, 255, 255, .06); overflow: hidden; }
.games h2 { text-align: center; font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: rgba(243, 241, 236, .45); margin-bottom: 26px; }
.marquee { display: flex; width: max-content; animation: marquee var(--mq) linear infinite; }
.marquee-group { display: flex; }
.marquee-group li { display: flex; align-items: center; gap: 40px; padding-right: 40px; font-weight: 600; font-size: 22px; letter-spacing: -.01em; color: rgba(243, 241, 236, .55); white-space: nowrap; }
.marquee-group li::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .55; flex: none; }

/* --- Kennzahlen ----------------------------------------------------------- */
.stats { padding: 80px 32px 0; }
.stats-band {
  background: linear-gradient(135deg, #F8EB95, #D0A84F); border-radius: 8px; padding: 40px 56px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; color: var(--ink);
}
.stat:nth-child(2) { text-align: center; }
.stat:nth-child(3) { text-align: right; }
.stat-num { font-size: 52px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: 14px; font-weight: 500; margin-top: 10px; opacity: .7; }

/* --- So funktioniert es --------------------------------------------------- */
.how { padding: 120px 32px 60px; }
.step { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; align-items: center; padding: 32px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.step-main { display: flex; gap: 24px; min-width: 0; }
.step-num { font-family: var(--mono); font-size: 14px; color: var(--gold); padding-top: 6px; }
.step h3 { font-weight: 700; font-size: 24px; letter-spacing: -.02em; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.55; color: rgba(243, 241, 236, .65); }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-size: 12px; padding: 6px 12px; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, .18); }

/* --- Werkzeuge (Bento) ---------------------------------------------------- */
.features { padding: 60px 32px 120px; }
.features .h2 { margin-bottom: 48px; }
.bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.bento-hero { grid-column: span 2; border-radius: 8px; padding: 1.5px; background: linear-gradient(135deg, #F8EB95, #D0A84F); }
/* Unter zwei Spalten (2x280px + Luecke + Rand) wuerde span 2 eine leere Zusatzspalte erzwingen. */
@media (max-width: 639px) { .bento-hero { grid-column: auto; } }
.bento-hero-inner { height: 100%; border-radius: 7px; background: var(--bg); padding: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.bento-hero .eyebrow { color: #D0A84F; margin-bottom: 14px; }
.bento-hero h3 { font-weight: 800; font-size: 28px; letter-spacing: -.02em; margin-bottom: 12px; }
.bento-hero p { font-size: 15px; line-height: 1.55; color: rgba(243, 241, 236, .65); }
.price-box { background: var(--bg-deep); border-radius: 6px; padding: 18px; display: grid; gap: 10px; font-size: 13px; align-content: start; }
.price-row { display: flex; justify-content: space-between; gap: 12px; }
.price-row > span:first-child { color: rgba(243, 241, 236, .6); }
.price-old { text-decoration: line-through; color: rgba(243, 241, 236, .45); }
.price-row--best { padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .08); }
.price-row--best > span:first-child { font-weight: 600; color: var(--text); }
.price-best { color: var(--gold); font-weight: 600; }
.price-meta { font-family: var(--mono); font-size: 11px; color: rgba(243, 241, 236, .4); }
.bento .card .eyebrow { margin-bottom: 14px; }
.bento .card h3 { font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.bento .card--portfolio h3 { margin-bottom: 18px; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 92px; margin-bottom: 12px; }
.bars span { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, #E8C77A, rgba(232, 199, 122, .25)); }
.bars span:nth-child(1) { height: 38%; }
.bars span:nth-child(2) { height: 54%; }
.bars span:nth-child(3) { height: 45%; }
.bars span:nth-child(4) { height: 62%; }
.bars span:nth-child(5) { height: 51%; }
.bars span:nth-child(6) { height: 70%; }
.bars span:nth-child(7) { height: 58%; }
.bars span:nth-child(8) { height: 78%; }
.bars span:nth-child(9) { height: 64%; }
.bars span:nth-child(10) { height: 84%; }
.bars span:nth-child(11) { height: 72%; }
.bars span:nth-child(12) { height: 90%; }
.bars span:nth-child(13) { height: 80%; }
.bars span:nth-child(14) { height: 96%; }
.meta-row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: rgba(243, 241, 236, .55); }
.up { color: #22C55E; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-family: var(--mono); font-size: 12px; padding: 6px 10px; border-radius: 4px; background: var(--bg-deep); border: 1px solid rgba(255, 255, 255, .1); }
.card-note { font-size: 13px; line-height: 1.55; color: rgba(243, 241, 236, .6); margin-top: 14px; }
.progress { display: flex; gap: 4px; margin-bottom: 12px; }
.progress span { flex: 1; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .1); }
.progress span:nth-child(-n+2) { background: #E8C77A; }
.progress span:nth-child(3) { background: rgba(232, 199, 122, .4); animation: pulse 1.4s ease-in-out infinite; }
.decks { display: flex; gap: 8px; }
.deck { width: 44px; height: 62px; border-radius: 4px; background: repeating-linear-gradient(135deg, #22201D 0 8px, #2A2724 8px 16px); }
.deck--add { background: none; border: 1px dashed rgba(232, 199, 122, .6); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; }

/* --- Helle Sektion: Sicherheit, Zielgruppen, FAQ -------------------------- */
.light { background: var(--light); color: var(--light-text); border-radius: 64px 64px 0 0; padding: 100px 0 0; }
.light :focus-visible { outline-color: var(--gold-deep); }
.light-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.light .eyebrow { color: var(--gold-deep); }
.light .h2 { margin-bottom: 20px; max-width: none; text-wrap: wrap; }
.light-lead { margin: 0 0 32px; font-size: 17px; line-height: 1.55; color: rgba(23, 21, 18, .65); }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; align-items: start; }
.pay { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.pay-label { width: 100%; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(23, 21, 18, .45); margin-bottom: 2px; }
.pay-chip { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 6px; background: #fff; border: 1px solid rgba(23, 21, 18, .1); font-size: 14px; font-weight: 600; color: rgba(23, 21, 18, .7); }
.info-list { display: grid; gap: 12px; }
.info { background: #fff; border: 1px solid rgba(23, 21, 18, .08); border-radius: 8px; padding: 24px; }
.info h3 { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.info-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.info-head h3 { margin-bottom: 0; }
.badge-soon { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 9999px; background: rgba(232, 199, 122, .25); color: #7A5D14; }
.info p { font-size: 14px; line-height: 1.6; color: rgba(23, 21, 18, .62); }
.audience { margin-top: 110px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card-light { background: #fff; border: 1px solid rgba(23, 21, 18, .08); border-radius: 8px; padding: 28px; }
.card-light h3 { font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.checks { display: grid; gap: 8px; font-size: 14px; color: rgba(23, 21, 18, .65); }
.checks li { display: flex; gap: 10px; }
.checks li > span { color: var(--gold-deep); }

.faq { margin-top: 110px; padding-bottom: 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 64px; align-items: start; }
.faq .light-lead { margin: 0; }
.faq-item { border-top: 1px solid rgba(23, 21, 18, .12); }
.faq-item:last-child { border-bottom: 1px solid rgba(23, 21, 18, .12); }
.faq-item h3 { font-size: inherit; font-weight: inherit; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 17px; font-weight: 700; color: var(--light-text);
}
.faq-icon { font-family: var(--mono); font-size: 20px; color: var(--gold-deep); flex: none; }
.faq-icon::before { content: "+"; }
.faq-q[aria-expanded="true"] .faq-icon::before { content: "\2212"; }
.faq-a { padding: 0 40px 24px 0; font-size: 15px; line-height: 1.65; color: rgba(23, 21, 18, .62); }

/* --- Newsletter (CTA) ----------------------------------------------------- */
.cta { background: linear-gradient(135deg, #F8EB95, #D0A84F); padding: 100px 32px; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; align-items: start; }
.cta .eyebrow { color: rgba(23, 19, 8, .6); }
.cta h2 { margin: 0 0 20px; font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--ink); text-wrap: balance; }
.cta-lead { font-size: 17px; line-height: 1.55; color: rgba(23, 19, 8, .7); max-width: 480px; }
.cta :focus-visible { outline-color: var(--ink); }
.cta-card { background: var(--bg); color: var(--text); border-radius: 8px; padding: 32px; box-shadow: 0 30px 60px rgba(23, 19, 8, .25); }
.cta-card :focus-visible { outline-color: var(--gold); }
.cta-card h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.cta-card-lead { margin: 0 0 22px; font-size: 14px; line-height: 1.55; color: rgba(243, 241, 236, .6); }
.cta-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; font-size: 13px; color: rgba(243, 241, 236, .6); }
.cta-form .input { padding: 13px; }
.cta-form .btn-primary { padding: 14px; }
.doi-note { margin-top: 14px; font-family: var(--mono); font-size: 11px; line-height: 1.7; color: rgba(243, 241, 236, .4); }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--bg-deep); padding: 64px 32px 32px; position: relative; overflow: hidden; }
.footer-skew { position: absolute; right: -10%; top: 0; width: 45%; height: 100%; background: #100E0C; transform: skewX(-14deg); pointer-events: none; }
.footer-grid { position: relative; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.footer-about { margin-top: 14px; font-size: 14px; line-height: 1.55; color: rgba(243, 241, 236, .55); max-width: 280px; }
.pills { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.pill { font-size: 11px; padding: 5px 10px; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, .15); color: rgba(243, 241, 236, .6); }
.footer-col h2 { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: rgba(243, 241, 236, .45); margin-bottom: 14px; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a, .footer-links a:hover { color: rgba(243, 241, 236, .75); }
.footer-bottom { position: relative; max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; justify-content: space-between; font-size: 12px; color: rgba(243, 241, 236, .4); flex-wrap: wrap; gap: 8px; }

/* --- Bewegung reduzieren, Druck ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bg, .site-header { display: none; }
}
