/* ══════════════════════════════════════════════════════════════════════════
   Familienkit · Marketing-Site — gemeinsames Fundament der drei Vollversionen
   ─────────────────────────────────────────────────────────────────────────
   Hier steht alles, was in A, B und C IDENTISCH ist: Tokens, Navigation,
   Hero mit dem Deck (bereits von Luca freigegeben), die App-Screen-Mocks,
   Buttons, Sektions-Bausteine, Footer.
   Was die Varianten unterscheidet, steht in der jeweiligen HTML-Datei.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  --tinte:   #0A0A0A;
  --papier:  #FAFAF7;
  --sand:    #F5F0E8;
  --ocker:   #C9974E;
  --ocker-2: #E8B968;
  --forst:   #2C3E2D;
  --stein:   #888888;
  --beam:    #FFE2A8;
  --hairline: rgba(10,10,10,.08);
  --hover:    rgba(10,10,10,.04);
  --karte:    #FFFFFF;
  --shadow-soft: 0 30px 80px rgba(0,0,0,.12);
  --shadow-glow: 0 0 80px rgba(201,151,78,.35);
  /* Tiefe der hinteren Coverflow-Karten: hell = Tiefenschärfe (abdunkeln
     sähe nach „kaputtem Screen" aus), dunkel = abdunkeln. */
  --floor: rgba(10,10,10,.10);
  --dim1: blur(.6px);
  --dim2: blur(1.6px) saturate(.8);
  --spring: cubic-bezier(.22,1,.36,1);
  /* Apple-Light-Tokens der App-Screens IM Gerät — unabhängig vom Seiten-Theme */
  --fk-bg:#fff; --fk-bg2:#f5f5f7; --fk-text:#1d1d1f; --fk-t2:#424245;
  --fk-t3:#6e6e73; --fk-sep:rgba(0,0,0,.08);
  --blau:#0a84ff; --gruen:#30d158; --indigo:#5e5ce6; --wasser:#64d2ff;
}
@media (prefers-color-scheme: dark) {
  :root {
    --tinte:  #FAFAF7;
    --papier: #0A0A0A;
    --sand:   #161614;
    --karte:  #1A1A18;
    --hairline: rgba(255,255,255,.10);
    --hover:    rgba(255,255,255,.05);
    --floor:    rgba(255,255,255,.08);
    --dim1: brightness(.7);
    --dim2: brightness(.5);
    --shadow-soft: 0 30px 80px rgba(0,0,0,.6);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--papier); color: var(--tinte);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", system-ui, sans-serif;
  font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Hintergrund ────────────────────────────────────────────────────────── */
.mesh {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(232,185,104,.28) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(201,151,78,.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(44,62,45,.10) 0%, transparent 60%),
    var(--papier);
  animation: mesh-flow 18s ease-in-out infinite alternate;
}
@keyframes mesh-flow { 0% { transform: scale(1) translateX(0); } 100% { transform: scale(1.15) translateX(-2%); } }
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.wide { max-width: 1240px; }

/* ─── Lesefortschritt ────────────────────────────────────────────────────── */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100; pointer-events: none; }
.scroll-progress .bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--ocker), var(--ocker-2)); transition: width .1s linear; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(250,250,247,.6);
  border-bottom: .5px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
@media (prefers-color-scheme: dark) { nav.top { background: rgba(10,10,10,.6); } }
nav.top.scrolled { background: rgba(250,250,247,.85); border-color: var(--hairline); }
@media (prefers-color-scheme: dark) { nav.top.scrolled { background: rgba(10,10,10,.85); } }
nav.top .row { display: flex; justify-content: space-between; align-items: center;
               padding: 14px 24px; max-width: 1100px; margin: 0 auto; transition: padding .3s ease; }
nav.top.scrolled .row { padding: 10px 24px; }
nav .logo { font-weight: 700; letter-spacing: -.01em; font-size: 17px; display: flex; align-items: center;
            gap: 4px; text-decoration: none; color: var(--tinte); }
nav .logo .dot { color: var(--ocker); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.92); } }
nav .links { display: flex; gap: 26px; align-items: center; }
nav .links a { color: var(--tinte); text-decoration: none; font-size: 14px; opacity: .75; transition: opacity .15s; }
nav .links a:hover { opacity: 1; }
nav .cta { background: var(--tinte); color: var(--papier); padding: 8px 16px; border-radius: 999px;
           font-size: 13px; font-weight: 500; opacity: 1 !important; transition: transform .2s, box-shadow .2s; }
nav .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.20); }
nav .links a.login-link { opacity: 1; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--hairline);
                          font-weight: 500; transition: background .2s, border-color .2s; }
nav .links a.login-link:hover { background: var(--hover); border-color: var(--tinte); }
@media (max-width: 700px) { nav .links a:not(.cta):not(.login-link) { display: none; } }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 30px; border-radius: 999px;
  text-decoration: none; font-size: 16px; font-weight: 500; cursor: pointer; border: 0;
  position: relative; overflow: hidden; font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--tinte); color: var(--papier); box-shadow: 0 8px 18px rgba(0,0,0,.15); }
.btn.primary:hover { box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn.primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%); transition: transform .6s;
}
.btn.primary:hover::after { transform: translateX(100%); }
.btn.secondary { background: transparent; color: var(--tinte); border: 1px solid var(--hairline); backdrop-filter: blur(10px); }
.btn.secondary:hover { background: var(--hover); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }
.magnetic { transition: transform .2s var(--spring); }

/* ─── HERO (freigegebene Variante A: Animation ganz oben) ────────────────── */
.hero { padding: 14px 0 76px; text-align: center; position: relative; }
@media (max-width: 640px) { .hero { padding: 8px 0 56px; } }
.hero .container.narrow { max-width: 900px; }
h1.hero-title { font-size: clamp(38px, 6.4vw, 80px); font-weight: 800; letter-spacing: -.035em;
                line-height: 1; margin: 0 0 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%);
                    animation: word-rise .9s var(--spring) forwards; }
.hero-title .word.d1 { animation-delay: .05s; }
.hero-title .word.d2 { animation-delay: .12s; }
.hero-title .word.d3 { animation-delay: .20s; }
.hero-title .accent {
  background: linear-gradient(90deg, var(--ocker) 0%, var(--ocker-2) 50%, var(--ocker) 100%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; transform: translateY(110%);
  animation: word-rise .9s .28s var(--spring) forwards, sheen 4s ease-in-out infinite;
}
@keyframes word-rise { to { transform: translateY(0); } }
@keyframes sheen { 0%,100% { background-position: 0 0; } 50% { background-position: 100% 0; } }
.hero-sub { font-size: clamp(17px, 2.1vw, 22px); color: var(--stein); max-width: 620px;
            margin: 0 auto 40px; line-height: 1.55;
            opacity: 0; transform: translateY(20px); animation: rise .8s .5s ease-out forwards; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
            opacity: 0; animation: rise .8s .65s ease-out forwards; }
.hero-tag { margin-top: 26px; color: var(--stein); font-size: 13px;
            opacity: 0; animation: rise .8s .8s ease-out forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.live-dot-wrap { display: inline-flex; gap: 7px; align-items: center; color: var(--ocker);
                 font-weight: 700; letter-spacing: .04em; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #34c759;
            animation: live-blink 1.6s ease-in-out infinite; }
@keyframes live-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ─── Das Deck (3D-Coverflow) ────────────────────────────────────────────── */
.deckWrap { position: relative; perspective: 1600px; margin: 0 auto 4px;
            opacity: 0; animation: deck-arrive 1.2s .15s var(--spring) forwards; }
@keyframes deck-arrive { 0% { opacity: 0; transform: translateY(40px) scale(.94); } 100% { opacity: 1; transform: none; } }
.deck { position: relative; width: 100%; max-width: 900px; margin: 0 auto; height: 500px; transform-style: preserve-3d; }
.deckCard { position: absolute; top: 50%; left: 50%; width: 236px; height: 486px; margin: -243px 0 0 -118px;
            border-radius: 38px; will-change: transform, opacity;
            transition: transform .8s var(--spring), opacity .8s var(--spring), filter .8s var(--spring); }
.deckFloor { position: absolute; left: 50%; bottom: 30px; width: min(520px,100%); height: 120px;
             transform: translateX(-50%); pointer-events: none; filter: blur(8px);
             background: radial-gradient(ellipse at 50% 0%, var(--floor), transparent 70%); }
.deckGlow { position: absolute; left: 50%; top: 30px; width: 340px; height: 340px; transform: translateX(-50%);
            border-radius: 50%; pointer-events: none; filter: blur(100px); opacity: .30;
            transition: background .8s var(--spring); }
.device { position: relative; width: 100%; height: 100%; border-radius: 46px; background: #000; padding: 11px;
          box-shadow: 0 50px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06), inset 0 0 0 2px rgba(255,255,255,.07); }
.device .notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 104px; height: 26px;
                 background: #000; border-radius: 0 0 18px 18px; z-index: 8; }
.device .scr { position: absolute; inset: 11px; border-radius: 35px; overflow: hidden; background: var(--fk-bg); }
.scap { text-align: center; margin: -6px 0 26px; }
.scap .lbl { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 750;
             letter-spacing: .10em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
             background: var(--hover); border: .5px solid var(--hairline); color: var(--stein);
             transition: color .5s var(--spring), border-color .5s var(--spring); }
.scap .lbl .d { width: 7px; height: 7px; border-radius: 50%; background: currentColor; transition: background .5s var(--spring); }
.dots { display: flex; gap: 7px; justify-content: center; margin-top: 30px; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--hairline); transition: .4s var(--spring); }
.dots i.on { background: var(--ocker); width: 22px; border-radius: 3px; }
@media (max-width: 820px) {
  .deck { height: 452px; }
  .deckCard { width: 206px; height: 426px; margin: -213px 0 0 -103px; }
}

/* ─── Einzelnes Gerät (für Story-Sektionen) ──────────────────────────────── */
.phone { width: 262px; height: 540px; flex: none; }
.phone.sm { width: 216px; height: 446px; }
@media (max-width: 640px) { .phone { width: 232px; height: 478px; } }

/* ─── Sektionen ──────────────────────────────────────────────────────────── */
section.block { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
@media (max-width: 700px) { section.block { padding: 76px 0; } section.tight { padding: 56px 0; } }
section.sand { background: var(--sand); }
section.nacht { background: #08090c; color: #f2f2f5; }
section.nacht .pre { color: var(--ocker-2); }
section.nacht .lead, section.nacht .section-head p { color: #9a9aa2; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .pre { color: var(--ocker); font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
                     font-weight: 700; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; letter-spacing: -.025em;
                   margin: 0 0 16px; line-height: 1.05; }
.section-head h2 .accent { background: linear-gradient(90deg, var(--ocker), var(--ocker-2));
                           -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--stein); font-size: 18px; max-width: 620px; margin: 0 auto; line-height: 1.5; }

/* Auftauchen beim Scrollen */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .18s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .34s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .42s; }

/* ─── Großes Statement ───────────────────────────────────────────────────── */
.statement { padding: 150px 0; text-align: center; }
.statement-big { font-size: clamp(40px, 8vw, 88px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 0; }
.statement-big .line { display: block; overflow: hidden; }
.statement-big .fade { background: linear-gradient(180deg, var(--tinte), var(--stein));
                       -webkit-background-clip: text; background-clip: text; color: transparent; }
.statement-sub { color: var(--stein); font-size: 19px; margin: 32px auto 0; max-width: 620px; }

/* ─── Karten-Raster ──────────────────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
.grid.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.g3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.g4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--sand); border-radius: 24px; padding: 32px 28px; position: relative; overflow: hidden;
        transition: transform .35s var(--spring), box-shadow .35s; }
section.sand .card { background: var(--karte); box-shadow: 0 1px 0 var(--hairline); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card .num { position: absolute; top: 20px; right: 24px; font-size: 13px; font-weight: 800;
             color: var(--ocker); opacity: .5; letter-spacing: .06em; }
.card .ico { font-size: 30px; display: block; margin-bottom: 16px; }
.card h3 { margin: 0 0 10px; font-size: 21px; font-weight: 750; letter-spacing: -.015em; }
.card p { margin: 0; color: var(--stein); font-size: 15px; line-height: 1.55; }
section.nacht .card { background: #101218; }
section.nacht .card p { color: #8e8e97; }

/* ─── Zahlen ─────────────────────────────────────────────────────────────── */
.counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.counter .big { font-size: clamp(40px, 6vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1;
                background: linear-gradient(180deg, var(--ocker-2), var(--ocker));
                -webkit-background-clip: text; background-clip: text; color: transparent; }
.counter .lbl { color: var(--stein); font-size: 14px; margin-top: 10px; }

/* ─── Zeitleiste (Story) ─────────────────────────────────────────────────── */
.beat { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 70px 0; }
.beat:nth-child(even) { grid-template-columns: auto 1fr; }
.beat:nth-child(even) .beat-text { order: 2; }
.beat:nth-child(even) .beat-shot { order: 1; }
.beat-time { display: inline-flex; align-items: center; gap: 10px; font-variant-numeric: tabular-nums;
             font-weight: 800; font-size: 13px; letter-spacing: .10em; color: var(--ocker);
             border: .5px solid var(--hairline); background: var(--hover);
             padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.beat h3 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin: 0 0 18px; }
.beat p { color: var(--stein); font-size: 17px; line-height: 1.6; margin: 0 0 18px; max-width: 460px; }
.beat .said { font-size: 17px; font-weight: 600; color: var(--tinte); border-left: 2px solid var(--ocker);
              padding-left: 16px; margin: 0; max-width: 460px; }
.beat-shot { position: relative; }
.beat-shot .halo { position: absolute; inset: -8% -14%; border-radius: 50%; filter: blur(70px); opacity: .35; z-index: 0; }
.beat-shot .phone { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .beat, .beat:nth-child(even) { grid-template-columns: 1fr; gap: 34px; justify-items: center; text-align: center; padding: 52px 0; }
  .beat:nth-child(even) .beat-text { order: 2; } .beat:nth-child(even) .beat-shot { order: 1; }
  .beat-text { order: 2; } .beat-shot { order: 1; }
  .beat p, .beat .said { margin-left: auto; margin-right: auto; }
  .beat .said { border-left: 0; border-top: 2px solid var(--ocker); padding: 14px 0 0; }
}

/* ─── Gegenüberstellung ──────────────────────────────────────────────────── */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .versus { grid-template-columns: 1fr; } }
.vs-col { border-radius: 24px; padding: 30px 28px; border: 1px solid var(--hairline); }
.vs-col h4 { margin: 0 0 20px; font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.vs-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vs-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; }
.vs-col li .m { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
                font-size: 12px; font-weight: 800; margin-top: 1px; }
.vs-col.bad { background: rgba(255,59,48,.05); border-color: rgba(255,59,48,.22); }
.vs-col.bad h4 { color: #ff6961; }
.vs-col.bad li .m { background: rgba(255,59,48,.14); color: #ff6961; }
.vs-col.good { background: rgba(48,209,88,.06); border-color: rgba(48,209,88,.25); }
.vs-col.good h4 { color: #2aa14a; }
.vs-col.good li .m { background: rgba(48,209,88,.16); color: #2aa14a; }
@media (prefers-color-scheme: dark) { .vs-col.good h4 { color: #30d158; } }

/* ─── Vergleichstabelle ──────────────────────────────────────────────────── */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 22px; border: 1px solid var(--hairline); }
table.cmp { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; background: var(--karte); }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: .5px solid var(--hairline); }
table.cmp thead th { font-size: 12px; text-transform: uppercase; letter-spacing: .10em; color: var(--stein); font-weight: 800; }
table.cmp tbody th { font-weight: 600; }
table.cmp td { text-align: center; color: var(--stein); }
table.cmp col.us, table.cmp .us { background: rgba(201,151,78,.07); }
table.cmp thead .us { color: var(--ocker); }
table.cmp .yes { color: #2aa14a; font-weight: 800; }
table.cmp .no  { color: #d1524a; font-weight: 800; }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: 0; }
/* Die ehrliche Rechnung auf dem Handy: die Abo-Namen-Spalte fällt weg, damit
   „Wofür · Pro Monat · Familienkit" nebeneinander passen. Sonst läge die
   Pointe (0 € / Monat) hinter dem rechten Rand und man müsste sie erwischen. */
@media (max-width: 620px) {
  table.cmp.rechnung { min-width: 0; font-size: 14px; table-layout: fixed; }
  table.cmp.rechnung th:nth-child(2),
  table.cmp.rechnung td:nth-child(2) { display: none; }
  table.cmp.rechnung th, table.cmp.rechnung td { padding: 14px 10px; }
  /* Feste Spaltenbreiten: ohne sie zwingt die laengste Zeile („Smart-Home-
     Automatisierung") die Tabelle ueber den Rahmen und es scrollt doch wieder. */
  table.cmp.rechnung th:nth-child(1) { width: 46%; overflow-wrap: anywhere; }
  table.cmp.rechnung th:nth-child(3), table.cmp.rechnung td:nth-child(3) { width: 24%; }
  table.cmp.rechnung th:nth-child(4), table.cmp.rechnung td:nth-child(4) { width: 30%; }
  /* Die Kopfzeile ist gesperrt gesetzt — „FAMILIENKIT" waere sonst breiter
     als seine eigene Spalte. */
  table.cmp.rechnung thead th { font-size: 10px; letter-spacing: .04em; }
}

/* ─── Stimmen ────────────────────────────────────────────────────────────── */
.quote { background: var(--karte); border-radius: 24px; padding: 30px 28px; border: 1px solid var(--hairline); }
.quote p { margin: 0 0 20px; font-size: 17px; line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
             font-weight: 800; font-size: 14px; color: #fff; background: var(--ocker); }
.quote .who b { display: block; font-size: 14px; }
.quote .who span { font-size: 13px; color: var(--stein); }

/* ─── Preise ─────────────────────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 20px; align-items: start; }
.price-card { background: var(--karte); border: 1px solid var(--hairline); border-radius: 28px; padding: 36px 32px;
              position: relative; transition: transform .35s var(--spring), box-shadow .35s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card.featured { border-color: var(--ocker); box-shadow: 0 20px 60px rgba(201,151,78,.18); }
.price-card .flag { position: absolute; top: -12px; left: 32px; background: var(--ocker); color: #fff;
                    font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
                    padding: 5px 12px; border-radius: 999px; }
.price-card .lbl { font-size: 13px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; color: var(--ocker); }
.price-card .price { font-size: 46px; font-weight: 800; letter-spacing: -.03em; margin: 12px 0 4px; }
.price-card .price .once { font-size: 14px; font-weight: 500; color: var(--stein); margin-left: 8px; letter-spacing: 0; }
.price-card .hw { color: var(--stein); font-size: 14px; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.price-card li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.price-card .check { color: var(--ocker); font-weight: 800; }
.price-card .btn { width: 100%; justify-content: center; }
/* Preisangabenverordnung: muss stehen, darf aber leise sein. */
.preis-fussnote { margin: 26px 0 0; font-size: 13px; line-height: 1.6; color: var(--stein); text-align: center; }
.preis-fussnote a { color: var(--stein); text-underline-offset: 3px; }
.preis-fussnote a:hover { color: var(--tinte); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: .5px solid var(--hairline); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-size: 18px; font-weight: 650;
               position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
                      font-size: 24px; font-weight: 400; color: var(--ocker); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .ans { padding: 0 40px 24px 0; color: var(--stein); font-size: 16px; line-height: 1.6; }
.faq .ans a { color: var(--tinte); text-underline-offset: 3px; }

/* ─── Vorbestellung ──────────────────────────────────────────────────────── */
.preorder-section { padding: 140px 0; position: relative; overflow: hidden; }
.preorder-section::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,151,78,.12), transparent 70%); }
.preorder-box { background: linear-gradient(160deg, #0A0A0A 0%, #1c1c1c 100%); color: #FAFAF7;
                border-radius: 32px; padding: 60px 40px; max-width: 640px; margin: 0 auto; text-align: center;
                box-shadow: var(--shadow-glow); position: relative; overflow: hidden; }
.preorder-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; opacity: .5;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(201,151,78,.20) 20deg,
              transparent 50deg, transparent 180deg, rgba(232,185,104,.15) 200deg, transparent 230deg, transparent 360deg);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preorder-box > * { position: relative; z-index: 1; }
.preorder-box h3 { font-size: clamp(28px, 5vw, 40px); margin: 0 0 12px; letter-spacing: -.02em; font-weight: 800; }
.preorder-box p { color: rgba(250,250,247,.7); margin: 0 0 32px; font-size: 17px; }
.preorder-form { display: flex; gap: 8px; flex-wrap: wrap; }
.preorder-form input { flex: 1; min-width: 200px; padding: 16px 22px; border-radius: 999px;
  border: 1px solid rgba(250,250,247,.18); background: rgba(250,250,247,.05); color: #FAFAF7;
  font: inherit; font-size: 15px; outline: none; transition: border-color .2s, background .2s; }
.preorder-form input::placeholder { color: rgba(250,250,247,.4); }
.preorder-form input:focus { border-color: var(--ocker); background: rgba(250,250,247,.10); }
.preorder-form .btn { background: var(--ocker); color: #0A0A0A; font-weight: 600; }
.preorder-form .btn:hover { background: var(--ocker-2); }
.preorder-status { margin-top: 18px; font-size: 14px; color: rgba(250,250,247,.6); min-height: 20px; }
.preorder-legal { margin-top: 18px; font-size: 11px; color: rgba(250,250,247,.4); }
.preorder-legal a { color: var(--ocker); }

/* ─── Pod ────────────────────────────────────────────────────────────────── */
/* width:100% ist Pflicht — als Grid-Kind würde `margin:auto` die Box sonst auf
   Inhaltsbreite schrumpfen, und der Inhalt ist komplett absolut positioniert
   (= 0 px breit, Pod unsichtbar). */
.pod-stage { width: 100%; margin: 0 auto; max-width: 420px; aspect-ratio: 1/1.05;
             position: relative; perspective: 1200px; }
@media (max-width: 640px) { .pod-stage { max-width: 300px; } }
.pod-stage::before { content: ''; position: absolute; inset: 10% 15%; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,78,.45) 0%, transparent 60%);
  filter: blur(40px); animation: aura 6s ease-in-out infinite alternate; }
@keyframes aura { 0% { opacity: .5; transform: scale(.9); } 100% { opacity: .9; transform: scale(1.1); } }
.pod { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%) rotateY(-8deg) rotateX(4deg);
       width: 60%; aspect-ratio: 15/17; transform-style: preserve-3d; animation: pod-breathe 5s ease-in-out infinite alternate; }
@keyframes pod-breathe { 0% { transform: translateX(-50%) rotateY(-10deg) rotateX(4deg); }
                        100% { transform: translateX(-50%) rotateY(-2deg) rotateX(6deg); } }
.pod-cylinder { width: 100%; height: 100%; border-radius: 14px 14px 22px 22px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 70%, #050505 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06) inset, 0 -8px 20px rgba(255,226,168,.15) inset; }
.pod-cylinder::before { content: ''; position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--ocker) 30%, var(--ocker-2) 50%, var(--ocker) 70%, transparent);
  box-shadow: 0 0 16px rgba(232,185,104,.85), 0 0 32px rgba(232,185,104,.45);
  animation: led-shimmer 3.5s ease-in-out infinite; }
@keyframes led-shimmer { 0%,100% { opacity: .9; } 50% { opacity: 1; box-shadow: 0 0 24px rgba(232,185,104,1), 0 0 48px rgba(232,185,104,.6); } }
.pod-mesh { position: absolute; top: 22%; left: 10%; right: 10%; bottom: 18%; border-radius: 6px;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1.5px, transparent 1.5px 3px),
              repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1.5px, transparent 1.5px 3px); }
.pod-glyph { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
             color: rgba(255,255,255,.12); font-size: 11px; letter-spacing: .15em; }
.orbit-orb { position: absolute; width: 56px; height: 56px; border-radius: 16px; background: var(--karte);
             display: grid; place-items: center; font-size: 24px;
             box-shadow: 0 10px 30px rgba(0,0,0,.12), 0 0 0 .5px var(--hairline); backdrop-filter: blur(20px); }
.orbit-orb.o1 { top: 18%; left: -2%;  animation: float-a 4.5s ease-in-out infinite alternate; }
.orbit-orb.o2 { top: 32%; right: 0;   animation: float-b 5.5s ease-in-out infinite alternate; }
.orbit-orb.o3 { bottom: 22%; left: 4%; animation: float-c 6s ease-in-out infinite alternate; }
.orbit-orb.o4 { top: 8%; right: 14%;  animation: float-d 4s ease-in-out infinite alternate; }
@keyframes float-a { 0% { transform: translateY(0) rotate(-4deg); } 100% { transform: translateY(-12px) rotate(2deg); } }
@keyframes float-b { 0% { transform: translateY(-8px) rotate(3deg); } 100% { transform: translateY(8px) rotate(-2deg); } }
@keyframes float-c { 0% { transform: translateY(4px) rotate(-2deg); } 100% { transform: translateY(-10px) rotate(4deg); } }
@keyframes float-d { 0% { transform: translateY(-4px) rotate(2deg); } 100% { transform: translateY(8px) rotate(-3deg); } }
@media (max-width: 600px) { .orbit-orb { width: 44px; height: 44px; font-size: 20px; } }

/* Technische Daten neben dem Pod */
.specs { display: grid; gap: 2px; border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline); }
.specs div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 20px; background: var(--karte); font-size: 15px; }
.specs div span:first-child { color: var(--stein); }
.specs div span:last-child { font-weight: 650; text-align: right; color: var(--tinte); }
/* In der immer-dunklen Sektion sind --karte/--tinte hell → sonst weiß auf weiß. */
section.nacht .specs { border-color: rgba(255,255,255,.12); }
section.nacht .specs div { background: #101218; }
section.nacht .specs div span:first-child { color: #8e8e97; }
section.nacht .specs div span:last-child { color: #f2f2f5; }
section.nacht .orbit-orb { background: #15171e;
  box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 .5px rgba(255,255,255,.10); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer { padding: 60px 0 40px; border-top: .5px solid var(--hairline); }
footer .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
              color: var(--stein); font-size: 13px; align-items: flex-end; }
footer .row a { color: var(--stein); text-decoration: none; transition: color .2s; }
footer .row a:hover { color: var(--tinte); }
footer .legal { display: flex; gap: 18px; flex-wrap: wrap; }
footer .copyright { font-size: 12px; margin-top: 6px; }

/* ─── App-Screens im Gerät (Platzhalter bis echte Screenshots da sind) ─────
   SWAP-PUNKT: Dateien nach marketing/assets/shots/ legen und in deck.js unter
   SHOTS eintragen — fehlender Eintrag = Platzhalter, kein Fehler. */
.mk { position: absolute; inset: 0; background: var(--fk-bg); color: var(--fk-text);
      display: flex; flex-direction: column; padding: 44px 15px 16px; font-size: 13px;
      text-align: left; line-height: 1.4; }
img.shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--fk-bg2); }
.mk .mkbar { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.mk .mkbar .r { letter-spacing: 1px; }
.mk .mk-h { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 2px 0 12px; }
.mk .mk-greet { font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 8px 2px 16px; }
.mk .mk-greet b { color: var(--blau); }
.mk .mk-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mk .mkt { background: var(--fk-bg2); border-radius: 16px; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.mk .mkt .e { font-size: 20px; }
.mk .mkt span:last-child { font-weight: 650; font-size: 12px; }
.mk .mk-roles { margin-top: auto; display: flex; align-items: center; gap: 6px; padding-top: 12px; }
.mk .mk-roles .av { width: 24px; height: 24px; border-radius: 50%; background: var(--blau); color: #fff;
                    display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.mk .mk-roles .av.b { background: var(--gruen); margin-left: -8px; }
.mk .mk-role-t { font-size: 12px; color: var(--fk-t2); font-weight: 600; margin-left: 4px; }
.mk .mk-row { display: flex; align-items: center; gap: 9px; padding: 11px 2px; border-bottom: .5px solid var(--fk-sep); }
.mk .mk-row.dim { opacity: .5; }
.mk .mk-row:last-child { border-bottom: 0; }
.mk .mk-time { font-variant-numeric: tabular-nums; font-weight: 750; font-size: 12px; color: var(--fk-t3); width: 38px; }
.mk .mk-ev { font-weight: 600; flex: 1; }
.mk .chip { width: 24px; height: 24px; border-radius: 50%; background: var(--indigo); color: #fff;
            display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.mk .chip.green { background: var(--gruen); }
.mk .chip.out { background: transparent; border: 1.5px dashed var(--fk-sep); color: var(--fk-t3); }
.mk .mk-li { display: flex; align-items: center; gap: 10px; padding: 11px 2px; border-bottom: .5px solid var(--fk-sep); }
.mk .cb { width: 20px; height: 20px; border-radius: 7px; border: 1.5px solid var(--fk-sep);
          display: grid; place-items: center; font-size: 12px; color: #fff; }
.mk .cb.on { background: var(--gruen); border-color: var(--gruen); }
.mk .mk-li .cat { margin-left: auto; font-size: 10px; font-weight: 750; color: var(--fk-t3);
                  background: var(--fk-bg2); padding: 3px 8px; border-radius: 8px; }
.mk .cat.green { color: var(--gruen); }
.mk .cat.amber { color: #b26a00; }
.mk .mk-deal { margin-top: 12px; background: rgba(48,209,88,.1); color: #1f8a3b; font-size: 11.5px;
               font-weight: 650; padding: 10px 12px; border-radius: 14px; }
.mk .mk-cam { position: relative; height: 150px; border-radius: 16px; overflow: hidden; margin: 4px 0 12px;
              background: linear-gradient(160deg,#2a2f3a,#0d1016); display: grid; place-items: center; }
.mk .mk-cam-live { position: absolute; top: 9px; left: 9px; font-size: 10px; font-weight: 800; color: #fff;
                   letter-spacing: .06em; background: rgba(255,59,48,.9); padding: 3px 8px; border-radius: 7px; }
.mk .mk-cam .p { font-size: 52px; filter: grayscale(.2); }
.mk .mk-ring { text-align: center; font-weight: 750; margin-bottom: 12px; }
.mk .mk-claim { border: 0; background: var(--blau); color: #fff; font: inherit; font-weight: 750; font-size: 14px;
                padding: 14px; border-radius: 16px; text-align: center; }
.mk .mk-map { position: relative; flex: 1; border-radius: 16px; overflow: hidden; margin-bottom: 12px;
  background: linear-gradient(0deg, rgba(100,210,255,.08), rgba(100,210,255,.08)),
              repeating-linear-gradient(0deg,#eef1f5 0 22px,#e7ebf0 22px 23px),
              repeating-linear-gradient(90deg,#eef1f5 0 22px,#e7ebf0 22px 23px); }
.mk .mk-track { position: absolute; left: 18%; top: 60%; width: 56%; height: 2px; background: var(--wasser);
                box-shadow: 0 0 8px var(--wasser); transform: rotate(-16deg); border-radius: 2px; }
.mk .mk-pin { position: absolute; right: 24%; top: 34%; font-size: 26px;
              filter: drop-shadow(0 4px 6px rgba(0,0,0,.3)); animation: pinb 2.2s ease-in-out infinite; }
@keyframes pinb { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.mk .mk-buddy { display: flex; align-items: center; gap: 8px; font-weight: 700; background: var(--fk-bg2);
                padding: 11px 13px; border-radius: 14px; }
.mk .mk-buddy .bat { margin-left: auto; font-size: 11px; color: var(--gruen); font-weight: 750; }
.mk .mk-gauge { position: relative; display: grid; place-items: center; margin: 10px 0; }
.mk .mk-kw { position: absolute; font-size: 34px; font-weight: 850; letter-spacing: -.03em; }
.mk .mk-kw small { font-size: 14px; color: var(--fk-t3); font-weight: 700; }
.mk .mk-solrow { display: flex; justify-content: space-between; background: var(--fk-bg2); padding: 12px 14px;
                 border-radius: 14px; font-weight: 650; font-size: 12px; }
.mk .mk-solrow .g { color: var(--gruen); font-weight: 800; }
.mk .mk-chat { flex: 1; display: flex; flex-direction: column; gap: 10px; justify-content: flex-end; padding-bottom: 12px; }
.mk .bub { max-width: 82%; padding: 11px 13px; border-radius: 17px; font-size: 12.5px; line-height: 1.4; }
.mk .bub.me { align-self: flex-end; background: var(--blau); color: #fff; border-bottom-right-radius: 5px; }
.mk .bub.ai { align-self: flex-start; background: var(--fk-bg2); color: var(--fk-text); border-bottom-left-radius: 5px; }
.mk .mk-ask { display: flex; align-items: center; gap: 8px; border: 1px solid var(--fk-sep);
              border-radius: 16px; padding: 11px 14px; color: var(--fk-t3); }
.mk .mk-ask .mic { margin-left: auto; }
/* Kleinere Karte = kleinerer Inhalt, sonst wird unten abgeschnitten.
   MUSS nach den .mk-Basisregeln stehen (gleiche Spezifität, die spätere gewinnt). */
@media (max-width: 820px) {
  .mk { padding: 38px 12px 12px; font-size: 12px; }
  .mk .mk-greet { font-size: 22px; margin: 4px 2px 12px; }
  .mk .mk-h { font-size: 18px; margin-bottom: 10px; }
  .mk .mkt { padding: 10px; border-radius: 14px; }
  .mk .mkt .e { font-size: 18px; }
  .mk .mk-row, .mk .mk-li { padding: 9px 2px; }
  .mk .mk-cam { height: 124px; }
  .mk .bub { font-size: 11.5px; padding: 9px 11px; }
}
