/* ============================================================
   KITTO LANDING — Design Tokens (übernommen aus KITTO App)
   ============================================================ */
:root {
  --bg: #fafafa;
  --bg-bubble: #ffffff;
  --white: #ffffff;
  --gray-1: #dadada;
  --gray-2: #eeeeee;
  --sig-yellow: #f9d35f;
  --text: #000000;
  --text-muted: #000;
  --tag-yellow: #f9d35f;
  --tag-light-blue: #8cc9f0;
  --tag-blue: #5fb6f9;
  --tag-purple: #c59ae8;
  --tag-gray: #dadada;
  --fontweight-bold: 700;
  --fontweight-regular: 400;
  --radius-card: 15px;
  --radius-input: 5px;
  --dot-grid-size: 20px;
  /* Best-practice content widths */
  --max-w: 1280px;          /* Wrapper ab hero-preview */
  --hero-content-w: 960px;  /* Hero text block (kompakt) */
  --cta-w: 600px;           /* CTA block */
  --page-x: clamp(1.5rem, 5vw, 3.5rem);
}

/* ============================================================
   Reset + Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

/* Dot Grid — exakt wie in der KITTO-App */
body.has-dot-grid {
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='1' fill='%23DADADA'/></svg>");
  background-size: var(--dot-grid-size);
  background-repeat: repeat;
  background-position: 8px -1px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.85rem var(--page-x);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

.brand-icon {
  height: 1em;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.header-badge {
  font-size: 0.68rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.03em;
  background: var(--sig-yellow);
  border-radius: 9999px;
  padding: 0.28rem 0.72rem;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: var(--fontweight-regular);
  letter-spacing: 0.06em;
  color: var(--text);
}

.lang-switch-sep {
  opacity: 0.35;
  user-select: none;
}

.lang-switch--current {
  font-weight: var(--fontweight-bold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.lang-switch--link {
  color: var(--text);
  font-weight: var(--fontweight-regular);
  text-decoration: none;
  padding: 0.2rem 0.3rem;
  margin: -0.2rem -0.3rem;
  border-radius: 4px;
  transition: background 150ms ease;
}

.lang-switch--link:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ============================================================
   Shared: Overline
   ============================================================ */
.overline {
  margin: 0 0 2rem;
  font-size: 0.68rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
}

/* ============================================================
   Hero
   Exakt Viewport-Höhe. overflow: hidden clippt den Preview.
   ============================================================ */
.hero {
  min-height: calc(100vh - 46px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0;
}

/* ── Hero Content ── */
.hero-content {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem var(--page-x) 10rem;
  max-width: var(--hero-content-w);
  width: 100%;
}

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: var(--fontweight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.feature-text h2,
.cta-section h2 {
  text-wrap: balance;
}

.hero-tagline {
  margin: 1.5rem 0 3rem;
  max-width: 80ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-muted);
  text-wrap: pretty;
}

.hero-tagline strong {
  font-weight: var(--fontweight-bold);
  color: var(--text);
}

/* ── Formular ── */
.waitlist-form {
  display: flex;
  gap: 0.4rem;
  width: 100%;
  max-width: 460px;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-input);
  background: var(--bg-bubble);
  color: var(--text);
  padding: 0.78rem 1rem;
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 150ms ease;
}

.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus { outline: none; border-color: var(--text); }

.waitlist-form button {
  white-space: nowrap;
  border: none;
  border-radius: var(--radius-input);
  background: var(--text);
  color: var(--bg-bubble);
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: var(--fontweight-bold);
  padding: 0.78rem 1.2rem;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.waitlist-form button:hover { opacity: 0.68; }

.form-message {
  min-height: 1.2em;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: var(--fontweight-bold);
  text-align: center;
}

.form-message.error { color: #e9412a; }

/* ── Feature Pills — 2 Zeilen à 4, natürliche Breite ── */
.feature-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0 0 0;
  padding: 0;
}

/* Erzwingt Zeilenumbruch nach Pill 4 */
.pill-break {
  flex-basis: 100%;
  height: 0;
  margin-top: -0.55rem;
}

.pill {
  border-radius: 9999px;
  padding: 0.37rem 0.83rem;
  font-weight: var(--fontweight-bold);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pill-yellow     { background: var(--tag-yellow); }
.pill-blue-light { background: var(--tag-light-blue); }
.pill-blue       { background: var(--tag-blue); }
.pill-purple     { background: var(--tag-purple); }
.pill-gray       { background: var(--tag-gray); }

/* Form-Hint NACH den Pills */
.form-hint {
  margin: 0 0 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── Hero Visual: Mockup-Preview (unterer Teil des Hero) ── */
.hero-visual {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Gradient-Fade: lässt das Mockup weich in den Hintergrund übergehen */
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 85%);
  pointer-events: none;
  z-index: 1;
}

/* Mockup-Preview */
.hero-preview {
  width: min(92vw, var(--max-w));
  border-radius: 14px 14px 0 0;
  border: 1px solid var(--gray-1);
  border-bottom: none;
  overflow: hidden;
  box-shadow:
    0 -6px 20px rgba(0, 0, 0, 0.04),
    0 -24px 60px rgba(0, 0, 0, 0.09);
}

.hero-preview img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   Why Section — 3 Karten in einem Grid
   ============================================================ */
.why-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.why-section .overline {
  text-align: center;
  margin-bottom: 2.5rem;
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  background: var(--bg-bubble);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
}

/* Mittlere Karte: gelber Akzent */
.why-card--accent {
  border-top: 3px solid var(--sig-yellow);
}

.why-emoji {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text);
}

/* ============================================================
   Features — 4 alternating Sections
   ============================================================ */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 0 clamp(4rem, 6vw, 6rem);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--gray-2);
}

.feature:last-child { border-bottom: none; }

/* Reversed: Screenshot links, Text rechts */
.feature--reversed { grid-template-columns: 1.35fr 1fr; }
.feature--reversed .feature-text  { order: 2; }
.feature--reversed .feature-visual { order: 1; }

/* Feature Text */
.feature-label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
}

.feature-text h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: var(--fontweight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-text p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
}

.feature-text p:last-child { margin-bottom: 0; }

/* Feature Bullet List */
.feature-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: var(--fontweight-bold);
}

/* Feature Screenshot
   Gelbe Toplinie statt mac-dots — proportional & on-brand */
.feature-visual {
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-1);
  border-top: 3px solid var(--sig-yellow);
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.08);
}

.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Bottom CTA — Signature Yellow
   ============================================================ */
.cta-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--sig-yellow);
  text-align: center;
}

.cta-inner {
  max-width: var(--cta-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .overline { color: rgba(0, 0, 0, 0.5); }

.cta-section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: var(--fontweight-bold);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.cta-copy {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.6);
  text-wrap: pretty;
}

.cta-section .waitlist-form { max-width: 420px; }

.cta-section .waitlist-form input { border-color: rgba(0, 0, 0, 0.18); }

.cta-section .waitlist-form button {
  background: var(--text);
  color: var(--sig-yellow);
}

.cta-section .form-hint { color: rgba(0, 0, 0, 0.5); }

/* ============================================================
   Footer — Schwarz
   ============================================================ */
.site-footer {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.3rem var(--page-x);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.footer-ig {
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0.6;
  transition: opacity 140ms ease;
}

.footer-ig:hover { opacity: 1; }

/* ============================================================
   Hero Instagram hint (unter Formular bzw. Mobile-CTA)
   ============================================================ */
.hero-ig-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #999;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: color 140ms ease;
}

.hero-ig-hint:hover { color: var(--text); }

.hero-ig-hint svg { flex-shrink: 0; }

/* ============================================================
   Success modal (always centered, fades in)
   ============================================================ */
.success-modal.wl-modal {
  align-items: center;
  justify-content: center;
  padding: 1.25rem var(--page-x);
}

.success-modal .wl-modal-card {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-1);
  border-bottom: 1px solid var(--gray-1);
  padding: 2rem 1.75rem 2.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity 260ms ease;
  text-align: center;
}

.success-modal.is-open .wl-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-modal-emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 0.9rem;
}

.success-modal-ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.78rem 1.1rem;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: var(--fontweight-bold);
  border-radius: var(--radius-input);
  text-decoration: none;
  background: var(--text);
  color: var(--bg-bubble);
  border: none;
  cursor: pointer;
  transition: opacity 160ms ease;
  margin-top: 1.1rem;
}

.success-modal-ig-btn:hover { opacity: 0.72; }

.success-modal-skip {
  display: block;
  margin: 0.8rem auto 0;
  font-size: 0.78rem;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 140ms ease;
}

.success-modal-skip:hover { color: var(--text); }

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */

/* ── Tablet landscape: Why-Grid stapeln ── */
@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .mobile-break { display: none; }
}

/* ── Tablet portrait: Features einspaltig ── */
@media (max-width: 840px) {
  .feature,
  .feature--reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-text {
    max-width: 58ch;
    margin-inline: auto;
  }

  .feature--reversed .feature-text,
  .feature--reversed .feature-visual {
    order: unset;
  }
}

/* ── Schmales Tablet: H1 darf umbrechen, Preview etwas kleiner ── */
@media (max-width: 700px) {
  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-preview { height: 220px; }
}

/* ── Mobile Waitlist Button (nur auf Mobile sichtbar) ── */
.mobile-waitlist-btn {
  display: none;
}

/* ── Mobile Waitlist Modal ── */
.wl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}

.wl-modal.is-open { display: flex; }

.wl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.wl-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--bg-bubble);
  border: 1px solid var(--gray-1);
  border-bottom: none;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: 2rem var(--page-x) max(2.5rem, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1);
}

.wl-modal.is-open .wl-modal-card {
  transform: translateY(0);
}

.wl-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  opacity: 0.4;
  padding: 0.3rem 0.5rem;
  transition: opacity 120ms ease;
}

.wl-modal-close:hover { opacity: 1; }

.wl-modal-overline {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
}

.wl-modal-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.wl-modal-copy {
  margin: 0 0 1.4rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.wl-modal-form {
  flex-direction: column;
  max-width: 100%;
}

.wl-modal-form button {
  width: 100%;
  text-align: center;
}

/* ── Language suggestion modal (same base as waitlist; desktop: centered) ── */
.lang-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.lang-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0.78rem 1.1rem;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: var(--fontweight-bold);
  border-radius: var(--radius-input);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lang-modal-btn--primary {
  border: none;
  background: var(--text);
  color: var(--bg-bubble);
}

.lang-modal-btn--primary:hover { opacity: 0.68; }

.lang-modal-btn--secondary {
  border: 1px solid var(--gray-2);
  background: transparent;
  color: var(--text);
}

.lang-modal-btn--secondary:hover {
  border-color: var(--text);
  opacity: 0.85;
}

@media (min-width: 601px) {
  .lang-modal.wl-modal {
    align-items: center;
    justify-content: center;
    padding: 1.25rem var(--page-x);
  }

  .lang-modal .wl-modal-card {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--gray-1);
    border-bottom: 1px solid var(--gray-1);
    padding: 2rem 1.75rem 2.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition:
      transform 320ms cubic-bezier(0.32, 0.72, 0, 1),
      opacity 260ms ease;
  }

  .lang-modal.is-open .wl-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ── Mobile: zentriert, Preview aus, Abstände komprimieren ── */
@media (max-width: 600px) {
  .header-actions {
    gap: 0.4rem;
  }

  .header-badge {
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.02em;
  }

  .lang-switcher {
    display: none;
  }

  .hero {
    /* kein min-height: user sieht unten bereits etwas vom nächsten Abschnitt */
    min-height: 0;
    padding-top: 0;
    padding-bottom: 1rem;
    text-align: center;
    align-items: center;
  }

  .hero-content {
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.5rem var(--page-x) 0;
  }

  h1 {
    /* kleiner als die Bumped-Version, aber größer als Original — text-wrap:balance verhindert orphan "dein" */
    font-size: clamp(2.6rem, 10.5vw, 3.2rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .hero-tagline {
    margin: 3rem 0 3rem;
    max-width: 32ch;
    font-size: 0.9rem;
    line-height: 1.6;
    text-wrap: pretty;
  }

  /* Nur 4 Pills, kleiner, umbrechen erlaubt */
  .pill-break { display: none; }
  .feature-pills > li:nth-child(n+6) { display: none; }
  .feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0;
    overflow: visible;
  }
  .pill {
    font-size: 0.72rem;
    padding: 0.26rem 0.6rem;
  }

  /* Form durch Modal-Button ersetzen */
  .hero .waitlist-form,
  .hero .form-message,
  .hero .form-hint { display: none; }

  .mobile-waitlist-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    border: none;
    border-radius: var(--radius-input);
    background: var(--text);
    color: var(--bg-bubble);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: var(--fontweight-bold);
    padding: 0.88rem 1.4rem;
    cursor: pointer;
    transition: opacity 160ms ease;
    text-align: center;
  }

  .mobile-waitlist-btn:hover { opacity: 0.72; }

  .hero-ig-hint {
    margin-top: 0.85rem;
    justify-content: center;
    text-align: center;
  }

  /* Preview komplett ausblenden */
  .hero-visual { display: none; }

  /* Sections enger */
  .why-section { padding: 3rem var(--page-x) 2.5rem; }
  .why-card    { padding: 1.5rem 1.4rem; }
  .features    { padding: 0 var(--page-x) 2.5rem; }
  .feature     { padding: 2.5rem 0; }
  .cta-section { padding: 3rem var(--page-x); }
}

/* ── Kleines Mobile ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(2.4rem, 10.5vw, 3rem); text-wrap: balance; }

  .cta-section .waitlist-form { flex-direction: column; }
  .cta-section .waitlist-form button { width: 100%; text-align: center; }
}
