/* ============================================================
   Freyva Landingpage — components.css
   Hero (Nebelkarte), Stats, Routen-Schritte, Bento-Features,
   Privatsphäre, Städte/White-Label, Phone-Mockup
   ============================================================ */

/* ── Hero: begehbare Nebelkarte ──────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0; /* eigener Stacking-Kontext: Reihenfolge über DOM */
}

.hero-canvas > canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#mapCanvas {
  pointer-events: none;
}

#fogCanvas {
  cursor: grab;
  touch-action: none;
}

#fogCanvas:active {
  cursor: grabbing;
}

/* Dunkler Verlauf hinter der Textspalte — hält die Überschrift
   auch über der (hellen) Kartengrafik lesbar. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 20, 22, 0.94), rgba(4, 20, 22, 0.62) 32%, rgba(4, 20, 22, 0) 62%),
    linear-gradient(0deg, rgba(4, 20, 22, 0.55), transparent 40%);
}

/* Fund-Zähler unten rechts im Hero */
.hero-found {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 62, 68, 0.82);
  border: 1px solid var(--ink-line);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-bright);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-found.show {
  opacity: 1;
  transform: none;
}

.hero-found.bump {
  animation: found-bump 0.4s ease;
}

@keyframes found-bump {
  40% { transform: scale(1.12); }
}

@media (max-width: 720px) {
  .hero-found { bottom: 5.2rem; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 6.5rem;
  pointer-events: none; /* Nebel bleibt unter dem Text wischbar */
}

.hero-inner a,
.hero-inner .badge {
  pointer-events: auto;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  max-width: 40rem;
}

.hero .eyebrow {
  color: var(--accent-bright);
}

.hero .eyebrow::before {
  background: var(--accent-bright);
}

.hero-copy h1 {
  text-shadow: 0 2px 30px rgba(11, 46, 51, 0.8);
}

.hero-copy h1 em {
  color: var(--accent-bright);
}

.hero-copy .lead {
  color: var(--on-ink-soft);
  text-shadow: 0 1px 18px rgba(11, 46, 51, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(18, 62, 68, 0.72);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--on-ink);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent-bright);
  fill: none;
}

/* Hinweis unten: die Karte ist wischbar */
.hero-hint {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 62, 68, 0.72);
  border: 1px solid var(--ink-line);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--on-ink-soft);
  white-space: nowrap;
  pointer-events: none;
  max-width: 92%;
}

.hero-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-bright);
  fill: none;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .hero-inner {
    padding-bottom: 4.5rem;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 20, 22, 0.86), rgba(4, 20, 22, 0.5) 46%, rgba(4, 20, 22, 0.72));
  }
}

/* ── Stats-Band ──────────────────────────────────────────── */

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

.stat-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.3rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  text-align: center;
}

.stat-tile .value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.05;
}

.stat-tile .label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .stats-band { grid-template-columns: 1fr; }
}

/* ── So funktioniert's: Route mit Wegpunkten ─────────────────
   Die vier Schritte sind eine echte Abfolge (Start → Freilegen
   → Entdecken → Rückblick) und werden deshalb als Route mit
   nummerierten Wegpunkten und gestrichelter Spur gesetzt.      */

.route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.6rem;
}

.route::before {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(12.5% - 0.2rem);
  right: calc(12.5% - 0.2rem);
  border-top: 2px dashed rgba(47, 125, 104, 0.4);
}

.waypoint {
  position: relative;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.waypoint-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 0 0 6px var(--bg), 0 8px 20px rgba(11, 46, 51, 0.25);
  position: relative;
  z-index: 1;
}

.waypoint h3 {
  font-size: 1.15rem;
  margin-top: 0.4rem;
}

.waypoint p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  max-width: 17rem;
}

@media (max-width: 860px) {
  .route {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-left: 0.2rem;
  }

  .route::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed rgba(47, 125, 104, 0.4);
  }

  .waypoint {
    grid-template-columns: 44px 1fr;
    gap: 0.2rem 1.1rem;
    justify-items: start;
    text-align: left;
  }

  .waypoint-marker {
    grid-row: span 2;
  }

  .waypoint h3 {
    margin-top: 0.55rem;
  }

  .waypoint p {
    grid-column: 2;
    max-width: none;
  }

  /* Deckt die durchlaufende Spur unterhalb des letzten Markers ab */
  .waypoint:last-child {
    background: var(--bg);
  }
}

/* ── Funktionen: Bento-Grid ──────────────────────────────── */

.features {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(47, 125, 104, 0.45);
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-tint);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hauptkarte: Nebel-Freilegen, doppelt breit & hoch */
.feature-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-ink);
  gap: 0.9rem;
}

.feature-hero p {
  color: var(--on-ink-soft);
}

.feature-hero .feature-icon {
  background: var(--ink-2);
}

.feature-hero .feature-icon svg {
  stroke: var(--accent-bright);
}

.feature-hero .mini-map {
  margin-top: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  aspect-ratio: 480 / 250;
  background: #0e343b;
}

.mini-map canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-wide {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }

  .feature-hero,
  .feature-wide { grid-column: span 1; }
}

/* ── Checklisten-Punkte (Privatsphäre & Städte) ──────────── */

.point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-tint);
}

.point-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.point h3 {
  font-size: 1.08rem;
  margin-bottom: 0.15rem;
}

.point p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ── Privatsphäre (dunkle Sektion) ───────────────────────── */

.privacy {
  position: relative;
  overflow: hidden;
}

.privacy::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 255, 212, 0.07), transparent 70%);
  top: -220px;
  right: -180px;
  pointer-events: none;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.privacy-points {
  display: grid;
  gap: 1.3rem;
}

.privacy .point-icon {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
}

.privacy .point-icon svg {
  stroke: var(--accent-bright);
}

.privacy .point p {
  color: var(--on-ink-soft);
}

.privacy-panel {
  border-left: 3px solid var(--accent-bright);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.2rem;
}

.privacy-panel .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--accent-bright);
  text-wrap: balance;
}

.privacy-panel p {
  font-size: 0.97rem;
  color: var(--on-ink-soft);
  max-width: 32rem;
}

@media (max-width: 860px) {
  .privacy-grid { grid-template-columns: 1fr; }
}

/* ── Städte / White Label ────────────────────────────────── */

.cities {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(201, 162, 39, 0.13), transparent),
    linear-gradient(180deg, var(--anthracite-deep), var(--anthracite));
  color: var(--paper);
}

.cities .eyebrow { color: var(--gold-bright); }
.cities .eyebrow::before { background: var(--gold); }
.cities .lead { color: #b9b1a4; }

.cities-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.city-points {
  display: grid;
  gap: 1.3rem;
}

.cities .point-icon {
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.cities .point-icon svg { stroke: var(--gold-bright); }
.cities .point p { color: #b9b1a4; }

.cities-cta {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.cities-cta p {
  color: #b9b1a4;
  font-size: 0.95rem;
  max-width: 26rem;
}

@media (max-width: 980px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* ── Phone-Mockup (Editions-Demo) ────────────────────────── */

.phone {
  width: min(320px, 78vw);
  border-radius: 44px;
  background: #10181a;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #10181a;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.phone-screen svg {
  width: 100%;
  height: auto;
}

.city-demo {
  display: grid;
  gap: 1.3rem;
  justify-items: center;
}

.theme-switch {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.theme-switch button {
  border: 0;
  background: transparent;
  color: #b9b1a4;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.theme-switch button.active {
  background: var(--gold);
  color: #201f1d;
}

/* Farbvariablen des Demo-Phones — Forest (Standard) vs. Heritage */
.city-phone {
  --map-bg:    #e8ede9;
  --map-street:#cfd8d2;
  --map-park:  #d9e8dd;
  --map-water: #d3e2ea;
  --map-trail: #2f7d68;
  --map-poi:   #c9a227;
  --map-fog:   #0b2e33;
  --hud-bg:    #ffffff;
  --hud-text:  #0b2e33;
}

.city-phone[data-theme="heritage"] {
  --map-bg:    #38352f;
  --map-street:#4d4941;
  --map-park:  #423e35;
  --map-water: #3d4245;
  --map-trail: #e4c65a;
  --map-poi:   #e4c65a;
  --map-fog:   #16140f;
  --hud-bg:    #2c2a28;
  --hud-text:  #f3efe8;
}

.city-demo-caption {
  font-size: 0.85rem;
  color: #8c8478;
  text-align: center;
  max-width: 22rem;
}

/* ── Selbst ausprobieren (lokale Karte + Nebel-Wisch) ─────── */

.tryit {
  background: var(--tint);
  border-block: 1px solid var(--line);
}

.tryit-stage {
  display: grid;
  gap: 1rem;
}

.tryit-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1.8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  background: #0e343b;
  touch-action: none;
}

.tryit-map canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#tryitBase {
  pointer-events: none;
}

#tryitFog {
  z-index: 2;
  cursor: grab;
  touch-action: none;
}

#tryitFog:active {
  cursor: grabbing;
}

.tryit-controls {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 4;
}

.tryit-chip {
  border: 0;
  background: rgba(11, 46, 51, 0.82);
  color: var(--on-ink);
  font: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}

.tryit-chip:hover {
  background: rgba(11, 46, 51, 0.96);
}

.tryit-cue {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(11, 46, 51, 0.75);
  color: var(--on-ink-soft);
  font-size: 0.8rem;
  white-space: nowrap;
  max-width: 88%;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tryit-map[data-state="revealing"] .tryit-cue {
  opacity: 0;
}

.tryit-found {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 62, 68, 0.85);
  border: 1px solid var(--ink-line);
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.tryit-found.all {
  background: var(--accent);
  color: #04231c;
  border-color: transparent;
}

.tryit-found.bump {
  animation: found-bump 0.4s ease;
}

.tryit-attr {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.tryit-attr a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 560px) {
  .tryit-map {
    aspect-ratio: 1.4;
  }

  .tryit-cue {
    white-space: normal;
  }
}

/* ── Entdeckungs-Popup (Hero & Beispiel) ─────────────────── */

.map-toast {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  color: #04231c;
  background: var(--accent-bright);
  box-shadow: 0 10px 26px rgba(4, 20, 22, 0.5);
  pointer-events: none;
  opacity: 0;
  /* sitzt über dem Fundpunkt (Standard); .below = darunter */
  transform-origin: bottom center;
  transform: translate(-50%, -100%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.map-toast.below {
  transform-origin: top center;
  transform: translate(-50%, 0) scale(0.9);
}

.map-toast.show {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.map-toast.below.show {
  transform: translate(-50%, 0) scale(1);
}

/* Zeiger auf den Fundpunkt */
.map-toast::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--accent-bright);
}

.map-toast.below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--accent-bright);
}

.map-toast.schatz {
  background: var(--gold-bright);
  color: #241c02;
}

.map-toast.schatz::after { border-top-color: var(--gold-bright); }
.map-toast.schatz.below::after {
  border-top-color: transparent;
  border-bottom-color: var(--gold-bright);
}

.map-toast-ic {
  font-size: 1rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .map-toast { transition: opacity 0.25s ease; }
}

/* ── Der Gedanke dahinter (Purpose-Band) ─────────────────── */

.purpose {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.purpose-inner {
  max-width: 54rem;
  display: grid;
  gap: 1.4rem;
}

.purpose-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

.purpose-statement em {
  font-style: italic;
  color: var(--accent);
}

.purpose-support {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 44rem;
}

.purpose-invites {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}

.invite {
  border-top: 2px solid var(--accent);
  padding-top: 0.95rem;
  display: grid;
  gap: 0.3rem;
}

.invite-label {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
}

.invite p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 640px) {
  .purpose-invites {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
}

/* ── Warteliste (Consumer-Endpunkt) ──────────────────────── */

.waitlist {
  position: relative;
  overflow: hidden;
  background: var(--accent-tint);
  border-block: 1px solid var(--line);
}

.waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(680px 380px at 50% -12%, rgba(255, 255, 255, 0.7), transparent 68%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.waitlist-inner .lead {
  margin-inline: auto;
}

.waitlist-form {
  display: flex;
  gap: 0.6rem;
  width: min(100%, 30rem);
  margin-top: 0.6rem;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: var(--text-secondary);
}

.waitlist-form input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: transparent;
}

.waitlist-form button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.waitlist-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.waitlist-success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  color: var(--accent);
  text-wrap: balance;
}

.waitlist[data-state="done"] .waitlist-form {
  display: none;
}

@media (max-width: 520px) {
  .waitlist-form {
    flex-direction: column;
    width: 100%;
  }

  .waitlist-form button {
    width: 100%;
  }
}

/* ── Audience-Switch: Übergang Consumer → Städte ─────────── */

.audience-switch {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.35;
  color: var(--gold-bright);
  max-width: 42rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}

/* ── Blick in die App (echte Screenshots) ────────────────── */

.showcase {
  background: var(--bg);
}

.app-shots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: clamp(1.6rem, 4vw, 3.2rem);
}

.app-shot {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  max-width: 300px;
  margin: 0;
}

.app-shot img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  background: #eef1ef;
}

.app-shot figcaption {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: center;
  max-width: 34ch;
}

.app-shot .tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.15rem;
}
