/* ============================================================
   AWHI — Design Tokens
   Colors extracted directly from the brand logo (11-favicon-512.png).
   Terracotta reserved for large text/icons/accents only — at small
   sizes it falls under 4.5:1 contrast on cream; terracotta-deep is
   the AA-safe variant for buttons and body-size links.
   No gradients anywhere per brand rule ("Kein Gradient").
   ============================================================ */

:root {
  /* Color */
  --cream: #FBF6F1;
  --cream-alt: #F2E9DF;
  --ink: #2A211C;
  --ink-soft: #5B4E45;
  --ink-faint: #8A7C70;
  --terracotta: #C2704C;
  --terracotta-deep: #A85D3D;
  --terracotta-tint: #EFDCCD;
  --slate: #46586A;
  --slate-deep: #34424E;
  --slate-tint: #DDE4E9;
  --white: #FFFFFF;
  --line: rgba(42, 33, 28, 0.12);

  /* Type — display/labels: Inter (SF-like, refined) · body: DM Sans (warm) */
  --font-display: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'DM Sans', sans-serif;

  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-h1: clamp(2.5rem, 5.6vw, 4.75rem);
  --fs-h2: clamp(1.85rem, 3.6vw, 2.85rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 1.85rem);
  --fs-lead: clamp(1.125rem, 1.6vw, 1.375rem);

  /* Spacing (8pt rhythm) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;
  --space-3xl: 9rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 300ms;
  --dur-slow: 600ms;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* Partner/B2B page swaps its accent to slate */
body.theme-partner {
  --accent: var(--slate);
  --accent-deep: var(--slate-deep);
  --accent-tint: var(--slate-tint);
  --accent-hover: #253039;
}
body:not(.theme-partner) {
  --accent: var(--terracotta);
  --accent-deep: var(--terracotta-deep);
  --accent-tint: var(--terracotta-tint);
  --accent-hover: #8C4A2F;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 var(--space-sm);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: var(--fs-h1);
}
h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--space-sm); max-width: 62ch; }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; }

/* Editorial kicker label — plain uppercase type, no chip */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

section { padding-block: var(--space-2xl); position: relative; }
@media (max-width: 768px) {
  section { padding-block: var(--space-xl); }
}

.section-alt { background: var(--cream-alt); }

/* Focus visibility — never remove */
:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce motion-safe skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75em 1.25em;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.9em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  touch-action: manipulation;
}
.btn:active { transform: scale(0.98); }

/* Compact nav button */
.btn-nav {
  min-height: 44px;
  font-size: 0.9rem;
  padding: 0.55em 1.4em;
}

/* Warm brand hovers (deeper accent instead of black) */
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--accent-deep); color: var(--cream); }

.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); background: var(--accent-tint); }

.btn-accent { background: var(--accent-deep); color: var(--cream); }
.btn-accent:hover { background: var(--accent-hover); color: var(--cream); }

/* ============================================================
   Nav
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: var(--space-sm);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled { border-color: var(--line); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  padding-block: 0.25em;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--accent-deep);
  transition: right var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Below ~900px the header CTA button is hidden so the chapter links still fit */
@media (max-width: 900px) {
  .nav-cta .btn { display: none; }
}

/* Kuchen-/Hamburger-Menü nur auf mobil (<640px); darüber immer die Kapitel */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--line);
    gap: var(--space-md);
  }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: calc(var(--space-3xl) + 2rem);
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: var(--space-xl);
}
.hero-visual {
  position: absolute;
  top: -8%;
  right: -12%;
  width: min(46vw, 620px);
  opacity: 0.9;
  pointer-events: none;
}
.hero-visual img { width: 100%; }
.hero-copy { position: relative; z-index: 1; max-width: 42rem; }
.hero-copy .lead { margin-top: var(--space-md); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.hero-subline-accent { color: var(--accent-deep); font-style: italic; }

@media (max-width: 768px) {
  .hero-visual { width: 60vw; top: 4%; right: -18%; opacity: 0.55; }
}

/* ============================================================
   Cards / Grid
   ============================================================ */
.card {
  background: var(--white);
  border-radius: 24px;
  padding: var(--space-lg);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(42,33,28,0.04), 0 12px 34px -22px rgba(42,33,28,0.22);
}
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   Founder story
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}
.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 28px;
  display: block;
}
/* Floating badge over the photo (reference style) */
.founder-badge {
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: -22px;
  background: var(--white);
  border-radius: 18px;
  padding: 0.9em 1.2em;
  box-shadow: 0 18px 40px -18px rgba(42,33,28,0.4);
  display: flex;
  align-items: center;
  gap: 0.85em;
  max-width: 78%;
}
.founder-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.founder-badge .badge-icon svg { width: 20px; height: 20px; }
.founder-badge .badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.1;
}
.founder-badge .badge-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.25;
}
@media (max-width: 900px) {
  .founder-badge { left: 12px; bottom: -18px; max-width: 70%; padding: 0.75em 1em; }
  .founder-badge .badge-num { font-size: 1rem; }
  .founder-badge .badge-icon { width: 38px; height: 38px; }
}
.pull-quote {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--accent-deep);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}
.founder-signature {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--ink-faint);
}

/* ============================================================
   Recovery Journey Timeline
   ============================================================ */
.journey-track {
  position: relative;
  margin-top: var(--space-2xl);
}
.journey-track::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: var(--line);
}
@media (min-width: 901px) {
  .journey-track::before { left: 50%; transform: translateX(-50%); }
}
.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  padding-block: var(--space-md);
}
@media (min-width: 901px) {
  .journey-item {
    grid-template-columns: 1fr 56px 1fr;
    align-items: start;
  }
  .journey-item:nth-child(even) .journey-content { grid-column: 1; text-align: right; }
  .journey-item:nth-child(even) .journey-marker { grid-column: 2; }
  .journey-item:nth-child(odd) .journey-content { grid-column: 3; }
  .journey-item:nth-child(odd) .journey-marker { grid-column: 2; }
  .journey-item:nth-child(odd)::after,
  .journey-item:nth-child(even)::after { content: none; }
}
.journey-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px dashed var(--accent-deep);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
}
.journey-content h3 { font-size: 1.3rem; margin-bottom: 0.3em; }
.journey-content .journey-phase-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.4em;
}
.journey-content p { color: var(--ink-soft); }
@media (max-width: 900px) {
  .journey-item:nth-child(even) .journey-content,
  .journey-item:nth-child(odd) .journey-content { text-align: left; }
}

/* ============================================================
   Values grid
   ============================================================ */
.value-card {
  background: var(--cream-alt);
  border-radius: 24px;
  padding: var(--space-lg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(42,33,28,0.4); }
.value-card .value-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.value-card .value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }
.value-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; }

/* ============================================================
   Newsletter / Form
   ============================================================ */
.signup-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) + 6px);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}
.signup-panel h2 { color: var(--cream); }
.signup-panel .lead { color: rgba(251,246,241,0.78); margin-inline: auto; }
.eyebrow-on-dark { color: var(--cream); }

.signup-form {
  display: flex;
  gap: var(--space-xs);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.signup-form input[type="email"] {
  flex: 1 1 260px;
  min-height: 48px;
  padding: 0 1.1em;
  border-radius: 100px;
  border: 1px solid rgba(251,246,241,0.25);
  background: rgba(251,246,241,0.06);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.signup-form input[type="email"]::placeholder { color: rgba(251,246,241,0.5); }
.signup-form input[type="email"]:focus-visible { outline-color: var(--accent); }
.form-note { font-size: 0.8rem; color: rgba(251,246,241,0.55); margin-top: var(--space-sm); }
.form-feedback {
  margin-top: var(--space-sm);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  display: none;
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-error { color: #E8A796; }
.form-feedback.is-success { color: #9FD8B8; }

/* Standalone (non-dark) form variant, e.g. contact on partner page */
.form-light input, .form-light textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.9em 1.1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.form-light textarea { min-height: 120px; resize: vertical; }
.form-light label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.4em;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-block: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.footer-grid h4 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6em; }
.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--accent-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ============================================================
   Utility / reveal animation hooks (GSAP toggles these via JS,
   CSS class is the reduced-motion-safe fallback)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); }
.js-ready .reveal { transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.no-js .reveal, .reduced-motion .reveal { opacity: 1; transform: none; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-content h2 { font-size: 1.4rem; font-family: var(--font-ui); margin-top: var(--space-xl); }
.legal-content h3 { font-size: 1.1rem; font-family: var(--font-ui); }
.legal-content p, .legal-content li { color: var(--ink-soft); max-width: 72ch; }
.legal-content .placeholder {
  background: var(--terracotta-tint);
  padding: 0.05em 0.4em;
  border-radius: 4px;
  color: var(--ink);
  font-weight: 600;
}
.legal-notice {
  background: var(--cream-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-xl);
}

/* ============================================================
   Editorial system + brand "arc" motif (added in redesign)
   ============================================================ */

/* Hand-drawn terracotta underline under a keyword (logo-arc motif) */
.swoosh { position: relative; display: inline-block; white-space: nowrap; }
.swoosh > svg {
  position: absolute;
  left: -2%;
  bottom: -0.22em;
  width: 104%;
  height: 0.42em;
  overflow: visible;
  color: var(--accent);
  pointer-events: none;
}
.swoosh > svg path {
  stroke: currentColor;
  stroke-width: 7;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.js-ready .swoosh.is-drawn > svg path { stroke-dashoffset: 0; transition: stroke-dashoffset 1s var(--ease-out) 0.15s; }
.reduced-motion .swoosh > svg path, .no-js .swoosh > svg path { stroke-dashoffset: 0; }

/* Big faded editorial index numeral */
.section-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  color: var(--cream-alt);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: var(--space-sm);
  user-select: none;
}

/* Large decorative arc line, echoes the logo curl */
.arc-deco {
  position: absolute;
  color: var(--accent-tint);
  pointer-events: none;
  z-index: 0;
}
.arc-deco svg { display: block; width: 100%; height: 100%; }
.arc-deco svg path { fill: none; stroke: currentColor; }

/* ---- Home hero (fills the viewport) ---- */
.hero-home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--space-3xl) + 1.5rem);
  padding-bottom: calc(var(--space-3xl) + 1rem);
  position: relative;
  overflow: clip;
}
.hero-home .hero-container { width: 100%; }
/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: var(--space-lg);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
  animation: bob 1.9s ease-in-out infinite;
}
.hero-scroll-arrow svg { width: 18px; height: 18px; }
.hero-scroll:hover .hero-scroll-arrow { background: var(--accent-tint); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-arrow { animation: none; } }
@media (max-height: 680px) {
  .hero-home { min-height: none; }
  .hero-scroll { display: none; }
}
.hero-home .hero-arc {
  top: -10%;
  right: -6%;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
}
.hero-home .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-home .eyebrow { margin-bottom: var(--space-lg); }
.hero-home h1 { margin: 0 0 var(--space-lg); }
.hero-home .hero-lead {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 var(--space-2xl);
  line-height: 1.55;
}
.hero-home .hero-actions { margin-top: 0; }
@media (max-width: 768px) {
  .hero-home .hero-inner { max-width: none; }
  .hero-home .hero-arc { top: -4%; right: -24%; width: 70vw; height: 70vw; opacity: 0.7; }
}
@media (max-width: 520px) {
  .hero-home h1 { font-size: 1.7rem; line-height: 1.1; }
}

/* ---- Generic editorial two-column (narrow label / wide body) ---- */
.editorial {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: var(--space-2xl);
  align-items: start;
}
.editorial .editorial-aside { position: relative; }
.editorial h2 { margin-bottom: var(--space-md); }
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* Oversized statement (DM Sans, per H1-only-Montserrat rule) */
.statement {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0;
}

/* ---- Platform pillars: editorial hairline list (not card grid) ---- */
.pillars { margin-top: var(--space-xl); border-top: 1px solid var(--line); }
.pillar {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: var(--space-lg);
  align-items: baseline;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pillar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent-deep);
  letter-spacing: -0.02em;
}
.pillar-body h3 { margin-bottom: 0.35em; font-size: 1.35rem; }
.pillar-body p { color: var(--ink-soft); margin: 0; max-width: 52ch; }
.pillar-tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 700px) {
  .pillar { grid-template-columns: 3rem 1fr; }
  .pillar-tag { grid-column: 2; align-self: start; }
}

/* ---- Compact phase strip (Recovery Journey, condensed) ---- */
.phase-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}
.phase-chip {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.5em 1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.phase-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-deep); flex: none;
}

/* ---- Founder (compact) ---- */
.founder-compact {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.founder-compact .founder-photo { aspect-ratio: 1 / 1; max-width: 300px; }
.founder-compact .founder-photo img { border-radius: 24px; object-position: 50% 38%; }
.founder-compact .founder-photo .arc-frame {
  position: absolute;
  inset: -14px -14px auto auto;
  width: 90px; height: 90px;
  color: var(--accent);
  z-index: -1;
}
.founder-compact .founder-photo .arc-frame svg { width: 100%; height: 100%; }
.founder-quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.founder-name {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--space-md);
}
.founder-name span { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.9rem; }
@media (max-width: 720px) {
  .founder-compact { grid-template-columns: 1fr; gap: var(--space-lg); }
  .founder-compact .founder-photo { max-width: 220px; }
}

/* ---- Newsletter band in brand color (early + repeat CTA) ---- */
.cta-band {
  background: var(--accent-deep);
  color: var(--cream);
  border-radius: 32px;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.cta-band .arc-deco { color: rgba(251,246,241,0.12); top: -30%; right: -6%; width: 380px; height: 380px; }
.cta-band-inner { position: relative; z-index: 1; max-width: 40ch; }
.cta-band.center .cta-band-inner { max-width: 46ch; margin-inline: auto; text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(251,246,241,0.82); }
.cta-band .signup-form { margin-left: 0; }
.cta-band.center .signup-form { margin-inline: auto; }
.cta-band .signup-form input[type="email"] {
  border-color: rgba(251,246,241,0.3);
  background: rgba(251,246,241,0.12);
}
.cta-band .btn-onbrand { background: var(--cream); color: var(--accent-deep); }
.cta-band .btn-onbrand:hover { background: var(--cream-alt); color: var(--accent-hover); }
.cta-band .form-note { color: rgba(251,246,241,0.6); }
.cta-band .form-feedback.is-success { color: #EAD9C8; }
.cta-band .eyebrow-on-dark { color: var(--cream); }

/* ============================================================
   Redesign v3 — rotating hero, WHY, phases timeline, dashboard
   ============================================================ */

/* --- Floating arc motion --- */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}
.is-floating { animation: floaty 10s ease-in-out infinite; }
.is-floating-slow { animation: floaty 16s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .is-floating, .is-floating-slow { animation: none; }
}

/* --- Hero rotating word --- */
.hero-home h1 {
  white-space: nowrap;
  font-size: clamp(2rem, 7vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.hero-rotate {
  display: inline-block;
  color: var(--accent-deep);
  text-align: left;
}
.hero-word {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-word.is-out { animation: wordOut 0.38s var(--ease-in-out) forwards; }
.hero-word.is-in { animation: wordIn 0.5s var(--ease-out) forwards; }
@keyframes wordOut { to { opacity: 0; transform: translateY(-0.45em); } }
@keyframes wordIn { from { opacity: 0; transform: translateY(0.5em); } to { opacity: 1; transform: translateY(0); } }

/* --- WHY section --- */
.why-head h2 { max-width: 22ch; }
.why-lead { max-width: 56ch; color: var(--ink-soft); font-size: var(--fs-lead); margin-top: var(--space-md); }
.why-media { margin-top: var(--space-2xl); }
.why-founder { margin-top: var(--space-2xl); }
.why-vision {
  margin-top: var(--space-2xl);
  max-width: 24ch;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--accent-deep);
}

/* --- Swappable image placeholder --- */
.img-placeholder {
  border-radius: 26px;
  background: radial-gradient(130% 130% at 18% 12%, var(--cream-alt), var(--cream) 62%);
  border: 1.5px dashed var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent-deep);
  min-height: 240px;
}
.img-placeholder--wide { aspect-ratio: 16 / 6; min-height: 200px; }
.ph-icon { width: 40px; height: 40px; opacity: 0.85; }
.ph-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

/* --- Phases (horizontal timeline + detail panel below) --- */
.phases { margin-top: var(--space-2xl); }

.phases-track {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  position: relative;
}
.phases-track::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--line);
}
.phase-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: var(--space-sm) var(--space-xs) var(--space-md);
  cursor: pointer;
  border-radius: 20px;
  transition: background-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.phase-item.is-active { background: var(--white); transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(42,33,28,0.4); }
/* Dot stays fully opaque so the connecting line never shows through it */
.phase-dot {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink-faint);
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.phase-dot svg { width: 28px; height: 28px; }
.phase-item:hover .phase-dot,
.phase-item.is-active:not(.is-current) .phase-dot { border-color: var(--accent-deep); color: var(--accent-deep); }
.phase-item.is-current .phase-dot {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: var(--cream);
  box-shadow: 0 0 0 6px var(--accent-tint);
}
.phase-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.phase-item.is-current .phase-kicker { color: var(--accent-deep); }
/* Muted title by default; full ink on current / hover / active */
.phase-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.05rem;
  color: var(--ink-faint);
  line-height: 1.25;
  transition: color var(--dur-base) var(--ease-out);
}
.phase-item.is-current .phase-title,
.phase-item:hover .phase-title,
.phase-item.is-active .phase-title { color: var(--ink); }
@media (max-width: 720px) {
  .phases-track { grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
  .phases-track::before { display: none; }
}

/* Detail panel (below the horizontal track) */
.phases-detail { position: relative; min-height: 260px; margin-top: var(--space-xl); }
.phase-panel-text { max-width: 60ch; }
.phase-panel-text > p { color: var(--ink-soft); max-width: 52ch; }
.phase-panel { display: none; }
.phase-panel.is-active { display: block; animation: panelIn 0.45s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.phase-panel h3 { font-size: 1.4rem; margin-bottom: var(--space-sm); }
.phase-panel > p { color: var(--ink-soft); max-width: 46ch; }
.phase-feature-list { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: grid; gap: 0.55rem; }
.phase-feature-list li { position: relative; padding-left: 1.5em; color: var(--ink-soft); }
.phase-feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep);
}
.feature-cluster { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-lg); }
.feature-chip {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.7em 1.05em; font-weight: 600; color: var(--ink);
  font-family: var(--font-ui); font-size: 0.95rem;
}
.fc-icon { color: var(--accent-deep); }
.kiwi-teaser {
  margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-md);
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: var(--space-md);
}
.kiwi-badge {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.1em;
  color: var(--cream); background: var(--accent-deep); padding: 0.45em 0.7em; border-radius: 10px; font-size: 0.8rem;
  flex: none;
}
.kiwi-line { font-family: var(--font-body); font-style: italic; color: var(--ink); font-size: 1.05rem; }

/* --- Apple-style example dashboard --- */
.dash {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #FBFBFD 0%, #F1F1F4 100%);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 34px 64px -30px rgba(30,25,20,0.42), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  margin-top: var(--space-md);
  color: #1d1d1f;
  max-width: 470px;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-hi { display: flex; align-items: center; gap: 10px; }
.dash-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.dash-hi-sub { display: block; font-size: 0.72rem; color: #8a8a8e; }
.dash-hi-name { display: block; font-size: 0.95rem; font-weight: 600; }
.dash-pill {
  font-size: 0.72rem; font-weight: 600; color: #1d1d1f; background: #fff;
  border: 1px solid rgba(0,0,0,0.06); padding: 0.42em 0.75em; border-radius: 100px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.dash-card {
  background: #fff; border-radius: 16px; padding: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 9px;
}
.dash-card-label { font-size: 0.68rem; font-weight: 600; color: #8a8a8e; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-card-hint { font-size: 0.76rem; color: #6e6e73; }
.dash-ring { position: relative; width: 78px; height: 78px; }
.dash-ring svg { width: 78px; height: 78px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #ececef; stroke-width: 8; }
.ring-fg {
  fill: none; stroke: var(--accent-deep); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 201; stroke-dashoffset: 201;
  transition: stroke-dashoffset 1.5s var(--ease-out);
}
.dash.is-animated .ring-fg { stroke-dashoffset: 44; }
.dash-ring-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; }
.dash-steps { display: flex; gap: 5px; }
.dash-step { flex: 1; height: 6px; border-radius: 3px; background: #ececef; transform: scaleX(0.2); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.dash.is-animated .dash-step { transform: scaleX(1); }
.dash.is-animated .dash-step.done { background: var(--accent); }
.dash.is-animated .dash-step.active { background: var(--accent-deep); }
.dash-step:nth-child(2) { transition-delay: 0.08s; }
.dash-step:nth-child(3) { transition-delay: 0.16s; }
.dash-step:nth-child(4) { transition-delay: 0.24s; }
.dash-step:nth-child(5) { transition-delay: 0.32s; }
.dash-avatars { display: flex; }
.dash-avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: #d9c4b6; }
.dash-avatars span:nth-child(2) { background: #c9a892; }
.dash-avatars span:nth-child(3) { background: #e0d0c2; }
.dash-avatars span:nth-child(4) { background: #b98c6f; }
.dash-avatars span:first-child { margin-left: 0; }
.dash-map { height: 46px; border-radius: 10px; background: linear-gradient(135deg, #eef2f4, #e2e8eb); position: relative; overflow: hidden; }
.dash-pin { position: absolute; width: 11px; height: 11px; border-radius: 50% 50% 50% 0; background: var(--accent-deep); transform: rotate(-45deg); }
.dash-pin:nth-child(1) { left: 28%; top: 38%; }
.dash-pin:nth-child(2) { left: 62%; top: 55%; }
.dash-kiwi { grid-column: span 2; }
.dash-chat { display: flex; flex-direction: column; gap: 6px; }
.dash-bubble { font-size: 0.8rem; padding: 0.5em 0.8em; border-radius: 13px; max-width: 88%; line-height: 1.35; }
.dash-bubble.user { align-self: flex-end; background: var(--accent-deep); color: #fff; border-bottom-right-radius: 4px; }
.dash-bubble.bot { align-self: flex-start; background: #f0f0f2; color: #6e6e73; border-bottom-left-radius: 4px; }
.dash-bubble.bot.answered { color: #1d1d1f; }
.dash-foot { display: block; text-align: center; font-size: 0.68rem; color: #a1a1a6; margin-top: 12px; }

@media (max-width: 480px) {
  .dash { padding: 14px; }
  .dash-grid { gap: 8px; }
}

/* ============================================================
   Redesign v4 — WHY two-column, horizontal phase detail, Apple polish
   ============================================================ */

/* WHY: intro text + image side by side */
.why-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 860px) {
  .why-intro { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.why-intro-text h2 { max-width: 16ch; }
.why-intro-media .img-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  border-radius: 30px;
}
.why-founder { margin-top: var(--space-3xl); }

/* All phase details: text left, graphic/dashboard right */
.phase-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.phase-panel[data-panel="1"] .dash { margin-top: 0; max-width: 100%; }
@media (max-width: 860px) {
  .phase-panel.is-active { grid-template-columns: 1fr; gap: var(--space-lg); }
  .phase-panel[data-panel="1"] .dash { max-width: 470px; }
  .phase-panel .awhi-illu { order: 2; }
}

/* Hand-drawn Awhi illustration card */
.awhi-illu {
  background: var(--cream-alt);
  border-radius: 30px;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.awhi-illu svg { width: 100%; height: auto; max-height: 320px; display: block; }
.phase-panel .awhi-illu { aspect-ratio: 4 / 3; }
.why-intro-media .awhi-illu { aspect-ratio: 4 / 5; }
@media (max-width: 860px) {
  .phase-panel .awhi-illu { aspect-ratio: 16 / 10; }
}

/* Apple-style polish: calmer depth, generous rhythm, refined focus */
.section-alt { background: var(--cream-alt); }
.hero-home .hero-actions { gap: var(--space-sm); }
.founder-photo img { box-shadow: 0 30px 60px -34px rgba(42,33,28,0.5); }
.img-placeholder { box-shadow: inset 0 0 0 1px rgba(42,33,28,0.02); }
:focus-visible { outline-offset: 4px; }

/* Slightly airier headings per Apple clarity */
h2 { letter-spacing: -0.02em; }
.what-head h2, .why-intro-text h2 { line-height: 1.08; }

/* ============================================================
   Redesign v5 — full-width navbar, larger kickers, chatbot demo,
   contact buttons
   ============================================================ */

/* Navbar spans the full device width */
.site-header > .container { max-width: none; padding-inline: var(--space-lg); }
@media (max-width: 600px) { .site-header > .container { padding-inline: var(--space-md); } }

/* Larger kicker labels above headings */
.eyebrow { font-size: 0.85rem; letter-spacing: 0.16em; }
.hero-home .eyebrow { font-size: 0.98rem; letter-spacing: 0.14em; }
.eyebrow-on-dark { font-size: 0.85rem; }

/* Nav: room for two actions + mobile-only entries */
.nav-cta { gap: var(--space-xs); }
.nav-mobile-only { display: none; }
@media (max-width: 640px) {
  .nav-mobile-only { display: block; }
  .nav-mobile-only a { color: var(--accent-deep); font-weight: 700; }
}

/* Contact / secondary button on the terracotta band */
.cta-band .btn-onbrand-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251,246,241,0.5);
}
.cta-band .btn-onbrand-ghost:hover {
  background: rgba(251,246,241,0.12);
  border-color: var(--cream);
  color: var(--cream);
}
.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* KIWI chatbot demo (replaces the kiwi illustration) */
.kiwi-chat {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #FBFBFD 0%, #F1F1F4 100%);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 34px 64px -30px rgba(30,25,20,0.42), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  color: #1d1d1f;
  width: 100%;
}
.kiwi-chat-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.kiwi-chat-badge {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.08em;
  font-size: 0.72rem; color: var(--cream); background: var(--accent-deep);
  padding: 0.4em 0.6em; border-radius: 8px; flex: none;
}
.kiwi-chat-title { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }
.kiwi-chat-title small { display: block; font-weight: 400; color: #8a8a8e; font-size: 0.75rem; }
.kc-row { display: flex; margin-bottom: 12px; }
.kc-row.user { justify-content: flex-end; }
.kc-bubble { max-width: 84%; padding: 0.75em 1em; border-radius: 18px; font-size: 0.92rem; line-height: 1.5; }
.kc-bubble.user { background: var(--accent-deep); color: #fff; border-bottom-right-radius: 5px; }
.kc-bubble.bot { background: #fff; color: #1d1d1f; border-bottom-left-radius: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.kc-foot { display: block; text-align: center; font-size: 0.68rem; color: #a1a1a6; margin-top: 6px; }

/* ============================================================
   Redesign v6 — Apple pass: Inter headlines, calmer hero,
   founder-forward WHY, product previews, CTA discipline
   ============================================================ */

/* Inter headlines: tighter optical tracking */
.hero-home h1 { letter-spacing: -0.04em; }
h2 { letter-spacing: -0.025em; }

/* Calmer hero arc (no spinner vibe) */
.hero-home .hero-arc {
  opacity: 0.5;
  width: min(34vw, 400px);
  height: min(34vw, 400px);
  top: -8%; right: -3%;
}

/* Text link (secondary action, Apple-style) */
.text-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.text-link:hover { color: var(--accent-hover); }
.text-link--onbrand { color: var(--cream); display: inline-block; margin-top: var(--space-md); }
.text-link--onbrand:hover { color: var(--cream); opacity: 0.78; }
.hero-actions { align-items: center; }

/* WHY: founder-forward */
.why-intro-media .founder-photo { max-width: 460px; margin-left: auto; }
.founder-photo--large img { object-position: 50% 30%; border-radius: 28px; }
.founder-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.5em 0.95em;
  border-radius: 100px;
  box-shadow: 0 8px 24px -12px rgba(42,33,28,0.5);
}
.founder-statement {
  margin: var(--space-3xl) auto 0;
  max-width: 40ch;
  text-align: center;
  border: 0; padding: 0;
}
.founder-statement p {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: none;
  margin: 0;
}
.founder-statement cite {
  display: block;
  margin-top: var(--space-lg);
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
}
.founder-statement cite span { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.9rem; }

/* Product preview cards (community feed, resource finder) — Apple light */
.mini {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #FBFBFD 0%, #F1F1F4 100%);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 34px 64px -30px rgba(30,25,20,0.42), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  color: #1d1d1f;
  width: 100%;
}
.mini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mini-title { font-weight: 700; font-size: 1rem; }
.mini-pill { font-size: 0.72rem; font-weight: 600; background: #fff; border: 1px solid rgba(0,0,0,0.06); padding: 0.35em 0.7em; border-radius: 100px; color: #6e6e73; }
.mini-post { display: flex; gap: 12px; background: #fff; border-radius: 16px; padding: 14px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.mini-av { width: 38px; height: 38px; border-radius: 50%; background: var(--c, #c9a892); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.mini-body { display: flex; flex-direction: column; gap: 3px; }
.mini-name { font-weight: 600; font-size: 0.9rem; }
.mini-name em { font-style: normal; color: #8a8a8e; font-weight: 400; }
.mini-text { font-size: 0.88rem; line-height: 1.4; }
.mini-meta { font-size: 0.76rem; color: var(--accent-deep); font-weight: 600; margin-top: 2px; }
.mini-foot { display: block; text-align: center; font-size: 0.68rem; color: #a1a1a6; margin-top: 8px; }
.mini-search { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 0.75em 1em; margin-bottom: 12px; color: #6e6e73; font-size: 0.9rem; }
.mini-search svg { width: 18px; height: 18px; color: #8a8a8e; flex: none; }
.mini-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 0.8em 1em; margin-bottom: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); font-size: 0.88rem; }
.mini-tag { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-deep); background: var(--accent-tint); padding: 0.35em 0.55em; border-radius: 6px; flex: none; }

/* ============================================================
   Redesign v7 — mission founder-block + partner evidence page
   ============================================================ */

/* WHY: mission headline full width, founder photo + quote as one unit */
.why-head { max-width: 40rem; margin-bottom: var(--space-2xl); }
.why-head h2 { max-width: 18ch; }
.founder-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 860px) { .founder-block { grid-template-columns: 1fr; gap: var(--space-lg); } }
.founder-block .founder-photo { max-width: 380px; margin: 0; }
.founder-quote-lg { margin: 0; }
.founder-quote-lg .q-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent-tint);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.15em;
}
.founder-quote-lg p {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 34ch;
}
.founder-quote-lg cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
}
.founder-quote-lg cite span { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.9rem; }

/* ---- Partner evidence page ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  align-items: start;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; gap: var(--space-xl); } }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
  color: var(--accent-deep);
  line-height: 1;
}
.stat-label { color: var(--ink-soft); margin-top: 0.6em; max-width: none; font-size: 0.95rem; line-height: 1.55; }
.stats-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: var(--space-md); }

.evidence-list { list-style: none; padding: 0; margin: var(--space-lg) 0 0; display: grid; gap: var(--space-sm); }
.evidence-list li { position: relative; padding-left: 2em; color: var(--ink-soft); max-width: 62ch; }
.evidence-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 16px; height: 2px; background: var(--accent-deep);
}
.evidence-src { color: var(--ink-faint); font-style: italic; }

.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-top: var(--space-xl); }
@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: var(--space-lg);
  box-shadow: 0 1px 2px rgba(42,33,28,0.04), 0 14px 36px -24px rgba(42,33,28,0.28);
}
.quote-card .q-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 2.5rem;
  color: var(--accent-tint); line-height: 0.5; display: block; margin-bottom: 0.15em;
}
.quote-card p { font-size: 1.15rem; line-height: 1.55; color: var(--ink); font-weight: 500; margin: 0; }
.quote-card cite {
  display: block; margin-top: var(--space-md); font-style: normal;
  font-size: 0.88rem; color: var(--ink-faint); font-family: var(--font-ui); font-weight: 600;
}

.need-card { background: var(--cream-alt); border-radius: 24px; padding: var(--space-lg); }
.need-card .need-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--white); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md);
}
.need-card .need-icon svg { width: 24px; height: 24px; }
.need-card h3 { font-size: 1.15rem; font-family: var(--font-body); margin-bottom: 0.35em; }
.need-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* Partner value cards: expected-impact line */
.card-impact {
  margin: var(--space-md) 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.card-impact span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.4em;
}

/* ============================================================
   Redesign v8 — merged mission (photo + note), partner tweaks
   ============================================================ */
.founder-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-2xl);
}
@media (max-width: 760px) { .founder-row { grid-template-columns: 1fr; gap: var(--space-lg); } }
.founder-photo--med { max-width: 230px; }
.founder-photo--med img { object-position: 50% 30%; border-radius: 24px; }
.founder-note p {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}
/* Placeholder stat number (to be filled with a sourced figure) */
.stat-num--ph { color: var(--accent-deep); opacity: 0.55; }

/* ============================================================
   v9 — DSGVO: Einwilligungs-Checkbox
   ============================================================ */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  width: 100%;
  flex-basis: 100%;
  margin-top: var(--space-xs);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  accent-color: var(--accent-deep);
  cursor: pointer;
}
.form-consent a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; }
.form-consent--dark { color: rgba(251,246,241,0.85); }
.form-consent--dark a { color: var(--cream); }
.form-consent.is-invalid { color: #E8A796; }
.form-consent.is-invalid input[type="checkbox"] { outline: 2px solid #E8A796; outline-offset: 2px; }
.form-consent--dark.is-invalid { color: #F2C4B4; }

/* v10 — CleverReach-Formular: reCAPTCHA-Widget + Fehlerzustand */
.form-recaptcha { flex-basis: 100%; display: flex; justify-content: center; margin-top: var(--space-xs); }
.clever_form_error { outline: 2px solid #E8A796 !important; outline-offset: 2px; border-radius: 100px; }
.clever_form_note { flex-basis: 100%; font-size: 0.8rem; color: #F2C4B4; margin-top: -0.4em; }

/* v11 — Footer: Social Icons */
.footer-social { display: flex; gap: 0.85em; margin-top: var(--space-sm); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--cream-alt);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible { color: var(--white); background: var(--terracotta-deep); }
.footer-bottom .footer-social { margin-top: 0; }

/* v12 — WhatsApp-Community-Button (on-brand, Outline; Glyph macht ihn erkennbar) */
.btn-whatsapp {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-whatsapp:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
  background: var(--accent-tint);
}
.btn-whatsapp svg { width: 1.2em; height: 1.2em; flex: none; }

/* ============================================================
   Phase 2 — Plattform-Sneak-Peek (drei Screens als Mockups)
   ============================================================ */
.phase-panel--peek.is-active { display: block; }
.phase-panel--peek .phase-panel-text { max-width: 60ch; margin-bottom: var(--space-lg); }

.peek-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .peek-gallery { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; gap: 26px; }
}

.peek { display: flex; flex-direction: column; margin: 0; }
.peek-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 28px 50px -30px rgba(42, 33, 28, 0.4); }

.peek-chrome {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-bottom: none;
  padding: 9px 12px;
}
.peek-dots { display: inline-flex; gap: 5px; }
.peek-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta-tint); }
.peek-url {
  margin-left: 4px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  color: var(--ink-faint); background: var(--cream); border-radius: 999px; padding: 3px 12px;
}

.peek-screen {
  background: var(--cream); border: 1px solid var(--line); border-top: none;
  padding: 16px; min-height: 268px;
}
.peek-eyebrow {
  display: block; font-family: var(--font-display);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-faint);
}
.peek-eyebrow.accent { color: var(--terracotta-deep); }
.peek-h {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em;
  font-size: 1.02rem; line-height: 1.2; color: var(--ink); margin: 5px 0;
}
.peek-sub { font-size: 0.76rem; line-height: 1.45; color: var(--ink-soft); margin: 0 0 12px; }

.peek-cap { margin-top: 14px; font-size: 0.82rem; line-height: 1.45; color: var(--ink-soft); }
.peek-cap strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; color: var(--ink); margin-bottom: 2px;
}

/* Screen 1 — Heute */
.peek-next {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--terracotta-tint); border-radius: 14px; padding: 13px 14px; margin-bottom: 10px;
}
.peek-next-text { min-width: 0; }
.peek-next strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.88rem; color: var(--ink); margin: 4px 0 9px;
}
.peek-actions { display: flex; gap: 6px; }
.peek-btn {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 600;
  background: var(--terracotta-deep); color: var(--cream); border-radius: 999px; padding: 4px 11px;
}
.peek-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.peek-ring { position: relative; width: 54px; height: 54px; flex: none; display: grid; place-items: center; }
.peek-ring svg { width: 54px; height: 54px; }
.peek-ring span {
  position: absolute; font-family: var(--font-display); font-weight: 700;
  font-size: 0.74rem; color: var(--ink);
}
.peek-cardrow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.peek-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 10px 11px; }
.peek-clabel {
  display: block; font-family: var(--font-display); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px;
}
.peek-cbody { font-size: 0.72rem; color: var(--ink-soft); }

/* Screen 2 — Mein Weg */
.peek-track { display: flex; gap: 6px; margin: 12px 0 15px; }
.pt-seg { flex: 1; }
.pt-seg i { display: block; height: 5px; border-radius: 999px; background: var(--cream-alt); }
.pt-seg.done i, .pt-seg.current i { background: var(--terracotta); }
.pt-seg span {
  display: block; font-family: var(--font-display); font-size: 0.58rem; font-weight: 600;
  color: var(--ink-faint); margin-top: 6px;
}
.pt-seg.current span { color: var(--terracotta-deep); }
.peek-steps { display: flex; flex-direction: column; gap: 8px; }
.pstep {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 9px 11px; font-size: 0.76rem; color: var(--ink);
}
.pstep-dot {
  width: 19px; height: 19px; border-radius: 50%; border: 2px solid var(--line); flex: none;
  display: grid; place-items: center; font-size: 0.62rem; color: var(--cream); position: relative;
}
.pstep.done .pstep-dot { background: var(--terracotta); border-color: var(--terracotta); }
.pstep.done span { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: rgba(42, 33, 28, 0.25); }
.pstep.current { border-color: var(--terracotta); box-shadow: 0 0 0 3px var(--terracotta-tint); }
.pstep.current .pstep-dot { border-color: var(--terracotta); }
.pstep.current .pstep-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }

/* Screen 3 — Checklisten */
.peek-group {
  display: block; font-family: var(--font-display); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta-deep); margin: 11px 0 5px;
}
.pcheck { display: flex; align-items: flex-start; gap: 10px; padding: 6px 2px; font-size: 0.76rem; line-height: 1.4; color: var(--ink-soft); }
.pbox {
  width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--line); flex: none;
  display: grid; place-items: center; font-size: 0.62rem; color: var(--cream); margin-top: 1px;
}
.pcheck.done .pbox { background: var(--terracotta); border-color: var(--terracotta); }
.pcheck.done span { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: rgba(42, 33, 28, 0.25); }

.peek-foot { display: block; margin-top: var(--space-lg); text-align: center; }

/* Gestaffelter Auftritt beim Aktivieren von Phase 2 */
@keyframes peekIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.phase-panel--peek.is-active .peek { animation: peekIn 0.55s var(--ease-out) both; }
.phase-panel--peek.is-active .peek:nth-child(2) { animation-delay: 0.09s; }
.phase-panel--peek.is-active .peek:nth-child(3) { animation-delay: 0.18s; }
@media (prefers-reduced-motion: reduce) {
  .phase-panel--peek.is-active .peek { animation: none; }
}
