/* ============================================================
   Syncus — Marketing-Website
   Design-System abgeleitet aus der App (app/src/index.css):
   Archivo · 0-Radius · Hell #f3f2f2 · Text #201e1d
   Rot #ec3013 (Aktion) · Türkis #33b7a0 (Insel) · S/W = Betreuung
   ============================================================ */

/* ---------- Schriften (self-hosted, DSGVO-sicher) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-800-normal.woff2') format('woff2');
}

/* ---------- Token ---------- */
:root {
  --bg: #f3f2f2;
  --surface: #eae9e9;
  --card: #ecebeb;
  --ink: #201e1d;
  --ink-soft: #5f5a57;      /* 4.9:1 auf --bg */
  --line: #c5c2c0;
  --line-strong: #201e1d;
  --red: #ec3013;
  --red-dark: #c9280e;
  --coral: #e15b47;
  --island: #33b7a0;
  --island-deep: #17705f;   /* für Text auf hellem Grund, 5.3:1 (AA) */
  --island-soft: #e3f4f0;
  --white: #ffffff;

  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1080px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* schlägt display:inline-flex der Buttons */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; font-weight: 800; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Kicker — das Eyebrow-Muster der App */
.kicker {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; margin: 0 0 14px;
}
.kicker--red { color: var(--red-dark); }
.kicker--muted { color: var(--ink-soft); }
.kicker--island { color: var(--island-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 16px 26px; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px;
}
.btn--primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--primary:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--red { background: var(--red-dark); color: #fff; border-color: var(--red-dark); font-size: 17px; }
.btn--red:hover { background: #a51f08; border-color: #a51f08; }
.btn .btn-sub { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.btn--store { flex-direction: column; gap: 2px; line-height: 1.2; min-width: 220px; }
.btn[aria-disabled="true"] { cursor: default; }
.btn[aria-disabled="true"]:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243, 242, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 34px; height: auto; flex: none; }
.brand__name { font-weight: 800; font-size: 15px; letter-spacing: 0.3em; }
.site-nav { display: none; }
.site-nav a {
  text-decoration: none; font-size: 14px; font-weight: 700; padding: 8px 12px;
}
.site-nav a:hover { color: var(--red-dark); }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 12px 10px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--bg);
}
.nav-open .mobile-nav { display: block; }
.mobile-nav a {
  display: block; padding: 16px var(--pad); text-decoration: none;
  font-weight: 700; border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) {
  .site-nav { display: flex; gap: 4px; }
  .header-cta { display: inline-flex; padding: 10px 18px; font-size: 14px; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__inner {
  display: grid; gap: 48px; align-items: center;
  padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(24px, 5vw, 72px);
}
.hero h1 {
  font-size: clamp(42px, 7.5vw, 76px); line-height: 0.98; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero__lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 34em; margin-bottom: 30px; }
.hero__lead strong { color: var(--ink); }
.hero__lead .island-word { color: var(--island-deep); font-weight: 800; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 14px; }
.hero__note { font-size: 13px; color: var(--ink-soft); margin: 0; }
.hero__note a { font-weight: 700; }
.hero__phone { margin: 0 auto; }
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; }
  .hero__phone { margin: 0 0 0 auto; }
}

/* ---------- Sektionen ---------- */
.section { padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(56px, 9vw, 110px); }
.section--line { border-top: 1px solid var(--line); }
.section--card { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding-top: clamp(44px, 7vw, 76px); padding-bottom: clamp(44px, 7vw, 76px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--wide { max-width: 840px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 48px); }
.section-head p { color: var(--ink-soft); font-size: clamp(16px, 1.9vw, 19px); margin: 0; }
.section-head p em { font-style: normal; color: var(--ink); font-weight: 700; }

/* Problem-Zitate */
.quotes { display: grid; gap: 14px; }
@media (min-width: 700px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  border: 1px solid var(--line); background: var(--card); padding: 26px 24px;
  position: relative;
}
.quote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--ink);
}
.quote--red::before { background: var(--red); }
.quote--island::before { background: var(--island); }
.quote p { font-size: 18px; font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; margin: 0 0 8px; }
.quote span { font-size: 13px; color: var(--ink-soft); }
.problem-bridge { margin-top: clamp(32px, 5vw, 48px); max-width: 720px; }
.problem-bridge p { font-size: clamp(19px, 2.6vw, 24px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; margin: 0; }
.problem-bridge .island-word { color: var(--island-deep); }

/* Drei Säulen */
.pillars { display: grid; gap: 14px; }
@media (min-width: 880px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { border: 1px solid var(--line); background: var(--bg); padding: 28px 24px; }
.pillar__num {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  padding: 4px 8px; margin-bottom: 16px; border: 1px solid var(--ink);
}
.pillar h3 { font-size: 21px; margin-bottom: 8px; }
.pillar p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* Feature-Blöcke */
.feature {
  display: grid; gap: 40px; align-items: center;
  padding-top: clamp(48px, 7vw, 88px);
}
.feature:first-of-type { padding-top: 0; }
.feature h3 { font-size: clamp(26px, 3.6vw, 38px); }
.feature__text > p { color: var(--ink-soft); max-width: 30em; }
.feature__benefit {
  border-left: 4px solid var(--island); background: var(--island-soft);
  padding: 14px 18px; font-size: 15px; margin-top: 18px; max-width: 30em;
}
.feature__benefit--red { border-left-color: var(--red); background: #fdeeeb; }
.feature__benefit strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 4px; }
.feature__phone { margin: 0 auto; }
@media (min-width: 880px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature__phone { margin: 0 auto; }
  .feature--flip .feature__text { order: 2; }
  .feature--flip .feature__phone { order: 1; }
}
.feature ul.checks { list-style: none; padding: 0; margin: 0 0 6px; }
.feature ul.checks li {
  padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 16px;
}
.feature ul.checks li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; background: var(--ink);
}
.feature ul.checks li.check-island::before { background: var(--island); }
.feature ul.checks li.check-red::before { background: var(--red); }

/* Außerdem-Leiste */
.extras { margin-top: clamp(48px, 7vw, 80px); }
.extras__title {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-soft); margin: 0 0 14px;
}
.extras__grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .extras__grid { grid-template-columns: repeat(3, 1fr); } }
.extra { background: var(--bg); padding: 22px 20px; }
.extra h4 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.extra p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ------------------------------------------------------------
   Insel-Abschnitt — der wichtigste Block der Seite.
   Türkis bleibt reserviert: es markiert ausschließlich die Insel.
   ------------------------------------------------------------ */
.island-section {
  border-top: 3px solid var(--island);
  border-bottom: 1px solid var(--line);
  background: var(--island-soft);
}
.island-section .section-head h2 { color: var(--ink); }

/* Das Prinzip als Diagramm: zwei Zeilen, ihre Überschneidung ist die Insel */
.overlay {
  margin: 0 0 clamp(28px, 4vw, 44px);
  border: 2px solid var(--ink); background: var(--bg);
  padding: clamp(20px, 3.5vw, 32px);
}
.overlay__title {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink-soft); margin-bottom: 20px;
}
.overlay__row { display: grid; gap: 6px; margin-bottom: 14px; }
.overlay__row--result { margin-bottom: 0; border-top: 1px solid var(--line); padding-top: 16px; }
.overlay__label { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.overlay__label--strong { color: var(--island-deep); font-weight: 800; }
.overlay__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.ov {
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; border: 1px solid var(--line); background: var(--bg);
  font-size: 12px; font-weight: 800; color: var(--ink-soft);
}
.ov--a { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.ov--b { background: var(--card); border-color: var(--ink); color: var(--ink); }
.ov--island { background: var(--island); border-color: var(--island-deep); color: var(--ink); }
.overlay__note {
  margin: 18px 0 0; font-size: 14px; color: var(--ink-soft); max-width: 46em;
}
@media (min-width: 700px) {
  .overlay__row { grid-template-columns: 190px 1fr; align-items: center; gap: 18px; }
  .overlay__label { text-align: right; }
}

.island-grid { display: grid; gap: 14px; }
@media (min-width: 880px) { .island-grid { grid-template-columns: repeat(3, 1fr); } }
.island-card { border: 1px solid var(--line); background: var(--bg); padding: 26px 24px; }
.island-card__num {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  padding: 4px 8px; margin-bottom: 14px; border: 1px solid var(--island-deep); color: var(--island-deep);
}
.island-card h3 { font-size: 20px; margin-bottom: 8px; }
.island-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.island-section .feature { padding-top: clamp(48px, 7vw, 88px); }
/* Auf dem türkisfarbenen Grund braucht der Alltags-Kasten eine eigene Fläche */
.island-section .feature__benefit { background: var(--bg); }

/* Zielgruppen */
.audiences { display: grid; gap: 14px; }
@media (min-width: 700px) { .audiences { grid-template-columns: repeat(2, 1fr); } }
.audience { border: 1px solid var(--line); background: var(--card); padding: 28px 24px; }
.audience h3 { font-size: 20px; margin-bottom: 10px; }
.audience p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.audience .tag {
  display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; padding: 4px 8px; margin-bottom: 14px; color: #fff; background: var(--ink);
}
.audience .tag--island { background: #156353; }
.audience .tag--red { background: var(--red-dark); }

/* Marke / Emotion */
.brandstory { text-align: center; }
.brandstory__logo { width: clamp(160px, 24vw, 240px); margin: 0 auto clamp(24px, 4vw, 40px); }
.brandstory h2 { font-size: clamp(30px, 5vw, 52px); max-width: 16em; margin-left: auto; margin-right: auto; }
.brandstory p { max-width: 38em; margin-left: auto; margin-right: auto; color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px); }
.brandstory .statement {
  margin-top: clamp(28px, 4vw, 44px); font-size: clamp(20px, 3vw, 28px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.25;
}

/* Schritte */
.steps { display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border: 1px solid var(--line); background: var(--bg); padding: 28px 24px; }
.step__num {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--bg); font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
.step h3 { font-size: 20px; }
.step p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.step--island { border-color: var(--island); }
.step__num--island { background: var(--island); color: var(--ink); }
.invite-box {
  margin-top: clamp(32px, 5vw, 48px); border: 2px solid var(--ink); background: var(--card);
  padding: clamp(24px, 4vw, 36px); display: grid; gap: 18px;
}
@media (min-width: 880px) { .invite-box { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }
.invite-box h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 8px; }
.invite-box p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.invite-box p strong { color: var(--ink); }
.invite-box__warn { font-size: 13px !important; border-left: 4px solid var(--red); padding-left: 12px; margin-top: 12px !important; }

/* Vertrauen */
.trust { display: grid; gap: 14px; }
@media (min-width: 700px) { .trust { grid-template-columns: repeat(2, 1fr); } }
.trust-item { border: 1px solid var(--line); background: var(--bg); padding: 26px 24px; }
.trust-item h3 { font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.trust-item h3 svg { flex: none; }
.trust-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.trust-note { margin: 22px 0 0; font-size: 14px; color: var(--ink-soft); max-width: 46em; }
.trust-note a { font-weight: 700; }

/* FAQ */
.faq { max-width: 780px; }
.faq details { border: 1px solid var(--line); background: var(--bg); margin-bottom: 10px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 22px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 24px; font-weight: 400; line-height: 1; color: var(--red-dark); flex: none;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 22px 22px; color: var(--ink-soft); font-size: 15.5px; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* Abschluss-CTA */
.final-cta { background: var(--island); border-top: 1px solid var(--line); }
.final-cta__inner { text-align: center; padding-top: clamp(64px, 9vw, 110px); padding-bottom: clamp(64px, 9vw, 110px); }
.final-cta .kicker { color: #0c4f43; }
.final-cta h2 { color: var(--ink); font-size: clamp(32px, 5.5vw, 56px); max-width: 14em; margin: 0 auto 16px; }
.final-cta p { color: #123f37; max-width: 32em; margin: 0 auto 32px; font-size: clamp(16px, 2vw, 19px); }
.final-cta .btn--primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.final-cta .btn--primary:hover { background: #000; }
.final-cta .btn:focus-visible { outline-color: var(--ink); }
.final-cta__note { font-size: 14px !important; margin: 12px auto 0 !important; color: #123f37; }
.final-cta__status {
  border: 2px solid var(--ink); background: rgba(255, 255, 255, 0.55);
  padding: clamp(20px, 3vw, 28px); max-width: 34em; margin: 0 auto; text-align: left;
}
.final-cta__status p { margin: 0; color: var(--ink); }
.final-cta__status strong { font-weight: 800; }
.final-cta__status .final-cta__note { text-align: left; margin-left: 0 !important; }

/* Footer */
.site-footer { background: var(--ink); color: #cfc9c6; font-size: 14px; }
.site-footer__inner { padding-top: 48px; padding-bottom: 40px; display: grid; gap: 32px; }
@media (min-width: 880px) { .site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer .brand__name { color: #fff; }
.site-footer p { margin: 12px 0 0; max-width: 26em; }
.site-footer h3 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #cfc9c6; text-decoration: none; }
.site-footer li a { display: inline-block; padding: 5px 0; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom {
  border-top: 1px solid #3a3836; padding-top: 20px; padding-bottom: 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: #9a938f;
}

/* ---------- Logo-Animation: zwei Leben finden zueinander ---------- */
.brandstory__logo--animated .bs-left,
.brandstory__logo--animated .bs-right,
.brandstory__logo--animated .bs-lens {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease 0.75s;
}
.brandstory.reveal:not(.is-visible) .bs-left { transform: translateX(-26px); }
.brandstory.reveal:not(.is-visible) .bs-right { transform: translateX(26px); }
.brandstory.reveal:not(.is-visible) .bs-lens { opacity: 0; }
.brandstory.is-visible .bs-left,
.brandstory.is-visible .bs-right { transform: translateX(0); }
.brandstory.is-visible .bs-lens { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .brandstory .bs-left, .brandstory .bs-right { transform: none !important; }
  .brandstory .bs-lens { opacity: 1 !important; }
}

/* ---------- Reveal-Animation (dezent) ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   iPhone-Mockups — Screens 1:1 aus der echten App nachgebaut
   (HomePage.jsx, CalendarPage.jsx, SyncPage.jsx, SoundboardPage.jsx)
   ============================================================ */
.phone {
  width: 300px; background: #111; border-radius: 44px; padding: 10px;
  box-shadow: 0 24px 60px rgba(32, 30, 29, 0.28), 0 4px 14px rgba(32, 30, 29, 0.18);
  flex: none;
}
.phone--lg { width: 320px; }
.phone__screen {
  background: var(--bg); border-radius: 34px; overflow: hidden; position: relative;
  height: 610px; display: flex; flex-direction: column;
}
.phone--lg .phone__screen { height: 650px; }
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; background: #111; border-radius: 12px; z-index: 5;
}
.app { padding: 44px 16px 0; flex: 1; overflow: hidden; display: flex; flex-direction: column; font-size: 13px; }
.app__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.app__logo { font-weight: 800; font-size: 10px; letter-spacing: 0.3em; }
.app__header-right { display: flex; gap: 8px; align-items: center; }
.app__avatar {
  width: 22px; height: 22px; background: var(--ink); color: var(--bg);
  font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.app__kicker { font-size: 8.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red-dark); margin: 0 0 4px; }
.app__kicker--muted { color: var(--ink-soft); display: flex; justify-content: space-between; }
.app__kicker--muted .kw { letter-spacing: 0.05em; }
.app .app__title { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 4px; line-height: 1.05; }
.app__sub { font-size: 11px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.45; }
.app__divider { border-top: 1px solid var(--line); margin: 2px 0 12px; }

/* Wochenstreifen (WeekStrip.jsx) */
.wstrip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.wstrip__day { text-align: center; }
.wstrip__wd { display: block; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-soft); margin-bottom: 2px; }
.wstrip__num { display: block; font-size: 11px; font-weight: 800; margin-bottom: 3px; }
.wstrip__day--today .wstrip__wd, .wstrip__day--today .wstrip__num { color: var(--red); }
.wstrip__cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--line); }
.wstrip__cell--me { background: var(--ink); border-color: var(--ink); }
.wstrip__cell--island { background: var(--island); border-color: var(--island); color: #fff; }
.wstrip__cell--handover { border: 1px solid var(--line); background: linear-gradient(135deg, var(--bg) 47.5%, var(--red) 47.5%, var(--red) 52.5%, var(--ink) 52.5%); }
.wstrip__cell svg { width: 11px; height: 11px; }

/* Legende */
.applegend { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 8.5px; font-weight: 700; margin-bottom: 12px; }
.applegend span { display: inline-flex; align-items: center; gap: 5px; }
.applegend i { width: 8px; height: 8px; flex: none; }
.applegend .sw-me { background: var(--ink); }
.applegend .sw-other { background: var(--bg); border: 1px solid var(--line); }
.applegend .sw-island { background: var(--island); }

/* Insel-Karte (LoveDayCard.jsx) */
.lovecard { background: var(--island); color: #fff; padding: 14px; margin-bottom: 8px; }
.lovecard__kicker { display: flex; align-items: center; gap: 5px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; margin: 0 0 6px; }
.lovecard__kicker svg { width: 10px; height: 10px; }
.lovecard h5 { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; margin: 0; line-height: 1.15; }
.lovecard__sub { font-size: 10.5px; opacity: 0.92; margin: 3px 0 0; }
.lovecard__link { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.3); margin-top: 10px; padding-top: 8px; font-size: 10.5px; font-weight: 800; }

/* Wechsel-Karte (NextSwitchCard.jsx) */
.switchcard { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: var(--card); padding: 11px 12px; }
.switchcard svg { width: 14px; height: 14px; flex: none; }
.switchcard b { display: block; font-size: 11px; }
.switchcard small { display: block; font-size: 9.5px; color: var(--ink-soft); }

/* Bottom-Nav (Layout.jsx) */
.appnav { margin-top: auto; background: var(--card); border-top: 1px solid var(--ink); display: flex; justify-content: space-around; padding: 8px 0 18px; }
.appnav span { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 6.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.appnav svg { width: 15px; height: 15px; }
.appnav .active { color: var(--red); }

/* Kalender (CalendarPage.jsx / DayCell.jsx) */
.cal__month { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal__month b { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.cal__month span { font-size: 14px; color: var(--ink-soft); padding: 0 6px; }
.cal__wd { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 4px; }
.cal__wd span { text-align: center; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__d {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative;
  font-size: 9.5px; font-weight: 800; background: var(--card);
}
.cal__d--out { background: var(--surface); color: #a39e9b; }
.cal__d--me { background: var(--ink); color: var(--bg); }
.cal__d--island { box-shadow: inset 0 0 0 2px var(--island); }
.cal__d--today { box-shadow: inset 0 0 0 2px var(--ink); }
.cal__d--me.cal__d--island { box-shadow: inset 0 0 0 2px var(--island); }
.cal__d .ho {
  position: absolute; top: 1px; right: 1px; width: 9px; height: 9px; background: var(--ink);
  color: var(--bg); display: flex; align-items: center; justify-content: center;
}
.cal__d--me .ho { background: var(--bg); color: var(--ink); }
.cal__d .ho svg { width: 6px; height: 6px; }
.cal__d .palm { position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%); color: var(--island-deep); }
.cal__d--me .palm { color: var(--island); }
.cal__d .palm svg { width: 8px; height: 8px; }
.cal__hint { font-size: 9px; color: var(--ink-soft); margin: 10px 0 0; }

/* Insel-Seite (SyncPage.jsx) */
.sync__search { display: flex; gap: 4px; margin-bottom: 10px; }
.sync__search input {
  flex: 1; height: 32px; border: 1px solid var(--line); background: var(--card);
  font-family: var(--font); font-size: 10px; font-weight: 600; padding: 0 8px; color: var(--ink-soft);
}
.sync__search b { height: 32px; padding: 0 12px; background: var(--red); color: #fff; font-size: 9px; font-weight: 800; display: flex; align-items: center; }
.sync__chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--island); color: #fff;
  border: 1px solid var(--island); padding: 6px 9px; font-size: 8.5px; font-weight: 800; margin-bottom: 12px;
}
.sync__chip svg { width: 10px; height: 10px; }
.sync__chip small { font-weight: 600; opacity: 0.85; }
.sync__prefs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.sync__prefs span { background: var(--red); color: #fff; font-size: 8.5px; font-weight: 800; padding: 4px 7px; }
.eventcard { border: 1px solid var(--line); background: var(--card); padding: 10px 11px; margin-bottom: 6px; position: relative; }
.eventcard--featured { border: 2px solid var(--island); }
.eventcard .badge {
  position: absolute; top: -1px; right: -1px; background: var(--island); color: #fff;
  font-size: 7px; font-weight: 800; letter-spacing: 0.12em; padding: 3px 6px;
}
.eventcard b { display: block; font-size: 11px; letter-spacing: -0.01em; margin-bottom: 2px; }
.eventcard small { display: block; font-size: 9px; color: var(--ink-soft); }
.eventcard .heart { position: absolute; bottom: 8px; right: 9px; color: var(--red); }
.eventcard .heart svg { width: 11px; height: 11px; }

/* Kassetten (SoundboardPage.jsx / SoundButton.jsx) */
.tapes { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tape {
  border: 1px solid var(--line); background: var(--card); min-height: 96px; padding: 9px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tape--new {
  border: 2px dashed var(--red); color: var(--red-dark); background: transparent;
  align-items: center; justify-content: center; gap: 6px; text-align: center;
  font-size: 9.5px; font-weight: 800;
}
.tape--new svg { width: 16px; height: 16px; }
.tape__label { font-size: 11px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; }
.tape__meta { font-size: 8px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; }
.tape--playing { border-color: var(--red); }
.tape--playing .cassette { color: var(--red); }
.cassette { color: var(--ink); }
.cassette svg { width: 34px; height: 15px; }

/* Mockup-Beschriftung */
.phone-caption { text-align: center; font-size: 12px; color: var(--ink-soft); margin: 14px auto 0; max-width: 300px; }

/* ---------- Legal-Seiten ---------- */
.legal { max-width: 760px; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 100px); }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 10px; }
.legal .legal__status {
  border: 2px solid var(--red); background: #fdeeeb; padding: 14px 18px; font-size: 14px; margin: 22px 0 34px;
}
.legal h2 { font-size: 22px; margin-top: 40px; }
.legal h3 { font-size: 17px; margin-top: 28px; }
.legal p, .legal li { font-size: 15.5px; color: #3d3936; }
.legal table { border-collapse: collapse; width: 100%; font-size: 13.5px; margin: 16px 0; }
.legal th, .legal td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.legal th { background: var(--surface); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.legal .placeholder { background: #fff3cd; padding: 0 4px; font-weight: 700; }
.legal .back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 700; }
