/* ============================================================
   Trading Journal — marketing one-pager
   Dark, Apple-style scroll site. Pure CSS, no framework.
   Brand accents mirror the app: purple → pink → turquoise.
   ============================================================ */

/* ---------- Self-hosted fonts (GDPR-friendly — no Google CDN) ----------
   woff2 from Fontsource (OFL). Paths are relative to this file (css/). */
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/space-grotesk-400.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/space-grotesk-500.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/space-grotesk-600.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/space-grotesk-700.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/inter-600.woff2") format("woff2"); }

:root {
  --bg:        #000000;
  --bg-soft:   #08080b;
  --bg-alt:    #0c0c11;
  --card:      rgba(255, 255, 255, 0.045);
  --card-hi:   rgba(255, 255, 255, 0.07);
  --border:    rgba(255, 255, 255, 0.10);
  --border-hi: rgba(255, 255, 255, 0.16);

  --text:      #f5f5f7;
  --text-dim:  #a6a6b2;
  --text-mut:  #6b6b78;

  --acc-1: #8b5cf6;   /* purple */
  --acc-2: #ec4899;   /* pink   */
  --acc-3: #2dd4bf;   /* teal   */
  --grad:  linear-gradient(110deg, var(--acc-1) 0%, var(--acc-2) 50%, var(--acc-3) 100%);

  --pos: #34d399;
  --neg: #f87171;

  --font-display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --nav-h: 64px;
  --promo-h: 0px;   /* height of the launch-offer bar; 40px on pages that show it */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* gradient text */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  background-size: 160% 160%;
  box-shadow: 0 8px 30px -10px rgba(139, 92, 246, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(236, 72, 153, 0.6); background-position: 100% 50%; }
.btn--ghost {
  background: var(--card);
  color: var(--text);
  border-color: var(--border-hi);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-2px); background: var(--card-hi); border-color: var(--text-mut); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--soon { background: var(--card); color: var(--text-mut); border: 1px solid var(--border-hi); cursor: default; pointer-events: none; box-shadow: none; }

/* ---------- icons (self-hosted Material Symbols SVG, recoloured via CSS mask) ----------
   Same icon set as the app. The SVG is used as an alpha mask over a coloured box,
   so we can paint it with the brand gradient — no inline SVG, no Google CDN. */
.ic {
  display: inline-block; width: 28px; height: 28px; flex: none;
  background: var(--grad);
  -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
          mask-repeat: no-repeat;         mask-position: center;         mask-size: contain;
}
.ic--solid { background: currentColor; }
.ic--warn  { background: #fbbf24; }
/* per-icon mask (paths relative to THIS file in css/) */
.ic--lock                  { -webkit-mask-image: url(../assets/icons/lock.svg);                   mask-image: url(../assets/icons/lock.svg); }
.ic--experiment            { -webkit-mask-image: url(../assets/icons/experiment.svg);             mask-image: url(../assets/icons/experiment.svg); }
.ic--download              { -webkit-mask-image: url(../assets/icons/download.svg);               mask-image: url(../assets/icons/download.svg); }
.ic--account_balance_wallet{ -webkit-mask-image: url(../assets/icons/account_balance_wallet.svg); mask-image: url(../assets/icons/account_balance_wallet.svg); }
.ic--psychology            { -webkit-mask-image: url(../assets/icons/psychology.svg);             mask-image: url(../assets/icons/psychology.svg); }
.ic--edit_note             { -webkit-mask-image: url(../assets/icons/edit_note.svg);              mask-image: url(../assets/icons/edit_note.svg); }
.ic--sell                  { -webkit-mask-image: url(../assets/icons/sell.svg);                   mask-image: url(../assets/icons/sell.svg); }
.ic--update                { -webkit-mask-image: url(../assets/icons/update.svg);                 mask-image: url(../assets/icons/update.svg); }
.ic--save                  { -webkit-mask-image: url(../assets/icons/save.svg);                   mask-image: url(../assets/icons/save.svg); }
.ic--trending_up           { -webkit-mask-image: url(../assets/icons/trending_up.svg);            mask-image: url(../assets/icons/trending_up.svg); }
.ic--currency_bitcoin      { -webkit-mask-image: url(../assets/icons/currency_bitcoin.svg);       mask-image: url(../assets/icons/currency_bitcoin.svg); }
.ic--calendar_month        { -webkit-mask-image: url(../assets/icons/calendar_month.svg);         mask-image: url(../assets/icons/calendar_month.svg); }
.ic--all_inclusive         { -webkit-mask-image: url(../assets/icons/all_inclusive.svg);          mask-image: url(../assets/icons/all_inclusive.svg); }
.ic--warning               { -webkit-mask-image: url(../assets/icons/warning.svg);                mask-image: url(../assets/icons/warning.svg); }
.ic--desktop_windows       { -webkit-mask-image: url(../assets/icons/desktop_windows.svg);         mask-image: url(../assets/icons/desktop_windows.svg); }
.ic--laptop_mac            { -webkit-mask-image: url(../assets/icons/laptop_mac.svg);              mask-image: url(../assets/icons/laptop_mac.svg); }
.ic--forum                 { -webkit-mask-image: url(../assets/icons/forum.svg);                  mask-image: url(../assets/icons/forum.svg); }
.ic--bolt                  { -webkit-mask-image: url(../assets/icons/bolt.svg);                   mask-image: url(../assets/icons/bolt.svg); }
.ic--bug_report            { -webkit-mask-image: url(../assets/icons/bug_report.svg);             mask-image: url(../assets/icons/bug_report.svg); }
.ic--movie                 { -webkit-mask-image: url(../assets/icons/movie.svg);                  mask-image: url(../assets/icons/movie.svg); }
.ic--smartphone            { -webkit-mask-image: url(../assets/icons/smartphone.svg);             mask-image: url(../assets/icons/smartphone.svg); }
.fcard__icon .ic { width: 28px; height: 28px; }
.duo__icon .ic   { width: 40px; height: 40px; }
.callout__icon .ic { width: 22px; height: 22px; }
.hero__trust .ic { width: 15px; height: 15px; }
.hero__trust > span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   NAV
   ============================================================ */
/* ---------- promo / launch-offer bar ---------- */
body.has-promo { --promo-h: 40px; }
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--promo-h);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad); background-size: 200% 100%;
  color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.01em; padding: 0 16px;
  animation: promoShift 9s ease-in-out infinite;
}
.promo-bar a { color: #fff; }
.promo-bar__cta { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@keyframes promoShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (max-width: 600px) {
  .promo-bar { font-size: 0.74rem; gap: 6px; padding: 0 12px; }
  .promo-bar span[data-i18n="promo.text"] { white-space: nowrap; }
  .promo-bar__cta { display: none; }   /* whole bar already links to #pricing */
}

.nav {
  position: fixed; top: var(--promo-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(8, 8, 11, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.nav__mark {
  width: 26px; height: 26px;
  background: url(../assets/img/logo-mark.svg) center / contain no-repeat;
  filter: drop-shadow(0 1px 7px rgba(139, 92, 246, 0.4));
  flex: none;
}
.nav__name { font-size: 1.02rem; white-space: nowrap; }  /* "Konjo Trading" nie umbrechen */
.nav__links { display: flex; gap: 2px; }
.nav__link {
  position: relative;
  padding: 8px 11px;
  font-size: 0.9rem;
  color: var(--text-dim);
  border-radius: 999px;
  white-space: nowrap;          /* nie mitten im Label umbrechen (z.B. "AI Coach") */
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
.nav__cta { padding: 9px 18px; font-size: 0.88rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* language switcher */
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border-hi); border-radius: 999px;
  overflow: hidden; background: var(--card);
}
.lang-switch__btn {
  background: none; border: 0; cursor: pointer;
  color: var(--text-dim); font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.02em; padding: 6px 11px;
  transition: background 0.2s, color 0.2s;
}
.lang-switch__btn.is-active { background: var(--grad); color: #fff; }
.lang-switch__btn:not(.is-active):hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--promo-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(139, 92, 246, 0.28), transparent 70%),
    radial-gradient(45% 40% at 85% 25%, rgba(45, 212, 191, 0.16), transparent 70%),
    radial-gradient(45% 45% at 15% 30%, rgba(236, 72, 153, 0.16), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 26px;
  background: var(--card);
}
.hero__title {
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  font-weight: 700;
  margin: 0 auto 22px;
  max-width: 16ch;
}
.hero__konjo {
  max-width: 60ch; margin: 0 auto 18px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem); line-height: 1.4;
  letter-spacing: -0.01em; color: var(--text-dim);
}
.hero__konjo strong { font-weight: 700; }
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text-dim);
  max-width: 60ch; margin: 0 auto 30px;
}
/* No-subscription hook — prominent in the hero */
.hero__noabo {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 30px; padding: 11px 22px;
  border: 1px solid var(--border-hi); border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.06);
  font-size: clamp(0.95rem, 1.7vw, 1.12rem); color: var(--text-dim);
  text-align: left; line-height: 1.35;
}
.hero__noabo .ic { width: 20px; height: 20px; }
.hero__noabo strong { font-weight: 700; }

.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  color: #d9dae1; font-size: 0.95rem; font-weight: 600;
}
.hero__trust span:nth-child(even) { color: var(--text-dim); opacity: 0.6; font-weight: 400; }

.hero__visual { margin-top: 60px; perspective: 1600px; }
.hero__visual .window {
  transform: rotateX(8deg);
  transform-origin: center bottom;
  box-shadow: 0 50px 120px -40px rgba(139, 92, 246, 0.55), 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border-hi); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 2;
}
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: var(--text-dim); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { position: relative; padding: clamp(80px, 12vh, 150px) 0; scroll-margin-top: calc(var(--nav-h) + var(--promo-h)); }
.section--alt { background: var(--bg-soft); }
.section--features { background: var(--bg-soft); }
.section__head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--acc-2); margin-bottom: 16px; font-weight: 600;
}
.h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 22px; }
.lead { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--text-dim); max-width: 58ch; margin-inline: auto; }

/* ---------- WHY grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
/* 4 USP-Karten (Warum Konjo): 2×2 statt 4 schmaler Spalten; <900px greift 1fr unten. */
.why-grid--4 { grid-template-columns: repeat(2, 1fr); }
.why-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px; transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--border-hi); background: var(--card-hi); }
.why-card__num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.why-card h3 { font-size: 1.35rem; margin: 14px 0 10px; }
.why-card p { color: var(--text-dim); font-size: 0.98rem; }
.why-quote {
  text-align: center; max-width: 30ch; margin: 70px auto 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2.3rem); line-height: 1.25;
  color: var(--text); letter-spacing: -0.02em;
}

/* ============================================================
   FEATURES — horizontal scroll
   ============================================================ */
.features { position: relative; --gutter: max(24px, calc((100vw - var(--maxw)) / 2 + 24px)); }
.features__track {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  /* scroll-padding must mirror the visual inset, otherwise mandatory-snap forces
     the start position to land at the gutter (scrollLeft != 0) -> first card hides
     under the prev arrow and the arrow never disables. */
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 10px var(--gutter) 30px;
  scrollbar-width: none;
}
.features__track::-webkit-scrollbar { display: none; }
.fcard {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: var(--card); border: 1px solid var(--border); border-radius: 22px;
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.fcard:hover { transform: translateY(-6px); border-color: var(--border-hi); background: var(--card-hi); }
.fcard__icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border); margin-bottom: 18px;
}
.fcard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.fcard p { color: var(--text-dim); font-size: 0.96rem; }

.features__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(20, 20, 26, 0.8); border: 1px solid var(--border-hi);
  color: var(--text); font-size: 1.6rem; line-height: 1;
  cursor: pointer; backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s var(--ease), opacity 0.25s;
}
.features__nav:hover { background: var(--card-hi); }
.features__nav--prev { left: 18px; }
.features__nav--next { right: 18px; }
.features__nav[disabled] { opacity: 0.25; cursor: default; }

/* ============================================================
   SPLIT (text + visual)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split__text { order: 2; }
.split--reverse .split__visual { order: 1; }
.split__text .eyebrow { text-align: left; }
.split__text .h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.split__text .lead { margin: 0 0 24px; text-align: left; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text-dim); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--grad); color: #fff; font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.section__head .chips { justify-content: center; margin-top: 26px; }
.chips span {
  font-size: 0.85rem; color: var(--text-dim);
  padding: 7px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
}

.fineprint { font-size: 0.8rem; color: var(--text-mut); margin-top: 14px; }
.fineprint code, .price-card__note code { color: var(--acc-3); background: rgba(45,212,191,0.08); padding: 1px 6px; border-radius: 5px; font-size: 0.92em; }

/* ============================================================
   WINDOW MOCKUP (reusable)
   ============================================================ */
.window {
  border-radius: 16px;
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid var(--border-hi);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.window__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 999px; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.window__title { margin-left: 12px; font-size: 0.8rem; color: var(--text-mut); font-family: var(--font-display); }
.window__body { padding: 22px; }
.window__body--app { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 18px; }

/* Real app screenshots sit directly under the title bar, edge to edge.
   aspect-ratio reserves the height before the (lazy) image loads -> no layout
   shift, so anchor links like “Grab the deal” land on the right section first try. */
.window .shot { display: block; width: 100%; height: auto; aspect-ratio: 1600 / 1030; cursor: zoom-in; }

/* Screenshot-Lightbox (S104): Klick auf einen App-Screenshot zeigt ihn
   bildschirmfuellend (WebPs sind 1600px breit -> echte Detail-Reserve).
   Schliessen: Klick irgendwo oder Escape. */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5, 5, 9, 0.93);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 28px 52px; cursor: zoom-out;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1600px, 96vw); max-height: calc(100vh - 90px);
  width: auto; height: auto; border-radius: 10px;
  border: 1px solid var(--border-hi);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}
.lightbox__hint {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center; color: var(--text-mut); font-size: 0.8rem;
}

/* Market-calendar screenshot under the Markets cards. */
.market-shot { max-width: 1000px; margin: 56px auto 0; perspective: 1600px; }

/* Horizontal gallery of extra dashboard screenshots (swipe / ‹ ›). */
.dash-scroll { position: relative; margin-top: 56px; --gutter: max(24px, calc((100vw - var(--maxw)) / 2 + 24px)); }
.dash-scroll__track {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 10px var(--gutter) 30px; scrollbar-width: none;
}
.dash-scroll__track::-webkit-scrollbar { display: none; }
.dash-scroll__item { scroll-snap-align: start; flex: 0 0 min(720px, 86vw); margin: 0; }
.dash-scroll__item .window { width: 100%; }
.dash-scroll__cap { max-width: 600px; margin: 20px auto 0; text-align: center; color: var(--text-dim); font-size: 1.02rem; line-height: 1.55; padding: 0 16px; }
.dash-scroll__cap strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; letter-spacing: -0.01em; color: var(--text); margin-bottom: 6px;
}
.dash-more {
  text-align: center; max-width: 660px; margin: 26px auto 0;
  font-family: var(--font-display); font-weight: 500; color: var(--text-dim);
  font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.4;
}
.dash-more .grad { font-weight: 700; }

/* ============================================================
   SHOWCASE — wie Dashboard: zentrierter Textblock OBEN (in .container),
   darunter ein horizontaler Screenshot-Streifen (‹ › / wischbar).
   Aufbau & Verhalten identisch zu .dash-scroll.
   ============================================================ */
.showcase { position: relative; margin-top: 48px; --gutter: max(24px, calc((100vw - var(--maxw)) / 2 + 24px)); }
.showcase__text { max-width: 760px; margin: 0 auto; text-align: center; }
.showcase__text .eyebrow,
.showcase__text .lead { text-align: center; margin-inline: auto; }
.showcase__text .h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.showcase__text .lead { margin: 0 auto 22px; }
.showcase__text .ticks { text-align: left; display: inline-block; margin: 0 auto; }
.showcase__text .callout { margin-top: 18px; text-align: left; }

.showcase__gallery {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 10px var(--gutter) 30px; scrollbar-width: none;
}
.showcase__gallery::-webkit-scrollbar { display: none; }
/* Galerie mit nur EINEM Fenster (Setup-Tagebuch): mittig statt am Gutter kleben.
   Passt immer (Item < Viewport), daher kein Overflow-Clipping durch center. */
.showcase__gallery--single { justify-content: center; }
.showcase__item { scroll-snap-align: start; flex: 0 0 min(720px, 86vw); margin: 0; }
.showcase__item .window { width: 100%; }
.showcase__cap {
  margin: 16px auto 0; max-width: 600px; text-align: center;
  color: var(--text-dim); font-size: 1rem; line-height: 1.55; padding: 0 8px;
}
.showcase__cap strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; letter-spacing: -0.01em; color: var(--text); margin-bottom: 6px;
}
/* Pfeile an den äußeren Rändern des Streifens (wie die anderen Karussells) */
.showcase .features__nav--prev { left: 18px; }
.showcase .features__nav--next { right: 18px; }

@media (max-width: 1024px) {
  /* Mobile = approved Stand: Touch-Scroll, Pfeile aus, knapperes Padding,
     schmalere Items. */
  .showcase { margin-top: 36px; }
  .showcase__text { max-width: 600px; padding: 0 24px; }
  .showcase__gallery { gap: 20px; scroll-padding-inline: 24px; padding: 4px 24px 10px; }
  .showcase__item { flex: 0 0 86vw; }
  .showcase .features__nav { display: none; }
}

.mini-side { display: flex; flex-direction: column; gap: 7px; }
.mini-side__item {
  font-size: 0.8rem; color: var(--text-mut);
  padding: 8px 12px; border-radius: 9px;
}
.mini-side__item.is-active { color: var(--text); background: rgba(139, 92, 246, 0.16); border: 1px solid rgba(139,92,246,0.3); }

.mini-main { display: flex; flex-direction: column; gap: 16px; }

/* KPI cards */
/* Abo-Vergleich unter der Preis-Karte (S104) */
.price-compare { max-width: 680px; margin: 36px auto 0; text-align: center; }
.price-compare__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--text); margin-bottom: 14px;
}
.price-compare .kpi__val { font-size: 1.35rem; }
.price-compare__note { margin-top: 14px; color: var(--text-dim); font-size: 0.92rem; line-height: 1.5; }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpis--3 { grid-template-columns: repeat(3, 1fr); }
.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; }
.kpi__label { display: block; font-size: 0.7rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: 0.05em; }
.kpi__val { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-top: 4px; }
.kpi__val.pos, .pos { color: var(--pos); }
.kpi__val.neg, .neg { color: var(--neg); }

/* equity curve */
.equity { width: 100%; height: 150px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 8px; }
.equity svg { width: 100%; height: 100%; }
.equity__line { stroke-linecap: round; stroke-linejoin: round; }

/* heatmap */
.heatmap { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.heatmap--mini { grid-template-columns: repeat(14, 1fr); gap: 4px; }
.heatcell { aspect-ratio: 1; border-radius: 4px; background: rgba(255,255,255,0.05); }
.heatcell.p1 { background: rgba(52,211,153,0.28); }
.heatcell.p2 { background: rgba(52,211,153,0.5); }
.heatcell.p3 { background: rgba(52,211,153,0.78); }
.heatcell.n1 { background: rgba(248,113,113,0.3); }
.heatcell.n2 { background: rgba(248,113,113,0.6); }

/* bar chart */
.bars { display: flex; align-items: flex-end; gap: 6px; height: 120px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.bar { flex: 1; border-radius: 4px 4px 2px 2px; min-height: 6px; background: var(--grad); opacity: 0.85; }
.bar.neg { background: linear-gradient(180deg, #f87171, #b91c1c); }

/* rule list */
.rulelist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ruleitem { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; border-radius: 11px; background: var(--card); border: 1px solid var(--border); }
.ruleitem__txt { font-size: 0.92rem; color: var(--text); }
.badge { font-size: 0.72rem; font-weight: 600; font-family: var(--font-display); padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.badge--ok { color: var(--pos); background: rgba(52,211,153,0.13); border: 1px solid rgba(52,211,153,0.35); }
.badge--bad { color: var(--neg); background: rgba(248,113,113,0.13); border: 1px solid rgba(248,113,113,0.35); }
.ruleitem.bad { border-color: rgba(248,113,113,0.25); }

/* AI report */
.report { display: flex; flex-direction: column; gap: 12px; }
.report__head { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.report__line { font-size: 0.92rem; color: var(--text-dim); line-height: 1.5; }
.report__tag { display: inline-block; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; margin-right: 8px; background: rgba(139,92,246,0.18); color: #c4b5fd; text-transform: uppercase; letter-spacing: 0.04em; }
.report__tag.pos { background: rgba(52,211,153,0.16); color: var(--pos); }
.report__tag.neg { background: rgba(248,113,113,0.16); color: var(--neg); }
.report__bar { height: 9px; border-radius: 5px; background: var(--card-hi); }
.report__bar.w80 { width: 80%; } .report__bar.w60 { width: 60%; }

/* callout (AI data warning) */
.callout {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 26px; padding: 18px 20px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.28);
  font-size: 0.95rem; color: var(--text-dim);
}
.callout strong { color: var(--text); }
.callout__icon { font-size: 1.2rem; flex: none; }
.callout--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: left; }

/* changelog */
.changelog { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.changelog li { display: flex; gap: 14px; align-items: baseline; font-size: 0.95rem; color: var(--text-dim); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.changelog li:last-child { border-bottom: 0; }
.changelog__v { font-family: var(--font-display); font-weight: 700; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; flex: none; width: 40px; }

/* ---------- MARKETS duo ---------- */
.duo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.duo__card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 36px 30px; text-align: center; transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.duo__card:hover { transform: translateY(-6px); border-color: var(--border-hi); background: var(--card-hi); }
.duo__icon { font-size: 2.4rem; margin-bottom: 16px; }
.duo__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.duo__card p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- SUPPORT ---------- */
.support-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.support-cta + .fineprint { text-align: center; margin-top: 16px; }

/* ============================================================
   PRICING
   ============================================================ */
.section--pricing { text-align: center; overflow: hidden; }
.pricing__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 40%, rgba(139, 92, 246, 0.22), transparent 70%);
}
.section--pricing .container { position: relative; z-index: 1; }
.price-card {
  max-width: 460px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-hi); border-radius: 26px;
  padding: 40px 36px;
  box-shadow: 0 40px 90px -40px rgba(139, 92, 246, 0.5);
  text-align: left;
}
.price-card__plan { font-family: var(--font-display); font-weight: 600; color: var(--acc-2); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 12px 0 4px; font-family: var(--font-display); }
.price__cur { font-size: 1.6rem; font-weight: 600; color: var(--text-dim); }
.price__num { font-size: 4rem; font-weight: 700; letter-spacing: -0.03em; }
.price__per { font-size: 1rem; color: var(--text-mut); margin-left: 6px; }
.price__was { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-mut); text-decoration: line-through; margin-right: 12px; align-self: center; }
.price__reg { font-family: var(--font-display); font-size: 1.02rem; color: var(--text-mut); margin-right: 12px; align-self: center; }
.badge-deal {
  display: inline-block; margin: 2px 0 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
  background: var(--grad); padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 8px 24px -10px rgba(236, 72, 153, 0.6);
}
.platform-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 14px; margin-top: 18px; font-size: 0.88rem; color: var(--text-dim);
  text-align: center;
}
.platform-note .pn-item { display: inline-flex; align-items: center; gap: 6px; }
.platform-note .ic { width: 16px; height: 16px; }
.platform-note .soon { color: var(--text-mut); font-size: 0.8rem; }
.platform-note .pn-sep { color: var(--text-mut); opacity: 0.5; }
.price-card__note { font-size: 0.78rem; color: var(--text-mut); margin-bottom: 22px; }
.incl { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.incl li { position: relative; padding-left: 30px; color: var(--text-dim); font-size: 0.97rem; }
.incl li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 999px; background: var(--grad); color: #fff; font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; }
.price-card__cta { display: grid; gap: 12px; }
.price-card__soon { text-align: center; font-size: 0.86rem; color: var(--text-mut); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 60px 0 36px; }
/* Struktur muss in DE und EN identisch sein: nowrap + fester Stack-Breakpoint
   (DE-Labels sind laenger — freies flex-wrap liess DE frueher umbrechen als EN) */
.footer__inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.footer__brand { display: flex; flex-direction: column; gap: 8px; max-width: 300px; flex: none; }
.footer__brand .nav__mark, .footer__brand .nav__name { display: inline-block; }
.footer__brand .nav__name { font-family: var(--font-display); font-weight: 700; }
.footer__tag { color: var(--text-mut); font-size: 0.9rem; margin-top: 4px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-content: flex-start; justify-content: flex-end; }
.footer__links a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.2s; white-space: nowrap; }
.footer__links a:hover { color: var(--text); }
.footer__links a.muted { color: var(--text-mut); }
.footer__copy { color: var(--text-mut); font-size: 0.8rem; text-align: center; margin-top: 44px; }

/* ============================================================
   RELEASE ROADMAP (#updates)
   ============================================================ */
.roadmap { margin-top: clamp(48px, 7vw, 84px); }
.roadmap__head { max-width: 760px; margin-bottom: 30px; }
.roadmap__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 0 0 10px; }
.roadmap__sub { color: var(--text-dim); margin: 0; }

.roadmap__scroll { overflow-x: auto; padding-bottom: 6px; }
.rm {
  display: grid; grid-template-columns: max-content 1fr; gap: 0 18px;
  min-width: 720px;
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 50px 30px 26px 22px;
}
.rm__labels { display: flex; flex-direction: column; gap: 14px; }
.rm__rowlabel {
  height: 40px; display: flex; align-items: center;
  color: var(--text-dim); font-size: 0.82rem; font-weight: 600; white-space: nowrap;
}
.rm__canvas { position: relative; display: flex; flex-direction: column; gap: 14px; }

.rm__gridline {
  position: absolute; top: -16px; bottom: -8px; width: 0;
  border-left: 1px dashed var(--border-hi); pointer-events: none;
}
.rm__gridline b {
  position: absolute; top: -28px; left: 0; transform: translateX(-50%);
  color: var(--text-mut); font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}

.rm__lane { position: relative; height: 40px; }
.rm__seg {
  position: absolute; top: 4px; bottom: 4px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  color: #0b0b10; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.01em;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.7s var(--ease) calc(var(--d, 0) * 1ms);
}
.reveal.is-visible .rm__seg { transform: scaleX(1); }
.rm__seg span { white-space: nowrap; padding: 0 8px; }
.rm__seg--collect  { background: var(--acc-1); }
.rm__seg--eval     { background: var(--acc-2); }
.rm__seg--build    { background: var(--acc-3); }
.rm__seg--feedback { background: var(--pos); }
/* Paket 3: Sammeln läuft über den sichtbaren Ausschnitt hinaus weiter */
.rm__seg--cont {
  -webkit-mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
}

.rm__release {
  position: absolute; top: 50%; left: 0; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  background: var(--bg); border: 2px solid var(--acc-3);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.55);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.45s var(--ease) calc(var(--d, 0) * 1ms);
}
.reveal.is-visible .rm__release { transform: translate(-50%, -50%) scale(1); }
.rm__release b {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  color: var(--acc-3); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  display: none;
}
.rm__release--labeled b { display: block; }

.roadmap__legend { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 18px; }
.rm__chip { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.82rem; }
.rm__chip i { width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto; }
.roadmap__note { color: var(--text-mut); font-size: 0.85rem; margin-top: 14px; max-width: 860px; }

/* Feature-Request-Block (#updates): Textblock mittig auf dem BILDSCHIRM
   (Zentrum = 50vw), Roadmap beginnt rechts daneben und läuft über den
   Bildschirmrand hinaus — horizontal scrollbar wie die anderen Tracks. */
/* wie Dashboard: zentrierter Textblock OBEN, Roadmap als einzelnes
   Schaubild darunter (zentriert). Kein 50vw-Row & kein Karussell mehr —
   die ‹ ›-Pfeile entfallen, der Chart scrollt bei Bedarf in sich (s. unten). */
.upd-wrap { position: relative; }
.upd-row {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  width: 100%; padding: 0 24px;
}
.upd-row__text { width: auto; max-width: 760px; margin: 0; text-align: center; }
.upd-row__text .eyebrow, .upd-row__text .lead { text-align: center; margin-inline: auto; }
.upd-row__text .h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.upd-row__text .lead { margin: 0 0 24px; }
.upd-row__roadmap { width: 100%; max-width: 1100px; margin: 0 auto; }
/* Roadmap ist ein einzelnes Schaubild -> keine ‹ ›-Pfeile. */
.upd-wrap .features__nav { display: none; }
@media (max-width: 1024px) {
  .upd-row { gap: 36px; }
}
.roadmap--side { margin-top: 0; width: 100%; min-width: 0; max-width: 100%; }
.roadmap--side .roadmap__title { font-size: 1.15rem; margin: 0 0 16px; }
/* Chart fest ausgelegt — KEIN Scrollen innerhalb des Kästchens (Desktop);
   die ganze Roadmap gleitet als Einheit über den Zeilen-Scroller ins Bild. */
.roadmap--side .rm { width: 1060px; min-width: 0; padding: 46px 28px 22px 20px; }
.roadmap--side .roadmap__scroll { overflow-x: auto; overflow-y: hidden; padding-bottom: 0; scrollbar-width: none; }
.roadmap--side .roadmap__scroll::-webkit-scrollbar { display: none; }
.roadmap--side .roadmap__note { font-size: 0.8rem; margin-top: 12px; max-width: 1060px; }
.roadmap--side .roadmap__legend { max-width: 1060px; }
.roadmap--side .rm__chip { font-size: 0.78rem; }
@media (max-width: 1024px) {
  /* gestapelt: Chart wieder in sich wischbar */
  .roadmap--side .roadmap__scroll { overflow-x: auto; scrollbar-width: none; }
  .roadmap--side .roadmap__scroll::-webkit-scrollbar { display: none; }
  .roadmap--side .rm { width: auto; min-width: 760px; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .why-grid, .duo { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__visual { order: 2; }
  .split__text .eyebrow, .split__text .lead { text-align: left; }
  .hero__visual .window { transform: none; }
  .window__body--app { grid-template-columns: 1fr; }
  .mini-side { flex-direction: row; flex-wrap: wrap; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1500px) {
  /* Kompaktere Nav-Pillen: mit nowrap-Logo braucht die volle Leiste sonst
     mehr Breite als der Viewport hergibt (DE-Labels am laengsten; seit S103
     13 Links inkl. Aktienbuch + Setup-Tagebuch -> Schwellen angehoben) */
  .nav__link { padding: 8px 7px; font-size: 0.85rem; }
}

@media (max-width: 1330px) {
  /* Nav: unter 1330px passt die volle Linkleiste nicht mehr -> Burger
     (vor S103: 1150px; +2 Links brauchen mehr Platz) */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8, 8, 11, 0.96); backdrop-filter: blur(14px);
    padding: 16px 24px 22px; border-bottom: 1px solid var(--border);
  }
  .nav.is-open .nav__link { padding: 12px 14px; font-size: 1rem; }
  /* Footer gestapelt — fuer BEIDE Sprachen am selben Punkt (Konsistenz DE/EN) */
  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__brand { max-width: 320px; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .features__nav { display: none; }
  .fcard { flex-basis: 78vw; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-dot { animation: none; }
  .rm__seg { transform: scaleX(1) !important; transition: none !important; }
  .rm__release { transform: translate(-50%, -50%) scale(1) !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   LANGUAGE BLOCKS (legal pages) — show only the active language
   ============================================================ */
[data-lang-block] { display: none; }
html[data-lang="en"] [data-lang-block="en"] { display: block; }
html[data-lang="de"] [data-lang-block="de"] { display: block; }

/* ============================================================
   LEGAL PAGES (imprint / privacy / terms)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; padding: calc(var(--nav-h) + var(--promo-h) + 48px) 24px 90px; }
.legal__back {
  display: inline-block; margin-bottom: 22px;
  color: var(--text-dim); font-family: var(--font-display); font-size: 0.9rem;
  transition: color 0.2s;
}
.legal__back:hover { color: var(--text); }
.legal__banner {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 40px; padding: 16px 18px; border-radius: 14px;
  background: rgba(251, 191, 36, 0.07); border: 1px solid rgba(251, 191, 36, 0.28);
  color: var(--text-dim); font-size: 0.9rem; line-height: 1.6;
}
.legal__banner strong { color: var(--text); }
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 6px; }
.legal__updated { color: var(--text-mut); font-size: 0.85rem; margin-bottom: 8px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); line-height: 1.75; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin: 0 0 12px; }
.legal a { color: var(--acc-3); }
.legal a:hover { text-decoration: underline; }
.legal .ph {
  color: var(--acc-2); background: rgba(236, 72, 153, 0.08);
  border: 1px dashed rgba(236, 72, 153, 0.4); border-radius: 5px;
  padding: 0 5px; font-size: 0.95em; white-space: nowrap;
}
.legal address { font-style: normal; }

/* FAQ — topic link card (level-1 → level-2 detail page) */
.faq-card {
  display: flex; gap: 16px; align-items: center;
  margin: 14px 0 8px; padding: 18px 20px;
  border-radius: 14px; background: var(--card); border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}
.faq-card:hover { border-color: var(--acc-1); transform: translateY(-2px); background: rgba(139, 92, 246, 0.06); }
.faq-card__body { flex: 1 1 auto; }
.faq-card__body strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.faq-card__body span { color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; }
.faq-card__arrow { flex: none; color: var(--acc-3); font-size: 1.4rem; }
.faq-card:hover .faq-card__arrow { color: var(--acc-2); }
.legal a.faq-card:hover { text-decoration: none; }
