/* ============================================================
   Market Mavericks — Startseiten-Styles
   ============================================================ */

/* ===== HERO ===== */
.hero { position: relative; min-height: calc(100vh - 100px); min-height: calc(100svh - 100px); display: flex; align-items: center;
  padding: 48px 24px 64px; overflow: hidden; background: var(--paper); }
.hero-grid { position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(#161614 .8px, transparent .8px); background-size: 26px 26px; opacity: .05;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%); }
.hero-chart { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .5; }
.hero-chart path { fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 3000; stroke-dashoffset: 3000; animation: heroDraw 3.5s ease-in-out .4s forwards; }
.hero-chart .hc2 { stroke: var(--mint-3); opacity: .6; animation-delay: .7s; }
@keyframes heroDraw { to { stroke-dashoffset: 0; } }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-orb-a { top: -160px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(76,132,103,.16), rgba(76,132,103,0) 68%); animation: drift 15s ease-in-out infinite alternate; }
.hero-orb-b { bottom: -180px; left: -140px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(29,75,56,.1), rgba(29,75,56,0) 66%); animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(-24px,20px); } }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; width: 100%; }

/* Zweispaltiger Hero */
.hero-two { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px,5vw,72px); align-items: center; }
.hero-left { min-width: 0; }
.hero-right { min-width: 0; }
.hero-photo { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 50px 100px -40px rgba(22,22,20,.5); border: 1px solid rgba(22,22,20,.08); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.hero-photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,53,42,.55), transparent 45%); }
.hero-photo-badge { position: absolute; left: 20px; bottom: 20px; z-index: 2; }
.hpb-name { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 22px;
  color: var(--paper); letter-spacing: -.01em; }
.hpb-role { display: block; font-size: 13px; color: rgba(248,248,246,.8); margin-top: 3px; }
@media (max-width: 880px) {
  .hero-two { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { max-width: 400px; }
}
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--green); margin-bottom: 28px; }
.hero-title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(46px,8vw,104px);
  letter-spacing: -.02em; line-height: .98; margin-bottom: 30px; }
.hero-title span { display: block; }
.hero-title em { font-style: italic; color: var(--green); }
.hero-sub { font-size: clamp(16px,1.6vw,20px); line-height: 1.7; color: var(--muted); max-width: 560px; margin-bottom: 38px; }
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-link { font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s; }
.hero-link:hover { color: var(--green); }
.hero-note { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; color: var(--muted);
  background: var(--card); border: 1px solid rgba(22,22,20,.08); border-radius: 100px; padding: 10px 20px;
  box-shadow: 0 16px 36px -20px rgba(22,22,20,.4); }
.hero-note b { color: var(--ink); }
.hero-note-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ===== FAHRPLAN / PILLARS ===== */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,4vw,52px); margin-bottom: clamp(52px,7vw,84px); }
.pillar { border-top: 1px solid rgba(22,22,20,.15); padding-top: 22px; transition: transform .35s var(--ease), border-color .35s ease; }
.pillar:hover { transform: translateY(-4px); border-color: var(--green); }
.pillar-tag { font-family: 'Fraunces', Georgia, serif; font-size: 14px; color: var(--green); }
.pillar h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(21px,2.3vw,27px);
  letter-spacing: -.01em; margin: 14px 0 12px; }
.pillar p { font-size: 15px; line-height: 1.68; color: var(--muted); }

/* ===== STATS-BOX + EQUITY ===== */
.stats-box { position: relative; overflow: hidden; background: var(--green-dark); border-radius: 24px;
  padding: clamp(32px,4vw,52px); color: var(--paper); box-shadow: 0 50px 100px -50px rgba(20,53,42,.6); }
.stats-box::before { content: ""; position: absolute; top: -140px; right: -100px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(76,132,103,.25), rgba(76,132,103,0) 68%); }
.stats-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(248,248,246,.6); margin-bottom: clamp(24px,3vw,34px); position: relative; }
.stats-hero { position: relative; display: grid; grid-template-columns: minmax(240px,.9fr) 1.1fr;
  gap: clamp(24px,4vw,56px); align-items: end; padding-bottom: clamp(26px,3.2vw,38px);
  margin-bottom: clamp(26px,3.2vw,38px); border-bottom: 1px solid rgba(248,248,246,.12); }
.stats-hero-num { display: flex; flex-direction: column; }
.big { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(64px,9vw,120px);
  letter-spacing: -.03em; line-height: .95; font-variant-numeric: tabular-nums; }
.stats-hero-label { font-size: 13.5px; color: rgba(248,248,246,.7); margin-top: 14px; }
.stats-hero-sub { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 14px; color: var(--mint); margin-top: 6px; }
.eq-wrap { position: relative; height: clamp(130px,16vw,185px); }
.eq { width: 100%; height: 100%; display: block; overflow: visible; }
.eq-path { fill: none; stroke: var(--mint-3); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 2.2s ease-in-out; }
.eq-fill { opacity: 0; transition: opacity 1.6s ease 1s; }
.eq-badge { position: absolute; top: 0; right: -4px; display: inline-flex; align-items: center; gap: 7px;
  transform: translateY(-40%); opacity: 0; transition: opacity .5s ease, transform .5s ease; }
.eq-badge.in { opacity: 1; }
.eq-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(168,195,181,.2); }
.eq-tag { font-size: 12px; font-weight: 600; color: var(--green-dark); background: var(--mint);
  border-radius: 100px; padding: 4px 11px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.eq-start { position: absolute; bottom: -4px; left: 0; font-size: 11.5px; color: rgba(248,248,246,.45); font-variant-numeric: tabular-nums; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,3vw,40px); position: relative; }
.stat { border-left: 1px solid rgba(248,248,246,.15); padding-left: clamp(16px,2vw,26px); }
.stat-val { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(30px,3.8vw,48px);
  letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { display: block; font-size: 12.5px; color: rgba(248,248,246,.6); margin-top: 12px; line-height: 1.5; }
.stats-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: clamp(28px,3.4vw,40px); padding-top: clamp(20px,2.4vw,28px); border-top: 1px solid rgba(248,248,246,.12); position: relative; }
.stats-note { font-size: 11.5px; color: rgba(248,248,246,.45); max-width: 480px; line-height: 1.6; }
.stats-cta { display: inline-flex; align-items: center; justify-content: center; background: var(--paper);
  color: var(--green-dark); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s ease; box-shadow: 0 14px 32px -14px rgba(0,0,0,.4); }
.stats-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -14px rgba(0,0,0,.5); }

/* ===== ERGEBNISSE / QUOTES / WIN-MARQUEE ===== */
.win-sec { padding-left: 0; padding-right: 0; overflow: hidden; }
.win-sec .container { padding: 0 24px; }
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,4vw,52px); }
.quote { margin: 0; border-top: 1px solid rgba(22,22,20,.15); padding-top: 26px; display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 24px; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400;
  font-size: clamp(15.5px,1.5vw,17.5px); line-height: 1.66; color: var(--quote); flex: 1; }
.q-name { font-weight: 600; font-size: 14.5px; }
.q-role { font-size: 12px; color: var(--faint); display: block; }
.win-wall { margin-top: clamp(52px,7vw,84px); }
.win-label { display: block; max-width: 1100px; margin: 0 auto 24px; padding: 0 24px; font-size: 11px;
  font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--faint); }
.win-band { display: flex; flex-direction: column; gap: 18px; }
.win-row { display: flex; align-items: center; gap: 18px; width: max-content; }
.win-row-a { animation: marqA 84s linear infinite; }
.win-row-b { animation: marqB 96s linear infinite; }
.win-band:hover .win-row { animation-play-state: paused; }
@keyframes marqA { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqB { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.win-tile { flex-shrink: 0; height: clamp(200px,26vw,300px); border-radius: 12px;
  overflow: hidden; box-shadow: 0 22px 44px -24px rgba(22,22,20,.35); transition: transform .45s var(--ease);
  background: #0d0d0c; }
.win-tile img { height: 100%; width: auto; display: block; }
.win-tile:hover { transform: translateY(-8px); }

/* ===== METHODE / STACK-CARDS ===== */
.stack { display: flex; flex-direction: column; gap: clamp(24px,4vw,48px); padding-bottom: clamp(40px,6vw,80px); }
.mcard { position: sticky; overflow: hidden; border-radius: 26px; min-height: clamp(340px,48vh,460px); display: flex;
  box-shadow: 0 -18px 50px -30px rgba(22,22,20,.25), 0 40px 90px -44px rgba(22,22,20,.35); }
.mcard:nth-child(1) { top: calc(clamp(76px,9vh,110px) + 0px); }
.mcard:nth-child(2) { top: calc(clamp(76px,9vh,110px) + 20px); }
.mcard:nth-child(3) { top: calc(clamp(76px,9vh,110px) + 40px); }
.mcard-ghost { position: absolute; top: -.14em; right: .02em; font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400; font-size: clamp(160px,24vw,320px); line-height: 1; pointer-events: none; }
.mcard-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px,5vw,72px); align-items: center; width: 100%; padding: clamp(32px,5vw,64px); }
.mcard-tag { font-family: 'Fraunces', Georgia, serif; font-size: 15px; }
.mcard h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(30px,4.2vw,52px);
  letter-spacing: -.015em; line-height: 1.05; margin-top: 14px; }
.mcard-flag { display: inline-flex; margin-top: 18px; font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 100px; width: fit-content; }
.mcard-r p { font-size: clamp(15.5px,1.6vw,18.5px); line-height: 1.75; margin: 0; }
.mcard-idx { display: block; margin-top: 26px; font-size: 11px; font-weight: 600; letter-spacing: .26em; }
.mcard.light { background: var(--card); border: 1px solid rgba(22,22,20,.08); }
.mcard.light .mcard-ghost { color: rgba(29,75,56,.06); }
.mcard.light .mcard-tag, .mcard.light em { color: var(--green); font-style: italic; }
.mcard.light .mcard-r p { color: var(--muted); }
.mcard.light .mcard-idx { color: var(--faint); }
.mcard.light .mcard-flag { background: var(--green); color: var(--paper); }
.mcard.dark { background: var(--green-dark); color: var(--paper); }
.mcard.dark::before { content: ""; position: absolute; top: -120px; right: -90px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(76,132,103,.25), rgba(76,132,103,0) 68%); }
.mcard.dark .mcard-ghost { color: rgba(248,248,246,.05); }
.mcard.dark .mcard-tag, .mcard.dark em { color: var(--mint); font-style: italic; }
.mcard.dark .mcard-r p { color: rgba(248,248,246,.8); }
.mcard.dark .mcard-idx { color: rgba(248,248,246,.4); }
.mcard.mint { background: var(--mint-bg); border: 1px solid rgba(29,75,56,.15); }
.mcard.mint .mcard-ghost { color: rgba(29,75,56,.08); }
.mcard.mint .mcard-tag, .mcard.mint em { color: var(--green); font-style: italic; }
.mcard.mint .mcard-r p { color: var(--quote); }
.mcard.mint .mcard-idx { color: rgba(29,75,56,.6); }
.foundation { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px,3vw,44px); align-items: center;
  border-top: 1px solid rgba(22,22,20,.15); padding-top: clamp(28px,3.6vw,44px); }
.foundation-label { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--green); }
.foundation p { font-size: 14.5px; line-height: 1.68; color: var(--muted); margin: 0; max-width: 560px; }

/* ===== HORIZONTAL-JOURNEY ===== */
.journey { position: relative; background: var(--paper); height: 320vh; }
.journey-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; padding: clamp(24px,4vh,48px) 0; }
.journey-head { display: grid; grid-template-columns: 1fr auto; gap: clamp(24px,4vw,64px); align-items: end;
  margin-bottom: clamp(28px,4.4vh,48px); }
.journey-head-l { max-width: 640px; }
.journey-rail { display: flex; align-items: center; gap: 12px; min-width: clamp(180px,22vw,300px); padding-bottom: 8px; }
.journey-rail-lbl { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 13px; color: var(--green); }
.journey-rail-bar { flex: 1; height: 2px; background: rgba(22,22,20,.13); border-radius: 2px; overflow: hidden; }
.journey-fill { height: 100%; width: 100%; background: var(--green); transform-origin: left center; transform: scaleX(0); }
.journey-viewport { position: relative; width: 100%; overflow: hidden; }
.journey-track { display: flex; gap: clamp(18px,2.2vw,28px); width: max-content;
  padding: 12px max(24px, calc((100vw - 1100px)/2 + 24px)) 28px; will-change: transform; }
.jcard { position: relative; overflow: hidden; flex-shrink: 0; width: clamp(300px,32vw,420px);
  min-height: clamp(300px,44vh,400px); border-radius: 22px; padding: clamp(24px,2.6vw,36px); display: flex;
  flex-direction: column; box-shadow: 0 30px 64px -34px rgba(22,22,20,.35); }
.jcard-ghost { position: absolute; top: -.12em; right: .04em; font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400; font-size: clamp(110px,12vw,170px); line-height: 1; pointer-events: none; }
.jcard-chip { font-family: 'Fraunces', Georgia, serif; font-size: 14px; margin-bottom: auto; }
.jcard h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(22px,2.4vw,30px);
  letter-spacing: -.01em; line-height: 1.1; margin: 18px 0 12px; }
.jcard p { font-size: 14.5px; line-height: 1.68; margin: 0; }
.jcard-idx { margin-top: 20px; font-size: 10.5px; font-weight: 600; letter-spacing: .26em; }
.jcard.light { background: var(--card); border: 1px solid rgba(22,22,20,.07); }
.jcard.light .jcard-ghost { color: rgba(29,75,56,.05); } .jcard.light .jcard-chip, .jcard.light em { color: var(--green); font-style: italic; }
.jcard.light p { color: var(--muted); } .jcard.light .jcard-idx { color: var(--faint); }
.jcard.dark { background: var(--green-dark); color: var(--paper); }
.jcard.dark::before { content: ""; position: absolute; top: -120px; right: -90px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(76,132,103,.25), rgba(76,132,103,0) 68%); }
.jcard.dark .jcard-ghost { color: rgba(248,248,246,.05); } .jcard.dark .jcard-chip, .jcard.dark em { color: var(--mint); font-style: italic; }
.jcard.dark p { color: rgba(248,248,246,.76); } .jcard.dark .jcard-idx { color: rgba(248,248,246,.4); }
.jcard.mint { background: var(--mint-bg); border: 1px solid rgba(29,75,56,.15); }
.jcard.mint .jcard-ghost { color: rgba(29,75,56,.07); } .jcard.mint .jcard-chip, .jcard.mint em { color: var(--green); font-style: italic; }
.jcard.mint p { color: var(--quote); } .jcard.mint .jcard-idx { color: rgba(29,75,56,.6); }
.jcard.cta { background: var(--green); color: var(--paper); justify-content: center; align-items: flex-start; gap: 26px; border: none; }
.jcard-cta-big { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(26px,3vw,38px); letter-spacing: -.015em; line-height: 1.1; }
.jcard-cta-big em { font-style: italic; color: var(--mint); }
.jcard-cta-btn { display: inline-flex; background: var(--paper); color: var(--green-dark); font-weight: 600;
  font-size: 14.5px; padding: 14px 26px; border-radius: 100px; transition: transform .3s var(--ease); }
.jcard.cta:hover .jcard-cta-btn { transform: translateY(-3px); }

/* ===== DISCORD-MOCKUP ===== */
.dc-sec { background: var(--paper-2); }
.dc-sec .container { max-width: 980px; }
.dc-window { background: #313338; border-radius: 16px; overflow: hidden;
  box-shadow: 0 60px 120px -50px rgba(22,22,20,.5), 0 2px 8px rgba(22,22,20,.15); border: 1px solid rgba(22,22,20,.15); }
.dc-titlebar { display: flex; align-items: center; gap: 14px; background: #1E1F22; padding: 12px 16px; }
.dc-dots { display: inline-flex; gap: 7px; }
.dc-dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dc-dots i:nth-child(1) { background: #FF5F57; } .dc-dots i:nth-child(2) { background: #FEBC2E; } .dc-dots i:nth-child(3) { background: #28C840; }
.dc-title { flex: 1; font-size: 12.5px; color: #DBDEE1; font-weight: 500; text-align: center; }
.dc-online { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: #949BA4; white-space: nowrap; }
.dc-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #23A55A; }
.dc-body { display: grid; grid-template-columns: 220px 1fr; min-height: 400px; }
.dc-sidebar { background: #2B2D31; padding: 14px 8px; }
.dc-cat { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #949BA4; padding: 8px 10px 4px; }
.dc-channel { display: flex; align-items: center; gap: 7px; width: 100%; text-align: left; background: none;
  border: none; cursor: pointer; padding: 6px 10px; font-size: 13.5px; font-family: inherit; color: #949BA4;
  border-radius: 6px; transition: background .15s, color .15s; }
.dc-channel span { color: #80848E; } .dc-channel:hover { background: #35373C; color: #DBDEE1; }
.dc-channel.active { background: #404249; color: #fff; } .dc-channel.active span { color: #DBDEE1; }
.dc-hint { display: block; font-size: 11px; color: #6D6F78; padding: 14px 10px 0; }
.dc-chat { display: flex; flex-direction: column; }
.dc-chat-head { display: flex; align-items: center; gap: 7px; padding: 12px 18px; border-bottom: 1px solid #26272B;
  color: #F2F3F5; font-weight: 600; font-size: 14px; } .dc-chat-head span { color: #80848E; }
.dc-views { flex: 1; }
.dc-view { padding: 18px; display: flex; flex-direction: column; gap: 18px; }
.dc-msg { display: flex; gap: 12px; align-items: flex-start; }
.dc-av { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; flex-shrink: 0; color: #fff; }
.dc-av-l { background: #1D4B38; } .dc-av-j { background: #5865F2; } .dc-av-m { background: #3BA55D; }
.dc-meta { display: flex; align-items: baseline; gap: 8px; margin-bottom: 3px; }
.dc-au-green { color: #4CB07F; font-size: 14px; } .dc-au-gold { color: #E8B34B; font-size: 14px; } .dc-au-blue { color: #7BA8E0; font-size: 14px; }
.dc-role { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: #1D4B38;
  color: #E6F2EB; border-radius: 4px; padding: 2px 6px; }
.dc-time { font-size: 11px; color: #949BA4; }
.dc-text { color: #DBDEE1; font-size: 14px; line-height: 1.5; }
.dc-embed { margin-top: 8px; background: #2B2D31; border-left: 3px solid #23A55A; border-radius: 6px; padding: 12px 14px; max-width: 340px; }
.dc-embed-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: #F2F3F5; font-size: 14px; }
.dc-long { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; background: rgba(35,165,90,.15); color: #4ADE80; border-radius: 4px; padding: 3px 8px; }
.dc-erow { display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; color: #949BA4; padding: 3px 0; }
.dc-erow b { color: #DBDEE1; font-weight: 500; font-variant-numeric: tabular-nums; }
.dc-reacts { display: flex; gap: 8px; margin-top: 10px; }
.dc-reacts span { background: #2B2D31; border: 1px solid #3F4147; border-radius: 8px; padding: 3px 9px; font-size: 12px; color: #DBDEE1; }
.dc-input { margin: 0 18px 18px; background: #383A40; border-radius: 8px; padding: 11px 14px; font-size: 13.5px; color: #6D6F78; }
.dc-cta { margin-top: clamp(32px,4.4vw,46px); }

/* ===== RANG-TREPPE ===== */
.rank-badge { display: inline-flex; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(22,22,20,.15); border-radius: 100px; padding: 5px 12px; background: var(--card); margin-left: 10px; }
.stairs { position: relative; --rise: clamp(26px,5.6vw,78px); display: flex; align-items: flex-end; gap: clamp(12px,1.8vw,22px); }
.stair { flex: 1; min-width: 0; display: flex; justify-content: flex-end; }
.stair:nth-child(1) { padding-bottom: 0; } .stair:nth-child(2) { padding-bottom: var(--rise); }
.stair:nth-child(3) { padding-bottom: calc(2*var(--rise)); } .stair:nth-child(4) { padding-bottom: calc(3*var(--rise)); }
.stair:nth-child(5) { padding-bottom: calc(4*var(--rise)); }
.stair-card { position: relative; width: 100%; background: var(--card); border: 1px solid rgba(22,22,20,.08);
  border-radius: 18px; padding: clamp(18px,2vw,26px); box-shadow: 0 24px 52px -30px rgba(22,22,20,.35); transition: transform .4s var(--ease), box-shadow .4s ease; }
.stair-card:hover { transform: translateY(-6px); box-shadow: 0 36px 66px -30px rgba(22,22,20,.45); }
.stair-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.stair-step { font-size: 11px; font-weight: 600; letter-spacing: .24em; color: var(--faint); }
.stair-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px;
  border-radius: 50%; background: var(--green); color: var(--paper); font-size: 12px; }
.stair-name { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(20px,2.2vw,28px); letter-spacing: -.01em; line-height: 1.05; }
.stair-unlock { display: block; font-size: 13px; line-height: 1.6; color: var(--muted); margin-top: 10px; }
.stair-card.elite { background: var(--green-dark); border-color: var(--green-dark); color: var(--paper); overflow: hidden;
  box-shadow: 0 34px 74px -30px rgba(29,75,56,.7), 0 0 70px -18px rgba(76,132,103,.35); }
.stair-card.elite::before { content: ""; position: absolute; top: -90px; right: -70px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(76,132,103,.35), rgba(76,132,103,0) 68%); }
.stair-card.elite .stair-step { color: rgba(248,248,246,.5); }
.stair-card.elite .stair-check { background: var(--mint); color: var(--green-dark); }
.stair-card.elite .stair-unlock { color: rgba(248,248,246,.7); }
.stair-elite-tag { display: inline-flex; margin-top: 14px; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 13px; color: var(--mint); }

/* ===== ZUGANG ===== */
.access-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(20px,3vw,32px); max-width: 900px; margin: 0 auto; }
.access-card { background: var(--card); border: 1px solid rgba(22,22,20,.1); border-radius: 22px; padding: clamp(28px,3.4vw,44px);
  display: flex; flex-direction: column; box-shadow: 0 30px 64px -40px rgba(22,22,20,.4); transition: transform .35s var(--ease), box-shadow .35s ease; }
.access-card:hover { transform: translateY(-5px); box-shadow: 0 44px 80px -40px rgba(22,22,20,.5); }
.access-card-alt { background: var(--green-dark); border-color: var(--green-dark); color: var(--paper); }
.access-price { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(40px,5vw,60px); letter-spacing: -.02em; line-height: 1; }
.access-price span { font-size: 16px; color: var(--faint); }
.access-card-alt .access-price span { color: rgba(248,248,246,.5); }
.access-name { display: block; font-weight: 600; font-size: 16px; margin: 14px 0 12px; }
.access-desc { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin-bottom: 22px; }
.access-card-alt .access-desc { color: rgba(248,248,246,.7); }
.access-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.access-list li { font-size: 14.5px; padding-left: 26px; position: relative; }
.access-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.access-card-alt .access-list li::before { color: var(--mint); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--paper);
  font-weight: 600; font-size: 15px; padding: 14px 28px; border: 1px solid rgba(248,248,246,.35); border-radius: 100px; transition: background .3s, border-color .3s; margin-top: auto; }
.btn-outline:hover { background: rgba(248,248,246,.1); border-color: var(--paper); }
.access-card .btn-primary { margin-top: auto; }

/* ===== FAQ ===== */
.faq-sec .container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(22,22,20,.13); padding: 4px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(22,22,20,.13); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 0; font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; font-size: clamp(18px,2vw,23px); letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: 'Instrument Sans', sans-serif; font-size: 24px; color: var(--green); transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.72; color: var(--muted); padding: 0 0 24px; max-width: 640px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-hero { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { grid-template-columns: 1fr; row-gap: 24px; }
  .quotes { grid-template-columns: 1fr; gap: 30px; }
  .mcard-inner { grid-template-columns: 1fr; gap: 20px; align-content: center; }
  .foundation { grid-template-columns: 1fr; gap: 16px; justify-items: start; }
  .stairs { --rise: 0px; flex-direction: column; align-items: stretch; gap: 14px; }
  .stair { padding-bottom: 0 !important; }
  .stair-card { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: baseline; }
  .stair-top { grid-column: 1 / -1; margin-bottom: 8px; }
  .dc-body { grid-template-columns: 1fr; } .dc-sidebar { display: none; }
  .access-cards { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .journey { height: auto; }
  .journey-sticky { position: static; height: auto; }
  .journey-head { grid-template-columns: 1fr; }
  .journey-rail { display: none; }
  .journey-viewport { overflow: visible; }
  .journey-track { flex-direction: column; width: auto; transform: none !important; padding: 0; }
  .jcard { width: 100%; min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-chart path, .eq-path { animation: none; stroke-dashoffset: 0; }
  .hero-orb, .win-row, .hero-note-dot { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ===== TICKER-BALKEN (durchlaufende Symbole) ===== */
.ticker { position: relative; z-index: 3; margin-top: 64px; background: var(--green-dark); overflow: hidden;
  border-bottom: 1px solid rgba(168,195,181,.15); }
.ticker-track { display: flex; align-items: center; gap: 0; width: max-content;
  animation: tickerMove 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 11px 26px;
  border-right: 1px solid rgba(168,195,181,.12); white-space: nowrap; }
.ticker-sym { font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .04em; color: var(--paper); }
.ticker-val { font-size: 13px; font-weight: 500; font-variant-numeric: tabular-nums; }
.ticker-val.up { color: #7FB59A; }
.ticker-val.down { color: #C98A8A; }
.ticker-arrow { font-size: 11px; }

/* Nav bekommt bei Ticker etwas Abstand */
.has-ticker { top: 0; }

@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ===== Echtes Setup-Bild im Discord-Mockup ===== */
.dc-real { padding: 18px; }
.dc-real img { width: 100%; height: auto; border-radius: 8px; display: block; }

/* ===== Mini-Rechtszeile (ersetzt Footer) ===== */
.legalbar { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 24px; font-size: 12.5px;
  color: var(--faint); border-top: 1px solid rgba(22,22,20,.08); }
.legalbar-links { display: flex; gap: 22px; }
.legalbar-links a { color: var(--muted); transition: color .2s; }
.legalbar-links a:hover { color: var(--green); }

/* ===== WER IST LORENZ ===== */
.lorenz-sec { overflow: hidden; }
.lorenz-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,5vw,72px); align-items: center; }
.lorenz-photo { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 50px 100px -44px rgba(22,22,20,.5); border: 1px solid rgba(22,22,20,.08); }
.lorenz-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.lorenz-text { min-width: 0; }
.lorenz-body { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin-top: 18px; max-width: 560px; }
.lorenz-stats { display: flex; gap: clamp(28px,4vw,56px); margin: 32px 0; }
.lorenz-stats > div { display: flex; flex-direction: column; gap: 6px; }
.ls-val { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(30px,3.6vw,44px);
  letter-spacing: -.02em; line-height: 1; color: var(--green); font-variant-numeric: tabular-nums; }
.ls-key { font-size: 13px; color: var(--muted); }
@media (max-width: 820px) {
  .lorenz-grid { grid-template-columns: 1fr; gap: 32px; }
  .lorenz-photo { max-width: 380px; }
}

/* ============================================================
   VOLLSTÄNDIGE SEITE — zusätzliche Sektions-Styles
   ============================================================ */

/* ===== Klartext von Lorenz ===== */
.klartext-narrow { max-width: 760px; }
.klartext-lead { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(20px,2.4vw,28px);
  line-height: 1.5; color: var(--ink); margin: 8px 0 28px; }
.klartext-body { font-size: 16.5px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.klartext-sign { display: flex; align-items: center; gap: 14px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(22,22,20,.12); }
.klartext-sign img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.klartext-sign b { display: block; font-size: 15px; }
.klartext-sign span { font-size: 13px; color: var(--faint); }

/* ===== Signale & Live-Trades ===== */
.perf-block { background: var(--card); border: 1px solid rgba(22,22,20,.1); border-radius: 24px;
  padding: clamp(28px,3.6vw,44px); margin-bottom: clamp(40px,5vw,64px);
  box-shadow: 0 40px 90px -50px rgba(22,22,20,.35); }
.perf-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap;
  padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid rgba(22,22,20,.1); }
.perf-label { font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--green); }
.perf-period { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 14px; color: var(--faint); }
.perf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,40px) clamp(20px,4vw,60px); }
.perf-cell { display: flex; flex-direction: column; gap: 8px; }
.perf-val { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(34px,4.4vw,52px);
  letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--ink); }
.perf-val.green { color: var(--green); } .perf-val.gold { color: #C9A25A; } .perf-val.loss { color: var(--loss); }
.perf-key { font-size: 13px; color: var(--muted); }
.perf-note { margin-top: 28px; font-size: 12px; color: var(--faint); }
.sig-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3.6vw,48px); margin-bottom: clamp(36px,5vw,56px); }
.sig-col { border-top: 1px solid rgba(22,22,20,.15); padding-top: 22px; }
.sig-tag { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 15px; color: var(--green); }
.sig-col h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(21px,2.3vw,27px); margin: 12px 0; }
.sig-col p { font-size: 15px; line-height: 1.68; color: var(--muted); }
.livetrade-card { background: var(--card); border: 1px solid rgba(22,22,20,.1); border-radius: 20px;
  padding: clamp(28px,3.4vw,44px); max-width: 720px; box-shadow: 0 30px 70px -44px rgba(22,22,20,.3); }
.lt-kick { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.lt-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.livetrade-card h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(24px,3vw,34px);
  letter-spacing: -.01em; margin-bottom: 14px; }
.livetrade-card p { font-size: 15.5px; line-height: 1.75; color: var(--muted); }

/* ===== Inside — Foto-Marquee ===== */
.inside-sec { padding-left: 0; padding-right: 0; overflow: hidden; }
.inside-sec .container { padding: 0 24px; }
.photo-marquee { margin-top: clamp(40px,5vw,64px); overflow: hidden; }
.pm-row { display: flex; gap: 18px; width: max-content; animation: pmMove 70s linear infinite; }
.photo-marquee:hover .pm-row { animation-play-state: paused; }
@keyframes pmMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pm-tile { flex-shrink: 0; height: clamp(240px,30vw,360px); border-radius: 14px; overflow: hidden;
  box-shadow: 0 26px 54px -28px rgba(22,22,20,.4); }
.pm-tile img { height: 100%; width: auto; display: block; }
.pm-caption { text-align: center; margin-top: clamp(32px,4vw,48px); font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: clamp(16px,1.8vw,20px); color: var(--muted); }

/* ===== Wer ist Lorenz (Erweiterung) ===== */
.lorenz-photo-tag { position: absolute; left: 16px; bottom: 16px; z-index: 2; font-family: 'Fraunces', serif;
  font-style: italic; font-size: 13px; color: rgba(248,248,246,.9); }
.lorenz-facts { display: grid; grid-template-columns: repeat(4,auto); gap: clamp(20px,3vw,40px); margin: 30px 0;
  justify-content: start; }
.lorenz-facts > div { display: flex; flex-direction: column; gap: 5px; }
.lf-val { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(19px,2.2vw,26px); letter-spacing: -.01em; }
.lf-key { font-size: 12px; color: var(--faint); }
.lorenz-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.lorenz-meta { font-size: 13px; color: var(--muted); }
@media (max-width: 620px) { .lorenz-facts { grid-template-columns: repeat(2,auto); } }

/* ===== Extra-Edge ===== */
.edge-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center;
  margin-bottom: clamp(40px,6vw,80px); }
.edge-row:last-child { margin-bottom: 0; }
.edge-reverse .edge-photo { order: 2; }
.edge-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 40px 80px -44px rgba(22,22,20,.45); }
.edge-photo img { width: 100%; height: 100%; object-fit: cover; }
.edge-text { position: relative; }
.edge-ghost { position: absolute; top: -60px; right: -10px; font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: clamp(70px,8vw,120px); color: rgba(29,75,56,.07); line-height: 1; pointer-events: none; z-index: 0; }
.edge-tag { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 14px; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; }
.edge-text h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(28px,3.6vw,42px);
  letter-spacing: -.015em; line-height: 1.08; margin: 12px 0 18px; }
.edge-text h3 em { color: var(--green); font-style: italic; }
.edge-text p { font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 460px; }
@media (max-width: 820px) {
  .edge-row { grid-template-columns: 1fr; gap: 24px; }
  .edge-reverse .edge-photo { order: 0; }
  .edge-ghost { position: static; display: block; font-size: 60px; }
}

/* ===== Wofür wir stehen ===== */
.markets-row { display: grid; grid-template-columns: repeat(5,1fr); gap: clamp(16px,2vw,28px);
  padding-top: clamp(28px,3.6vw,40px); border-top: 1px solid rgba(22,22,20,.15); }
.market { border-left: 1px solid rgba(22,22,20,.12); padding-left: 18px; }
.market h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(17px,2vw,22px); margin-bottom: 8px; }
.market span { font-size: 13px; color: var(--muted); }
.stehen-quote { margin-top: clamp(28px,3.6vw,40px); font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: clamp(18px,2.2vw,26px); color: var(--green); }
@media (max-width: 720px) { .markets-row { grid-template-columns: repeat(2,1fr); gap: 22px; } }

/* ===== Warum wir (Alternative) ===== */
.warum-list { display: flex; flex-direction: column; }
.warum-item { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid rgba(22,22,20,.13); }
.warum-item:last-of-type { border-bottom: 1px solid rgba(22,22,20,.13); }
.wi-l { font-family: 'Fraunces', Georgia, serif; font-size: clamp(20px,2.3vw,26px); letter-spacing: -.01em; }
.wi-not { font-style: italic; color: var(--faint); font-weight: 400; }
.wi-l b { font-weight: 600; }
.warum-item p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.warum-close { margin: clamp(36px,5vw,56px) 0 32px; font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: clamp(24px,3.2vw,38px); letter-spacing: -.01em; line-height: 1.25; max-width: 900px; }
.warum-close em { font-style: italic; color: var(--green); }
@media (max-width: 720px) { .warum-item { grid-template-columns: 1fr; gap: 10px; } }

/* ===== Verifizierte Broker ===== */
.broker-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px,3vw,44px); padding-top: clamp(32px,4vw,48px); }
.broker-logos span { font-family: 'Fraunces', Georgia, serif; font-size: clamp(18px,2.2vw,26px); color: var(--muted); }
.broker-logos .bl-main { color: var(--ink); font-weight: 600; display: inline-flex; align-items: baseline; gap: 10px; }
.broker-logos .bl-main em { font-family: 'Instrument Sans', sans-serif; font-style: normal; font-size: 10px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(22,22,20,.2); border-radius: 100px; padding: 4px 10px; }

/* ===== Vergleich ===== */
.compare { border-top: 1px solid rgba(22,22,20,.15); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr 1fr; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid rgba(22,22,20,.1); align-items: center; }
.cmp-head { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.cmp-head .cmp-us, .cmp-row .cmp-us { color: var(--green); }
.cmp-row .cmp-us { font-weight: 600; }
.cmp-k { font-size: 14px; color: var(--muted); }
.cmp-row span:not(.cmp-k):not(.cmp-us) { font-size: 14px; color: var(--faint); }
.cmp-row span { font-size: 14.5px; }
@media (max-width: 720px) {
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .cmp-k { font-weight: 600; color: var(--ink); }
}

/* ===== Für Wen ===== */
.fw-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3.6vw,48px); }
.fw-col { border-top: 1px solid rgba(22,22,20,.15); padding-top: 22px; }
.fw-tag { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 14px; color: var(--faint); text-transform: uppercase; letter-spacing: .08em; }
.fw-col h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(20px,2.3vw,26px); margin: 12px 0; }
.fw-col p { font-size: 15px; line-height: 1.68; color: var(--muted); margin-bottom: 20px; }
.fw-result { font-size: 14px; color: var(--ink); } .fw-result b { color: var(--green); }

/* ===== Deine Entscheidung ===== */
.entscheidung-sec { text-align: center; }
.ent-avatar { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto 28px;
  border: 3px solid var(--paper); box-shadow: 0 20px 44px -20px rgba(22,22,20,.5); }
.ent-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ent-title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(40px,6vw,72px);
  letter-spacing: -.02em; line-height: 1; margin-bottom: 24px; }
.ent-title em { font-style: italic; color: var(--green); }
.ent-meta { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: clamp(14px,1.6vw,17px);
  color: var(--muted); margin-bottom: 36px; }
.ent-cta { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.ent-link { font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.ent-link:hover { color: var(--green); border-color: var(--green); }

/* ===== Footer (dunkelgrün, vollständig) ===== */
.footer-legal-links { display: flex; gap: clamp(20px,3vw,40px); flex-wrap: wrap; }
.footer-legal-links a { font-size: 14px; color: rgba(248,248,246,.85); transition: color .2s; }
.footer-legal-links a:hover { color: var(--mint); }
.footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }

/* ============================================================
   1:1 REBUILD — zusätzliche Bausteine
   ============================================================ */

/* ===== Morning-Setup-Card (Hero rechts) ===== */
.morning-card { background: var(--green-dark); border-radius: 20px; padding: 24px; color: var(--paper);
  box-shadow: 0 50px 100px -40px rgba(20,53,42,.6); border: 1px solid rgba(168,195,181,.2); }
.mc-head { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(248,248,246,.14); }
.mc-title { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 500; }
.mc-live { display: inline-flex; align-items: center; gap: 6px; font-family: 'Instrument Sans', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; background: rgba(138,48,51,.9); color: #fff; border-radius: 100px; padding: 3px 9px; }
.mc-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.6s ease-in-out infinite; }
.mc-sub { display: block; font-size: 12.5px; color: rgba(248,248,246,.6); margin-top: 6px; }
.mc-rows { display: flex; flex-direction: column; gap: 2px; }
.mc-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center; padding: 10px 0;
  border-bottom: 1px solid rgba(248,248,246,.07); }
.mc-row:last-child { border-bottom: none; }
.mc-sym { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(248,248,246,.7); }
.mc-price { font-family: 'Fraunces', Georgia, serif; font-size: 17px; font-variant-numeric: tabular-nums; }
.mc-dir { font-size: 11.5px; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.mc-dir.long { background: rgba(76,132,103,.25); color: #9ED4B6; }
.mc-dir.short { background: rgba(138,48,51,.25); color: #E8A0A3; }
.mc-foot { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(248,248,246,.14); font-size: 11.5px; color: rgba(248,248,246,.5); }

/* ===== Hero-Scroller (Feature-Chips unter Hero) ===== */
.hero-scroller { position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(22,22,20,.08); background: rgba(248,248,246,.6); backdrop-filter: blur(6px); z-index: 2; }
.hs-track { display: flex; gap: 0; width: max-content; animation: hsMove 45s linear infinite; }
.hs-item { display: inline-flex; align-items: center; padding: 0 24px; font-size: 13px; color: var(--muted); white-space: nowrap; position: relative; }
.hs-item::after { content: "·"; position: absolute; right: -2px; color: var(--faint); }
@keyframes hsMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 880px) { .hero-scroller { display: none; } }

/* Hero braucht unten Platz für Scroller */
.hero { padding-bottom: 90px; }

/* ===== Problem-Liste (Kennst du das?) ===== */
.problem-sec .klartext-narrow { max-width: 820px; }
.problem-list { display: flex; flex-direction: column; gap: 4px; margin: 8px 0 32px; }
.problem-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid rgba(22,22,20,.1); }
.pi-num { font-family: 'Fraunces', Georgia, serif; font-size: 13px; color: var(--faint); letter-spacing: .1em; }
.problem-item p { font-family: 'Fraunces', Georgia, serif; font-size: clamp(19px,2.2vw,25px); line-height: 1.4; color: var(--ink); }
.problem-close { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(22px,3vw,34px);
  line-height: 1.35; letter-spacing: -.01em; max-width: 760px; }
.problem-close em { font-style: italic; color: var(--green); }

/* ===== Preis-Cards (Zwei Türen) ===== */
.price-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(20px,3vw,28px); max-width: 900px; margin: 0 auto; }
.price-card { position: relative; background: var(--card); border: 1px solid rgba(22,22,20,.1); border-radius: 24px;
  padding: clamp(30px,3.6vw,44px); display: flex; flex-direction: column; box-shadow: 0 40px 90px -50px rgba(22,22,20,.4); }
.price-card.reveal { transition: transform .5s var(--ease), opacity .9s var(--ease); }
.price-card:hover { transform: translateY(-5px); }
.pc-flag { position: absolute; top: -13px; left: clamp(30px,3.6vw,44px); background: var(--green); color: var(--paper);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; }
.pc-kind { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.pc-price { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(44px,6vw,64px); letter-spacing: -.02em; line-height: 1; }
.pc-price span { font-family: 'Instrument Sans', sans-serif; font-size: 15px; font-weight: 400; color: var(--faint); }
.pc-desc { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 16px 0 24px; }
.pc-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pc-list li { font-size: 14.5px; padding-left: 26px; position: relative; }
.pc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card-alt { background: var(--green-dark); border-color: var(--green-dark); color: var(--paper); }
.price-card-alt .pc-kind { color: var(--mint); }
.price-card-alt .pc-desc { color: rgba(248,248,246,.7); }
.price-card-alt .pc-price span { color: rgba(248,248,246,.5); }
.price-card-alt .pc-list li::before { color: var(--mint); }
.price-card .btn-primary, .price-card .btn-outline { margin-top: auto; }
@media (max-width: 720px) { .price-cards { grid-template-columns: 1fr; } }

/* Foto-Marquee zweite Reihe rückwärts */
.pm-row-rev { animation-direction: reverse; }
.inside-sec-2 { padding-top: clamp(40px,5vw,64px); }

/* ============================================================
   FIXES — fehlende Styles & Zentrierung
   ============================================================ */

/* ===== So funktioniert's — 3 Schritte (fehlte komplett) ===== */
.steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3.6vw,48px); }
.step3 { border-top: 1px solid rgba(22,22,20,.15); padding-top: 24px; }
.step3-num { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400;
  font-size: clamp(40px,5vw,60px); line-height: 1; color: rgba(29,75,56,.25); display: block; }
.step3 h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(20px,2.3vw,26px);
  letter-spacing: -.01em; margin: 16px 0 10px; }
.step3 p { font-size: 14.5px; line-height: 1.68; color: var(--muted); }
@media (max-width: 720px) { .steps3 { grid-template-columns: 1fr; gap: 26px; } }

/* ===== Zentrierte Heads (Broker, Inside, Zugang, Entscheidung) ===== */
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head.center .eyebrow,
.head.center .h2,
.head.center .lead { text-align: center; }
.head.center .lead { margin-left: auto; margin-right: auto; }

/* ===== Abstände feiner justieren ===== */
/* Problem-Sektion: Liste enger an Close-Text */
.problem-close { margin-top: 20px; }
/* Stehen-Quote nicht zu weit weg */
.stehen-quote { margin-top: clamp(24px,3vw,36px); }

/* ===== Pillar-Styling (Fahrplan-Cards) sicherstellen ===== */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,4vw,52px); margin-bottom: clamp(52px,7vw,84px); }
.pillar { border-top: 1px solid rgba(22,22,20,.15); padding-top: 22px; transition: transform .35s var(--ease), border-color .35s ease; }
.pillar:hover { transform: translateY(-4px); border-color: var(--green); }
.pillar-tag { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 15px; color: var(--green); }
.pillar h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(21px,2.3vw,27px);
  letter-spacing: -.01em; margin: 14px 0 12px; }
.pillar p { font-size: 15px; line-height: 1.68; color: var(--muted); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; gap: 28px; } }

/* ===== Echtes Gold-Setup-Bild (statt Discord-Mockup) ===== */
.dc-realshot { max-width: 720px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  box-shadow: 0 50px 100px -44px rgba(22,22,20,.5); border: 1px solid rgba(22,22,20,.1); }
.dc-realshot img { width: 100%; height: auto; display: block; }
.dc-sec .dc-cta { display: inline-flex; margin-top: clamp(32px,4vw,46px); }
.dc-sec .dc-realshot-wrap { text-align: center; }

/* ============================================================
   MOBILE-OPTIMIERUNG — gebündelte Breakpoints
   ============================================================ */

/* ===== Tablet & kleiner (820px) ===== */
@media (max-width: 820px) {
  /* Performance-Grid: 3 → 2 Spalten */
  .perf-grid { grid-template-columns: repeat(2,1fr); gap: 28px 24px; }
  .perf-head { flex-direction: column; gap: 8px; }
  /* Signal-Spalten: 3 → 1 */
  .sig-cols { grid-template-columns: 1fr; gap: 28px; }
  /* Für-Wen: 3 → 1 */
  .fw-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Handy (560px) ===== */
@media (max-width: 560px) {
  /* Performance-Grid: 2 → 1 Spalte, aber Zahlen bleiben lesbar groß */
  .perf-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .perf-val { font-size: clamp(28px,9vw,38px); }
  .perf-block { padding: 24px 20px; }
  /* Märkte: 2 → 2 (bleibt, aber enger) */
  .markets-row { gap: 18px 14px; }
  .market { padding-left: 14px; }
  /* Lorenz-Fakten: 2 Spalten ok, aber Gap enger */
  .lorenz-facts { gap: 18px 20px; }
  /* Morning-Card: etwas kompakter */
  .morning-card { padding: 20px; }
  .mc-row { grid-template-columns: 60px 1fr auto; gap: 8px; }
  .mc-dir { font-size: 10.5px; padding: 3px 8px; }
  .mc-price { font-size: 15px; }
  /* Klartext-Signatur nicht zu groß */
  .klartext-sign img { width: 46px; height: 46px; }
  /* Hero-CTA untereinander wenn nötig */
  .hero-cta { flex-wrap: wrap; gap: 14px; }
  /* Preis-Card Padding */
  .price-card { padding: 28px 24px; }
  /* Sektions-Padding auf Mobile etwas reduzieren */
  .sec { padding-left: 20px; padding-right: 20px; }
  /* Perf-Head Periode kleiner */
  .perf-period { font-size: 12.5px; }
  /* Ent-Meta (Trade nicht länger allein · Punkte) umbrechen lassen */
  .ent-meta { line-height: 1.9; }
}

/* ===== Sehr kleine Handys (380px) ===== */
@media (max-width: 380px) {
  .perf-val { font-size: 30px; }
  .h2 { font-size: 30px; }
  .hero-title { font-size: 40px; }
}

/* ===== Touch-Target Nav-CTA auf Mobile vergrößern ===== */
@media (max-width: 560px) {
  .nav-cta { min-height: 42px; padding: 0 18px; font-size: 13px; }
}

/* ============================================================
   DAS ERWARTET DICH DRINNEN — gestaffelte Karten (robust)
   ============================================================ */
.drinnen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); margin-top: clamp(40px,5vw,56px); }
.dcard { position: relative; background: var(--card); border: 1px solid rgba(22,22,20,.09); border-radius: 18px;
  padding: clamp(24px,2.6vw,32px); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease; }
.dcard::before { content: ""; position: absolute; inset: 0; border-radius: 18px; pointer-events: none;
  background: radial-gradient(120% 120% at 100% 0%, rgba(29,75,56,.06), transparent 55%); opacity: 0; transition: opacity .5s ease; }
.dcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(22,22,20,.35); border-color: rgba(29,75,56,.3); }
.dcard:hover::before { opacity: 1; }
.dcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dcard-chip { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 30px; padding: 0 12px;
  border-radius: 100px; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 14px;
  background: rgba(29,75,56,.08); color: var(--green); }
.dcard-chip.am { background: rgba(76,132,103,.16); color: var(--green); }
.dcard-chip.pm { background: rgba(22,22,20,.07); color: var(--ink); }
.dcard-num { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: clamp(30px,3.4vw,44px);
  line-height: 1; color: rgba(29,75,56,.14); }
.dcard h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(19px,2.1vw,24px);
  letter-spacing: -.01em; margin-bottom: 10px; }
.dcard p { font-size: 14.5px; line-height: 1.66; color: var(--muted); }
/* CTA-Zeile */
.drinnen-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(24px,3vw,32px); padding: clamp(26px,3vw,38px) clamp(28px,3.4vw,44px);
  background: var(--green-dark); border-radius: 20px; color: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); box-shadow: 0 30px 70px -44px rgba(20,53,42,.6); }
.drinnen-cta:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -40px rgba(20,53,42,.7); }
.drinnen-cta-big { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(22px,2.8vw,32px); letter-spacing: -.01em; }
.drinnen-cta-big em { font-style: italic; color: var(--mint); }
.drinnen-cta-btn { font-size: 15px; font-weight: 600; white-space: nowrap; padding: 12px 22px;
  background: var(--paper); color: var(--green-dark); border-radius: 100px; transition: transform .3s ease; }
.drinnen-cta:hover .drinnen-cta-btn { transform: translateX(4px); }
@media (max-width: 820px) { .drinnen-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) {
  .drinnen-grid { grid-template-columns: 1fr; gap: 14px; }
  .drinnen-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   VERGLEICHSTABELLE — neu, klar, mit Icons
   ============================================================ */
.vs-table { margin-top: clamp(32px,4vw,48px); }
.vs-grid { display: grid; grid-template-columns: 1.1fr 1.3fr 1fr 1fr; position: relative; }
/* Zellen */
.vs-cell { padding: 18px 20px; display: flex; align-items: center; gap: 10px; font-size: 14.5px;
  border-bottom: 1px solid rgba(22,22,20,.09); color: var(--muted); }
/* Kopfzeile */
.vs-th { font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--faint); border-bottom: 2px solid rgba(22,22,20,.15);
  flex-direction: column; align-items: flex-start; gap: 4px; }
.vs-corner { border-bottom: 2px solid rgba(22,22,20,.15); }
/* Kategorie-Spalte (links) */
.vs-k { font-weight: 600; color: var(--ink); font-size: 14px; }
/* Icons */
.vs-ico { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.vs-ico.ok { background: rgba(76,132,103,.16); color: var(--green); }
.vs-ico.no { background: rgba(138,48,51,.12); color: var(--loss); }
.vs-ico.mid { background: rgba(201,162,90,.16); color: #B8862F; }
.vs-sub { font-size: 12.5px; color: var(--faint); }
/* Hervorgehobene MM-Spalte (Spalte 2) */
.vs-th-us { border-bottom-color: var(--green); }
.vs-th-us .vs-th-name { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 16px;
  text-transform: none; letter-spacing: -.01em; color: var(--green); }
.vs-th-us .vs-th-tag { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper); background: var(--green); padding: 3px 8px; border-radius: 100px; }
.vs-us { color: var(--ink); font-weight: 500; background: rgba(29,75,56,.035); }
.vs-us b { color: var(--green); }
/* Grüner Rahmen um die MM-Spalte via Pseudo */
.vs-grid::after { content: ""; position: absolute; top: 0; bottom: 0;
  left: calc((1.1 / 4.4) * 100%); width: calc((1.3 / 4.4) * 100%);
  border: 2px solid var(--green); border-radius: 14px; pointer-events: none;
  box-shadow: 0 30px 60px -40px rgba(29,75,56,.4); }
/* letzte Zeile ohne Border */
.vs-grid > .vs-cell:nth-last-child(-n+4) { border-bottom: none; }

/* Mobile: Tabelle → Karten-Ansicht */
@media (max-width: 720px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-grid::after { display: none; }
  .vs-corner, .vs-th:not(.vs-th-us) { display: none; }
  /* Kopf nur MM-Spalte zeigen als Sektion-Auftakt */
  .vs-th-us { flex-direction: row; justify-content: space-between; width: 100%;
    border: 2px solid var(--green); border-radius: 12px; margin-bottom: 8px; padding: 14px 18px; }
  /* Kategorie als Label über den Werten */
  .vs-k { background: rgba(22,22,20,.03); font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
    color: var(--faint); padding: 10px 18px; border-bottom: none; margin-top: 6px; }
  .vs-cell:not(.vs-k):not(.vs-th) { border-bottom: 1px solid rgba(22,22,20,.07); }
  /* Anbieter-Name vor Wert einblenden auf Mobile */
  .vs-us::before { content: "Market Mavericks"; font-size: 11px; color: var(--green); font-weight: 600;
    margin-right: auto; order: 2; }
  .vs-us { justify-content: flex-start; flex-wrap: wrap; }
}

/* ===== Vergleichstabelle auf Mobile komplett ausblenden ===== */
@media (max-width: 720px) {
  .vergleich-sec { display: none; }
}
