/* ============================================================
   Squills – The Startup Game · Landing & About (landing.css)
   Eigenständig (lädt style.css NICHT) – gleiche Brand-Sprache:
   Montserrat, Pastell-Verläufe, weiche Karten, viel Luft.
   Sprachumschaltung: html[data-lang] blendet .de/.en um.
   ============================================================ */
:root {
  --ink: #2d2a45; --muted: #8a86a3;
  --primary: #7c5cff; --primary-dark: #6647e8;
  --accent: #ff8a5c; --green: #38c7a2; --gold: #ffce4f; --pink: #ff6f9d;
  --card: #ffffff; --radius: 22px;
  --shadow: 0 6px 24px rgba(80, 60, 160, .10);
  --shadow-lg: 0 16px 48px rgba(80, 60, 160, .20);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink); line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffe9f3 0%, transparent 60%),
    radial-gradient(1000px 700px at 110% 0%, #e3f7ff 0%, transparent 55%),
    radial-gradient(900px 600px at 50% 120%, #eafff4 0%, transparent 55%),
    linear-gradient(160deg, #fdf6ec, #eef3ff);
}
/* Sprachumschaltung: nur die aktive Sprache ist sichtbar */
html[data-lang="de"] .en { display: none !important; }
html[data-lang="en"] .de { display: none !important; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 250, 245, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 42, 69, .06);
}
.topbar .wrap { display: flex; align-items: center; gap: 14px; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); font-size: 1.02rem; }
.brand .nut { width: 52px; height: 52px; border-radius: 14px; display: block; box-shadow: 0 3px 10px rgba(80,60,160,.28); }
.brand small { font-weight: 600; color: var(--muted); letter-spacing: 0; }
.topbar .spacer { margin-left: auto; }
.lang-select {
  font-family: inherit; font-weight: 700; font-size: .85rem; color: var(--ink);
  background: rgba(255, 255, 255, .85); border: 2px solid rgba(45, 42, 69, .08);
  border-radius: 999px; padding: 8px 30px 8px 13px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232d2a45' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
}

/* Topbar mobil: Identität + Sprache, sonst nichts.
   Der CTA liegt auf Mobil im Hero (direkt darunter) und in der Final-CTA-Sektion;
   in der Bar würde er nur umbrechen und die Zeile kippen. Die Legal-Seiten führen
   über das Logo zurück auf die Startseite. */
@media (max-width: 640px) {
  .topbar .wrap { padding: 10px 14px; gap: 8px; }
  .brand { font-size: 1.1rem; gap: 8px; min-width: 0; }  /* neben dem 44px-Logo trägt .9rem nicht */
  .brand small { display: none; }             /* „by Squills" erst ab Tablet */
  .brand .nut { width: 44px; height: 44px; border-radius: 12px; flex: none; }

  /* Wird es eng, gibt der Titel nach – niemals die Tap-Flächen rechts. */
  .lang-select, #usermenu { flex: none; }

  .topbar .btn-primary { display: none; }     /* CTA: siehe Hero + Final-CTA */
  #usermenu .um-signin { display: none; }     /* führt ohnehin nur nach /play */

  /* Sprache: nur Flagge. Der Text der Optionen wird in topbar.js gekürzt –
     ein natives <select> zeigt geschlossen immer den Text der gewählten Option. */
  .lang-select {
    width: 44px; height: 40px; padding: 0;
    font-size: 1.15rem; line-height: 1;
    text-align: center; text-align-last: center;
    background-image: none;                   /* kein Pfeil, dafür volle Tap-Fläche */
  }
}
/* Sehr schmale Geräte (iPhone SE 1. Gen): eingeloggt wird der Titel sonst beschnitten */
@media (max-width: 359px) {
  .brand { font-size: .9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 800; text-decoration: none; cursor: pointer;
  border: none; border-radius: 999px; transition: transform .14s ease, box-shadow .14s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 15px 30px; font-size: 1.06rem;
  box-shadow: 0 10px 28px rgba(124, 92, 255, .38);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 40px rgba(124, 92, 255, .45); }
.btn-small { padding: 10px 20px; font-size: .9rem; }
.btn-ghost { background: rgba(255, 255, 255, .85); color: var(--ink); border: 2px solid rgba(45, 42, 69, .08); padding: 13px 26px; box-shadow: var(--shadow); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 0; text-align: center; }
.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.3rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04;
  background: linear-gradient(92deg, var(--primary), var(--pink) 55%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  max-width: 850px; margin: 0 auto;
}
.hero .lead { font-size: clamp(1.02rem, 2.1vw, 1.25rem); color: var(--ink); opacity: .85; max-width: 640px; margin: 20px auto 0; font-weight: 500; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.trust { display: flex; gap: 9px 18px; justify-content: center; flex-wrap: wrap; margin-top: 22px; font-size: .86rem; font-weight: 700; color: var(--muted); }
.trust span::before { content: '✓ '; color: var(--green); font-weight: 800; }
.hero-visual { margin-top: 44px; padding-bottom: 90px; position: relative; }
.hero-visual img {
  width: min(920px, 94%); border-radius: 26px;
  box-shadow: 0 18px 70px rgba(80, 60, 160, .25);
  display: block; margin: 0 auto; border: 6px solid #fff;
}
.hero-badge {
  position: absolute; top: -18px; right: max(12px, calc(50% - 480px)); rotate: 6deg;
  background: var(--gold); color: #6b4d00; font-weight: 800; font-size: .9rem;
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow-lg);
}

/* Hero mobil: Versprechen, Einordnung, CTA und Bild müssen zusammen in den ersten
   Blick passen. Gerechnet wird gegen ~700px sichtbare Höhe, nicht gegen 812 –
   auf echten Geräten frisst die Browserleiste den Rest. Desktop bleibt unberührt. */
@media (max-width: 640px) {
  .hero { padding-top: 22px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.03em; line-height: 1.06; }
  .hero .lead { font-size: .95rem; line-height: 1.45; margin-top: 11px; }
  .hero .cta-row { margin-top: 16px; gap: 8px; }
  .hero .cta-row .btn-primary { padding: 14px 26px; font-size: 1rem; }
  .hero .cta-row .btn-ghost { padding: 8px 18px; font-size: .85rem; border-width: 2px; }
  .hero .trust { margin-top: 11px; gap: 3px 12px; font-size: .76rem; }
  .hero-visual { margin-top: 14px; }          /* padding-bottom bleibt: trägt den Schatten */
  .hero-visual img { border-width: 4px; border-radius: 20px; }
  .hero-badge { top: -11px; font-size: .74rem; padding: 7px 13px; }
}

/* Lange deutsche Komposita ("Unternehmerisches", "Gründungsberatung") sind
   auf 320px breiter als der Viewport. Ein einzelnes zu breites Wort dehnt
   die ganze Seite – dann sitzt JEDER Container zu weit rechts und das Handy
   scrollt horizontal. Trennen statt überlaufen; hyphens nutzt lang="de". */
/* Überschriften: echte Silbentrennung (große Schrift, lange Komposita).
   Fließtext: nur Notbremse – bricht ein Wort erst, wenn es sonst überläuft. */
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
p, li, blockquote, .lead { overflow-wrap: break-word; }
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .about-hero h1 { font-size: 1.7rem; }
  .section-head h2, .split h2, .final-cta h2 { font-size: 1.45rem; }
}

/* ---------- Sektionen ---------- */
section { padding: 74px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.section-head p { color: var(--muted); font-weight: 500; margin-top: 10px; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }

/* Feature-Karten mit Raum-Renderings */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
/* Feste Spaltenzahl NUR ab Tablet – darunter bleibt es einspaltig.
   Früher standen diese Werte inline im HTML und schlugen damit jede
   Media Query: Auf dem Handy quetschten sich 3 Spalten nebeneinander. */
.features.cols-narrow { max-width: 760px; margin: 0 auto; }
@media (min-width: 720px) {
  .features.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .features.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
.feature {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.feature .fbody { padding: 20px 22px 24px; }
.feature h3 { font-size: 1.12rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 7px; }
.feature p { font-size: .92rem; color: var(--muted); font-weight: 500; }

/* Lern-Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.chip {
  background: rgba(255, 255, 255, .85); border: 2px solid rgba(124, 92, 255, .16);
  border-radius: 999px; padding: 9px 17px; font-size: .88rem; font-weight: 700;
}

/* Cast als Polaroids: Papierrahmen, dicker unterer Rand, gestreute Drehung,
   Klebestreifen & Handschrift (Caveat) – komplett in CSS gerendert */
.cast { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 30px 24px; padding-top: 10px; }
.cast-card {
  position: relative;
  background: linear-gradient(180deg, #fefefe, #f7f5f0);   /* Fotopapier-Weiß */
  border-radius: 3px;                                       /* Polaroids sind fast eckig */
  padding: 11px 11px 16px;                                  /* schmaler Rahmen, unten kommt Text-Bereich dazu */
  text-align: center;
  box-shadow: 0 1px 2px rgba(45, 42, 69, .16), 0 12px 28px rgba(80, 60, 160, .22);
  transition: transform .22s ease, box-shadow .22s ease, z-index 0s;
}
/* gestreut an die Wand gepinnt */
.cast-card:nth-child(4n+1) { transform: rotate(-2.5deg); }
.cast-card:nth-child(4n+2) { transform: rotate(1.8deg) translateY(8px); }
.cast-card:nth-child(4n+3) { transform: rotate(-1.2deg); }
.cast-card:nth-child(4n)   { transform: rotate(2.6deg) translateY(6px); }
.cast-card:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); box-shadow: 0 2px 4px rgba(45, 42, 69, .14), 0 24px 48px rgba(80, 60, 160, .3); z-index: 2; }
/* halbtransparenter Klebestreifen oben */
.cast-card .tape {
  position: absolute; top: -12px; left: 50%; width: 92px; height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(255, 244, 189, .68);
  border-left: 1px dashed rgba(45, 42, 69, .12); border-right: 1px dashed rgba(45, 42, 69, .12);
  box-shadow: 0 2px 5px rgba(45, 42, 69, .12);
}
.cast-card:nth-child(even) .tape { transform: translateX(-50%) rotate(2.5deg); }
/* das „Foto" im Rahmen */
.cast-card .photo {
  display: flex; align-items: flex-end; justify-content: center;
  aspect-ratio: 1; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #cfc4f4 0%, #b8aaee 55%, #a495e4 100%);
  box-shadow: inset 0 0 24px rgba(45, 42, 69, .18);          /* leichte Vignette wie ein echter Abzug */
}
.cast-card .photo img { height: 92%; max-width: 94%; object-fit: contain; filter: drop-shadow(0 6px 8px rgba(45, 42, 69, .3)); }
/* Beschriftung: handschriftlich auf dem unteren Polaroid-Rand */
.cast-card b {
  display: block; margin-top: 10px;
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 1.65rem; font-weight: 700; line-height: 1.1; letter-spacing: 0;
  color: #3d3860; rotate: -1deg;
}
.cast-card .cast-desc { display: block; font-size: .84rem; color: var(--muted); font-weight: 500; padding: 4px 6px 2px; }
.cast-card b span { font-size: inherit; color: inherit; font-weight: inherit; font-family: inherit; }

/* Eltern-Sektion */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.18; margin-bottom: 14px; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; font-size: .96rem; }
.checklist li::before { content: '✅'; flex-shrink: 0; }
.parent-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 28px; }
.parent-card .big { font-size: 2.6rem; }
.founder-card-photo .founder-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.founder-card-photo .founder-head h3 { margin: 0; }
.founder-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 6px 18px rgba(80, 60, 160, .25); flex: none; }
.founder-photo-fallback { display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: #f4f0ff; }
.founder-sub { display: block; margin-top: 3px; color: var(--muted); font-weight: 500; font-size: .88rem; }
.parent-card h3 { font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 6px; }
.parent-card p { color: var(--muted); font-weight: 500; font-size: .94rem; }

/* Motivation-Teaser */
.quote-band { background: linear-gradient(135deg, #efe9ff, #ffe9f3); border-radius: 28px; padding: 52px 34px; text-align: center; }
.quote-band blockquote { font-size: clamp(1.15rem, 2.6vw, 1.55rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.4; max-width: 740px; margin: 0 auto; }
.quote-band cite { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; font-style: normal; color: var(--muted); font-weight: 600; font-size: .92rem; text-align: left; }
.quote-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid #fff; box-shadow: 0 3px 10px rgba(80, 60, 160, .22); }
.quote-band a { color: var(--primary-dark); font-weight: 800; }

/* Final CTA */
.final-cta { text-align: center; padding: 30px 0 90px; }
.final-cta h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px; }

/* ---------- Journey (Story-Arc) ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.journey-step {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.journey-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.journey-step .step-visual { position: relative; }
.journey-step .step-visual img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.journey-step .step-num {
  position: absolute; top: 10px; left: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; font-weight: 800; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(80, 60, 160, .35);
}
.journey-step .step-body { padding: 16px 18px 18px; }
.journey-step h3 { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.journey-step p { font-size: .88rem; color: var(--muted); font-weight: 500; line-height: 1.55; }
@media (max-width: 900px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .journey { grid-template-columns: 1fr; } }

/* ---------- Nutzer-Menü (usermenu.js) ---------- */
#usermenu { position: relative; display: flex; align-items: center; }
.um-signin {
  font-weight: 700; font-size: .85rem; color: var(--muted);
  text-decoration: none; padding: 8px 4px; white-space: nowrap;
}
.um-signin:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.um-btn {
  display: block; padding: 0; border: none; background: none; cursor: pointer; line-height: 0;
  border-radius: 50%; transition: transform .12s ease;
}
.um-btn:hover { transform: scale(1.06); }
.um-avatar {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover; display: block;
  border: 2px solid #fff; box-shadow: 0 3px 10px rgba(80, 60, 160, .25);
}
.um-initial {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; font-weight: 800; font-size: 1rem; line-height: 1;
}
.um-pop {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  min-width: 230px; background: var(--card); border-radius: 16px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(45, 42, 69, .06);
  padding: 8px; overflow: hidden;
}
.um-head { padding: 10px 12px 12px; }
.um-head-label { font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.um-head-mail { font-size: .86rem; font-weight: 700; word-break: break-all; }
.um-item {
  display: block; width: 100%; text-align: left; font-family: inherit;
  font-size: .88rem; font-weight: 600; color: var(--ink); text-decoration: none;
  padding: 10px 12px; border: none; background: none; border-radius: 10px; cursor: pointer;
}
.um-item:hover { background: #f4f0ff; }
.um-out { color: var(--muted); }
.um-danger { color: #c02c48; }
.um-danger:hover { background: #ffeef1; }
.um-sep { height: 1px; background: rgba(45, 42, 69, .08); margin: 6px 4px; }
@media (max-width: 430px) { .um-avatar { width: 34px; height: 34px; } }

/* Konto-löschen-Dialog */
.um-modal-back {
  position: fixed; inset: 0; z-index: 9998; background: rgba(30, 22, 60, .45);
  backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 18px;
}
.um-modal {
  background: var(--card); border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 28px; max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.um-modal h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.um-modal-sub { font-size: .86rem; color: var(--muted); font-weight: 600; margin-top: 2px; word-break: break-all; }
.um-list { list-style: none; margin: 16px 0 18px; display: grid; gap: 9px; }
.um-list li { font-size: .88rem; font-weight: 500; line-height: 1.5; color: #555; padding-left: 14px; position: relative; }
.um-list li::before { content: '·'; position: absolute; left: 2px; font-weight: 800; color: var(--primary); }
.um-list b { color: var(--ink); }
.um-modal-label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 6px; }
.um-modal input {
  width: 100%; font-family: inherit; font-size: .95rem; font-weight: 700; letter-spacing: .06em;
  padding: 11px 14px; border: 2px solid var(--line, rgba(45, 42, 69, .12)); border-radius: 12px; outline: none;
}
.um-modal input:focus { border-color: #c02c48; }
.um-modal-msg { margin-top: 10px; background: #ffeef1; color: #c02c48; border-radius: 10px; padding: 10px 12px; font-size: .84rem; font-weight: 600; }
.um-modal-btns { display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px; flex-wrap: wrap; }
.um-btn-ghost, .um-btn-danger {
  font-family: inherit; font-weight: 700; font-size: .9rem; cursor: pointer;
  padding: 11px 18px; border-radius: 999px; border: 2px solid transparent;
}
.um-btn-ghost { background: #fff; border-color: rgba(45, 42, 69, .12); color: var(--ink); }
.um-btn-danger { background: #e63558; color: #fff; box-shadow: 0 6px 18px rgba(230, 53, 88, .3); }
.um-btn-danger:disabled { background: #f3b8c3; box-shadow: none; cursor: not-allowed; }
.um-toast {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 22px; z-index: 9999;
  background: var(--ink); color: #fff; font-size: .88rem; font-weight: 600;
  padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow-lg); max-width: 92vw; text-align: center;
}

/* Footer */
footer { border-top: 1px solid rgba(45, 42, 69, .08); padding: 30px 0 40px; }
footer .wrap { display: flex; gap: 14px 26px; align-items: center; flex-wrap: wrap; font-size: .86rem; color: var(--muted); font-weight: 500; }
footer a { color: var(--ink); font-weight: 700; text-decoration: none; }
footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer .spacer { margin-left: auto; }
footer .footer-eu { font-weight: 600; color: var(--ink); }
footer .footer-eu span[aria-hidden] { margin-right: 2px; }
@media (max-width: 560px) {
  footer .wrap { justify-content: center; text-align: center; gap: 10px 18px; }
  footer .spacer { display: none; }
}

/* ---------- About-Seite ---------- */
.about-hero { text-align: center; padding: 70px 0 20px; }
.about-hero .nut-big { width: 72px; height: 72px; border-radius: 20px; box-shadow: 0 8px 24px rgba(80,60,160,.3); }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; margin-top: 10px; }
.prose { max-width: 660px; margin: 0 auto; padding: 26px 0 40px; }
.prose p { margin-bottom: 20px; font-size: 1.03rem; font-weight: 500; }
.prose p.big { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; }
.prose h2 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin: 34px 0 12px; }
.prose .sig { color: var(--muted); font-weight: 600; margin: 0; }
.prose .author { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.prose .author-photo { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; flex: none; border: 4px solid #fff; box-shadow: 0 5px 16px rgba(80, 60, 160, .25); }
.prose .author-role { color: var(--muted); font-weight: 500; font-size: .9rem; margin: 2px 0 0; }
.prose .hl { background: linear-gradient(180deg, transparent 62%, rgba(255, 206, 79, .55) 62%); }
