/*
 * Pressureproof Re-Design 2026-06-27 — Brand-Tokens + Components
 *
 * Master-Spec: 01_specs/redesign_staging/README_LOCAL.md
 * Brand-Decision: feedback_brand_shift_orange_to_gold_2026-06-27.md
 * CSS basiert auf Re-Design-Bundle 2026-06-26 (Funktion + Optik 1:1).
 */

/* ========================================================================
 * 1. TOKENS — Dark (Primärmodus)
 * ====================================================================== */
:root,
html[data-theme="dark"] {
  --bg: #0C0B0A;
  --bg2: #100E0A;
  --panel: #100E0A;
  --panel2: #15120D;
  --head: #F6F3EC;
  --body: #B7B0A2;
  --mute: #837C70;
  --nav: #9A9488;
  --gold: #C9A75E;
  --gold-grad: linear-gradient(135deg, #ECD79A, #C9A75E 55%, #9A7C38);
  --gold-label: #E8D196;
  --line: rgba(201, 167, 94, 0.16);
  --line2: rgba(201, 167, 94, 0.22);
  --line-strong: rgba(201, 167, 94, 0.55);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.02), 0 12px 32px rgba(0, 0, 0, 0.32);
}

/* ========================================================================
 * 2. TOKENS — Light (Sekundärmodus, per Toggle)
 * ====================================================================== */
html[data-theme="light"] {
  --bg: #F4F1EA;
  --bg2: #FBF9F3;
  --panel: #FFFFFF;
  --panel2: #FFFFFF;
  --head: #1A1712;
  --body: #4C463A;
  --mute: #8A8276;
  --nav: #6F6757;
  --gold: #9C7B33;
  --gold-grad: linear-gradient(135deg, #C9A75E, #A9863C 55%, #7E5F23);
  --gold-label: #876521;
  --line: rgba(150, 120, 45, 0.22);
  --line2: rgba(150, 120, 45, 0.34);
  --line-strong: rgba(150, 120, 45, 0.5);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* ========================================================================
 * 3. BASE
 * ====================================================================== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Hanken Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 0.35s ease, color 0.35s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

::selection {
  background: var(--gold);
  color: #0C0B0A;
}

a { color: var(--head); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

/* ========================================================================
 * 4. TYPOGRAPHY
 * ====================================================================== */
h1, h2, h3, h4 {
  font-family: "Oswald", "Hanken Grotesk", sans-serif;
  font-weight: 600;
  color: var(--head);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.04em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(40px, 5.4vw, 74px); }
h2 { font-size: clamp(26px, 3.4vw, 46px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); }
h4 { font-size: clamp(16px, 1.3vw, 20px); }

p { margin: 0 0 1em; line-height: 1.75; color: var(--body); }

.overline {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.overline::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1.4px;
  background: var(--gold-grad);
}

.gold-line {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================================================
 * 5. LAYOUT
 * ====================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container--narrow {
  max-width: 960px;
}

section {
  padding: clamp(48px, 7vw, 96px) 0;
}

/* ========================================================================
 * 6. BUTTONS
 * ====================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--gold-grad);
  color: #14110B;
  box-shadow: 0 8px 24px rgba(201, 167, 94, 0.18);
}
.btn--primary:hover {
  box-shadow: 0 12px 30px rgba(201, 167, 94, 0.32);
  color: #14110B;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--head);
}
.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 4px 0;
}

.btn .diamond { color: inherit; font-size: 0.85em; line-height: 1; }

/* ========================================================================
 * 7. ANNOUNCEMENT BAR
 * ====================================================================== */
.announce {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  text-align: center;
}
.announce__inner {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================================================
 * 8. HEADER
 * ====================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
}
html[data-theme="light"] .header { background: rgba(244, 241, 234, 0.78); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--head);
}
.header__logo-svg { width: 42px; height: auto; flex-shrink: 0; }
.header__logo-text {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--head);
}
.header__logo-sub {
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 4px;
}

.header__nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}
.header__nav a {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav);
  font-weight: 500;
}
.header__nav a:hover { color: var(--head); }

.header__actions { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--head);
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { background: var(--bg2); border-color: var(--gold); }

/* ========================================================================
 * 9. HERO
 * ====================================================================== */
.hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 7vw, 96px);
  background: var(--bg);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__overline { animation: ppFade 0.6s ease-out both; }
.hero__title {
  margin-top: 18px;
  animation: ppFade 0.7s ease-out both;
}
.hero__title .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  margin-top: 16px;
  color: var(--body);
  max-width: 540px;
  animation: ppFade 0.8s ease-out both;
}
.hero__ctas {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: ppFade 0.9s ease-out both;
}

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--bg2);
  overflow: hidden;
  animation: ppFade 0.85s ease-out both;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(12, 11, 10, 0.75) 100%);
  pointer-events: none;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}
/* Gold corner accents */
.hero__image::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
}
.hero__image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--head);
}
.hero__image-caption .overline { color: var(--gold-label); }
.hero__image-caption h4 {
  margin-top: 6px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
}

@keyframes ppFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================================
 * 10. STAT STRIP
 * ====================================================================== */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 860px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats__grid { grid-template-columns: 1fr; } }

.stat {
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 860px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}
.stat__value {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 54px);
  letter-spacing: 0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.stat__label {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.stat__detail-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}
.stat__detail-btn:hover { color: var(--head); }

/* Tooltip */
.stat__tooltip {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: clamp(220px, 26vw, 320px);
  background: var(--panel2);
  border: 1px solid var(--line-strong);
  padding: 18px 20px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s ease;
  z-index: 10;
  text-align: left;
}
.stat__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--panel2);
}
.stat:hover .stat__tooltip,
.stat--active .stat__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.stat__tooltip h5 {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
  color: var(--head);
}
.stat__tooltip dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 12px 0; font-size: 12px; }
.stat__tooltip dt { color: var(--mute); }
.stat__tooltip dd { margin: 0; color: var(--head); }
.stat__tooltip em { font-style: italic; color: var(--mute); font-size: 11.5px; }

/* ========================================================================
 * 11. PARALLAX DIVIDER
 * ====================================================================== */
.parallax {
  position: relative;
  background-image: url("../img/pexels_pexels-photo-1909572.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--head);
}
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12, 11, 10, 0.4), rgba(12, 11, 10, 0.85)),
    linear-gradient(180deg, rgba(12, 11, 10, 0.55), rgba(12, 11, 10, 0.75));
}
.parallax__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}
.parallax__inner h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: #F6F3EC;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ========================================================================
 * 12. SYSTEM SECTION (4 Säulen)
 * ====================================================================== */
.system__intro { max-width: 760px; margin-bottom: 56px; }
.system__intro p { font-size: 17px; color: var(--body); }

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--panel);
  border: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
}
.pillar__media {
  position: relative;
  height: 172px;
  overflow: hidden;
}
.pillar__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.1) 0%, rgba(12,11,10,0.78) 100%);
}
.pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.pillar__media-title {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--head);
}
.pillar__body { padding: 26px 28px 30px; }
.pillar__lead {
  color: var(--gold);
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 12px;
}
.pillar__text {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ========================================================================
 * 13. RESULTS (HRV chart + biomarker table)
 * ====================================================================== */
.results__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(20px, 3vw, 40px); }
@media (max-width: 860px) { .results__grid { grid-template-columns: 1fr; } }

.results__card {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 28px;
}
.results__card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 24px;
}
.results__card-header .gold { color: var(--gold); }

.chart-foot { font-size: 12.5px; color: var(--mute); margin-top: 18px; line-height: 1.5; }

table.biomarker {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
}
table.biomarker th,
table.biomarker td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--body);
}
table.biomarker th {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
table.biomarker td.marker { color: var(--head); }
table.biomarker td.arrow { color: var(--gold); text-align: center; }
table.biomarker td.value { text-align: right; }
table.biomarker tfoot td { padding-top: 14px; color: var(--mute); font-size: 12px; font-style: italic; border-bottom: none; }

/* ========================================================================
 * 14. THREE WAYS / PROGRAM CARDS
 * ====================================================================== */
.ways__intro { max-width: 760px; margin-bottom: 56px; }

.ways__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); align-items: stretch; }
@media (max-width: 920px) { .ways__grid { grid-template-columns: 1fr; } }

.way {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.way--accent { border-top: 3px solid; border-image: var(--gold-grad) 1; }
.way__inner { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.way__tag {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.way__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.way__name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--head);
  margin: 0;
}
.way__badge {
  font-family: "Oswald", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  background: var(--gold);
  color: #14110B;
}
.way__badge--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line-strong);
}
.way__price {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 30px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 14px 0 8px;
}
.way__price-unit { font-size: 14px; color: var(--mute); letter-spacing: 0.14em; }
.way__lead {
  color: var(--body);
  font-size: 14.5px;
  margin: 0 0 18px;
  min-height: 60px;
}
.way__sep {
  height: 1px;
  background: var(--line);
  margin: 0 0 20px;
}
.way__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.way__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--body);
  padding: 7px 0;
  line-height: 1.55;
}
.way__list .check {
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
  flex-shrink: 0;
}
.way__cta { margin-top: auto; }

/* ========================================================================
 * 15. PROCESS (4 Steps + Fit / Not-Fit)
 * ====================================================================== */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); margin-bottom: 64px; }
@media (max-width: 860px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

.step {
  padding: 28px 24px;
  border-top: 2px solid var(--gold);
  background: var(--panel);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step__num {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 28px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step__title {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 10px;
}
.step__text { font-size: 13.5px; color: var(--body); line-height: 1.6; }

.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 56px; }
@media (max-width: 720px) { .fit__grid { grid-template-columns: 1fr; } }
.fit ul { list-style: none; padding: 0; margin: 0; }
.fit li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--body);
}
.fit--pos .glyph { color: var(--gold); }
.fit--neg .glyph { color: var(--mute); }

.commit-box {
  background: var(--panel2);
  border: 1px solid var(--line-strong);
  padding: 32px clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
}
.commit-box__diamond { color: var(--gold); font-size: 44px; line-height: 1; }

/* ========================================================================
 * 16. TESTIMONIALS
 * ====================================================================== */
.tests__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .tests__grid { grid-template-columns: 1fr; } }
.test {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 30px;
  position: relative;
}
.test__quote-mark {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
}
.test__quote { font-size: 14.5px; line-height: 1.7; color: var(--body); margin-bottom: 22px; }
.test__sep { height: 1px; background: var(--line); margin-bottom: 16px; }
.test__role {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.test__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--line-strong);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.test__disclaimer {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--mute);
  font-style: italic;
}

/* ========================================================================
 * 17. FOUNDER SECTION
 * ====================================================================== */
.founder { background: var(--bg2); }
.founder__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .founder__grid { grid-template-columns: 1fr; } }
.founder__image { border: 1px solid var(--line-strong); padding: 8px; background: var(--panel); }
.founder__title { margin-top: 16px; }
.founder__sub { color: var(--gold); font-style: italic; margin-bottom: 24px; font-family: "Hanken Grotesk", serif; }

/* ========================================================================
 * 18. FINAL CTA
 * ====================================================================== */
.final-cta {
  text-align: center;
  background: var(--bg);
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at top, rgba(201, 167, 94, 0.16), transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta__ctas { display: inline-flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.final-cta__reassure {
  margin-top: 24px;
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  color: var(--mute);
}

/* ========================================================================
 * 19. FOOTER
 * ====================================================================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  color: var(--body);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 24px; } }
.footer__intro p { font-size: 13.5px; color: var(--body); max-width: 320px; line-height: 1.65; }
.footer__col h5 {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--body); font-size: 14px; }
.footer__col a:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--mute);
  flex-wrap: wrap;
}
.footer__medical {
  margin-top: 18px;
  font-size: 12px;
  font-style: italic;
  color: var(--mute);
  max-width: 100%;
  line-height: 1.55;
}

/* ========================================================================
 * 20. LOGIN PAGE
 * ====================================================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 60px 24px;
}
.login {
  width: 100%;
  max-width: 460px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  padding: 44px clamp(28px, 4vw, 48px);
  position: relative;
}
.login__brand { text-align: center; margin-bottom: 32px; }
.login__brand img { margin: 0 auto 18px; max-width: 80px; }
.login__overline { display: block; margin-bottom: 12px; text-align: left; }
.login__title { margin-bottom: 8px; }
.login__lead { color: var(--body); font-size: 14px; margin-bottom: 32px; }
.login__field { margin-bottom: 22px; }
.login__field-label {
  display: flex;
  justify-content: space-between;
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.login__field-label a { color: var(--gold); font-size: 11.5px; }
.login__input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line2);
  padding: 14px 16px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  color: var(--head);
  transition: border-color 0.25s ease;
  border-radius: 0;
}
.login__input:focus { outline: none; border-color: var(--gold); }
.login__input::placeholder { color: var(--mute); }
.login__row { display: flex; align-items: center; gap: 10px; margin: 18px 0 28px; font-size: 14px; }
.login__row input[type="checkbox"] { accent-color: var(--gold); }

/* ========================================================================
 * 21. BEZAHLUNG PAGE
 * ====================================================================== */
.pay__intro { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.pay__methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 60px;
}
.pay__method {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 22px 18px;
  text-align: center;
}
.pay__method-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--head);
  margin-bottom: 6px;
}
.pay__method-type { font-size: 12px; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; }

.pay__trust-overline { text-align: center; display: block; margin-bottom: 28px; }
.pay__trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.pay__trust-card {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 22px;
}
.pay__trust-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--head);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay__trust-title .diamond { color: var(--gold); }
.pay__trust-text { font-size: 13.5px; color: var(--body); line-height: 1.65; }
.pay__sec-text {
  text-align: center;
  font-size: 13.5px;
  color: var(--body);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================================================
 * 22. PREMIUM-PROGRAMM PAGE
 * ====================================================================== */
.program__head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 8px; }
.program__progress-val {
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 36px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.program__progress-label {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  color: var(--mute);
  text-align: right;
  text-transform: uppercase;
}
.program__bar {
  margin: 28px 0 56px;
  height: 3px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.program__bar-fill {
  position: absolute;
  inset: 0;
  width: var(--progress, 38%);
  background: var(--gold-grad);
}

.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .modules { grid-template-columns: 1fr; } }
.module {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.module__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.module__code {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  color: var(--mute);
  text-transform: uppercase;
}
.module__badge {
  font-family: "Oswald", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--gold);
}
.module__badge--done { background: var(--gold); color: #14110B; border-color: transparent; }
.module__badge--locked { color: var(--mute); border-color: var(--line); }
.module__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--head);
  margin: 0;
}
.module__lead { color: var(--body); font-size: 14px; line-height: 1.6; margin: 0; }
.module__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.module__foot a { color: var(--gold); }

/* ========================================================================
 * 23. PAGE-HEADER (Sub-Pages: Hero-Light)
 * ====================================================================== */
.page-header {
  padding: clamp(72px, 9vw, 132px) 0 clamp(40px, 6vw, 72px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  margin-top: 14px;
  font-size: clamp(36px, 4.6vw, 64px);
}
.page-header__lead {
  max-width: 720px;
  margin-top: 18px;
  color: var(--body);
  font-size: 17px;
}

/* ========================================================================
 * 24. ARTICLE / LEGAL / WISSEN-BODY
 * ====================================================================== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0;
}
.article h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.article h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--head);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
}
.article p, .article li {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--body);
}
.article ul, .article ol { padding-left: 20px; margin: 0 0 20px; }
.article ul li { padding: 4px 0; }
.article a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.article a:hover { color: var(--head); text-decoration-color: var(--gold); }
.article hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.article blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 24px 0;
  color: var(--head);
  font-style: italic;
}
.article-toc {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.article-toc h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--mute);
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.06em;
}
.article-toc li { margin-bottom: 6px; }

/* ========================================================================
 * 25. FORMS (Contact, Newsletter, Lab-Upload)
 * ====================================================================== */
.form {
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: clamp(28px, 4vw, 48px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; margin-bottom: 22px; }
.form__label {
  font-family: "Oswald", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.form__input,
.form__textarea,
.form__select {
  background: var(--bg);
  border: 1px solid var(--line2);
  padding: 13px 16px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  color: var(--head);
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus { outline: none; border-color: var(--gold); }
.form__textarea { min-height: 140px; resize: vertical; }
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 18px;
  color: var(--body);
  line-height: 1.55;
}
.form__checkbox input { accent-color: var(--gold); margin-top: 3px; }
.form__help { font-size: 13px; color: var(--mute); margin-top: 6px; }
.form__submit { margin-top: 18px; }

/* Lab-Upload dropzone */
.dropzone {
  border: 1.5px dashed var(--line-strong);
  background: var(--bg);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 22px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone:hover { border-color: var(--gold); background: var(--bg2); }
.dropzone__icon { font-size: 36px; color: var(--gold); margin-bottom: 10px; }
.dropzone__title {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--head);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dropzone__hint { font-size: 13px; color: var(--mute); }

/* Newsletter inline */
.newsletter-inline {
  background: var(--bg2);
  border: 1px solid var(--line-strong);
  padding: 28px clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .newsletter-inline { grid-template-columns: 1fr; } }
.newsletter-inline h3 { margin: 0 0 8px; font-size: 22px; }
.newsletter-inline__form { display: flex; gap: 12px; }
@media (max-width: 480px) { .newsletter-inline__form { flex-direction: column; } }
.newsletter-inline__form input { flex: 1; }

/* ========================================================================
 * 26. DASHBOARD (Mein-Bereich)
 * ====================================================================== */
.app-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--bg); }
@media (max-width: 860px) { .app-shell { grid-template-columns: 1fr; } }

.sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
}
@media (max-width: 860px) { .sidebar { position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--line); } }
.sidebar__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; color: var(--head); }
.sidebar__brand svg { width: 32px; height: 32px; }
.sidebar__brand-text { font-family: "Oswald"; font-size: 14px; letter-spacing: 0.22em; }
.sidebar__nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-family: "Oswald", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nav);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sidebar__nav a:hover { color: var(--head); background: var(--panel); }
.sidebar__nav a.is-active { color: var(--gold); border-left-color: var(--gold); background: var(--panel); }
.sidebar__nav .diamond { color: var(--gold); font-size: 0.8em; }
.sidebar__foot { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.sidebar__foot .btn { width: 100%; justify-content: center; }

.app-main { padding: clamp(28px, 4vw, 56px); }
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}
.app-topbar__title { font-family: "Oswald"; font-size: clamp(26px, 3vw, 38px); letter-spacing: 0.04em; color: var(--head); text-transform: uppercase; }
.app-topbar__sub { font-size: 14px; color: var(--mute); margin-top: 4px; letter-spacing: 0.06em; }
.app-topbar__meta { display: flex; gap: 14px; align-items: center; font-size: 12.5px; color: var(--mute); }

.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--lg { grid-column: span 6; }
.card--full { grid-column: span 12; }
.card--half { grid-column: span 6; }
@media (max-width: 1100px) {
  .card { grid-column: span 6; }
  .card--lg, .card--half { grid-column: span 6; }
  .card--full { grid-column: span 12; }
}
@media (max-width: 720px) {
  .card, .card--lg, .card--half, .card--full { grid-column: span 12; }
}
.card__head { display: flex; justify-content: space-between; align-items: baseline; }
.card__title {
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}
.card__value-big {
  font-family: "Oswald";
  font-weight: 600;
  font-size: 44px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.card__sub { color: var(--body); font-size: 13.5px; line-height: 1.55; }
.card__trend { font-size: 12px; color: var(--gold); letter-spacing: 0.16em; }
.card__trend--down { color: #d49b5a; }

/* Marker list */
.marker-list { list-style: none; padding: 0; margin: 0; }
.marker-list li {
  display: grid;
  grid-template-columns: 1fr auto auto 24px;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.marker-list li:last-child { border-bottom: none; }
.marker-list__name { color: var(--head); font-size: 14px; }
.marker-list__value { font-family: "Oswald"; font-size: 14px; color: var(--head); letter-spacing: 0.06em; }
.marker-list__unit { color: var(--mute); font-size: 12px; }
.marker-list__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.marker-list__dot--low { background: #d49b5a; }
.marker-list__dot--crit { background: #b5302a; }

/* Companion chat */
.chat-shell {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--line2);
}
.chat-messages { padding: 28px clamp(20px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; overflow-y: auto; }
.msg {
  max-width: 76%;
  padding: 14px 18px;
  line-height: 1.6;
  font-size: 14.5px;
}
.msg--user { background: var(--bg2); color: var(--head); align-self: flex-end; border-left: 2px solid var(--gold); }
.msg--ai { background: var(--bg); color: var(--body); border: 1px solid var(--line2); align-self: flex-start; }
.msg__role { font-family: "Oswald"; font-size: 10px; letter-spacing: 0.32em; color: var(--mute); margin-bottom: 6px; text-transform: uppercase; }
.chat-composer {
  display: flex;
  gap: 12px;
  padding: 18px clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.chat-composer input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line2);
  padding: 14px 16px;
  font-family: "Hanken Grotesk";
  font-size: 14px;
  color: var(--head);
}
.chat-composer input:focus { outline: none; border-color: var(--gold); }

/* Score gauge */
.score {
  display: flex;
  align-items: center;
  gap: 28px;
}
.score__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 calc(var(--p, 72) * 1%), var(--line) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.score__circle::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--panel);
}
.score__val {
  position: relative;
  font-family: "Oswald";
  font-weight: 600;
  font-size: 32px;
  color: var(--head);
}
.score__label {
  font-family: "Oswald";
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.score__title { font-family: "Oswald"; font-size: 22px; color: var(--head); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.score__sub { font-size: 14px; color: var(--body); }

/* ========================================================================
 * 27. KNOWLEDGE / ARTICLE CARDS
 * ====================================================================== */
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 920px) { .knowledge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .knowledge-grid { grid-template-columns: 1fr; } }
.k-card {
  background: var(--panel);
  border: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.k-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.k-card__media { aspect-ratio: 16/9; overflow: hidden; }
.k-card__media img { width: 100%; height: 100%; object-fit: cover; }
.k-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.k-card__category {
  font-family: "Oswald";
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.k-card__title {
  font-family: "Oswald";
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--head);
  margin: 0;
  line-height: 1.22;
}
.k-card__excerpt { font-size: 13.5px; color: var(--body); line-height: 1.55; }
.k-card__meta { margin-top: auto; font-family: "Oswald"; font-size: 11px; letter-spacing: 0.22em; color: var(--mute); }

/* ========================================================================
 * 28. BOOKS-SECTION (Vier Bände auf Salespage)
 * ====================================================================== */
.books { background: var(--bg); padding: clamp(56px, 7vw, 96px) 0; }
.books__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .books__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .books__grid { grid-template-columns: 1fr; } }

.book { display: flex; flex-direction: column; gap: 18px; transition: transform 0.3s ease; }
.book:hover { transform: translateY(-4px); }
.book__cover-link {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg2);
}
.book__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.book:hover .book__cover-img { filter: brightness(1.08); }
.book__caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book__name {
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--head);
}
.book__price {
  font-family: "Oswald";
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* ========================================================================
 * 29. UTILITY
 * ====================================================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.flex { display: flex; gap: 16px; align-items: center; }
.flex--center { justify-content: center; }
