/* ═══════════════ Zeitblick Landingpage ═══════════════ */

/* Schriften selbst gehostet (fonts/, SIL OFL), damit beim Seitenaufruf keine
   IP-Adresse an Google geht. Variable Fonts: eine Datei deckt alle Stärken ab. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0a0b10;
  --bg-alt: #0e1017;
  --panel: #14161f;
  --panel-2: #1a1d29;
  --border: #262a3a;
  --text: #f1f2f8;
  --muted: #8b93a7;
  --accent: #7c5cff;
  --accent2: #4d7cfe;

  --cat-produktiv: #4d7cfe;
  --cat-design: #8b5cf6;
  --cat-lernen: #06b6d4;
  --cat-kommunikation: #22c55e;
  --cat-sozial: #ec4899;
  --cat-browsing: #f59e0b;
  --cat-gaming: #ef4444;
  --cat-unterhaltung: #a855f7;
  --cat-windows: #7891ab;

  --radius: 14px;
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

a { color: inherit; text-decoration: none; }

/* ── Buttons: durchgehend Pill-Form, an Rize angelehnt ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
/* helle, gefüllte Pille (Haupt-CTA, wie Rizes "Start Free Trial") */
.btn-pill-light {
  background: #fff;
  color: #0a0b10;
}
.btn-pill-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -8px #ffffff55; }
/* Umrandete Pille auf dunklem Grund (sekundäre CTA) */
.btn-pill-ghost {
  background: transparent;
  color: var(--text);
  border-color: #454b63;
}
.btn-pill-ghost:hover { border-color: #6b7290; background: #ffffff0a; }
/* Markenfarbige Pille (innerhalb heller Karten, z. B. Preise) */
.btn-pill-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 8px 24px -8px #7c5cff88;
}
.btn-pill-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px #7c5cffaa; }

.btn-large { padding: 15px 30px; font-size: 16px; }
.btn-small { padding: 9px 20px; font-size: 13.5px; }

/* ── Top-Banner ── */

.top-banner {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 44px;
  position: relative;
}
.top-banner-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.top-banner-badge {
  background: rgba(255, 255, 255, 0.22);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.top-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}
.top-banner-close:hover { color: #fff; }

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 11, 16, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }

.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 9px;
  color: #fff;
  font-size: 17px;
  flex: none;
}

.main-nav { display: flex; gap: 18px; margin-left: 8px; flex: 1; white-space: nowrap; }
.main-nav a { color: var(--muted); font-size: 13.5px; font-weight: 500; transition: color .15s; }
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lang-switch {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--muted);
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color .15s, border-color .15s;
}
.lang-switch:hover { color: #fff; border-color: #3a3f56; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; }

/* ── Hero (zentriert, Mockup darunter, wie Rize) ── */

.hero { position: relative; overflow: hidden; padding: 72px 0 0; }
.hero-glow {
  position: absolute;
  top: -260px; left: 50%;
  width: 1000px; height: 780px;
  transform: translateX(-50%);
  background: radial-gradient(circle, #7c5cff36 0%, #4d7cfe1c 40%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner-stack { position: relative; display: flex; flex-direction: column; align-items: center; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow.light { color: #cbd2ff; }

.hero h1 { font-size: 58px; letter-spacing: -1px; max-width: 820px; margin-bottom: 22px; }
.hero-sub { color: var(--muted); font-size: 17.5px; max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-actions.center { justify-content: center; }
.hero-note { color: var(--muted); font-size: 13px; margin-bottom: 34px; }

/* Chip-Reihe (wie Rizes "For teams / For individuals …") */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.chip-row.center { justify-content: center; }
.chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #363c56;
  color: #c7cbe0;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .15s, color .15s, background .15s;
}
.chip:hover { border-color: var(--accent2); color: #fff; background: #ffffff0a; }
.chip-light { border-color: #ffffff33; color: #ffffffcc; }
.chip-light:hover { border-color: #ffffff77; color: #fff; }

/* ── Hero-Visual (mini Wochen-/Statistik-Vorschau) ── */

.hero-visual { position: relative; width: 100%; max-width: 900px; margin: 0 auto; padding-bottom: 70px; }
.browser-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -24px #00000090;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.browser-url {
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  flex: 1;
}

.browser-body { padding: 26px; display: flex; gap: 26px; flex-wrap: wrap; }

.mini-week { display: flex; gap: 8px; flex: 1.3; min-width: 220px; }
.mini-day { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.mini-bar {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg-alt);
}
.mini-bar span { width: 100%; }
.mini-day b { font-size: 11px; color: var(--muted); font-weight: 500; }

.mini-stats { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: 1; min-width: 170px; }
.mini-donut {
  width: 116px; height: 116px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.mini-donut-hole {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.mini-donut-hole b { font-size: 13.5px; }
.mini-donut-hole span { font-size: 8.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

.mini-legend { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.mini-legend div { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--muted); }
.mini-legend b { margin-left: auto; color: var(--text); font-variant-numeric: tabular-nums; }
.mini-legend .dot { width: 8px; height: 8px; }

.visual-caption { font-size: 12px; color: var(--muted); margin-top: 14px; }
.visual-caption.center { text-align: center; }

/* ── Mini-Teaser-Leiste ── */

.teaser-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--panel); }
.teaser-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 0; flex-wrap: wrap; }
.teaser-inner .eyebrow { margin-bottom: 4px; }
.teaser-inner p { color: var(--muted); font-size: 14px; max-width: 560px; }

/* ── Trust-Leiste ── */

.trust-bar { border-bottom: 1px solid var(--border); background: var(--bg-alt); padding: 56px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.trust-grid b { display: block; font-family: var(--font-head); font-size: 30px; color: #fff; }
.trust-grid span { font-size: 13px; color: var(--muted); }

/* ── Founder-Zitat ── */

.quote-section { padding: 90px 0; }
.quote-section blockquote {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 760px;
  margin: 26px auto 34px;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-author div { text-align: left; }
.quote-author b { display: block; font-size: 14.5px; }
.quote-author span { font-size: 13px; color: var(--muted); }
.avatar-initial {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex: none;
}

/* ── Allgemeine Sections ── */

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 32px; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto 52px; }
#problem .section-title, #fuerdich .section-title, #roadmap .section-title, #preise .section-title { margin-bottom: 44px; }
.download-cta .section-sub { margin-bottom: 34px; }

/* ── Gestapelte Karten mit Nummer/Link (wie Rizes Problem/Solution) ── */

.stacked-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.stacked-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.stacked-num { display: block; font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; }
.stacked-card h3 { font-size: 19px; margin-bottom: 10px; }
.stacked-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.stacked-card:last-child p { margin-bottom: 0; }
.link-arrow { color: var(--accent2); font-size: 14px; font-weight: 600; }
.link-arrow:hover { color: #7fa2ff; }

.feature-grid { margin-top: 40px; }

/* ── Karten-Grids ── */

.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.feature { padding: 6px 4px; }
.feature-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ── Live-Vorschau (Kalender-Mockup) ── */

.preview-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px #00000090;
}
.cal-preview { display: flex; padding: 26px 26px 30px; gap: 12px; }
.cal-axis { position: relative; width: 42px; flex: none; height: 300px; }
.cal-axis span { position: absolute; font-size: 10.5px; color: var(--muted); transform: translateY(-50%); font-variant-numeric: tabular-nums; }
.cal-days { flex: 1; display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; height: 300px; }
.cal-col { position: relative; background: var(--bg-alt); border-radius: 6px; overflow: hidden; }
.cal-col-today { outline: 1.5px solid var(--accent); outline-offset: -1.5px; }
.blk {
  position: absolute;
  left: 3px; right: 3px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  color: #ffffffdd;
  padding: 3px 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ── Privatsphäre (eigener, farblich abgesetzter Block) ── */

.privacy-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 0%, #7c5cff2e 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, #4d7cfe26 0%, transparent 55%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 46px 0 40px; }
.privacy-card {
  background: #ffffff0d;
  border: 1px solid #ffffff22;
  border-radius: var(--radius);
  padding: 28px 26px;
}
.privacy-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: #ffffff1a;
  border: 1px solid #ffffff2a;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.privacy-card h3 { font-size: 16.5px; margin-bottom: 8px; color: #fff; }
.privacy-card p { color: #d7daf0; font-size: 14px; }

/* ── Roadmap ── */

.roadmap-card {
  background: var(--panel);
  border: 1px dashed #3a3f56;
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.roadmap-card h3 { font-size: 18px; margin: 10px 0 10px; }
.roadmap-card p { color: var(--muted); font-size: 14px; }
.badge-soon {
  display: inline-block;
  background: #7c5cff22;
  color: #b6a4ff;
  border: 1px solid #7c5cff44;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* ── Preise ── */

.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px #7c5cff33, 0 30px 70px -30px #7c5cff55;
  border-radius: 18px;
  padding: 36px 38px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.pricing-card h3 { font-size: 22px; margin: 14px 0 6px; }
.price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 4px; }
.price-amount { font-family: var(--font-head); font-size: 48px; font-weight: 700; }
.price-period { color: var(--muted); font-size: 15px; }
.price-note { color: var(--muted); font-size: 12.5px; margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-features li { font-size: 14px; color: #d7dae4; }

.waitlist-form { display: flex; gap: 8px; margin-bottom: 10px; }
.waitlist-form input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
}
.waitlist-form input:focus { outline: none; border-color: var(--accent); }
.waitlist-note { font-size: 11.5px; color: var(--muted); }

/* ── FAQ (schlanke Zeilen mit Chevron, wie Rize) ── */

.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 2px;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  flex: none;
  width: 18px; height: 18px;
  position: relative;
  transition: transform .2s;
}
.faq-item .chev::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p { color: var(--muted); font-size: 14.5px; padding: 0 2px 22px; max-width: 640px; }

/* ── Finale CTA ── */

.final-cta { padding: 110px 0 90px; text-align: center; }
.final-cta h2 { font-size: 38px; margin-bottom: 16px; letter-spacing: -0.5px; }
.final-cta p { color: var(--muted); margin-bottom: 32px; }
.final-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.final-links a { color: var(--muted); font-size: 13.5px; }
.final-links a:hover { color: var(--text); }

/* ── Footer ── */

.site-footer { border-top: 1px solid var(--border); padding: 56px 0 26px; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; margin-top: 10px; max-width: 220px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #c3c7dc; font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.footer-copy { color: #5b6070; font-size: 12.5px; border-top: 1px solid var(--border); padding-top: 22px; }

/* Schlanker Footer-Link-Streifen (Impressum/Datenschutz-Unterseiten) */
.footer-links-simple { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links-simple a { color: #c3c7dc; font-size: 13.5px; }
.footer-links-simple a:hover { color: #fff; }

/* ── Unterseiten (Impressum/Datenschutz) ── */

.subpage-main { padding: 60px 0 100px; }
.back-link { color: var(--accent2); font-size: 14px; display: inline-block; margin-bottom: 26px; }
.subpage-main h1 { font-size: 30px; margin-bottom: 30px; }
.subpage-main h2 { font-size: 18px; margin: 30px 0 10px; }
.subpage-main p, .subpage-main address { color: var(--muted); font-size: 14.5px; font-style: normal; }
.subpage-main p + p { margin-top: 12px; }
.subpage-main a:not(.btn) { color: var(--accent2); }
.subpage-main ol, .subpage-main ul { color: var(--muted); font-size: 14.5px; padding-left: 22px; margin-bottom: 18px; }
.subpage-main li { margin-bottom: 9px; line-height: 1.6; }
.subpage-main strong { color: #d7dae4; }
.subpage-main .btn { padding: 12px 26px; font-size: 15px; margin: 4px 0; }
.faq-item p a { color: var(--accent2); text-decoration: underline; text-underline-offset: 2px; }

/* ── Danke-Seite nach dem Kauf ── */

.ty-main { padding: 70px 0 100px; }
.container.ty-wrap { max-width: 760px; }
.ty-hero { text-align: center; margin-bottom: 40px; }
.ty-check {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  box-shadow: 0 0 0 8px #7c5cff1f, 0 18px 40px -12px #7c5cff88;
}
.ty-hero h1 { font-size: 36px; letter-spacing: -0.3px; margin-bottom: 14px; }
.ty-sub { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 560px; margin: 0 auto; }

.ty-download {
  background: var(--panel);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px #7c5cff33, 0 30px 70px -30px #7c5cff55;
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  margin-bottom: 56px;
}
.ty-download h2 { font-size: 22px; margin-bottom: 6px; }
.ty-meta { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; }

.ty-section-title { font-size: 20px; text-align: center; margin-bottom: 22px; }
.ty-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.ty-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.ty-num {
  flex: 0 0 34px;
  height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #7c5cff22;
  border: 1px solid #7c5cff55;
  color: #b6a4ff;
  font-weight: 700;
  font-size: 15px;
}
.ty-steps h3 { font-size: 16px; margin: 5px 0 6px; }
.ty-steps p, .ty-info p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.ty-steps strong, .ty-info strong { color: #d7dae4; }

.ty-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.ty-info { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.ty-info .feature-icon { margin-bottom: 14px; }
.ty-info h3 { font-size: 16px; margin-bottom: 8px; }
.ty-info a, .ty-back a { color: var(--accent2); }
.ty-back { text-align: center; font-size: 14px; }

/* Varianten für die Kündigen-Seite */
.ty-check.soft {
  background: var(--panel-2);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 8px #ffffff08;
  font-size: 32px;
}
.ty-info-grid.three { grid-template-columns: repeat(3, 1fr); }
.ty-help {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 36px;
}
.ty-help .feature-icon { flex: 0 0 46px; margin-bottom: 0; }
.ty-help h3 { font-size: 16px; margin: 4px 0 6px; }
.ty-help p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.ty-help a { color: var(--accent2); }

@media (max-width: 640px) {
  .ty-main { padding: 48px 0 80px; }
  .ty-hero h1 { font-size: 28px; }
  .ty-download { padding: 28px 18px; }
  .ty-info-grid, .ty-info-grid.three { grid-template-columns: 1fr; }
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero h1 { font-size: 42px; }
  .card-grid.three { grid-template-columns: 1fr 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }
}

@media (max-width: 720px) {
  .card-grid.three { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .quote-section blockquote { font-size: 21px; }
  .section { padding: 68px 0; }
  .privacy-section { padding: 70px 0; }
  .browser-body { flex-direction: column; }
  .cal-preview { overflow-x: auto; }
  .cal-axis { display: none; }
  .cal-days { min-width: 480px; }
  .waitlist-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .final-cta h2 { font-size: 28px; }
}

/* Menü aufgeklappt (mobil) */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 22px;
  gap: 16px;
}
