/* Lodestar Capital — Webseite. Modern, dunkel, passend zur App.
   Akzente wie das App-Icon: Orange + Gold + Grün auf tiefem Navy.
   Schrift: Inter (wie die App, klares Sans-Serif). */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg:        #07090F;
  --bg-2:      #0A0E18;
  --surface:   #11151F;
  --surface-2: #161C28;
  --orange:    #FF8F1A;
  --orange-2:  #FFB14A;
  --gold:      #EBB333;
  --green:     #34D399;
  --green-dim: #1f9e74;
  --text:      #F4F2EC;
  --muted:     #98A1B2;
  --faint:     #69707E;
  --line:      #1E2530;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1120px;
  --grad: linear-gradient(135deg, #FF8F1A 0%, #FFB14A 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, #0a0e18 0%, #08090c 40%, #060709 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,9,15,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.brand .name { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; color: var(--text); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #1a1205;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.2px;
  padding: 12px 22px; border-radius: 12px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,143,26,.25);
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,143,26,.38); filter: brightness(1.04); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid #2b3442; box-shadow: none; }
.btn-ghost:hover { background: var(--surface-2); border-color: #3a4554; box-shadow: none; }

/* Hero */
.hero { position: relative; text-align: center; padding: 86px 0 72px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255,143,26,.16), transparent 70%),
    radial-gradient(40% 40% at 82% 22%, rgba(52,211,153,.12), transparent 70%),
    radial-gradient(46% 40% at 16% 30%, rgba(235,179,51,.10), transparent 70%);
  pointer-events: none;
}
.hero-logo {
  width: 96px; height: 96px; border-radius: 24px; margin: 0 auto 30px;
  box-shadow: 0 0 0 1px var(--line), 0 18px 50px rgba(255,143,26,.22);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.eyebrow {
  display: inline-block; font-size: 12px; color: var(--orange-2);
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 22px;
  padding: 6px 14px; border: 1px solid rgba(255,143,26,.3); border-radius: 30px;
  background: rgba(255,143,26,.07);
}
.hero h1 {
  font-weight: 800; font-size: clamp(40px, 7vw, 74px);
  line-height: 1.04; letter-spacing: -1.5px; color: #FBF9F3; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 36px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .disclaimer { font-size: 12.5px; color: var(--faint); max-width: 500px; margin: 34px auto 0; line-height: 1.6; }

/* Such-Feld im Hero */
.hero-search { max-width: 540px; margin: 0 auto 28px; display: flex; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.hero-search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,143,26,.15); }
.hero-search i { align-self: center; padding-left: 18px; color: var(--faint); font-size: 20px; }
.hero-search input { flex: 1; background: none; border: none; color: var(--text); font-family: var(--sans); font-size: 15px; padding: 16px 14px; }
.hero-search input:focus { outline: none; }
.hero-search input::placeholder { color: var(--faint); }
.hero-search button { background: var(--grad); color: #1a1205; border: none; font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 0 24px; cursor: pointer; }

/* Stat-Leiste */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.stat { text-align: center; padding: 28px 12px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-weight: 800; font-size: 38px; color: var(--text); line-height: 1; letter-spacing: -1px; }
.stat .lbl { font-size: 11px; color: var(--faint); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 10px; font-weight: 600; }

/* Sektionen */
section.block { padding: 78px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .kicker { font-size: 12px; color: var(--orange-2); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; }
.section-head h2 { font-weight: 800; font-size: clamp(28px, 5vw, 44px); color: #FBF9F3; margin-top: 12px; letter-spacing: -1px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; transition: border-color .25s, transform .2s, background .25s; }
.feature:hover { border-color: rgba(255,143,26,.4); transform: translateY(-4px); background: var(--surface-2); }
.feature .ic { font-size: 24px; color: var(--orange); width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,143,26,.1); border-radius: 13px; }
.feature h3 { font-weight: 700; font-size: 20px; color: var(--text); margin: 18px 0 8px; letter-spacing: -.3px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* Trending-Politiker-Karten */
.trending { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.tcard { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 15px 18px; transition: border-color .2s, transform .2s; }
.tcard:hover { border-color: rgba(255,143,26,.4); transform: translateY(-2px); }
.tcard img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.tcard .tn { font-size: 15px; color: var(--text); font-weight: 600; }
.tcard .ts { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Preis-Stufen */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 780px; margin: 0 auto; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 34px 30px; }
.plan.featured { border: 1.5px solid transparent; background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box; position: relative; box-shadow: 0 16px 50px rgba(255,143,26,.12); }
.plan .pill { position: absolute; top: -13px; left: 30px; background: var(--grad); color: #1a1205; font-size: 11px; font-weight: 800; letter-spacing: 0.6px; padding: 5px 14px; border-radius: 20px; }
.plan h3 { font-weight: 700; font-size: 22px; color: #FBF9F3; margin-bottom: 4px; }
.plan .price { font-size: 46px; font-weight: 800; color: var(--text); margin: 14px 0 4px; letter-spacing: -1.5px; }
.plan.featured .price { color: var(--gold); }
.plan .price small { font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan .pdesc { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.plan ul { list-style: none; margin: 0 0 26px; }
.plan li { font-size: 14px; color: #c3c9d4; padding: 9px 0; display: flex; align-items: flex-start; gap: 11px; }
.plan li i { color: var(--green); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.plan li.off { color: var(--faint); }
.plan li.off i { color: var(--faint); }
.plan .btn { width: 100%; justify-content: center; }
.plan .btn-ghost { background: transparent; }

/* CTA */
.cta { position: relative; overflow: hidden; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 64px 30px; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255,143,26,.14), transparent 70%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-weight: 800; font-size: clamp(28px, 5vw, 46px); color: #FBF9F3; margin-bottom: 14px; letter-spacing: -1px; }
.cta p { color: var(--muted); margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 20px; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer .copy { font-size: 12.5px; color: var(--faint); }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer .links a { font-size: 12.5px; color: var(--muted); transition: color .2s; }
footer .links a:hover { color: var(--orange); }

/* Lese-Seiten (Datenschutz, Support, Impressum, Nutzungsbedingungen) */
.doc { padding: 54px 0 40px; max-width: 760px; }
.doc h1 { font-weight: 800; font-size: clamp(34px, 6vw, 52px); color: #FBF9F3; margin-bottom: 8px; letter-spacing: -1.2px; }
.doc .updated { font-size: 13px; color: var(--faint); margin-bottom: 38px; }
.doc h2 { font-weight: 700; font-size: 23px; color: var(--text); margin: 36px 0 12px; letter-spacing: -.4px; }
.doc h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 24px 0 8px; }
.doc p, .doc li { font-size: 15.5px; color: #c3c9d4; margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 14px; }
.doc a.inline { color: var(--orange-2); border-bottom: 1px solid rgba(255,177,74,.4); }
.doc .note { background: var(--surface); border-left: 3px solid var(--orange); padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 18px 0; font-size: 14px; color: var(--muted); }
.back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--orange-2); margin-bottom: 28px; font-weight: 500; }

@media (max-width: 760px) {
  .nav-links { gap: 14px; }
  .nav-links a.hide-sm { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 56px; }
}

/* ============ Erweiterungen: App-Look v2 ============ */

/* Scroll-Animationen */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.features .feature:nth-child(2) { transition-delay: .07s; }
.features .feature:nth-child(3) { transition-delay: .14s; }
.features .feature:nth-child(5) { transition-delay: .07s; }
.features .feature:nth-child(6) { transition-delay: .14s; }
.steps .step:nth-child(2) { transition-delay: .1s; }
.steps .step:nth-child(3) { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-logo { animation: none; } }

/* Hero zweispaltig */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; text-align: left; }
.hero { text-align: left; }
.hero-text .eyebrow { margin-bottom: 20px; }
.hero-text .hero-cta { justify-content: flex-start; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.hero-trust i { color: var(--green); font-size: 16px; }

/* Mobiles Menü */
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; line-height: 1; }

/* Telefon-Mockup */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone { position: relative; z-index: 2; width: 296px; padding: 4px; border-radius: 60px;
  background: linear-gradient(155deg,#dadce3 0%,#9d9fa9 26%,#6f717a 50%,#afb1ba 74%,#7d7f88 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.55),
    inset 0 -1px 1px rgba(0,0,0,.35),
    0 60px 120px -24px rgba(0,0,0,.7),
    0 18px 44px rgba(0,0,0,.4); }
.phone-screen { position: relative; background: #000; border-radius: 56px; padding: 10px; overflow: hidden; line-height: 0;
  box-shadow: inset 0 0 0 2px #0a0b0e, inset 0 0 0 3px #1b1d22; }
.phone-shot { width: 100%; display: block; border-radius: 46px; }
.phone-screen::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: 56px;
  background: linear-gradient(122deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 24%); }
.phone-island { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 90px; height: 26px; background: #000; border-radius: 14px; z-index: 6; box-shadow: 0 0 0 1px rgba(0,0,0,.6); }
.pbtn { position: absolute; z-index: 1; border-radius: 3px; background: linear-gradient(180deg,#c2c4cc,#74767e 50%,#5a5c64); box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }
.pbtn-mute  { left: -2px; top: 96px;  width: 3px; height: 22px; }
.pbtn-volup { left: -2px; top: 134px; width: 3px; height: 46px; }
.pbtn-voldn { left: -2px; top: 188px; width: 3px; height: 46px; }
.pbtn-power { right: -2px; top: 152px; width: 3px; height: 78px; }
.ps-status { display: flex; justify-content: space-between; font-size: 11px; color: #aeb6c4; margin-bottom: 14px; padding: 0 4px; }
.ps-status i { font-size: 13px; }
.ps-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; padding: 0 4px; }
.ps-label { font-size: 11px; color: var(--faint); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.ps-value { font-size: 27px; font-weight: 800; color: #fff; letter-spacing: -.6px; margin-top: 3px; }
.ps-up { font-size: 12.5px; color: var(--green); font-weight: 600; margin-top: 3px; display: inline-flex; align-items: center; gap: 4px; }
.ps-logo { width: 34px; height: 34px; border-radius: 9px; }
.ps-chart { width: 100%; height: 86px; display: block; margin: 4px 0 14px; }
.ps-row { display: flex; align-items: center; gap: 11px; background: #11151f; border: 1px solid #1c2230; border-radius: 14px; padding: 11px 13px; margin-bottom: 9px; }
.ps-row div { flex: 1; line-height: 1.3; }
.ps-row b { font-size: 13px; color: #eef0f4; font-weight: 600; }
.ps-row small { display: block; font-size: 11px; color: var(--faint); margin-top: 1px; }
.ps-row > i { color: #3a4252; font-size: 16px; }
.ps-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ps-dot.dem { background: #4f8cff; } .ps-dot.rep { background: #ff5a5a; } .ps-dot.ai { background: var(--orange); }
.phone-tabs { display: flex; justify-content: space-around; padding: 14px 6px 6px; }
.phone-tabs i { font-size: 21px; color: #3a4252; } .phone-tabs i.active { color: var(--orange); }
.phone-glow { position: absolute; inset: -10% -10% -10% -10%; z-index: 1; background: radial-gradient(50% 50% at 50% 45%, rgba(255,143,26,.22), transparent 70%); filter: blur(20px); }

/* Abwechselnder Sektions-Hintergrund */
.band { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.018) 16%, rgba(255,255,255,.018) 84%, transparent 100%); border: none; }

/* So funktioniert's */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; }
.snum { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #1a1205; background: var(--grad); border-radius: 12px; margin-bottom: 16px; }
.step h3 { font-weight: 700; font-size: 19px; color: var(--text); margin-bottom: 8px; letter-spacing: -.3px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; padding: 18px 20px; font-size: 16px; font-weight: 600; color: var(--text); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--orange); font-size: 20px; transition: transform .25s; flex-shrink: 0; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; font-size: 14.5px; color: var(--muted); }

/* CTA-Logo */
.cta-logo { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 18px; box-shadow: 0 10px 30px rgba(255,143,26,.25); }
.cta .disclaimer { font-size: 12px; color: var(--faint); max-width: 460px; margin: 22px auto 0; }

/* ============ Buch-Layout (mehrere Kapitel-Seiten) ============ */
.nav-links a.active { color: var(--orange); }

/* Kapitel-Kopf jeder Unterseite */
.page-hero { text-align: center; padding: 76px 0 12px; position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 320px; z-index: -1;
  background: radial-gradient(55% 80% at 50% 0%, rgba(255,143,26,.12), transparent 70%); }
.chapter-label { display: inline-block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--orange-2);
  padding: 6px 16px; border: 1px solid rgba(255,143,26,.3); border-radius: 30px; background: rgba(255,143,26,.07); margin-bottom: 22px; }
.page-hero h1 { font-weight: 800; font-size: clamp(34px, 6vw, 58px); letter-spacing: -1.4px; color: #FBF9F3; line-height: 1.05; }
.page-hero p.intro { font-size: 18px; color: var(--muted); max-width: 600px; margin: 18px auto 0; }

/* Inhaltsverzeichnis (Startseite = Buchdeckel) */
.toc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 820px; margin: 0 auto; }
.toc-card { display: flex; align-items: center; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px 26px; transition: border-color .2s, transform .2s, background .2s; }
.toc-card:hover { border-color: rgba(255,143,26,.45); transform: translateY(-3px); background: var(--surface-2); }
.toc-num { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: #1a1205; background: var(--grad); border-radius: 15px; }
.toc-card h3 { font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -.3px; }
.toc-card p { font-size: 14px; color: var(--muted); margin-top: 3px; }
.toc-card .ti-arrow-narrow-right { margin-left: auto; color: var(--faint); font-size: 22px; }

/* Blättern: Zurück / Weiter (wie Buchseiten) */
.pager { display: flex; justify-content: space-between; gap: 14px; padding: 28px 0 0; margin-top: 64px; border-top: 1px solid var(--line); }
.pager a { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; transition: border-color .2s, transform .2s; max-width: 48%; }
.pager a:hover { border-color: rgba(255,143,26,.45); transform: translateY(-2px); }
.pager i { font-size: 22px; color: var(--orange); flex-shrink: 0; }
.pager small { display: block; font-size: 11px; color: var(--faint); letter-spacing: .5px; text-transform: uppercase; }
.pager b { font-size: 15.5px; color: var(--text); font-weight: 600; }
.pager .pager-next { margin-left: auto; text-align: right; }

@media (max-width: 760px) {
  .toc { grid-template-columns: 1fr; }
  .pager b { font-size: 13.5px; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero { text-align: center; }
  .hero-text .hero-cta, .hero-trust { justify-content: center; }
  .hero-phone { order: -1; }
  .phone { width: 250px; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(7,9,15,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px; transform: translateY(-130%); transition: transform .3s ease; z-index: 49;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a.btn { margin-top: 12px; justify-content: center; border-bottom: none; }
}

/* ============ v3 — Editorial Luxus (Serif-Galerie) ============ */
:root {
  --serif: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --bg:        #08090C;   /* tieferes Galerie-Schwarz */
  --bg-2:      #0B0D14;
  --surface:   #101219;
  --surface-2: #161922;
  --line:      #1C212C;
  --gold:      #E7BE5A;   /* wärmeres Champagner-Gold für Akzent-Typo */
}

/* Der Signatur-Move: Serif für alle Display-Schlagzeilen, Sans bleibt Fließtext */
.hero h1,
.section-head h2,
.cta h2,
.page-hero h1,
.doc h1,
.plan .price {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.4px;
}
.hero h1 { font-size: clamp(46px, 7.4vw, 84px); line-height: 1.05; }
.hero h1 em { font-style: italic; font-weight: 500; }   /* „Insider." kursiv + Gold-Verlauf */
.section-head h2 { font-size: clamp(30px, 5vw, 50px); }
.cta h2, .page-hero h1, .doc h1 { font-weight: 500; }

/* Eyebrows editorialer: keine Pille mehr, nur fein gesperrtes Champagner-Label */
.eyebrow, .chapter-label {
  background: none; border: none; padding: 0;
  color: var(--gold); letter-spacing: 3.4px; font-weight: 600;
}

/* Buttons flach & architektonisch (Referenz: kein dekorativer Schatten) */
.btn { border-radius: 10px; box-shadow: none; font-weight: 600; padding: 13px 26px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(231,190,90,.20); }

/* Galerie-Pacing: großzügigere vertikale Ruhe */
section.block { padding: 100px 0; }
.section-head { margin-bottom: 62px; }
.hero { padding: 104px 0 84px; }

/* Flächen ruhiger: keine Schlagschatten, feine Haarlinien */
.feature, .step, .plan, .toc-card, .tcard, .faq details, .pager a { box-shadow: none; }
.feature:hover, .toc-card:hover, .tcard:hover, .pager a:hover { border-color: rgba(231,190,90,.42); }
.feature .ic, .snum, .toc-num { border-radius: 14px; }

/* Marke ruhiger gesperrt */
.brand .name { letter-spacing: 2px; font-weight: 600; }

@media (max-width: 760px) {
  .hero { padding: 72px 0 60px; }
  section.block { padding: 76px 0; }
}

/* ============ Rotierender Aktien-Ring (Startseite + Märkte) ============ */
:root { --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
.stage { perspective: 1400px; position: relative; cursor: grab; touch-action: pan-y; height: 400px; }
.stage:active { cursor: grabbing; }
.ring { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform-style: preserve-3d;
        transform: translate(-50%,-50%) rotateX(-18deg); }
.rhub { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; transform: translate(-50%,-60%);
        border-radius: 50%; background: radial-gradient(circle, rgba(235,179,51,.22), transparent 68%); filter: blur(6px); pointer-events: none; }
.rcard { position: absolute; width: 174px; height: 100px; left: -87px; top: -50px;
         background: linear-gradient(160deg,#12151d,#0c0e14); border: 1px solid var(--line); border-radius: 16px; padding: 12px 15px;
         transform-style: preserve-3d; transition: box-shadow .25s, border-color .25s, opacity .2s;
         display: flex; flex-direction: column; justify-content: space-between; }
.rcard.active { border-color: rgba(235,179,51,.6); box-shadow: 0 0 0 1px rgba(235,179,51,.3), 0 22px 55px -14px rgba(235,179,51,.26); }
.rtop { display: flex; align-items: center; gap: 9px; }
.rlogo { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; background: #fff; flex-shrink: 0; }
.rsym { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--mono); }
.rnm { font-size: 10.5px; color: var(--muted); }
.rrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.rprice { font-size: 11.5px; font-weight: 600; color: var(--text); font-family: var(--mono); white-space: nowrap; }
.rpct { font-size: 11.5px; font-weight: 700; font-family: var(--mono); white-space: nowrap; }
.rpct.up { color: var(--green); } .rpct.down { color: #FF5A5A; }

/* „Wer bewegt die Märkte" — Foto-Raster */
.movers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.mcard { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px 16px; text-align: center;
         transition: border-color .2s, transform .15s; }
.mcard:hover { border-color: rgba(235,179,51,.4); transform: translateY(-3px); }
.mcard img, .mcard .mmono { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; background: #fff;
         margin: 0 auto 13px; display: flex; align-items: center; justify-content: center; }
.mcard .mmono { font-weight: 800; color: #0c0e14; font-size: 22px; }
.mcard img.logo-c { object-fit: contain; padding: 9px; }
.mcard .mn { font-size: 14.5px; font-weight: 600; color: var(--text); }
.mcard .mr { font-size: 11.5px; color: var(--muted); margin-top: 3px; font-family: var(--mono); letter-spacing: .02em; }
.movers-cta { text-align: center; margin-top: 30px; }
@media (max-width: 700px) { .stage { height: 330px; } }

/* ============ Globale Märkte, holografischer Globus ============ */
.globe-section { text-align: center; overflow: hidden; }
.globe-section h2 em { font-style: italic; color: var(--gold); }
.live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); }
.live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: livepulse 1.8s infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(231,190,90,.55); } 70% { box-shadow: 0 0 0 11px rgba(231,190,90,0); } 100% { box-shadow: 0 0 0 0 rgba(231,190,90,0); } }
.globe-stage { position: relative; width: min(86vw, 560px); aspect-ratio: 1; margin: 30px auto 4px; }
.globe-stage::before { content: ""; position: absolute; inset: -10%; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, transparent 0%, rgba(231,190,90,.14) 12%, transparent 30%, transparent 100%);
  animation: gspin 16s linear infinite; }
.globe-stage::after { content: ""; position: absolute; inset: 8%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(231,190,90,.10), transparent 62%); filter: blur(12px); }
@keyframes gspin { to { transform: rotate(360deg); } }
#cobe { position: relative; z-index: 1; width: 100%; height: 100%; cursor: grab; touch-action: pan-y; }
#cobe:active { cursor: grabbing; }
.gcard { position: absolute; z-index: 2; background: rgba(12,14,20,.82); border: 1px solid rgba(231,190,90,.28);
  border-radius: 14px; padding: 10px 13px; text-align: left; backdrop-filter: blur(6px);
  box-shadow: 0 10px 34px rgba(0,0,0,.5); opacity: 0; animation: gfade .9s ease forwards, gbob 5.5s ease-in-out infinite; }
.gcard .gk { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: .05em; }
.gcard .gv { font-family: var(--mono); font-size: 15px; font-weight: 700; margin-top: 2px; }
.gcard.up .gv { color: var(--green); } .gcard.down .gv { color: #FF5A5A; }
.gcard-1 { top: 4%; left: -3%; animation-delay: .25s, .25s; }
.gcard-2 { top: 42%; right: -5%; animation-delay: .55s, 1.1s; }
.gcard-3 { bottom: 6%; left: 4%; animation-delay: .85s, 1.9s; }
@keyframes gfade { to { opacity: 1; } }
@keyframes gbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 620px) { .gcard { display: none; } }

/* Kombi: Globus im Zentrum, Aktien-Ring dreht drumherum (Planet mit Ring) */
.combo-stage { position: relative; width: min(94vw, 720px); aspect-ratio: 1; margin: 26px auto 0;
  perspective: 1500px; cursor: grab; touch-action: pan-y; }
.combo-stage:active { cursor: grabbing; }
.combo-stage::before { content: ""; position: absolute; inset: 16%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(40,140,255,.20), transparent 62%); filter: blur(22px); }
.combo-stage::after { content: ""; position: absolute; inset: -4%; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, transparent, rgba(40,140,255,.16) 12%, transparent 32%, transparent 100%);
  animation: gspin 18s linear infinite; }
.combo-stage #cobe { position: absolute; top: 50%; left: 50%; width: 54%; height: 54%;
  transform: translate(-50%,-50%); z-index: 1; pointer-events: none; }
.combo-stage .ring { position: absolute; top: 50%; left: 50%; width: 0; height: 0; z-index: 3;
  transform-style: preserve-3d; transform: translate(-50%,-50%) rotateX(-18deg); }
.combo-stage .gcard { z-index: 4; }

/* Hero-Globus als echtes Bild, screen-Blend entfernt den schwarzen Kasten */
.globe-hero { position: relative; width: min(88vw, 560px); margin: 16px auto 8px; }
.globe-hero #globe3d { width: 100%; aspect-ratio: 1; position: relative; z-index: 1; }
.globe-hero #globe3d canvas { display: block; width: 100% !important; height: 100% !important; }
.globe-hero .hero-globe-img { display: block; width: 100%; height: auto;
  mix-blend-mode: screen; filter: saturate(1.08) contrast(1.04);
  animation: gfloat 9s ease-in-out infinite; }
@keyframes gfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.globe-hero .gcard { z-index: 2; }
@media (max-width: 620px) { .globe-hero .gcard { display: none; } }

/* ===== Kino-Hero (Vollbild 3D-Szene) ===== */
.cinematic { position: relative; height: 100vh; min-height: 640px; width: 100%; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #081326 0%, #050816 46%, #020617 100%); }
.cine-canvas { position: absolute; inset: 0; z-index: 1; }
.cine-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.cine-vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(78% 62% at 50% 44%, transparent 42%, rgba(2,6,23,.55) 100%),
    linear-gradient(180deg, rgba(2,6,23,.62) 0%, transparent 20%, transparent 58%, #08090c 100%); }
.cine-content { position: absolute; z-index: 3; left: 50%; top: 49%; transform: translate(-50%,-50%);
  width: min(92vw, 800px); text-align: center; pointer-events: none; }
.cine-content .eyebrow, .cine-content .hero-cta, .cine-content .hero-trust { pointer-events: auto; }
.cine-content .eyebrow.live { display: inline-flex; justify-content: center; margin: 0 auto 20px; }
.cine-content h1 { font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(40px, 7vw, 88px); line-height: 1.01; letter-spacing: -1.6px; margin: 0 0 20px;
  color: #fff; text-shadow: 0 0 44px rgba(0,217,255,.22), 0 2px 30px rgba(0,0,0,.6); }
.cine-content h1 em { font-style: italic;
  background: linear-gradient(118deg, #FFC857, #FFB300 52%, #57F2FF);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,179,0,.35)); }
.cine-content .lead { color: rgba(226,238,255,.82); font-size: clamp(15px,1.8vw,19px);
  max-width: 610px; margin: 0 auto 30px; text-shadow: 0 1px 20px rgba(0,0,0,.55); }
.cine-content .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cine-content .hero-trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px; color: rgba(200,220,255,.6); font-size: 13px; }
.cine-content .hero-trust i { color: #57F2FF; }

/* Glow-Button (Licht faehrt drueber) */
.btn.glow-btn { position: relative; overflow: hidden; border: none;
  background: linear-gradient(120deg, #FFB300, #FFC857); color: #1a1200;
  box-shadow: 0 0 0 1px rgba(255,200,90,.5), 0 8px 34px rgba(255,179,0,.35);
  transition: transform .25s ease, box-shadow .25s ease; }
.btn.glow-btn:hover { transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(255,220,130,.85), 0 12px 48px rgba(255,179,0,.6); }
.btn.glow-btn::after { content: ''; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-18deg); transition: left .6s ease; }
.btn.glow-btn:hover::after { left: 130%; }

/* Glass-Button */
.btn.btn-glass { background: rgba(255,255,255,.06); border: 1px solid rgba(120,190,255,.28);
  color: #dcecff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 8px 30px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s, background .25s; }
.btn.btn-glass:hover { transform: translateY(-2px); border-color: rgba(87,242,255,.6); background: rgba(87,242,255,.10); }

/* Scroll-Indikator */
.cine-scroll { position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #9fdcff;
  border: 1px solid rgba(120,190,255,.3); background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  animation: cbounce 2s ease-in-out infinite; text-decoration: none; }
@keyframes cbounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }
@media (max-width: 700px) { .cinematic { height: 92vh; } }

/* ===== Weltkarte-Sektion (echtes Bild, lebendig) ===== */
.worldband { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center;
  background: transparent; }
.world-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0;
  animation: worldpan 26s ease-in-out infinite alternate; }
@keyframes worldpan { 0% { transform: scale(1.06); } 100% { transform: scale(1.16); } }
.worldband::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,9,12,.94) 0%, rgba(8,9,12,.6) 42%, rgba(8,9,12,.15) 100%),
              linear-gradient(180deg, #08090c 0%, transparent 22%, transparent 78%, #08090c 100%); }
.world-scan { position: absolute; left: 0; right: 0; top: -160px; height: 160px; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,193,87,.12), transparent);
  animation: wscan 7s linear infinite; }
@keyframes wscan { 0% { top: -160px; } 100% { top: 100%; } }
.wpulse { position: absolute; z-index: 2; width: 9px; height: 9px; border-radius: 50%; pointer-events: none;
  background: #FFD77A; box-shadow: 0 0 14px 4px rgba(255,190,80,.7); animation: wp 2.6s ease-in-out infinite; }
@keyframes wp { 0%,100% { transform: scale(.55); opacity: .45; } 50% { transform: scale(1.35); opacity: 1; } }
.world-inner { position: relative; z-index: 3; }
.world-text { max-width: 540px; }
.world-text .eyebrow.live { margin-bottom: 16px; }
.world-text h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.04; letter-spacing: -1px; margin: 0 0 16px; color: #fff; }
.world-text h2 em { font-style: italic; background: linear-gradient(118deg, #FFC857, #FFB300);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.world-text p { color: rgba(224,236,255,.78); font-size: clamp(15px,1.7vw,18px); max-width: 480px; margin: 0; }
.world-stats { display: flex; gap: 30px; margin-top: 28px; flex-wrap: wrap; }
.wstat { display: flex; flex-direction: column; gap: 4px; }
.wnum { font-family: var(--mono, 'IBM Plex Mono', monospace); font-size: clamp(22px,2.6vw,30px); font-weight: 600;
  color: #FFC857; text-shadow: 0 0 18px rgba(255,190,80,.4); }
.wlbl { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(200,220,255,.55); }
@media (max-width: 620px) { .worldband { min-height: 480px; } .world-stats { gap: 20px; } }
