/* =====================================================
   THE FOUNDERS HOUSE — Landing Redesign (index.html only)
   AngelList / Wellfound inspired · editorial tech
   Cream canvas · pitch-black type · coral accent
   Loaded AFTER style.css to override scoped tokens.
   ===================================================== */

/* Fonts jetzt als <link rel="stylesheet"> im <head> geladen (schnellerer LCP
   als render-blockierendes @import — Core Web Vitals = Ranking-Signal). */

/* ---------- 1. Re-tokenized palette ---------- */
:root {
  /* Canvas */
  --bg: #FAF9F4;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F2F0E8;
  --bg-card: #FFFFFF;

  /* Text */
  --text-primary: #0A0A0A;
  --text-secondary: #52514D;
  --text-tertiary: #8A8982;
  --text-placeholder: #B8B6AD;

  /* Borders */
  --border: #E8E6DD;
  --border-light: #F0EEE5;
  --border-dark: #D5D2C6;

  /* Brand → black (primary) */
  --brand: #0A0A0A;
  --brand-50:  #F5F5F4;
  --brand-100: #E8E8E6;
  --brand-200: #D0D0CC;
  --brand-300: #A8A8A2;
  --brand-400: #6B6B66;
  --brand-500: #1A1A1A;
  --brand-600: #0A0A0A;
  --brand-700: #000000;
  --brand-800: #000000;
  --brand-900: #000000;

  /* Accent → signature coral (AngelList) */
  --accent: #0A0A0A;
  --accent-soft: rgba(10, 10, 10, 0.06);
  --accent-glow: #0A0A0A;
  --accent-lavender: #0A0A0A;
  --accent-lavender-soft: #0A0A0A;

  /* Status */
  --success-500: #00C853;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;

  /* Shadows — crisp & modern */
  --shadow-xs: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-sm: 0 2px 6px rgba(10,10,10,0.05);
  --shadow-md: 0 8px 24px -8px rgba(10,10,10,0.10);
  --shadow-lg: 0 24px 48px -16px rgba(10,10,10,0.14);
  --shadow-xl: 0 40px 80px -24px rgba(10,10,10,0.18);
}

/* ---------- 2. Base ---------- */
html, body {
  background: var(--bg) !important;
  color: var(--text-primary) !important;
  font-family: var(--font) !important;
  -webkit-font-smoothing: antialiased;
}

/* Grain-Textur entfernt (2026-06-24): AngelList-minimal = flache Fläche, keine Textur. */

/* Typography — editorial scale, capped for readability */
h1, h2, h3, h4, h5, h6 { color: var(--text-primary) !important; font-family: var(--font) !important; }
h1 {
  font-size: clamp(42px, 5.6vw, 88px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 0.95 !important;
}
h2 {
  font-size: clamp(32px, 4.2vw, 60px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.032em !important;
  line-height: 1.0 !important;
}
h3 { font-size: clamp(22px, 2.2vw, 28px) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
h4 { font-size: clamp(17px, 1.4vw, 20px) !important; font-weight: 700 !important; letter-spacing: -0.015em !important; }
h5 { font-size: 16px !important; font-weight: 600 !important; }

/* ---------- 3. Container / layout — edge-to-edge ---------- */
/* Container-Breite an AngelList angeglichen (14.07): zentriert, max 1536px,
   40px Seiten-Padding — statt edge-to-edge. Volle-Breite-Hintergründe liegen
   auf den Sektionen, nur der Content wird zentriert (wie AngelList). */
.container { max-width: 1536px !important; margin: 0 auto !important; padding: 0 40px !important; }
@media (max-width: 1024px) { .container { padding: 0 32px !important; } }
@media (max-width: 768px)  { .container { padding: 0 22px !important; } }
@media (max-width: 480px)  { .container { padding: 0 16px !important; } }

/* ---------- 4. Buttons ---------- */
.btn {
  border-radius: 999px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease !important;
}
.btn-primary {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
  border: 1px solid #0A0A0A !important;
  box-shadow: 0 2px 0 rgba(10,10,10,0.08), 0 10px 24px -12px rgba(10,10,10,0.5) !important;
}
.btn-primary:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  /* Editorial-Pass: kein Coral-Glow mehr beim Hover. Soft dark drop-shadow
     wie bei einem Print-Button. */
  box-shadow: 0 8px 20px -8px rgba(10,10,10,0.35) !important;
}
.btn-secondary {
  background: #FFFFFF !important;
  color: #0A0A0A !important;
  border: 1px solid #0A0A0A !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 0 rgba(10,10,10,0.06) !important;
}
.btn-secondary:hover {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
}
.btn-ghost {
  color: #0A0A0A !important;
  background: transparent !important;
}
.btn-ghost:hover {
  background: rgba(10,10,10,0.06) !important;
  color: #0A0A0A !important;
}
.btn-lg { padding: 16px 30px !important; font-size: 15px !important; }
.btn-sm { padding: 8px 16px !important; font-size: 13px !important; }

/* ---------- 5. Navbar ---------- */
.navbar {
  background: #FAF9F4 !important;
  border-bottom: 1px solid transparent !important;
  height: 76px !important;
}
.navbar.scrolled {
  background: rgba(250, 249, 244, 0.92) !important;
  border-bottom-color: var(--border) !important;
}
.nav-logo {
  color: #0A0A0A !important;
  background: #0A0A0A !important;
  border: 1.5px solid #0A0A0A !important;
  box-shadow: 0 2px 0 rgba(10,10,10,0.08), 0 12px 28px -14px rgba(10,10,10,0.35) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.nav-logo .nav-logo-text-wrap { color: #FFFFFF !important; }
.nav-logo:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 2px 0 rgba(124, 140, 248,0.25), 0 14px 30px -12px rgba(124, 140, 248,0.55) !important;
}
.nav-links {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 2px rgba(10,10,10,0.03), 0 8px 24px -12px rgba(10,10,10,0.08) !important;
  backdrop-filter: none !important;
}
.nav-links a {
  color: #0A0A0A !important;
  font-weight: 600 !important;
}
.nav-links a:hover,
.nav-links a.active {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  transform: none !important;
}
.nav-investor-btn {
  color: var(--accent) !important;
  background: var(--accent-soft) !important;
  border: 1px solid rgba(124, 140, 248, 0.25) !important;
  font-weight: 600 !important;
}
.nav-investor-btn:hover {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
}
.nav-hamburger { color: #0A0A0A !important; }
@media (max-width: 900px) {
  .nav-links.open {
    background: #FFFFFF !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-lg) !important;
  }
}

/* ---------- 6. Hero ---------- */
.hero { padding: clamp(110px, 14vw, 160px) 0 clamp(72px, 10vw, 120px) !important; }
.hero::before { display: none !important; }
.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(10,10,10,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.06) 1px, transparent 1px) !important;
  mask-image: radial-gradient(ellipse 70% 60% at center, #000 20%, transparent 75%) !important;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, #000 20%, transparent 75%) !important;
}
.hero-orb { opacity: 0.45 !important; }
.hero-orb.orb-1 {
  background: radial-gradient(circle at 30% 30%, rgba(124, 140, 248,0.35), rgba(124, 140, 248,0.08) 45%, transparent 72%) !important;
}
.hero-orb.orb-2 {
  background: radial-gradient(circle at 60% 40%, rgba(255,200,80,0.28), rgba(255,160,60,0.08) 45%, transparent 72%) !important;
}
.hero-content {
  grid-template-columns: 1.1fr 1fr !important;
  gap: clamp(40px, 5vw, 72px) !important;
  align-items: center !important;
}
/* Desktop: rechte Spalte bleibt leer — der Foto-Verlauf (.hero-bg) füllt sie. Bild nur ≤1024. */
.hero-visual { display: none !important; }
/* Hero-Headline-Akzentwort (ersetzt inline color:!important im Markup) */
.hero h1 .hl, .hero-text h1 .hl { color: var(--accent) !important; }
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr !important; gap: 48px !important; }
  .hero-visual { display: block !important; }
}
.hero-eyebrow {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  color: #0A0A0A !important;
  font-weight: 600 !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 6px rgba(10,10,10,0.04) !important;
}
.hero-eyebrow-dot {
  /* Editorial-Pass: kein „Live-Status"-Dot mehr. Das Wort vor dem Datum
     trägt schon die Information; ein neon-grüner Dot mit Ring wirkt
     SaaS-Template-mäßig. */
  display: none !important;
}
.hero h1 {
  color: #0A0A0A !important;
}
/* Make the last word(s) pop with a serif italic — editorial touch */
.hero h1::first-letter { color: #0A0A0A; }
.hero-description {
  color: var(--text-secondary) !important;
  font-size: clamp(16px, 1.4vw, 20px) !important;
  font-weight: 400 !important;
  max-width: 560px !important;
  line-height: 1.55 !important;
}

/* ---------- 7. Hero Demo Carousel ---------- */
.hero-card-preview {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  box-shadow:
    0 2px 0 rgba(10,10,10,0.03),
    0 30px 60px -20px rgba(10,10,10,0.22),
    0 14px 28px -14px rgba(10,10,10,0.12) !important;
  backdrop-filter: none !important;
  border-radius: 24px !important;
  padding: 26px !important;
}
.hero-card-header h4 { color: #0A0A0A !important; }
.hero-card-header p { color: var(--text-tertiary) !important; }
.hero-card-body { color: var(--text-secondary) !important; }
.hero-card-footer {
  border-top: 1px solid var(--border) !important;
}
.hero-card-meta { color: var(--text-tertiary) !important; }

.demo-tabs {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 2px 8px rgba(10,10,10,0.04) !important;
  backdrop-filter: none !important;
}
.demo-tab { color: var(--text-secondary) !important; }
.demo-tab:hover { color: #0A0A0A !important; }
.demo-tab.active {
  /* Editorial-Pass: aus dem schweren Black-Pill mit Schatten wird eine
     Unterstreichung. Sieht aus wie ein aktiver Reiter in einer
     Zeitungs-Navigation, nicht wie ein iOS-Toggle. */
  background: transparent !important;
  color: #0A0A0A !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #0A0A0A !important;
  font-weight: 700 !important;
}
.demo-dot { background: rgba(10,10,10,0.12) !important; }
.demo-dot:hover { background: rgba(10,10,10,0.25) !important; }
.demo-dot.active {
  background: #0A0A0A !important;
  box-shadow: 0 2px 6px rgba(10,10,10,0.25) !important;
}
.demo-hint {
  background: #FFFFFF !important;
  border: 1px dashed var(--border-dark) !important;
  color: var(--text-secondary) !important;
}
.demo-hint svg { color: var(--accent) !important; }

.featured-badge {
  /* Editorial-Pass: aus dem Coral-Pill mit Glow wird ein dezentes
     Uppercase-Label. Liest sich wie ein Schmuck-Etikett in der Zeitschrift,
     nicht wie ein „NEW!"-Sticker im SaaS-Header. */
  background: transparent !important;
  color: var(--text-tertiary) !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

/* ---------- 8. Tags ---------- */
.tag {
  background: #F4F2EB !important;
  color: #0A0A0A !important;
  border: 1px solid var(--border) !important;
  font-weight: 500 !important;
}
.tag:hover {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
  border-color: #0A0A0A !important;
}

/* ---------- 9. Cards & Sections ---------- */
.card {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  backdrop-filter: none !important;
  box-shadow: 0 1px 0 rgba(10,10,10,0.03), 0 2px 8px rgba(10,10,10,0.03) !important;
}
.card:hover {
  background: #FFFFFF !important;
  border-color: #0A0A0A !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 2px 0 rgba(10,10,10,0.05), 0 24px 48px -16px rgba(10,10,10,0.18) !important;
}

.section { padding: clamp(72px, 10vw, 120px) 0 !important; }
#for-whom { background: var(--bg-tertiary) !important; }
#model { background: var(--bg-tertiary) !important; }
.proof-section { background: var(--bg-secondary) !important; }

.section-header { max-width: 820px !important; }
.section-eyebrow {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}
.section-header p {
  color: var(--text-secondary) !important;
  font-size: 21px !important;
}

/* ---------- 10. Features ---------- */
.features-grid { gap: 20px !important; }
.feature-card {
  padding: 36px 30px !important;
  position: relative;
}
.feature-icon {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(124, 140, 248, 0.2) !important;
  width: 52px !important; height: 52px !important;
  border-radius: 14px !important;
}
.feature-icon svg { stroke: var(--accent) !important; }
.feature-card h4 { font-size: 19px !important; color: #0A0A0A !important; }
.feature-card p { color: var(--text-secondary) !important; font-size: 15px !important; }

/* ---------- 11. Roles ---------- */
.roles-grid { gap: 20px !important; }
.role-card { padding: 40px 32px !important; }
.role-card h3 { color: #0A0A0A !important; font-size: 24px !important; }
.role-card p { color: var(--text-secondary) !important; font-size: 15px !important; }
.role-card-icon,
.role-card:nth-child(1) .role-card-icon {
  background: var(--accent-soft) !important;
  border: 1px solid rgba(124, 140, 248, 0.22) !important;
  width: 56px !important; height: 56px !important;
  border-radius: 16px !important;
}
.role-card-icon svg { stroke: var(--accent) !important; }
/* Pastell-Varianten (Blau/Gelb) entfernt — ein Akzent (Korall) auf der ganzen Seite. */
.role-card-feature { color: var(--text-secondary) !important; }
.role-card-feature svg { color: var(--accent) !important; }

/* ---------- 12. Testimonials ---------- */
.testimonial { padding: 32px !important; }
.testimonial-text {
  color: #0A0A0A !important;
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: -0.01em !important;
}
.testimonial-name { color: #0A0A0A !important; font-weight: 600 !important; }
.testimonial-role { color: var(--text-tertiary) !important; }

/* ---------- 13. Model Section ---------- */
.model-card {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 0 rgba(10,10,10,0.03), 0 2px 8px rgba(10,10,10,0.03) !important;
}
.model-card:hover {
  border-color: #0A0A0A !important;
  background: #FFFFFF !important;
  box-shadow: 0 2px 0 rgba(10,10,10,0.05), 0 24px 48px -16px rgba(10,10,10,0.18) !important;
}
.model-icon {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(124, 140, 248,0.22) !important;
}
.model-icon svg { stroke: var(--accent) !important; }
.model-card h4 { color: #0A0A0A !important; }
.model-card p { color: var(--text-secondary) !important; }

/* Editorial-Pass 2026-06-05: Beispielrechnung + Investor-Apply waren beide
   in Pitch-Black (#0A0A0A) mit Coral-Glow-Aura. Das brach den cream-
   editorial Stil der ganzen Landing. Jetzt: weißer Card-Background mit
   subtilem Border, schwarze Typo, Coral nur noch für primären CTA. */
.model-example {
  background: #FFFFFF !important;
  border: 1px solid rgba(10,10,10,0.08) !important;
  color: #0A0A0A !important;
  backdrop-filter: none !important;
  box-shadow: 0 10px 30px -16px rgba(10,10,10,0.12) !important;
}
.model-example-label {
  color: var(--text-tertiary, #6a6a6a) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  font-size: 11px !important;
}
.model-example-grid span { color: var(--text-tertiary, #6a6a6a) !important; }
.model-example-grid strong { color: #0A0A0A !important; }
.model-example-grid .arrow { color: #0A0A0A !important; opacity: 0.4; }

/* Investor Apply Card — editorial cream statt dark hero */
.investor-apply-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(10,10,10,0.08) !important;
  color: #0A0A0A !important;
  backdrop-filter: none !important;
  box-shadow: 0 16px 40px -20px rgba(10,10,10,0.15) !important;
}
/* Glow-Aura-Pseudoelemente raus — passte zum dark Look, nicht zum cream. */
.investor-apply-card::before { background: transparent !important; }
.investor-apply-card::after { background: transparent !important; }
/* Badge: kein Coral-Glow mehr, schwarz auf cream Off-White Pille. */
.investor-apply-badge {
  background: #F4F2EB !important;
  color: #0A0A0A !important;
  border: 1px solid rgba(10,10,10,0.10) !important;
  box-shadow: none !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}
.investor-apply-badge svg { color: #0A0A0A !important; opacity: 0.55; }
.investor-apply-card h3 { color: #0A0A0A !important; font-size: 32px !important; }
.investor-apply-card > p { color: var(--text-secondary, #3a3a3a) !important; font-size: 15.5px !important; }
.ip-row {
  background: #FAF9F4 !important;
  border: 1px solid rgba(10,10,10,0.08) !important;
}
.ip-row:hover {
  background: #F4F2EB !important;
  border-color: rgba(10,10,10,0.15) !important;
}
.ip-icon {
  background: #0A0A0A !important;
  border: 1px solid #0A0A0A !important;
  color: #FAF9F4 !important;
}
.ip-row strong { color: #0A0A0A !important; }
.ip-row span { color: var(--text-secondary, #3a3a3a) !important; }

/* Buttons im Investor-Apply: Primary bleibt Coral als einziger CTA-Hot-Spot,
   Secondary ist outlined-dark statt outlined-white. */
.investor-apply-card .btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px -8px rgba(124, 140, 248,0.4) !important;
}
.investor-apply-card .btn-primary:hover {
  background: #8590E0 !important;
  border-color: #8590E0 !important;
}
.investor-apply-card .btn-secondary {
  background: transparent !important;
  color: #0A0A0A !important;
  border-color: rgba(10,10,10,0.15) !important;
}
.investor-apply-card .btn-secondary:hover {
  background: #F4F2EB !important;
  color: #0A0A0A !important;
  border-color: #0A0A0A !important;
}

/* ---------- 14. CTA ---------- */
.cta-section { padding: 120px 0 !important; }
.cta-box {
  background: #0A0A0A !important;
  border: 1px solid #0A0A0A !important;
  color: #FFFFFF !important;
  backdrop-filter: none !important;
  border-radius: 32px !important;
  padding: 100px 40px !important;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: none;
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: none;
  pointer-events: none;
}
.cta-box h2 {
  color: #FFFFFF !important;
  position: relative;
  font-size: clamp(44px, 6vw, 84px) !important;
}
.cta-box p {
  color: rgba(255,255,255,0.72) !important;
  position: relative;
}
.cta-box .btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #FFFFFF !important;
  position: relative;
  box-shadow: 0 4px 14px rgba(124, 140, 248,0.4), 0 14px 36px -10px rgba(124, 140, 248,0.6) !important;
}
.cta-box .btn-primary:hover {
  background: #FFFFFF !important;
  color: #0A0A0A !important;
  border-color: #FFFFFF !important;
}

/* ---------- 15. Footer ---------- */
.footer {
  border-top: 1px solid var(--border) !important;
  background: var(--bg) !important;
}
.footer-copy { color: var(--text-tertiary) !important; }
.footer-links a { color: var(--text-tertiary) !important; }
.footer-links a:hover { color: #0A0A0A !important; }

/* ---------- 16. Cookie Banner ---------- */
.cookie-banner {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 24px 48px -16px rgba(10,10,10,0.18) !important;
  backdrop-filter: none !important;
}
.cookie-banner p { color: var(--text-secondary) !important; }
.cookie-banner a { color: var(--accent) !important; }
.cookie-banner .btn-ghost {
  color: var(--text-secondary) !important;
}
.cookie-banner .btn-primary {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
}

/* ---------- 17. Responsive breakpoints ---------- */
/* Laptop 1024–1280 — tighten container */
@media (max-width: 1280px) {
  .features-grid,
  .roles-grid,
  .model-grid,
  .testimonial-grid { gap: 16px !important; }
}

/* Tablet ≤ 1024 */
@media (max-width: 1024px) {
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .features-grid,
  .roles-grid,
  .model-grid,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .investor-perks { grid-template-columns: 1fr !important; }
}

/* Mobile ≤ 768 */
@media (max-width: 768px) {
  .section { padding: 72px 0 !important; }
  .cta-section { padding: 72px 0 !important; }
  .cta-box { padding: 64px 24px !important; border-radius: 24px !important; }
  .investor-apply-card { padding: 36px 22px !important; }
  .investor-apply-card h3 { font-size: 26px !important; }
  .features-grid,
  .roles-grid,
  .model-grid,
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .testimonial-text { font-size: 19px !important; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 140px; }
  .footer-content { flex-direction: column !important; gap: 16px !important; text-align: center !important; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px !important; }
}

/* Small mobile ≤ 480 */
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.035em !important; }
  .hero-description { font-size: 16px !important; }
  .hero-eyebrow { font-size: 12px !important; padding: 6px 14px 6px 10px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-box { padding: 52px 20px !important; }
  .investor-apply-card { padding: 32px 18px !important; }
  .investor-apply-card h3 { font-size: 23px !important; }
  .investor-apply-actions { flex-direction: column; }
  .investor-apply-actions .btn { width: 100%; }
  .hero-card-preview { padding: 20px !important; border-radius: 18px !important; }
  .featured-badge { top: 12px !important; right: 12px !important; }
  .model-example-grid { flex-direction: column !important; gap: 14px !important; }
  .model-example-grid .arrow { transform: rotate(90deg); }
}

/* =====================================================
   NEW SECTIONS (v53 — Billion-Dollar Polish Pass)
   - Pre-launch strip (honest, no fake stats)
   - Founder story
   - Pre-launch proof (replaces fake testimonials)
   - Pricing snapshot
   - Deep footer
   - Slim cookie pill
   - Hero fineprint
   - Initials-based avatars
   ===================================================== */

/* ---- Hero refinements ---- */
.hero-fineprint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-fineprint strong { color: var(--accent); font-weight: 700; }
.hero-fineprint-dot {
  /* Editorial-Pass: kein Coral-Dot vor dem Fineprint. */
  display: none !important;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(124, 140, 248,0.12);
}

/* ---- Initials avatars (replaces stock photos) ---- */
.avatar-initials {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF !important;
  font-size: 18px;
  border-radius: 14px !important;
  overflow: visible !important;
}
.avatar-initials img { display: none !important; }
.avatar-initials span {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
}
/* Editorial-Pass: keine Coral/Blau-Gradients mehr auf Avataren.
   Drei Grau-Töne wirken wie Pressefotos in einer Zeitschrift,
   nicht wie generische SaaS-Onboarding-Bubbles. */
.avatar-initials-1 { background: #0A0A0A !important; }
.avatar-initials-2 { background: #5a5a5a !important; }
.avatar-initials-3 { background: #2a2a2a !important; }

.hero-card-actions { display: flex; gap: 8px; }
.hero-card-actions .btn[disabled] {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

/* Demo "Beispiel" badge replaces gold "Featured" */
.featured-badge {
  background: var(--text-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(10,10,10,0.18) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

/* ============================================================
   HERO LIVE-VORSCHAU — interaktive Gründer-Discovery-Demo (.hd-*)
   Ersetzt das alte .demo-carousel. Cream/editorial, Mock-Daten,
   reduced-motion-safe, Tastatur-fokussierbar.
   ============================================================ */
.hd-wrap {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 2px 0 rgba(10,10,10,0.03), 0 40px 80px -32px rgba(10,10,10,0.22);
  padding: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  min-height: 580px;
  margin-left: auto;
}
.hd-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hd-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--text-primary); }
.hd-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: hdPulseDot 2.4s ease-out infinite; }
.hd-top-hint { font-size: 11px; color: var(--text-tertiary); }
.hd-tabs { display: flex; gap: 6px; background: #F4F2EB; border-radius: 12px; padding: 4px; margin-bottom: 14px; }
.hd-tab {
  flex: 1; border: 0; background: transparent; font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); padding: 8px 10px; border-radius: 9px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.18s, color 0.18s;
}
.hd-tab.active { background: #FFFFFF; color: var(--text-primary); box-shadow: 0 1px 3px rgba(10,10,10,0.08); }
.hd-tab-soon { color: var(--text-tertiary); }
.hd-soon-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(10,10,10,0.07); color: var(--text-tertiary); padding: 2px 6px; border-radius: 99px;
}
.hd-filters { display: flex; gap: 8px; margin-bottom: 12px; }
.hd-filter {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600;
  color: var(--text-secondary); background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 99px; padding: 6px 11px; white-space: nowrap;
}
.hd-filter svg { width: 11px; height: 11px; color: var(--text-tertiary); }
.hd-feed {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 432px; overflow-y: auto; padding-right: 4px;
  scrollbar-width: thin; scrollbar-color: rgba(10,10,10,0.18) transparent;
}
.hd-feed::-webkit-scrollbar { width: 6px; }
.hd-feed::-webkit-scrollbar-thumb { background: rgba(10,10,10,0.16); border-radius: 99px; }
.hd-card {
  text-align: left; background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px;
  padding: 14px; cursor: pointer; transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hd-card:hover { border-color: rgba(10,10,10,0.28); box-shadow: 0 10px 24px -12px rgba(10,10,10,0.18); transform: translateY(-1px); }
.hd-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hd-card-head { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; }
.hd-av {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #FFFFFF;
}
.hd-av-lg { width: 52px; height: 52px; border-radius: 14px; font-size: 16px; }
.hd-av-1 { background: #0A0A0A; }
.hd-av-2 { background: #5a5a5a; }
.hd-av-3 { background: #2a2a2a; }
.hd-av-4 { background: #6f6f6f; }
.hd-card-id h4 { margin: 0; font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.25; }
.hd-card-id p { margin: 1px 0 0; font-size: 12px; color: var(--text-tertiary); }
.hd-card-body {
  margin: 0 0 10px; font-size: 12.5px; line-height: 1.5; color: var(--text-secondary);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hd-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 11px; }
.hd-card-foot { display: flex; gap: 8px; }
.hd-btn {
  flex: 1; border: 1px solid var(--border); background: #FFFFFF; color: var(--text-primary);
  font-family: inherit; font-size: 12.5px; font-weight: 700; padding: 8px 10px; border-radius: 9px;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.hd-btn-ghost:hover { border-color: rgba(10,10,10,0.3); }
.hd-btn-primary { background: var(--accent); border-color: var(--accent); color: #FFFFFF; }
.hd-btn-primary:hover { background: #93A0F9; border-color: #93A0F9; }
.hd-btn-block { width: 100%; flex: none; margin-top: 4px; }
.hd-wrap .tag { font-size: 10.5px; }
.hd-detail, .hd-connect {
  position: absolute; inset: 0; background: #FFFFFF; padding: 18px;
  display: flex; flex-direction: column; overflow-y: auto; z-index: 3;
  transform: translateY(10px); opacity: 0; transition: transform 0.24s ease, opacity 0.24s ease;
}
.hd-detail.open, .hd-connect.open { transform: none; opacity: 1; }
/* Das hidden-Attribut muss das display:flex der Views/Overlays schlagen —
   sonst rendert die Investor-„Bald"-Ansicht dauerhaft unter dem Feed. */
.hd-view[hidden], .hd-detail[hidden], .hd-connect[hidden] { display: none !important; }
.hd-back { align-self: flex-start; border: 0; background: transparent; color: var(--text-secondary); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; padding: 2px 0; margin-bottom: 10px; }
.hd-back:hover { color: var(--text-primary); }
.hd-detail-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hd-detail-head h4 { margin: 0; font-size: 16px; font-weight: 800; color: var(--text-primary); }
.hd-detail-head p { margin: 2px 0 0; font-size: 13px; color: var(--text-tertiary); }
.hd-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hd-detail-meta span { font-size: 11.5px; color: var(--text-secondary); background: #F4F2EB; border-radius: 8px; padding: 6px 10px; }
.hd-detail-meta b { display: block; font-size: 9.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-tertiary); font-weight: 800; margin-bottom: 2px; }
.hd-detail-body { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); }
.hd-connect { align-items: center; justify-content: center; text-align: center; }
.hd-connect-card { max-width: 300px; }
.hd-connect-check { width: 52px; height: 52px; border-radius: 50%; background: rgba(46,158,126,0.12); color: #2E9E7E; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.hd-connect-card strong { display: block; font-size: 17px; color: var(--text-primary); margin-bottom: 6px; }
.hd-connect-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 16px; }
.hd-chat { text-align: right; margin-bottom: 16px; }
.hd-msg { display: inline-block; font-size: 12.5px; line-height: 1.45; padding: 9px 12px; border-radius: 14px; max-width: 92%; text-align: left; }
.hd-msg-me { background: var(--accent); color: #FFFFFF; border-bottom-right-radius: 4px; }
.hd-soon-view { min-height: 300px; display: flex; align-items: center; justify-content: center; }
.hd-soon-panel { text-align: center; max-width: 300px; padding: 24px; }
.hd-soon-icon { width: 48px; height: 48px; border-radius: 14px; background: #F4F2EB; color: var(--text-tertiary); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.hd-soon-panel strong { display: block; font-size: 15px; color: var(--text-primary); margin-bottom: 6px; }
.hd-soon-panel span { font-size: 13px; color: var(--text-tertiary); line-height: 1.55; }
.hd-pulse { border-color: var(--accent) !important; box-shadow: 0 0 0 3px rgba(124, 140, 248,0.14) !important; }
@keyframes hdPulseDot { 0% { box-shadow: 0 0 0 0 rgba(124, 140, 248,0.45); } 70% { box-shadow: 0 0 0 7px rgba(124, 140, 248,0); } 100% { box-shadow: 0 0 0 0 rgba(124, 140, 248,0); } }
@media (prefers-reduced-motion: reduce) {
  .hd-detail, .hd-connect, .hd-card { transition: none; }
  .hd-live-dot { animation: none; }
}
@media (max-width: 600px) {
  .hd-wrap { max-width: none; padding: 14px; }
  .hd-feed { max-height: 300px; }
}

/* ============================================================
   HERO-Hintergrundbild (AngelList-Stil): Foto blutet von rechts
   ein, links cremefarben/transparent für lesbaren Text. Maske
   links→rechts. Demo entfernt; .hd-* unten ist toter Code.
   ============================================================ */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); }
@media (max-width: 1024px) { .hero { min-height: 0; } }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('https://images.pexels.com/photos/36766686/pexels-photo-36766686.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 48%, #000 66%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 48%, #000 66%, #000 100%);
}
.hero .container { position: relative; z-index: 2; }
@media (max-width: 1024px) {
  /* Tablet: Hero einspaltig → Bild nur als sehr dezenter Wash, Text bleibt lesbar */
  .hero-bg { -webkit-mask-image: none; mask-image: none; opacity: 0.10; background-position: center; }
}
@media (max-width: 768px) { .hero-bg { display: none; } }

/* ============================================================
   Ganzseitiges Hintergrundfoto entfernt (Designer-Audit P0:
   Stockfoto hinter der ganzen Seite = Template-Signal). Flache
   Creme-Fläche; das Foto bleibt nur im Hero (.hero-bg).
   ============================================================ */
body #for-whom { background: var(--bg-tertiary) !important; }
body .proof-section, body .prelaunch-strip, body .founder-section { background: var(--bg-secondary) !important; }
body .faq-section, body .pricing-snapshot { background: var(--bg) !important; }

/* ---- Pre-launch status strip ---- */
.prelaunch-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.prelaunch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prelaunch-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}
.prelaunch-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-500);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.15);
  flex-shrink: 0;
}
.prelaunch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.prelaunch-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--border-dark);
}
.prelaunch-text strong { color: var(--text-primary); font-weight: 700; }
.prelaunch-counter {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.prelaunch-counter-num {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .prelaunch-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- Founder story section ---- */
.founder-section {
  background: var(--bg-secondary) !important;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}
.founder-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.founder-text h2 {
  margin-bottom: 24px;
  max-width: 560px;
}
.founder-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
  max-width: 560px;
}
.founder-lead strong { color: var(--text-primary); font-weight: 700; }
.founder-meta {
  display: flex;
  gap: 32px;
  margin: 28px 0 32px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-meta-item { display: flex; flex-direction: column; }
.founder-meta-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1;
}
.founder-meta-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.founder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.founder-visual {
  display: flex;
  justify-content: center;
}
.founder-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  box-shadow:
    0 2px 0 rgba(10,10,10,0.03),
    0 24px 48px -16px rgba(10,10,10,0.16),
    0 12px 24px -12px rgba(10,10,10,0.10);
}
.founder-portrait {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 16px 32px -12px rgba(10,10,10,0.35);
}
.founder-initials {
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.04em;
}
.founder-card-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.founder-card-role {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}
.founder-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-primary);
  margin: 0 0 18px;
  padding: 0;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.founder-card-links a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.founder-card-links a:hover { border-bottom-color: var(--accent); }

/* Stat-stack variant — clean numbers, no portrait */
.founder-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.founder-stat-row {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.founder-stat-row:first-child { padding-top: 4px; }
.founder-stat-row:last-child { border-bottom: none; padding-bottom: 4px; }
.founder-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.founder-stat-lbl {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ---- Pre-launch cards (replaces testimonials) ---- */
.prelaunch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .prelaunch-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.prelaunch-card {
  padding: 32px 28px !important;
}
.prelaunch-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F4F2EB;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.prelaunch-card h4 {
  font-size: 18px !important;
  color: var(--text-primary) !important;
  margin-bottom: 8px;
}
.prelaunch-card p {
  font-size: 14.5px !important;
  color: var(--text-secondary) !important;
  line-height: 1.55;
}
.prelaunch-card p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.prelaunch-card p a:hover { border-bottom-color: var(--accent); }

/* ---- Pricing Snapshot ---- */
.pricing-snapshot {
  background: var(--bg) !important;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 40px;
}
@media (max-width: 960px) { .ps-grid { grid-template-columns: 1fr; max-width: 440px; } }
/* Landing-Snapshot: nur 2 Karten (Member/Circle) → 2 Spalten, kollabiert auf
   Handy sauber (Fix 13.07: Inline-2-Spalten überschrieben die Media-Query
   → Karten liefen rechts aus dem Bild). */
.ps-grid.ps-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
@media (max-width: 680px) { .ps-grid.ps-grid-2 { grid-template-columns: 1fr; max-width: 440px; } }

.ps-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.ps-card:hover {
  transform: translateY(-3px);
  border-color: var(--text-primary);
  box-shadow: 0 24px 48px -16px rgba(10,10,10,0.18);
}
.ps-card.ps-featured {
  border-color: var(--text-primary);
  border-width: 1.5px;
  box-shadow: 0 24px 48px -16px rgba(10,10,10,0.20);
}
.ps-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ps-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.ps-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.ps-cur {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
}
.ps-amt {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}
.ps-per {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.ps-strike {
  font-size: 15px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-left: 4px;
}
.ps-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  min-height: 20px;
}
.ps-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.ps-feats li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.ps-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.ps-feats li.ps-feat-disabled {
  color: var(--text-tertiary);
  opacity: 0.55;
}
.ps-feats li.ps-feat-disabled::before {
  border-color: var(--text-tertiary);
  transform: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--text-tertiary);
  left: 2px;
  top: 16px;
}
.ps-cta { width: 100%; justify-content: center; display: flex; }

/* Investor-Lane — prominente dritte Karte unter Member/Circle (13.07):
   vorher dünne Zeile, jetzt vollwertige Karte mit Akzent-Rahmen, großem
   Preis + echtem CTA-Button. Farben über Tokens → folgt der Palette. */
.ps-investor-card {
  max-width: 720px;
  margin: 0 auto 14px;
  padding: 30px 32px;
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.ps-inv-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.ps-inv-headline {
  font-size: 23px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  color: var(--text-primary); margin-bottom: 10px;
}
.ps-inv-sub { font-size: 14px; line-height: 1.55; color: var(--text-secondary); max-width: 400px; }
.ps-inv-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.ps-inv-price { color: var(--text-primary); font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; line-height: 1; }
.ps-inv-cur { font-size: 22px; vertical-align: 8px; margin-right: 2px; }
.ps-inv-amt { font-size: 42px; }
.ps-inv-per { font-size: 15px; font-weight: 700; color: var(--text-secondary); }
.ps-inv-cta { white-space: nowrap; }
.ps-inv-note { font-size: 12px; color: var(--text-tertiary); }
@media (max-width: 620px) {
  .ps-investor-card { grid-template-columns: 1fr; gap: 20px; padding: 24px 22px; }
  .ps-inv-right { align-items: stretch; text-align: left; }
  .ps-inv-cta { text-align: center; }
}

.ps-meta {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  max-width: 1080px;
  margin: 0 auto;
}
.ps-meta a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
}
.ps-meta a:hover { border-bottom-color: var(--text-primary); }

/* ---- Deep footer ---- */
.footer-deep {
  background: var(--text-primary) !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 72px 0 32px !important;
}
.footer-deep .container { max-width: 1536px !important; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF !important;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.footer-logo span { color: var(--accent); }
.footer-logo:hover { background: transparent !important; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background 0.15s;
}
.footer-social a:hover { background: var(--accent); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: #FFFFFF; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-meta-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

/* ---- Slim cookie pill ---- */
.cookie-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 12px 16px 12px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  box-shadow: 0 16px 40px -12px rgba(10,10,10,0.45);
  z-index: 1000;
  max-width: calc(100% - 32px);
  animation: cookiePillSlideIn .35s cubic-bezier(.22,1,.36,1) both;
}
@keyframes cookiePillSlideIn {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-pill[hidden] { display: none !important; }
.cookie-pill-text { color: rgba(255,255,255,0.85); }
.cookie-pill-text a { color: var(--accent); text-decoration: none; font-weight: 600; }
.cookie-pill-actions { display: flex; gap: 6px; }
.cookie-pill-btn {
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.cookie-pill-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
}
.cookie-pill-decline:hover { color: #FFFFFF; }
.cookie-pill-accept {
  background: var(--accent);
  color: #FFFFFF;
}
.cookie-pill-accept:hover { background: #C0C8F8; }
@media (max-width: 600px) {
  .cookie-pill {
    flex-direction: column;
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
  }
  .cookie-pill-actions { width: 100%; justify-content: center; }
}

/* =====================================================
   MOBILE SAFETY & POLISH (v60)
   Prevent horizontal overflow (most common mobile bug),
   ensure tap targets and readable spacing on small screens.
   ===================================================== */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { -webkit-tap-highlight-color: rgba(124, 140, 248,0.15); }

@media (max-width: 768px) {
  /* Buttons: full-width, comfortable tap height */
  .btn-lg { padding: 15px 24px !important; min-height: 50px; }
  .btn { min-height: 44px; }

  /* Founder section: stat stack spacing */
  .founder-card { padding: 28px 24px !important; }
  .founder-stat-num { font-size: 26px !important; }

  /* Pricing snapshot: tighten */
  .ps-card { padding: 26px 22px !important; }
  .ps-amt { font-size: 42px !important; }

  /* Pre-launch strip: stack cleanly */
  .prelaunch-counter { font-size: 13px; }

  /* Section headers don't run edge-to-edge */
  .section-header { padding: 0 4px; }

  /* Hero fineprint wraps nicely */
  .hero-fineprint { align-items: flex-start; }
}

@media (max-width: 480px) {
  /* Avoid oversized headlines causing overflow on tiny screens */
  .founder-meta { gap: 20px !important; flex-wrap: wrap; }
  .ps-grid { gap: 16px; }
  /* Footer columns: 2-up stays readable */
  .footer-grid { gap: 24px 20px; }
}

/* =====================================================
   FAQ SECTION (accessible native <details> accordion)
   ===================================================== */
.faq-section { background: var(--bg) !important; }
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2px solid var(--text-tertiary);
  border-bottom: 2px solid var(--text-tertiary);
  transform: rotate(45deg);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), border-color 0.15s;
  margin-top: -4px;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:hover::after { border-color: var(--accent); }
.faq-item[open] summary { color: var(--text-primary); }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-answer {
  padding: 0 4px 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 660px;
  animation: faqReveal 0.3s ease both;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 15.5px; padding: 18px 2px; }
  .faq-answer { font-size: 14.5px; }
}

/* =====================================================
   ACCESSIBILITY + SCROLL-REVEAL (v61)
   ===================================================== */

/* Skip-to-content link — visible on keyboard focus */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 10000;
  background: var(--text-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Visible focus states everywhere (keyboard nav) — leaders all do this */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scroll-reveal: sections fade up as they enter the viewport */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion — accessibility requirement */
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- Scroll-reveal stagger: Grid-Kinder kaskadieren ein, wenn ihre Section sichtbar wird ---- */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.animate-in.visible .stagger > *, .stagger.visible > * { opacity: 1; transform: none; }
.animate-in.visible .stagger > *:nth-child(1) { transition-delay: .04s; }
.animate-in.visible .stagger > *:nth-child(2) { transition-delay: .12s; }
.animate-in.visible .stagger > *:nth-child(3) { transition-delay: .20s; }
.animate-in.visible .stagger > *:nth-child(4) { transition-delay: .28s; }
.animate-in.visible .stagger > *:nth-child(5) { transition-delay: .36s; }
.animate-in.visible .stagger > *:nth-child(6) { transition-delay: .44s; }

/* ---- DACH-Region-Band (im „Für wen") ---- */
.dach-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 640px; margin: -8px auto 44px; }
.dach-tile { display: flex; align-items: center; justify-content: center; gap: 10px; flex: 1 1 150px; padding: 13px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; }
.dach-flag { width: 30px; height: 20px; border-radius: 4px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(10,10,10,.06); }
.dach-flag svg { width: 100%; height: 100%; display: block; }
.dach-name { font-weight: 700; font-size: 15px; color: var(--text-primary); }

/* ---- Markt-Statistiken (DACH-Gründermarkt) ---- */
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market-stat { text-align: center; padding: 34px 24px; }
.market-stat-num { font-size: clamp(38px, 5vw, 54px); font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--text-primary); margin-bottom: 12px; }
.market-stat-label { font-size: 15px; line-height: 1.5; color: var(--text-secondary); }
.market-source { text-align: center; font-size: 12px; line-height: 1.6; color: var(--text-tertiary); margin-top: 26px; }
.market-source a { color: var(--text-tertiary); text-decoration: underline; }
@media (max-width: 768px) { .market-grid { grid-template-columns: 1fr; gap: 14px; } }
@media (max-width: 600px) { .dach-band { flex-direction: column; } }
@media (prefers-reduced-motion: reduce) { .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---- DACH-Karte (echte Geo-Pfade, modern) ---- */
.dach-map-wrap { max-width: 440px; margin: -4px auto 46px; }
.dach-map { width: 100%; height: auto; max-height: 340px; display: block; overflow: visible; }
.dm-country { fill: var(--bg-tertiary); stroke: var(--border); stroke-width: 0.18; stroke-linejoin: round; stroke-linecap: round; }
.dm-de { fill: rgba(124, 140, 248,.17); stroke: var(--accent); stroke-width: 0.24; }
.dm-at { fill: rgba(124, 140, 248,.10); stroke: rgba(124, 140, 248,.55); }
.dm-ch { fill: rgba(124, 140, 248,.07); stroke: rgba(124, 140, 248,.50); }
.dm-labels { display: none; } /* In-Map-Labels aus — die Legende benennt die Länder (sauberer, v. a. bei der kleinen Schweiz) */
.dach-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 22px; margin-top: 6px; }
.dach-legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.dm-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; flex-shrink: 0; }
.dm-dot-de { background: rgba(124, 140, 248,.17); box-shadow: inset 0 0 0 2px var(--accent); }
.dm-dot-at { background: rgba(124, 140, 248,.10); box-shadow: inset 0 0 0 2px rgba(124, 140, 248,.55); }
.dm-dot-ch { background: rgba(124, 140, 248,.07); box-shadow: inset 0 0 0 2px rgba(124, 140, 248,.50); }

/* ---- Markt-Tabelle (Neugründungen Deutschland, Zeitreihe) ---- */
.market-table-wrap { max-width: 560px; margin: 34px auto 0; }
.market-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.market-table caption { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-tertiary); text-align: left; padding-bottom: 12px; }
.market-table th, .market-table td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.market-table thead th { font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--text-tertiary); }
.market-table th.mt-r, .market-table td.mt-num, .market-table td.mt-delta { text-align: right; font-variant-numeric: tabular-nums; }
.market-table td.mt-num { font-weight: 700; color: var(--text-primary); }
.market-table td.mt-delta { font-weight: 700; color: #1d7d52; }
.market-table tbody tr:last-child td { border-bottom: none; }
.market-table tbody tr.mt-peak td { background: rgba(124, 140, 248,.05); }
.market-table tbody tr.mt-peak td.mt-num { color: var(--accent); }
@media (max-width: 600px) { .market-table { font-size: 14px; } .market-table th, .market-table td { padding: 11px 10px; } }
