/* ==========================================================================
   Dukino — Website
   Palette und Typografie sind 1:1 aus der App übernommen (app/lib/theme/
   app_theme.dart), damit Website und Produkt als dieselbe Marke lesen.
   ========================================================================== */

/* Schriften liegen lokal statt beim Google-CDN: die Seite lädt damit keine
   fremden Ressourcen, funktioniert offline und setzt keine Drittanbieter-
   Requests ab — bei einer Kinder-App die sauberere Variante. Beide Familien
   sind variable Fonts (eine Datei deckt den ganzen Schnittbereich ab), Lizenz
   siehe assets/fonts/OFL.txt. */
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/baloo2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:        #0B0F24;
  --bg-mid:    #141939;
  --bg-top:    #252E63;
  --card:      rgba(255, 255, 255, .05);
  --card-2:    rgba(255, 255, 255, .075);
  --border:    rgba(255, 255, 255, .08);
  --border-2:  rgba(255, 255, 255, .16);
  --text:      #ECEAF6;
  --muted:     #A9AED2;
  --faint:     #8B90B8;
  --gold:      #FFC55C;
  --gold-deep: #FFB347;
  --purple:    #8F7BFF;
  --purple-deep: #5C48C9;
  --teal:      #7FD4C1;
  --pink:      #FF9CAB;
  --blue:      #6AA9FF;

  --font-head: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-soft: 0 18px 50px rgba(0, 0, 0, .38);
  --shadow-hard: 0 30px 80px rgba(0, 0, 0, .55);
  --maxw: 1180px;
}

/* --------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

::selection { background: rgba(255, 197, 92, .3); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #23180a; padding: 10px 18px;
  border-radius: 0 0 12px 0; font-weight: 800;
}
.skip-link:focus { left: 0; }

/* ------------------------------- Hintergrund ----------------------------- */
#starfield {
  position: fixed; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  background: radial-gradient(120% 90% at 50% -20%, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg) 100%);
}

.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48rem 26rem at 12% 8%,  rgba(143, 123, 255, .20), transparent 62%),
    radial-gradient(40rem 24rem at 88% 22%, rgba(255, 197, 92, .12),  transparent 60%),
    radial-gradient(46rem 30rem at 60% 92%, rgba(127, 212, 193, .10), transparent 62%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2.5%, 2%, 0) scale(1.07); }
}

/* --------------------------------- Layout -------------------------------- */
.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 44px, 820px); }

.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head.reveal { }

.kicker {
  font-family: var(--font-body);
  font-weight: 800; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; }

h1 { font-size: clamp(2.5rem, 6.2vw, 4.15rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); letter-spacing: -.3px; }
h3 { font-size: 1.28rem; }

.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 16px; max-width: 62ch; }
.section-sub strong { color: var(--text); }

.grad-gold {
  background: linear-gradient(102deg, var(--gold) 8%, var(--pink) 58%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}

/* --------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 800; font-size: 1rem; letter-spacing: .2px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #2A1C05;
  box-shadow: 0 12px 30px rgba(255, 179, 71, .28);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(255, 179, 71, .4); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple) 55%, #A894FF);
  color: #fff;
  box-shadow: 0 12px 30px rgba(92, 72, 201, .38);
}
.btn-purple:hover { box-shadow: 0 18px 40px rgba(92, 72, 201, .5); }

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .3); }

.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

/* --------------------------------- Header -------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(11, 15, 36, .82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .34);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 26px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.42rem;
  letter-spacing: .2px;
}

.site-nav { display: flex; gap: 6px; margin-left: auto; }
.site-nav a {
  padding: 9px 15px; border-radius: 999px;
  color: var(--muted); font-weight: 700; font-size: .95rem;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.site-nav a.is-active { color: var(--gold); background: rgba(255, 197, 92, .1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--border-2);
  cursor: pointer; padding: 12px 11px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------- Hero --------------------------------- */
.hero { padding: clamp(46px, 7vw, 92px) 0 clamp(60px, 8vw, 100px); }

.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px, 5vw, 72px); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(143, 123, 255, .14); border: 1px solid rgba(143, 123, 255, .3);
  color: #CFC7FF; font-weight: 700; font-size: .88rem; margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(127, 212, 193, .6); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(127, 212, 193, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 212, 193, 0); }
}

.lead { color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.2rem); margin-top: 22px; max-width: 58ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px;
  color: var(--faint); font-size: .92rem; font-weight: 600;
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }

/* Telefon-Mockup. Die Box ist bewusst nur so breit wie das Telefon selbst —
   die schwebenden Chips hängen prozentual daran und blieben sonst auf breiten
   Einspaltern (Tablet) außerhalb des Viewports. */
.hero-visual {
  position: relative;
  width: min(322px, 78vw);
  margin-inline: auto;
}

.glow-orb {
  position: absolute; width: 112%; aspect-ratio: 1; top: 4%; left: -6%;
  background: radial-gradient(circle, rgba(143, 123, 255, .30) 0%, rgba(255, 197, 92, .10) 42%, transparent 68%);
  filter: blur(12px); z-index: 0;
}

.phone {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 9 / 18.6;
  border-radius: 44px; padding: 11px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .05));
  box-shadow: var(--shadow-hard);
  animation: bob 7s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.1deg); }
  50%      { transform: translateY(-14px) rotate(.8deg); }
}

.phone-notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; border-radius: 999px; background: #05081a; z-index: 3;
}

.phone-screen {
  height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(110% 70% at 50% -10%, #252E63, #141939 55%, #0B0F24);
  padding: 40px 17px 17px; display: flex; flex-direction: column; gap: 12px;
}

.ph-top { display: flex; justify-content: space-between; align-items: center; }
.ph-brand { font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.ph-credits {
  font-size: .74rem; font-weight: 800; color: var(--gold);
  background: rgba(255, 197, 92, .13); border: 1px solid rgba(255, 197, 92, .28);
  padding: 3px 10px; border-radius: 999px;
}

.ph-cover { position: relative; border-radius: 16px; overflow: hidden; height: 34%; flex: none; }
.ph-cover img { width: 100%; height: 100%; object-fit: cover; }
.ph-tag {
  position: absolute; left: 9px; bottom: 9px;
  background: rgba(11, 15, 36, .72); backdrop-filter: blur(6px);
  padding: 3px 10px; border-radius: 999px; font-size: .7rem; font-weight: 800;
}

.ph-title { font-size: .98rem; line-height: 1.25; }
.ph-text {
  font-size: .78rem; color: var(--muted); line-height: 1.55; flex: 1; overflow: hidden;
}
.ph-text::after {
  content: ""; display: inline-block; width: 2px; height: .82em;
  background: var(--gold); margin-left: 2px; vertical-align: -1px;
  animation: caret 1s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.ph-choice { display: flex; flex-direction: column; gap: 6px; }
.ph-choice-label { font-size: .68rem; color: var(--faint); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ph-btn {
  font-size: .76rem; font-weight: 700; padding: 9px 12px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(92, 72, 201, .85), rgba(143, 123, 255, .85));
}
.ph-btn-alt { background: rgba(255, 255, 255, .07); border: 1px solid var(--border-2); color: var(--muted); }

.float-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(20, 25, 57, .9); border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
  padding: 10px 16px; border-radius: 999px;
  font-size: .84rem; font-weight: 700; box-shadow: var(--shadow-soft);
}
.chip-1 { left: -6%; top: 24%; animation: bob 6s ease-in-out infinite .6s; }
.chip-2 { right: -4%; bottom: 20%; animation: bob 8s ease-in-out infinite 1.2s; }

/* Statistik-Leiste */
.stat-strip {
  margin-top: clamp(48px, 7vw, 84px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 26px 18px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.stat { text-align: center; padding: 6px 8px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat strong {
  display: block; font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800; color: var(--gold); line-height: 1.1;
}
.stat span { font-size: .88rem; color: var(--faint); font-weight: 600; }

/* -------------------------------- Schritte ------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step {
  position: relative; padding: 34px 28px 30px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.step:hover { transform: translateY(-5px); border-color: var(--border-2); background: var(--card-2); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #2A1C05;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  margin-bottom: 20px; box-shadow: 0 10px 24px rgba(255, 179, 71, .25);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .98rem; }

/* --------------------------------- Demo ---------------------------------- */
.section-demo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(60rem 30rem at 50% 40%, rgba(143, 123, 255, .12), transparent 70%);
}

.demo {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px; align-items: stretch;
}

.demo-panel {
  background: rgba(20, 25, 57, .58);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  padding: 30px 28px;
  min-height: 540px;
  position: relative; overflow: hidden;
}

.demo-progress {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255, 255, 255, .08);
}
.demo-progress span {
  display: block; height: 100%; width: 33%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.demo-stepno { color: var(--faint); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.demo-step > h3 { margin: 8px 0 22px; font-size: 1.5rem; }
.demo-step { animation: stepIn .38s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } }

.field { display: block; }
.field > span { display: block; font-weight: 700; font-size: .92rem; color: var(--muted); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 15px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--border-2);
  font-weight: 700; font-size: 1.05rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus { outline: none; border-color: var(--purple); background: rgba(255, 255, 255, .09); }
.field-hint { color: var(--faint); font-size: .86rem; margin-top: 10px; }

.demo-nav { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.demo-nav .btn-purple, .demo-nav .btn-gold { margin-left: auto; }

/* Themen-Auswahl in der Demo — zwei Reihen à zwei Karten, wie im Assistenten */
.theme-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.theme-shuffle { margin-top: 12px; }
.wp-item {
  position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: rgba(255, 255, 255, .05);
  aspect-ratio: 16 / 10; padding: 0; text-align: left;
  transition: transform .2s ease, border-color .2s ease;
}
.wp-item img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: opacity .25s ease, transform .4s ease; }
.wp-item:hover img { opacity: 1; transform: scale(1.06); }
.wp-item span {
  position: absolute; left: 10px; bottom: 9px; right: 10px;
  font-weight: 800; font-size: .86rem; text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
}
.wp-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 36, .88) 0%, transparent 62%);
}
.wp-item.is-active { border-color: var(--gold); transform: translateY(-3px); }
.wp-item.is-active::before {
  content: "✓"; position: absolute; z-index: 2; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: #2A1C05; font-weight: 900; font-size: .8rem;
}

/* Optionen */
.opt-list { display: flex; flex-direction: column; gap: 10px; }
.opt, .calc-check {
  display: flex; align-items: flex-start; gap: 13px; cursor: pointer;
  padding: 13px 15px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border);
  transition: background .2s ease, border-color .2s ease;
}
.opt:hover, .calc-check:hover { background: rgba(255, 255, 255, .08); border-color: var(--border-2); }
.opt input, .calc-check input { position: absolute; opacity: 0; pointer-events: none; }
.opt-box {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 2px;
  border: 2px solid var(--border-2); background: rgba(255, 255, 255, .04);
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.opt-box::after {
  content: ""; width: 10px; height: 6px; border-left: 2.5px solid #2A1C05; border-bottom: 2.5px solid #2A1C05;
  transform: rotate(-45deg) scale(0); transition: transform .18s ease; margin-top: -2px;
}
input:checked + .opt-box { background: var(--gold); border-color: var(--gold); }
input:checked + .opt-box::after { transform: rotate(-45deg) scale(1); }
.opt-text { display: flex; flex-direction: column; }
.opt-text strong { font-size: .98rem; }
.opt-text em { font-style: normal; color: var(--faint); font-size: .85rem; }
.tag-mini {
  display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 999px;
  background: rgba(255, 197, 92, .16); color: var(--gold);
  font-size: .68rem; font-weight: 800; letter-spacing: .04em;
}

.demo-cost {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding: 15px 18px; border-radius: var(--r-md);
  background: rgba(255, 197, 92, .08); border: 1px dashed rgba(255, 197, 92, .34);
  font-size: .95rem; color: var(--muted);
}
.demo-cost strong { color: var(--gold); font-size: 1.05rem; }

/* Leseansicht */
.demo-reader { display: flex; flex-direction: column; }

.reader-idle {
  margin: auto; text-align: center; color: var(--faint); padding: 30px;
}
.idle-art { width: 132px; margin: 0 auto 18px; opacity: .85; animation: spinSlow 22s linear infinite; }
.idle-art svg { width: 100%; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.reader-loading { margin: auto; text-align: center; width: min(320px, 100%); }
.spark {
  width: 56px; height: 56px; margin: 0 auto 24px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, rgba(255, 197, 92, 0) 70%);
  animation: sparkPulse 1.1s ease-in-out infinite;
}
@keyframes sparkPulse {
  0%, 100% { transform: scale(.75); opacity: .55; }
  50%      { transform: scale(1.25); opacity: 1; }
}
.loading-line { font-weight: 700; margin-bottom: 16px; min-height: 1.6em; }
.loading-bar { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.loading-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width .3s linear;
}

.reader-story { display: flex; flex-direction: column; min-height: 0; }
.reader-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.reader-tag {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(127, 212, 193, .12); border: 1px solid rgba(127, 212, 193, .26);
  padding: 4px 12px; border-radius: 999px;
}
.reader-restart {
  background: none; border: none; cursor: pointer; color: var(--faint);
  font-weight: 700; font-size: .88rem; text-decoration: underline; text-underline-offset: 3px;
  padding: 4px;
}
.reader-restart:hover { color: var(--text); }

.reader-title { font-size: 1.6rem; margin-bottom: 18px; }

.reader-body {
  overflow-y: auto; max-height: 430px; padding-right: 10px;
  display: flex; flex-direction: column; gap: 16px;
  scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .2) transparent;
}
.reader-body::-webkit-scrollbar { width: 7px; }
.reader-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .18); border-radius: 999px; }

.rb-block { animation: blockIn .5s ease both; }
@keyframes blockIn { from { opacity: 0; transform: translateY(14px); } }

.rb-para { color: #DAD8EC; font-size: 1rem; line-height: 1.78; }

.rb-image { border-radius: var(--r-md); overflow: hidden; position: relative; }
.rb-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rb-image figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px;
  background: linear-gradient(to top, rgba(11, 15, 36, .9), transparent);
  font-size: .8rem; color: var(--muted); font-weight: 600;
}

.rb-decision, .rb-riddle {
  padding: 18px 18px 16px; border-radius: var(--r-md);
  background: rgba(143, 123, 255, .1); border: 1px solid rgba(143, 123, 255, .3);
}
.rb-riddle { background: rgba(255, 197, 92, .08); border-color: rgba(255, 197, 92, .3); }
.rb-decision > p, .rb-riddle > p { font-weight: 700; margin-bottom: 13px; font-size: .98rem; }
.rb-choices { display: flex; flex-direction: column; gap: 9px; }
.rb-choice {
  text-align: left; cursor: pointer; padding: 12px 16px; border-radius: 13px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--border-2);
  font-weight: 700; font-size: .94rem;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.rb-choice:hover:not(:disabled) { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .32); transform: translateX(4px); }
.rb-choice:disabled { cursor: default; opacity: .5; }
.rb-choice.is-picked { background: linear-gradient(135deg, var(--purple-deep), var(--purple)); border-color: transparent; opacity: 1; color: #fff; }
.rb-choice.is-right { background: rgba(127, 212, 193, .22); border-color: var(--teal); opacity: 1; }
.rb-choice.is-wrong { background: rgba(255, 156, 171, .18); border-color: var(--pink); opacity: 1; }
.rb-feedback { margin-top: 12px; font-size: .93rem; color: var(--muted); }

.rb-end {
  text-align: center; padding: 22px 18px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border);
}
.rb-end p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }

/* -------------------------------- Features -------------------------------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 18px;
}
.feature {
  padding: 30px 26px 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--card-2); }
.feature-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
  background: rgba(143, 123, 255, .16); border: 1px solid rgba(143, 123, 255, .28);
  font-size: 1.5rem; margin-bottom: 18px;
}
.feature h3 { margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* Frisch ausgelieferte Funktion - hebt sich ab, ohne die Kachel umzubauen. */
.feature-new { position: relative; border-color: rgba(255, 197, 92, .4); background: rgba(255, 197, 92, .07); }
.feature-new .feature-icon { background: rgba(255, 197, 92, .16); border-color: rgba(255, 197, 92, .32); }
.feature-flag {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #2A1C05;
  padding: 3px 12px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
}
.feature p .tag-mini { vertical-align: 1px; }

/* --------------------------------- Themen -------------------------------- */
/* Zwanzig Kacheln wollen kleiner sein als die früheren sechs Welt-Karten: fünf
   Spalten zeigen den ganzen Vorrat, ohne die Seite in die Länge zu ziehen. */
.theme-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.theme-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 1 / 1;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.theme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hard); border-color: var(--border-2); }
.theme-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.theme-card:hover img { transform: scale(1.08); }
.theme-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 36, .94) 4%, rgba(11, 15, 36, .3) 46%, transparent 74%);
}
.theme-card h3 {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 0 14px 13px; font-size: .98rem; line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

/* -------------------------------- Bildstile ------------------------------- */
.section-styles::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(50rem 26rem at 78% 30%, rgba(255, 197, 92, .09), transparent 68%);
}

.style-switcher { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 26px; align-items: start; }

.style-tabs { display: flex; flex-direction: column; gap: 8px; }
.style-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  text-align: left; cursor: pointer; padding: 14px 18px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.style-tab:hover { background: rgba(255, 255, 255, .09); transform: translateX(3px); }
.style-tab strong { font-weight: 800; font-size: 1rem; }
.style-tab em { font-style: normal; color: var(--faint); font-size: .84rem; }
.style-tab.is-active {
  background: linear-gradient(135deg, rgba(92, 72, 201, .5), rgba(143, 123, 255, .3));
  border-color: rgba(143, 123, 255, .55);
}
.style-tab.is-active em { color: #CFC7FF; }

.style-stage { position: relative; }
.style-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 10; border: 1px solid var(--border-2); box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, .04);
}
.style-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04); transition: opacity .5s ease, transform .7s ease;
}
.style-frame img.is-shown { opacity: 1; transform: scale(1); }
.style-stage figcaption { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.style-stage figcaption strong { font-family: var(--font-head); font-size: 1.2rem; }
.style-stage figcaption span { color: var(--muted); font-size: .95rem; }

/* --------------------------------- Eltern -------------------------------- */
.parents {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start;
}
.parents-copy {
  padding: clamp(30px, 4vw, 46px);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
}
.parents-copy > p { color: var(--muted); margin-top: 16px; }

.check-list { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.check-list li { position: relative; padding-left: 36px; color: var(--muted); font-size: .99rem; }
.check-list li em { font-style: normal; color: var(--text); font-weight: 700; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(127, 212, 193, .18); color: var(--teal); font-weight: 900; font-size: .82rem;
}

.parents-card {
  padding: clamp(28px, 3.4vw, 38px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(92, 72, 201, .34), rgba(20, 25, 57, .7));
  border: 1px solid rgba(143, 123, 255, .34);
}
.parents-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.parents-card > p { color: #CFC7FF; font-size: .99rem; }
.parents-quote {
  margin-top: 24px; padding: 18px; border-radius: var(--r-md);
  background: rgba(11, 15, 36, .48); border: 1px solid var(--border);
  display: flex; gap: 13px;
}
.parents-quote span { color: var(--gold); font-size: 1.1rem; }
.parents-quote p { font-size: .92rem; color: var(--muted); }

/* ------------------------------ App-Download ------------------------------ */
.appdl {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start;
}
.appdl-copy {
  padding: clamp(30px, 4vw, 46px);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
}
.appdl-copy > p { color: var(--muted); margin-top: 16px; }

.appdl-card {
  padding: clamp(28px, 3.4vw, 38px); text-align: center;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(92, 72, 201, .34), rgba(20, 25, 57, .7));
  border: 1px solid rgba(143, 123, 255, .34);
}
.appdl-icon { width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 22px; box-shadow: var(--shadow-soft); }
.appdl-card h3 { font-size: 1.3rem; }
.appdl-meta { color: #CFC7FF; font-size: .92rem; margin: 6px 0 22px; }
.appdl-hint { color: var(--muted); font-size: .84rem; margin-top: 18px; }

/* --------------------------------- Preise -------------------------------- */
.billing-toggle {
  display: inline-flex; gap: 4px; padding: 5px; margin-bottom: 34px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border-2); border-radius: 999px;
}
.bt-opt {
  border: none; background: none; cursor: pointer; border-radius: 999px;
  padding: 11px 24px; font-weight: 800; color: var(--muted); font-size: .95rem;
  transition: background .22s ease, color .22s ease;
  display: inline-flex; align-items: center; gap: 9px;
}
.bt-opt.is-active { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #2A1C05; }
.save {
  font-size: .74rem; padding: 2px 9px; border-radius: 999px;
  background: rgba(127, 212, 193, .2); color: var(--teal); font-weight: 800;
}
.bt-opt.is-active .save { background: rgba(42, 28, 5, .16); color: #2A1C05; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.plan { padding: 34px 28px 30px; display: flex; flex-direction: column; position: relative; }
.plan h3 { font-size: 1.5rem; }
.plan-price { margin-top: 12px; display: flex; align-items: baseline; gap: 5px; }
.plan-price strong { font-family: var(--font-head); font-size: 2.7rem; font-weight: 800; line-height: 1; }
.plan-price span { color: var(--faint); font-weight: 700; }
.plan-note { color: var(--faint); font-size: .87rem; margin-top: 6px; min-height: 1.4em; }
.plan-credits {
  margin: 20px 0 22px; padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(255, 197, 92, .09); border: 1px solid rgba(255, 197, 92, .24);
  color: var(--gold); font-weight: 700; font-size: .95rem;
}
.plan-credits strong { font-size: 1.15rem; }
.plan-credits em { display: block; font-style: normal; color: var(--faint); font-weight: 600; font-size: .85rem; margin-top: 2px; }

.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-feats li { position: relative; padding-left: 30px; font-size: .95rem; color: var(--muted); }
.plan-feats li::before {
  position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 7px;
  display: grid; place-items: center; font-weight: 900; font-size: .74rem;
}
.plan-feats .yes::before { content: "✓"; background: rgba(127, 212, 193, .17); color: var(--teal); }
.plan-feats .no::before  { content: "×"; background: rgba(255, 255, 255, .06); color: var(--faint); }
.plan-feats .no { color: var(--faint); text-decoration: line-through; text-decoration-color: rgba(139, 144, 184, .5); }

.plan-featured {
  border-color: rgba(255, 197, 92, .42);
  background: linear-gradient(165deg, rgba(255, 197, 92, .11), rgba(255, 255, 255, .05) 46%);
  box-shadow: 0 24px 60px rgba(255, 179, 71, .12);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #2A1C05;
  padding: 5px 18px; border-radius: 999px; font-size: .78rem; font-weight: 800;
  white-space: nowrap; box-shadow: 0 8px 22px rgba(255, 179, 71, .3);
}

/* Credit-Rechner */
.calc {
  margin-top: 26px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 0;
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--card); border: 1px solid var(--border); backdrop-filter: blur(10px);
}
.calc-copy { padding: clamp(28px, 3.5vw, 40px); }
.calc-copy > p { color: var(--muted); margin-top: 10px; font-size: .98rem; }
.calc-controls { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }

.calc-row { display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 16px; }
.calc-row > span { font-weight: 700; font-size: .95rem; color: var(--muted); }
.calc-row output {
  min-width: 42px; text-align: center; font-weight: 800; font-family: var(--font-head);
  font-size: 1.2rem; color: var(--gold);
  background: rgba(255, 197, 92, .11); border-radius: 10px; padding: 3px 9px;
}
.calc-check { align-items: center; }
.calc-check > span:last-child { font-size: .93rem; color: var(--muted); }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: rgba(255, 255, 255, .12); cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  box-shadow: 0 4px 14px rgba(255, 179, 71, .45); border: none; cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  box-shadow: 0 4px 14px rgba(255, 179, 71, .45); cursor: grab;
}

.calc-result {
  padding: clamp(28px, 3.5vw, 40px);
  background: linear-gradient(160deg, rgba(92, 72, 201, .36), rgba(11, 15, 36, .5));
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.calc-need { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #CFC7FF; }
.calc-value { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1.1; margin: 6px 0 4px; }
.calc-value em { font-style: normal; font-size: .95rem; font-family: var(--font-body); color: var(--muted); font-weight: 600; }
.calc-plan { margin-top: 14px; font-size: 1.05rem; color: var(--muted); }
.calc-plan strong { color: var(--gold); font-family: var(--font-head); font-size: 1.35rem; }
.calc-hint { color: var(--faint); font-size: .88rem; margin-top: 4px; }

/* Credit-Pakete */
.packs { margin-top: 26px; padding: clamp(28px, 3.5vw, 42px); border-radius: var(--r-xl);
  background: var(--card); border: 1px solid var(--border); backdrop-filter: blur(10px); }
.packs h3 { font-size: 1.42rem; }
.packs-sub { color: var(--muted); margin-top: 8px; font-size: .97rem; }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.pack {
  position: relative; text-align: center; padding: 26px 18px 22px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pack:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); border-color: var(--border-2); }
.pack > strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.pack > span { display: block; color: var(--faint); font-size: .85rem; font-weight: 700; margin-top: 2px; }
.pack > b { display: block; font-size: 1.3rem; margin-top: 14px; font-weight: 800; }
.pack > em { display: block; font-style: normal; color: var(--faint); font-size: .82rem; margin-top: 4px; }
.pack-best { border-color: rgba(255, 197, 92, .4); background: rgba(255, 197, 92, .07); }
.pack-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #2A1C05; padding: 3px 14px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; white-space: nowrap;
}
.packs-foot { margin-top: 22px; color: var(--faint); font-size: .9rem; text-align: center; }
.packs-foot b { color: var(--gold); }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--r-md); border: 1px solid var(--border);
  background: var(--card); backdrop-filter: blur(10px);
  transition: border-color .22s ease, background .22s ease;
}
.faq-item[open] { border-color: rgba(143, 123, 255, .4); background: rgba(143, 123, 255, .07); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px;
  font-weight: 800; font-size: 1.04rem; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: var(--gold); font-size: 1.25rem; font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); background: rgba(255, 197, 92, .16); }
.faq-item p { padding: 0 24px 22px; color: var(--muted); font-size: .99rem; animation: blockIn .3s ease both; }
.faq-item p em { font-style: italic; color: var(--text); }

/* ---------------------------------- CTA ---------------------------------- */
.section-cta { padding-bottom: clamp(80px, 9vw, 120px); }
.cta-box {
  text-align: center; padding: clamp(46px, 6vw, 76px) clamp(24px, 4vw, 60px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(255, 197, 92, .16), transparent 62%),
    linear-gradient(165deg, rgba(92, 72, 201, .34), rgba(20, 25, 57, .72));
  border: 1px solid rgba(255, 197, 92, .26);
  box-shadow: var(--shadow-hard);
}
.cta-box h2 { font-size: clamp(1.75rem, 3.6vw, 2.8rem); }
.cta-box > p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* --------------------------------- Footer -------------------------------- */
.site-footer { border-top: 1px solid var(--border); padding: clamp(48px, 6vw, 72px) 0 34px; background: rgba(11, 15, 36, .6); }
.footer-inner { display: grid; grid-template-columns: 1.15fr 1.4fr; gap: 40px; }
.footer-brand p { color: var(--faint); margin-top: 16px; max-width: 42ch; font-size: .95rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav h4 { font-size: 1rem; margin-bottom: 14px; }
.footer-nav a { display: block; color: var(--faint); font-size: .94rem; padding: 5px 0; transition: color .18s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--faint); font-size: .88rem;
}

/* ----------------------------- Scroll-Reveal ------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------- Responsive ------------------------------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 6px; width: min(290px, 70vw); }
  .demo { grid-template-columns: 1fr; }
  .demo-panel { min-height: 0; }
  .theme-grid { grid-template-columns: repeat(4, 1fr); }
  .parents { grid-template-columns: 1fr; }
  .appdl { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc-result { border-left: none; border-top: 1px solid var(--border); }
  .style-switcher { grid-template-columns: 1fr; }
  .style-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .style-tab { min-width: 172px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .site-nav {
    position: fixed; inset: 64px 14px auto 14px;
    flex-direction: column; gap: 2px; padding: 14px;
    background: rgba(20, 25, 57, .97); border: 1px solid var(--border-2);
    border-radius: var(--r-lg); box-shadow: var(--shadow-hard);
    backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 13px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
  .steps { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .theme-card h3 { font-size: .88rem; padding: 0 11px 10px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .stat:nth-child(3) { border-left: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap, .wrap-narrow { width: min(100% - 32px, var(--maxw)); }
  /* Kleineres Telefon, damit die Überschrift auf dem Handy noch über die
     Falz rutscht statt komplett unter das Mockup zu wandern. */
  .hero-visual { width: min(232px, 58vw); }
  .ph-cover { height: 30%; }
  .ph-title { font-size: .88rem; }
  .ph-text { font-size: .7rem; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; }
  .demo-panel { padding: 24px 20px; }
  .calc-row { grid-template-columns: 1fr auto; }
  .calc-row input[type="range"] { grid-column: 1 / -1; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .float-chip { font-size: .74rem; padding: 7px 11px; }
  .chip-1 { left: -20%; top: 19%; }
  .chip-2 { right: -18%; bottom: 12%; }
}

/* --------------------------- Bewegung reduzieren -------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
