/* Landingpage Geschichtenzimmer – Texte aus design/Landing.dc.html (freigegeben), Stil: luftig, zentrierter Hero mit
   „Gerät“, Pastell-Kacheln, farbige Karten. Farben = GzColors (lib/theme/app_theme.dart), dunkel = GzPalette.dark /
   design/LandingDark.dc.html. Schriften lokal. Keine Inline-Styles (CSP style-src 'self').
   Breakpoints: ≥ 1200 Desktop (Inhalt 1200), 1024–1199 enger, 640–1023 Tablet, < 640 Mobil (design/LandingMobile.dc.html),
   Hauptnavigation als Menü < 1140. */

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/Fraunces-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/Figtree-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Konstanten (CI) */
  --night: #1E2346;
  --night2: #2B3160;
  --night3: #3A4278;
  --night-deep: #0D1024;
  --cream: #FBF6EC;
  --amber: #F4B942;
  --coral: #E0714F;
  --sage: #9BBFA5;
  --moon-text: #C9C7DA;

  /* Themenabhängig (hell) */
  --bg: #FBF6EC;
  --card: #FFFFFF;
  --ink: #1E2346;
  --muted: #5C5F7A;
  --line: #E8DFCC;
  --sand: #EFE6D4;
  --tile-sand: #EFE6D4;
  --amber-tint: #FCEBC4;
  --coral-tint: #F9DCD2;
  --coral-ink: #8A2F17;
  --coral-strong: #B4502F;
  --sage-tint: #DCEADF;
  --sage-dark: #2F5A3D;
  --night-tint: #E4E7F4;
  --store-bg: #0D1024;
  --dashed: rgba(30, 35, 70, 0.18);
  --faq-bg: #1E2346;
  --faq-line: rgba(255, 255, 255, 0.10);
  --faq-panel: #FBF6EC;
  --faq-panel-ink: #1E2346;
  --stage-lip: #0D1024;
  --shadow-card: 0 1px 2px rgba(30, 35, 70, 0.05), 0 14px 34px rgba(30, 35, 70, 0.09);
  --shadow-soft: 0 1px 2px rgba(30, 35, 70, 0.05), 0 6px 18px rgba(30, 35, 70, 0.05);
  --shadow-night: 0 18px 36px rgba(30, 35, 70, 0.22);
  --shadow-amber: 0 10px 24px rgba(214, 150, 30, 0.32);
  --focus: #1E2346;

  --gutter: 120px;
  --content: 1200px;
  --section-gap: 128px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10132A;
    --card: #1B1F3F;
    --ink: #F3EEE3;
    --muted: #A9ABC6;
    --line: #2F3561;
    --sand: #1B1F3F;
    --tile-sand: #262B52;
    --amber-tint: #3A321E;
    --coral-tint: #3D2630;
    --coral-ink: #F5B9A5;
    --coral-strong: #F08A70;
    --sage-tint: #1E3A2F;
    --sage-dark: #9BD1AE;
    --night-tint: #262B52;
    --store-bg: #000000;
    --dashed: #3A4278;
    --faq-bg: #262B52;
    --faq-line: rgba(255, 255, 255, 0.08);
    --faq-panel: #10132A;
    --faq-panel-ink: #F3EEE3;
    --stage-lip: #000000;
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.25), 0 14px 34px rgba(0, 0, 0, 0.30);
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.25), 0 6px 18px rgba(0, 0, 0, 0.25);
    --shadow-night: 0 18px 36px rgba(0, 0, 0, 0.35);
    --focus: #F4B942;
    color-scheme: dark;
  }
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
svg { flex-shrink: 0; }
a { color: inherit; }
hr { border: 0; margin: 0; }
b { font-weight: 800; }
[id] { scroll-margin-top: 16px; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 10px; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 12px 18px; border-radius: 14px; background: var(--amber); color: #1E2346;
  font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(var(--content), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap .wrap { width: 100%; }

/* Icon-Farben (Präsentationsattribute werden per CSS überschrieben) */
.i-ink { stroke: var(--ink); }
.i-muted { stroke: var(--muted); }
.i-sage { stroke: var(--sage-dark); }
.i-amber { stroke: var(--amber); }
.f-amber-tint { fill: var(--amber-tint); }
.f-card { fill: var(--card); }

/* ---------- Typografie ---------- */
.serif, .h2, .h3, .hero-title, .brand-name, .chat-question, .plan-title, .plan-price, .sub-title, .wordmark, .fact-num,
.name-chip-name, .browser-track-title, .invite-text, .avatar-m {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "SOFT" 100, "opsz" 72;
}
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.eyebrow-amber { color: var(--amber); }
.eyebrow-coral { color: var(--coral-strong); }
.h2 { font-size: 46px; line-height: 1.06; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.h3 { font-size: 23px; line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.h3-lg { font-size: 30px; }
.h3-md { font-size: 28px; }
.lead { font-size: 19px; line-height: 1.55; color: var(--muted); }
.muted { color: var(--muted); }

.section { padding-top: var(--section-gap); }
.center-head { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 720px; margin: 0 auto 56px; text-align: center; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.head-row > div { display: flex; flex-direction: column; gap: 16px; max-width: 620px; }
.head-row-lead { max-width: 400px; font-size: 17px; line-height: 1.55; color: var(--muted); }

/* ---------- Knöpfe ---------- */
.btn-amber, .btn-night, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  font-weight: 800; font-size: 14px; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-amber { background: var(--amber); color: #1E2346; }
.btn-night { background: var(--night); color: var(--cream); }
.btn-outline { border: 1.5px solid var(--line); background: var(--card); color: var(--ink); }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .btn-amber:hover, .btn-night:hover, .btn-outline:hover, .store-btn:hover { transform: translateY(-1px); }
}

.store-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 18px 0 14px;
  border-radius: 14px; background: var(--store-bg); border: 1.5px solid var(--store-bg);
  color: var(--cream); text-decoration: none; transition: transform 0.15s ease;
}
.store-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-small { font-size: 11px; font-weight: 600; opacity: 0.8; }
.store-big { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; }

/* ---------- Kopf ---------- */
.site-header { position: relative; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); min-height: 44px; }
.brand-logo { width: 34px; height: 34px; }
.brand-logo > path:first-child, .brand-logo > circle:nth-of-type(2) { fill: var(--ink); }
.brand-logo > path:nth-of-type(2), .brand-logo > circle:nth-of-type(3) { fill: var(--bg); }
.brand-name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav-list { display: flex; align-items: center; gap: 22px; }
.site-nav-list a {
  display: flex; align-items: center; min-height: 44px; padding: 0 4px;
  color: var(--ink); font-size: 15px; font-weight: 700; text-decoration: none;
}
.site-nav-list a:hover { color: var(--coral-strong); }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 22px; border: 1.5px solid var(--line);
  background: var(--card); align-items: center; justify-content: center; cursor: pointer; padding: 0;
}
.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { padding-top: 40px; }
.hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; max-width: 860px; }
.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 12px; border-radius: 999px;
  background: var(--card); border: 1.5px solid var(--coral-tint); box-shadow: var(--shadow-soft);
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-ink);
}
.hero-title { font-size: 64px; line-height: 1.02; font-weight: 500; letter-spacing: -0.025em; color: var(--ink); }
.hero-accent { color: var(--coral-strong); }
.hero-lead { max-width: 680px; font-size: 20px; line-height: 1.55; color: var(--muted); }
.hero-download { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 6px; }
.hero-note { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }

/* Das „Gerät“: Hörbox-Sockel mit Lautsprechern, darauf Fensterbogen, Handy und Brummi (design/Landing.dc.html) */
.stage {
  --aw: 66;                       /* Breite der Illustration in cqw */
  position: relative; width: min(820px, 100%); margin: 56px auto 0;
  container-type: inline-size; aspect-ratio: 820 / 656;
}
.stage-box {
  position: absolute; left: 0; right: 0; bottom: 2.4cqw; height: 44cqw;
  border-radius: 6cqw; background: var(--night);
  box-shadow: 0 2.4cqw 0 var(--stage-lip), 0 40px 80px rgba(30, 35, 70, 0.18);
  overflow: hidden;
}
.speaker {
  position: absolute; top: 9cqw; width: 13cqw; height: 26cqw; border-radius: 3cqw;
  background-image: radial-gradient(circle, var(--night3) 0.55cqw, transparent 0.62cqw);
  background-size: 2.3cqw 2.3cqw;
}
.speaker-l { left: 5cqw; }
.speaker-r { right: 5cqw; }
.stage-art {
  position: absolute; left: calc((100 - var(--aw)) / 2 * 1cqw); bottom: 2.4cqw;
  width: calc(var(--aw) * 1cqw); aspect-ratio: 600 / 700;
  border-radius: 0 0 6cqw 6cqw; overflow: visible;
}
.stage-layer, .stage-layer .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone {
  position: absolute; left: 24.1667%; top: 6.2857%; width: 51.5%; height: 92.1429%;
  border-radius: calc(var(--aw) * 0.0767cqw); padding: calc(var(--aw) * 0.0167cqw);
  background: #0D1024;
  box-shadow: 0 40px 80px rgba(13, 16, 36, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-screen { width: 100%; height: 100%; border-radius: calc(var(--aw) * 0.0617cqw); overflow: hidden; background: var(--cream); }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- Zahl-Kacheln ---------- */
.facts-section { padding-top: 88px; }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.fact {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 26px 22px 24px;
  border-radius: 24px; text-align: center; background: linear-gradient(180deg, var(--fact-tint) 0%, var(--card) 78%);
  box-shadow: var(--shadow-soft);
}
.fact-coral { --fact-tint: var(--coral-tint); }
.fact-sage { --fact-tint: var(--sage-tint); }
.fact-night { --fact-tint: var(--night-tint); }
.fact-amber { --fact-tint: var(--amber-tint); }
.fact-num { font-size: 44px; line-height: 1; font-weight: 500; letter-spacing: -0.02em; }
.fact-label { font-weight: 800; font-size: 15px; }
.fact-text { font-size: 13px; line-height: 1.45; color: var(--muted); max-width: 240px; }

/* ---------- So funktioniert’s: farbige Karten ---------- */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature { display: flex; flex-direction: column; gap: 20px; padding: 16px 16px 26px; border-radius: 30px; background: var(--feat); }
.feature-amber { --feat: var(--amber-tint); }
.feature-sage { --feat: var(--sage-tint); }
.feature-coral { --feat: var(--coral-tint); }
.feature-body { display: flex; flex-direction: column; gap: 8px; padding: 0 10px; }
.step-no { font-size: 13px; font-weight: 800; color: var(--muted); }
.feature-text { font-size: 16px; line-height: 1.55; color: var(--muted); }

.feature-art {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 338 / 236;
  container-type: inline-size; box-shadow: 0 10px 24px rgba(30, 35, 70, 0.10);
}
.feature-art > .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-room { background: #2B3160; }
.art-figure { background: #F9DCD2; }
.art-story { background: #1E2346; }
.corner { position: absolute; width: 24px; height: 24px; border: 0 solid #F4B942; }
.corner-tl { top: 14px; left: 14px; border-top-width: 3px; border-left-width: 3px; border-top-left-radius: 11px; }
.corner-tr { top: 14px; right: 14px; border-top-width: 3px; border-right-width: 3px; border-top-right-radius: 11px; }
.corner-bl { bottom: 14px; left: 14px; border-bottom-width: 3px; border-left-width: 3px; border-bottom-left-radius: 11px; }
.corner-br { bottom: 14px; right: 14px; border-bottom-width: 3px; border-right-width: 3px; border-bottom-right-radius: 11px; }
.toy-chip {
  position: absolute; display: flex; align-items: center; gap: 7px; padding: 6px 12px 6px 8px;
  border-radius: 16px; background: rgba(255, 255, 255, 0.96); color: #1E2346;
  font-size: 13px; font-weight: 800; box-shadow: 0 6px 18px rgba(13, 16, 36, 0.28); white-space: nowrap;
}
.toy-chip-1 { left: 3.85cqw; top: 28.4cqw; }
.toy-chip-2 { left: 35.8cqw; top: 16.6cqw; }
.toy-chip-3 { left: 51.8cqw; top: 36.7cqw; }
.dot { width: 10px; height: 10px; border-radius: 5px; }
.dot-sage { background: #9BBFA5; box-shadow: 0 0 0 3px rgba(155, 191, 165, 0.2); }
.dot-coral { background: #E0714F; box-shadow: 0 0 0 3px rgba(224, 113, 79, 0.2); }
.name-chip {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border-radius: 18px;
  background: #FFFFFF; box-shadow: 0 6px 18px rgba(30, 35, 70, 0.16); white-space: nowrap;
}
.name-chip-label { font-size: 12px; font-weight: 700; color: #5C5F7A; }
.name-chip-name { font-size: 17px; font-weight: 600; color: #1E2346; }
.chapters {
  position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 8px;
  padding: 12px 14px; border-radius: 16px; background: #FFFFFF; box-shadow: 0 6px 18px rgba(13, 16, 36, 0.28);
}
.chapter { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: #5C5F7A; }
.chapter-now { color: #1E2346; }
.chapter-num {
  width: 22px; height: 22px; border-radius: 11px; background: #EFE6D4; color: #1E2346;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.chapter-now .chapter-num { background: #F4B942; }

/* Wer liest vor? */
.readers { display: flex; flex-direction: column; gap: 22px; padding-top: 64px; }
.readers-head { display: flex; flex-direction: column; gap: 8px; }
.readers-lead { font-size: 17px; line-height: 1.5; color: var(--muted); }
.readers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.reader {
  display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: 26px;
  background: var(--card); box-shadow: var(--shadow-soft);
}
.reader-body { display: flex; flex-direction: column; gap: 8px; }
.reader-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.reader-title { font-weight: 800; font-size: 17px; }
.reader-text { font-size: 15px; line-height: 1.5; color: var(--muted); }

.tile {
  width: 48px; height: 48px; border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tile-amber { background: var(--amber-tint); }
.tile-coral { background: var(--coral-tint); }
.tile-sage { background: var(--sage-tint); }
.tile-night { background: var(--night-tint); }
.tile-sand { background: var(--tile-sand); }
.tile-white { background: var(--card); width: 44px; height: 44px; border-radius: 14px; }

.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 12px;
  font-size: 12px; font-weight: 800; align-self: flex-start; white-space: nowrap;
}
.badge-coral { background: var(--coral-tint); color: var(--coral-ink); }
.badge-night { background: #1E2346; color: #F4B942; }
.badge-sage { background: var(--sage-tint); color: var(--sage-dark); }
.badge-amber { background: var(--amber-tint); color: var(--ink); }

/* ---------- Anlässe: Stimmungs-Karten ---------- */
.occasions-top { display: flex; align-items: center; justify-content: space-between; gap: 72px; margin-bottom: 48px; }
.occasions-top > div:first-child { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.chat-card {
  width: 480px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; padding: 26px;
  border-radius: 30px; background: #1E2346; box-shadow: var(--shadow-night); color: var(--cream);
}
.chat-question { font-size: 24px; line-height: 1.2; font-weight: 500; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-chip {
  display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 14px; border-radius: 20px;
  background: rgba(255, 255, 255, 0.08); color: var(--cream); font-weight: 700; font-size: 14px;
}
.chat-chip-on { background: #F4B942; color: #1E2346; }
.chat-note { font-size: 13px; line-height: 1.5; color: var(--moon-text); }

.moods { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.mood {
  display: flex; flex-direction: column; gap: 6px; padding: 12px 12px 22px; border-radius: 26px;
  background: var(--card); box-shadow: var(--shadow-soft); border: 1.5px solid transparent;
}
.mood-own { background: transparent; box-shadow: none; border: 2px dashed var(--dashed); }
.mood-art {
  position: relative; height: 150px; border-radius: 18px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; background: var(--mood); overflow: hidden;
}
.mood-amber { --mood: var(--amber-tint); }
.mood-coral { --mood: var(--coral-tint); }
.mood-sage { --mood: var(--sage-tint); }
.mood-sand { --mood: var(--tile-sand); }
.mood-night { --mood: var(--night-tint); }
.mood-sparks { position: absolute; inset: 0; width: 100%; height: 100%; }
.mood-disc {
  position: relative; width: 92px; height: 92px; border-radius: 50%; background: var(--card);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(30, 35, 70, 0.10);
}
.mood-sound {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 16px;
  background: var(--card); display: flex; align-items: center; justify-content: center;
}
.mood-title { font-weight: 800; font-size: 17px; padding: 0 10px; }
.mood-text { font-size: 14px; line-height: 1.4; color: var(--muted); padding: 0 10px; }

.note-sage {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; padding: 16px 18px; border-radius: 20px;
  background: var(--sage-tint); color: var(--sage-dark); font-size: 15px; line-height: 1.5; font-weight: 500;
}
.note-sage .ico { margin-top: 1px; }

/* ---------- Für Oma & Opa: Browser-Ansicht ---------- */
.showcase { display: flex; justify-content: center; }
.showcase-frame {
  width: min(880px, 100%); padding: 56px 56px 0; border-radius: 40px 40px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 185, 66, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 30%, rgba(224, 113, 79, 0.35) 0 3px, transparent 4px),
    linear-gradient(180deg, var(--night-tint) 0%, var(--bg) 100%);
  display: flex; justify-content: center;
}
.browser-demo { position: relative; width: 560px; max-width: 100%; padding-bottom: 96px; }
.browser { border-radius: 22px; overflow: hidden; background: #FBF6EC; box-shadow: 0 30px 60px rgba(13, 16, 36, 0.25); }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #EFE6D4; }
.bdot { width: 10px; height: 10px; border-radius: 5px; flex-shrink: 0; }
.bdot-coral { background: #E0714F; } .bdot-amber { background: #F4B942; } .bdot-sage { background: #9BBFA5; }
.browser-url {
  flex-grow: 1; margin-left: 10px; height: 26px; border-radius: 13px; background: #FBF6EC;
  display: flex; align-items: center; padding: 0 12px; font-size: 12px; font-weight: 600; color: #5C5F7A;
}
.browser-body { display: flex; flex-direction: column; gap: 14px; padding: 20px; color: #1E2346; }
.browser-from { display: flex; align-items: center; gap: 10px; }
.avatar-m {
  width: 36px; height: 36px; border-radius: 18px; background: #E0714F; display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 600; flex-shrink: 0;
}
.browser-from-text { font-size: 14px; font-weight: 700; color: #5C5F7A; }
.browser-cover { border-radius: 20px; overflow: hidden; background: #1E2346; }
.browser-cover .art { display: block; width: 100%; height: 150px; }
.browser-track { display: flex; align-items: center; gap: 14px; }
.play-btn { width: 52px; height: 52px; border-radius: 26px; background: #1E2346; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.browser-track-text { display: flex; flex-direction: column; gap: 2px; }
.browser-track-title { font-size: 19px; font-weight: 600; line-height: 1.15; }
.browser-track-meta { font-size: 13px; color: #5C5F7A; }
.heart-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; border-radius: 23px;
  border: 1.5px solid #E8DFCC; background: #FFFFFF; font-weight: 800; font-size: 14px;
}
.invite-card {
  position: absolute; left: -64px; bottom: 0; width: 330px; display: flex; flex-direction: column; gap: 12px;
  padding: 20px; border-radius: 24px; background: #FFFFFF; color: #1E2346; box-shadow: 0 24px 50px rgba(13, 16, 36, 0.28);
}
.invite-row { display: flex; align-items: center; gap: 12px; }
.mic-dot {
  width: 52px; height: 52px; border-radius: 26px; background: #E0714F; box-shadow: 0 0 0 7px #F9DCD2;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.invite-text { font-size: 19px; line-height: 1.2; font-weight: 500; }
.invite-meta { font-size: 12px; color: #5C5F7A; font-weight: 600; }

.gp-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.gp-feature { display: flex; flex-direction: column; gap: 10px; padding: 26px; border-radius: 26px; background: var(--card); box-shadow: var(--shadow-soft); }
.gp-feature .tile { margin-bottom: 4px; }
.gp-feature .ico { stroke: var(--ink); }
.gp-title { font-weight: 800; font-size: 17px; }
.gp-text { font-size: 15px; line-height: 1.5; color: var(--muted); }

/* ---------- Hörbox ---------- */
.boxes {
  display: grid; grid-template-columns: 500px minmax(0, 1fr); column-gap: 80px; row-gap: 24px;
  grid-template-areas: "head cards" "art cards" "note cards"; align-items: start;
}
.boxes-head { grid-area: head; display: flex; flex-direction: column; gap: 16px; }
.boxes-art { grid-area: art; }
.boxes-art .art { width: 100%; max-width: 420px; height: auto; aspect-ratio: 420 / 300; }
.boxes-note { grid-area: note; font-size: 13px; line-height: 1.5; color: var(--muted); }
.boxes-cards { grid-area: cards; display: flex; flex-direction: column; gap: 20px; }
.card { background: var(--card); box-shadow: var(--shadow-card); border-radius: 28px; }
.box-card { display: flex; flex-direction: column; gap: 16px; padding: 28px; }
.box-card .tile { width: 44px; height: 44px; border-radius: 14px; }
.box-card-head { display: flex; align-items: center; gap: 12px; }
.box-card-title { font-weight: 800; font-size: 17px; }
.box-card-sub { font-size: 14px; color: var(--muted); }
.box-card-text { font-size: 15px; line-height: 1.5; color: var(--muted); }
.files { display: flex; flex-direction: column; gap: 6px; }
.file {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px; background: var(--bg);
  font: 700 13px ui-monospace, "SF Mono", Menlo, monospace; overflow-wrap: anywhere;
}
.howto { display: flex; flex-direction: column; gap: 14px; }
.howto-step { display: flex; gap: 12px; align-items: flex-start; }
.howto-step > div { display: flex; flex-direction: column; gap: 2px; }
.howto-num {
  width: 26px; height: 26px; border-radius: 13px; background: #F4B942; color: #1E2346;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.howto-title { font-weight: 800; font-size: 15px; }
.howto-text { font-size: 14px; line-height: 1.45; color: var(--muted); }

/* ---------- Zum Ausdrucken ---------- */
.prints { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.print-card { display: flex; flex-direction: column; gap: 22px; padding: 16px 16px 30px; border-radius: 32px; }
.print-card-sage { background: var(--sage-tint); }
.print-card-amber { background: var(--amber-tint); }
.print-art { border-radius: 22px; overflow: hidden; display: flex; justify-content: center; }
.print-art .art { width: 100%; height: auto; aspect-ratio: 520 / 290; }
.print-art-sage { background: #9BBFA5; }
.print-art-amber { background: #FCEBC4; }
.print-body { display: flex; flex-direction: column; gap: 12px; padding: 0 12px; }
.print-text { font-size: 16px; line-height: 1.5; color: var(--muted); }
.checklist { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.checklist .ico { margin-top: 2px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.pill {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 17px;
  background: var(--card); font-size: 13px; font-weight: 700; color: var(--muted);
}

/* ---------- Datenschutz ---------- */
.privacy {
  display: grid; grid-template-columns: 400px minmax(0, 1fr); column-gap: 72px; row-gap: 22px; align-items: start;
  grid-template-areas: "head grid" "link grid" "art grid"; grid-template-rows: auto auto 1fr;
  padding: 88px 72px; border-radius: 48px; background: var(--sage-tint);
}
.privacy-head { grid-area: head; display: flex; flex-direction: column; gap: 16px; }
.privacy-link { grid-area: link; justify-self: start; }
.privacy-art { grid-area: art; }
.privacy-art .art { width: 220px; height: 170px; }
.privacy-grid { grid-area: grid; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.privacy-card { display: flex; flex-direction: column; gap: 12px; padding: 26px; border-radius: 24px; background: var(--card); box-shadow: var(--shadow-soft); }
.privacy-card .tile { width: 44px; height: 44px; border-radius: 14px; }
.privacy-title { font-weight: 800; font-size: 17px; }
.privacy-text { font-size: 15px; line-height: 1.5; color: var(--muted); }
.text-link {
  display: inline-flex; align-items: center; min-height: 44px; font-weight: 800; font-size: 15px;
  color: var(--ink); text-decoration: underline; text-underline-offset: 4px;
}

/* ---------- Preise ---------- */
.pricing { position: relative; margin-top: var(--section-gap); padding: 112px 0; background: var(--sand); overflow: hidden; }
.pricing-inner { position: relative; z-index: 1; }
.bars { position: absolute; top: 40px; bottom: 40px; width: 150px; display: flex; flex-direction: column; justify-content: space-between; }
.bars-l { left: 0; }
.bars-r { right: 0; align-items: flex-end; }
.bar { display: block; height: 8px; border-radius: 4px; background: var(--amber); opacity: 0.85; }
.bars-l .bar { border-radius: 0 4px 4px 0; }
.bars-r .bar { border-radius: 4px 0 0 4px; }
.bars .bar:nth-child(3n) { background: var(--coral); }
.bars .bar:nth-child(4n) { background: var(--sage); }
.bar-30 { width: 30%; } .bar-34 { width: 34%; } .bar-36 { width: 36%; } .bar-38 { width: 38%; } .bar-40 { width: 40%; }
.bar-42 { width: 42%; } .bar-44 { width: 44%; } .bar-46 { width: 46%; } .bar-48 { width: 48%; } .bar-50 { width: 50%; }
.bar-52 { width: 52%; } .bar-56 { width: 56%; } .bar-58 { width: 58%; } .bar-62 { width: 62%; } .bar-64 { width: 64%; }
.bar-66 { width: 66%; } .bar-70 { width: 70%; } .bar-72 { width: 72%; } .bar-76 { width: 76%; } .bar-80 { width: 80%; }
.bar-84 { width: 84%; } .bar-88 { width: 88%; } .bar-92 { width: 92%; } .bar-96 { width: 96%; }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; width: min(880px, 100%); margin: 0 auto; align-items: start; }
.plan { display: flex; flex-direction: column; gap: 16px; }
.plan-free { padding: 36px; border-radius: 30px; background: var(--card); box-shadow: var(--shadow-card); margin-top: 22px; }
.plan-title { font-size: 38px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.plan-price { font-size: 44px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.plan-per { font: 700 18px "Figtree", sans-serif; color: var(--muted); }
.plan-sub { font-size: 15px; line-height: 1.5; color: var(--muted); }
.plan-rule { height: 1px; background: var(--line); margin: 6px 0; }
.plan-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.plan-list .ico { margin-top: 2px; }
.plan-list-amber .ico { stroke: #D6961E; }
.plan-free .btn-outline { min-height: 54px; font-size: 15px; margin-top: auto; }

.plan-device { display: flex; flex-direction: column; align-items: center; }
.plan-shell {
  width: 100%; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 14px 14px 22px;
  border-radius: 38px; background: var(--amber); box-shadow: 0 10px 0 #D6961E, var(--shadow-night);
}
.plan-premium { width: 100%; padding: 28px 26px; border-radius: 28px; background: var(--card); }
.plan-premium-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.btn-plan { min-height: 54px; font-size: 15px; padding: 0 26px; }
.plan-foot { width: 16px; height: 44px; margin-top: 10px; border-radius: 0 0 8px 8px; background: var(--night3); }
.plans-note { max-width: 720px; margin: 40px auto 0; font-size: 14px; line-height: 1.5; color: var(--muted); text-align: center; }

/* ---------- FAQ ---------- */
.faq {
  display: grid; grid-template-columns: 400px minmax(0, 1fr); column-gap: 72px; row-gap: 28px; align-items: start;
  grid-template-areas: "head list" "ask list"; grid-template-rows: auto 1fr;
}
.faq-head { grid-area: head; display: flex; flex-direction: column; gap: 16px; }
.ask { grid-area: ask; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 22px; background: var(--amber-tint); }
.ask-title { font-weight: 800; font-size: 15px; }
.ask-text { font-size: 13px; color: var(--muted); }
.faq-list { grid-area: list; padding: 8px; border-radius: 26px; background: var(--faq-bg); box-shadow: var(--shadow-night); }
.faq-item + .faq-item { border-top: 1px solid var(--faq-line); }
.faq-item summary {
  display: flex; align-items: center; gap: 12px; min-height: 60px; padding: 8px 16px 8px 18px; cursor: pointer;
  list-style: none; color: var(--cream); font-weight: 700; font-size: 16px; border-radius: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.05); }
.faq-q { flex-grow: 1; }
.faq-toggle { width: 32px; height: 32px; border-radius: 16px; background: rgba(255, 255, 255, 0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-icon { stroke: var(--cream); }
.faq-item[open] .faq-icon-v { display: none; }
.faq-item[open] .faq-toggle { background: var(--amber); }
.faq-item[open] .faq-icon { stroke: #1E2346; }
.faq-a {
  margin: 0 10px 12px; padding: 16px 18px; border-radius: 16px; background: var(--faq-panel); color: var(--faq-panel-ink);
  font-size: 15px; line-height: 1.55;
}

/* ---------- Abschluss ---------- */
.cta-wrap { padding-top: var(--section-gap); }
.cta {
  display: flex; align-items: center; gap: 32px; padding: 40px 56px 40px 40px; border-radius: 40px;
  background: #F4B942; color: #1E2346;
}
.cta-art .art { width: 190px; height: 190px; }
.cta-copy { display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.cta-title { font-size: 42px; color: #1E2346; }
.cta-lead { font-size: 18px; line-height: 1.55; color: rgba(30, 35, 70, 0.85); }
.store-row-cta { flex-wrap: nowrap; flex-shrink: 0; }
.store-row-cta .store-btn { background: #0D1024; border-color: #0D1024; }

/* ---------- Fuß mit Wortbild ---------- */
.site-footer { margin-top: var(--section-gap); padding-top: 72px; border-top: 1px solid var(--line); overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }
.footer-claim { font-size: 15px; line-height: 1.5; color: var(--muted); }
.footer-cols { display: flex; gap: 88px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-title { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-strong); }
.footer-links a {
  display: flex; align-items: center; min-height: 44px; color: var(--ink); font-weight: 600; font-size: 15px; text-decoration: none;
}
.footer-links a:hover { color: var(--coral-strong); text-decoration: underline; text-underline-offset: 4px; }
.footer-stores { display: flex; flex-direction: column; gap: 10px; }
.footer-stores .store-btn { height: 52px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line); font-size: 13px; color: var(--muted);
}
.wordmark {
  display: flex; justify-content: center; padding: 40px 12px 0.12em;
  font-size: clamp(44px, 10.2vw, 172px); font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  user-select: none; white-space: nowrap;
}
.wl { display: inline-block; }
.wl-0 { color: #E0714F; transform: translateY(0.03em) rotate(-4deg); }
.wl-1 { color: #F4B942; transform: translateY(-0.04em) rotate(3deg); }
.wl-2 { color: #9BBFA5; transform: translateY(0.02em) rotate(-2deg); }
.wl-3 { color: var(--night3); transform: translateY(-0.02em) rotate(4deg); }
.wl-4 { color: #F7B8A4; transform: translateY(0.05em) rotate(-3deg); }
@media (prefers-color-scheme: dark) {
  .wl-3 { color: #C9C7DA; }
}

/* ---------- Unterseiten (Impressum, Datenschutz, AGB, Kontakt) ---------- */
.sub-main { padding-top: 72px; display: flex; flex-direction: column; gap: 16px; }
.sub-title { font-size: 52px; line-height: 1.06; font-weight: 500; letter-spacing: -0.02em; }
.sub-card { margin-top: 24px; padding: 40px; min-height: 220px; }
.sub-placeholder { font-size: 19px; line-height: 1.55; color: var(--muted); }
.sub-stand { font-size: 15px; color: var(--muted); margin: 0; }
.sub-h { font-size: 19px; font-weight: 800; margin: 24px 0 6px; }
.sub-h:first-child { margin-top: 0; }

/* ========== 1024–1199 ========== */
@media (max-width: 1199px) {
  :root { --gutter: 40px; --section-gap: 112px; }
  .hero-title { font-size: 56px; }
  .h2 { font-size: 40px; }
  .chat-card { width: 420px; }
  .occasions-top { gap: 48px; }
  .boxes { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 48px; }
  .privacy { grid-template-columns: 300px minmax(0, 1fr); column-gap: 48px; padding: 72px 48px; }
  .faq { grid-template-columns: 320px minmax(0, 1fr); column-gap: 48px; }
  .cta { padding: 32px 40px 32px 24px; gap: 24px; }
  .cta-art .art { width: 140px; height: 140px; }
  .cta-title { font-size: 34px; }
  .footer-cols { gap: 56px; }
  .bars { width: 90px; }
}

/* Menü statt Leiste */
@media (max-width: 1139px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: calc(100% - 8px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 12px; padding: 12px; border-radius: 24px;
    background: var(--card); box-shadow: var(--shadow-card); border: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav-list a { min-height: 48px; padding: 0 14px; border-radius: 14px; font-size: 16px; }
  .site-nav-list a:hover { background: var(--bg); }
  .btn-header { min-height: 48px; }
  .header-inner { position: relative; }
}

/* ========== Tablet 640–1023 ========== */
@media (max-width: 1023px) {
  :root { --section-gap: 96px; }
  .hero-title { font-size: 48px; }
  .h2 { font-size: 36px; }
  .head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
  .readers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .occasions-top { flex-direction: column; align-items: stretch; }
  .chat-card { width: 100%; max-width: 560px; }
  .moods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-features { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
  .invite-card { left: -24px; }
  .boxes { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "cards" "note"; }
  .boxes-art { display: none; }
  .prints { grid-template-columns: minmax(0, 1fr); max-width: 600px; margin-inline: auto; }
  .privacy { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "grid" "link"; grid-template-rows: none; }
  .privacy-art { display: none; }
  .plans { grid-template-columns: minmax(0, 1fr); max-width: 480px; }
  .plan-free { margin-top: 0; }
  .bars { display: none; }
  .faq { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "list" "ask"; grid-template-rows: none; }
  .cta { flex-direction: column; text-align: center; padding: 36px 28px 32px; gap: 14px; }
  .cta-art .art { width: 150px; height: 150px; }
  .store-row-cta { flex-wrap: wrap; padding-top: 6px; }
  .footer-top { flex-direction: column; }
  .footer-cols { display: grid; grid-template-columns: repeat(3, minmax(0, auto)); gap: 32px 56px; }
}

/* ========== Mobil < 640 (design/LandingMobile.dc.html) ========== */
@media (max-width: 639px) {
  :root { --gutter: 16px; --section-gap: 72px; }
  .header-inner { height: 72px; }
  .brand-logo { width: 30px; height: 30px; }
  .brand-name { font-size: 19px; }
  .hero { padding-top: 16px; }
  .hero-copy { gap: 16px; }
  .hero-title { font-size: 38px; line-height: 1.04; letter-spacing: -0.02em; }
  .hero-lead { font-size: 16px; }
  .hero-download { width: 100%; }
  .store-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; }
  .store-btn { height: 52px; padding: 0 10px; justify-content: center; }
  .store-big { font-size: 15px; }
  .stage { --aw: 88; margin-top: 36px; aspect-ratio: 358 / 382; }
  .stage-box { height: 56cqw; border-radius: 8cqw; }
  .speaker { display: none; }
  .facts-section { padding-top: 56px; }
  .facts { gap: 10px; }
  .fact { padding: 20px 12px 18px; border-radius: 20px; }
  .fact-num { font-size: 36px; }
  .fact-label { font-size: 14px; }
  .fact-text { font-size: 12px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 21px; }
  .h3-lg { font-size: 24px; }
  .h3-md { font-size: 22px; }
  .lead, .head-row-lead { font-size: 16px; }
  .center-head { align-items: flex-start; text-align: left; gap: 12px; margin-bottom: 28px; }
  .head-row { margin-bottom: 28px; gap: 12px; }
  .features { gap: 16px; }
  .feature { border-radius: 28px; padding: 12px 12px 22px; }
  .feature-body { padding: 0 6px; }
  .feature-text { font-size: 15px; line-height: 1.5; }
  .readers { padding-top: 44px; gap: 16px; }
  .readers-lead { font-size: 15px; }
  .readers-grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .reader { flex-direction: row; gap: 14px; padding: 16px; border-radius: 22px; }
  .reader .tile { width: 44px; height: 44px; border-radius: 14px; }
  .reader-title-row { justify-content: flex-start; }
  .reader-title { font-size: 16px; }
  .reader-text { font-size: 14px; }
  .occasions-top { margin-bottom: 24px; }
  .chat-card { display: none; }
  .moods { gap: 10px; }
  .mood { padding: 8px 8px 16px; border-radius: 22px; }
  .mood-art { height: 104px; border-radius: 16px; margin-bottom: 8px; }
  .mood-disc { width: 64px; height: 64px; }
  .mood-disc .ico { width: 30px; height: 30px; }
  .mood-sound { width: 28px; height: 28px; top: 8px; right: 8px; }
  .mood-title { font-size: 15px; padding: 0 6px; }
  .mood-text { font-size: 12px; line-height: 1.35; padding: 0 6px; }
  .note-sage { font-size: 14px; }
  .showcase-frame { padding: 24px 12px 0; border-radius: 28px 28px 0 0; }
  .browser-demo { padding-bottom: 124px; }
  .invite-card { left: 18px; right: 18px; width: auto; }
  .gp-features { margin-top: 28px; gap: 12px; }
  .gp-feature { padding: 20px; }
  .gp-title { font-size: 16px; }
  .gp-text { font-size: 14px; }
  .box-card { padding: 24px; }
  .print-card { padding: 12px 12px 24px; border-radius: 30px; }
  .print-art .art { aspect-ratio: 310 / 200; }
  .print-body { padding: 0 6px; }
  .print-text { font-size: 15px; }
  .privacy { padding: 44px 16px; border-radius: 32px; margin-inline: -4px; }
  .privacy-grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .privacy-card { padding: 20px; }
  .privacy-title { font-size: 16px; }
  .privacy-text { font-size: 14px; }
  .pricing { padding: 64px 0; }
  .plan-free { padding: 24px; }
  .plan-title { font-size: 30px; }
  .plan-price { font-size: 36px; }
  .plan-per { font-size: 16px; }
  .plan-premium { padding: 22px 20px; }
  .btn-plan { width: 100%; padding: 0 16px; }
  .faq { row-gap: 22px; }
  .faq-list { padding: 6px; border-radius: 22px; }
  .faq-item summary { font-size: 15px; min-height: 58px; padding: 8px 10px 8px 14px; }
  .faq-a { font-size: 14px; margin: 0 6px 10px; }
  .cta { border-radius: 32px; padding: 36px 20px 28px; }
  .cta-title { font-size: 30px; }
  .cta-lead { font-size: 16px; }
  .store-row-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { padding-top: 44px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-col-app { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 28px; }
  .wordmark { padding-top: 28px; }
  .sub-main { padding-top: 40px; }
  .sub-title { font-size: 38px; }
  .sub-card { padding: 24px; min-height: 160px; }
}
