/* =========================================================
   Performance Lab Protokoll — Ringside Zone Edition
   Designsystem: Editorial Premium Health
   ========================================================= */

/* ---- TOKENS ---- */
:root {
  /* Palette */
  --ink-1:        #0E0F12;   /* deep anthracite — bg */
  --ink-2:        #15171C;   /* card bg dark */
  --ink-3:        #1E2128;   /* lifted dark */
  --paper:        #F5F1EA;   /* warm off-white — bg */
  --paper-2:      #EFE9DE;   /* warm card on light */
  --line:         rgba(20, 22, 28, .12);
  --line-dark:    rgba(245, 241, 234, .10);

  --gold-1:       #E8C886;
  --gold-2:       #C8A35E;
  --gold-3:       #8E6A2E;
  --gold-grad:    linear-gradient(135deg, #E8C886 0%, #C8A35E 50%, #8E6A2E 100%);

  --vital:        #6FB39A;   /* discreet teal accent */

  /* Type */
  --serif:  'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacings (8pt grid, generous) */
  --s-1: .25rem;   --s-2: .5rem;    --s-3: .75rem;   --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;     --s-10: 8rem;    --s-11: 11rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadow */
  --sh-card:  0 1px 0 rgba(255,255,255,.6) inset, 0 30px 60px -30px rgba(20,22,28,.18), 0 8px 24px -12px rgba(20,22,28,.12);
  --sh-dark:  0 1px 0 rgba(255,255,255,.04) inset, 0 30px 60px -30px rgba(0,0,0,.7);
  --sh-glow:  0 0 60px rgba(232, 200, 134, .35);

  /* Motion */
  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---- RESET / BASE ---- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-1);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, object { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: 860px; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 1.4rem;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--light  { color: var(--gold-1); }
.eyebrow__line {
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .55;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 1.4rem;
  color: var(--ink-1);
}
.h2--center { text-align: center; }
.h2--light  { color: var(--paper); }
.h2 em { font-style: italic; font-weight: 300; }

.lede {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: rgba(20,22,28,.72);
  margin: 0 0 2rem;
  max-width: 62ch;
}
.lede--center { margin-inline: auto; text-align: center; }
.lede--light  { color: rgba(245,241,234,.78); }

.grad {
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 1.5rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  color: var(--ink-1);
  background: var(--gold-grad);
  box-shadow: 0 14px 40px -14px rgba(200, 163, 94, .65), 0 0 0 1px rgba(255,255,255,.15) inset;
}
.btn--primary:hover {
  box-shadow: 0 18px 48px -14px rgba(200, 163, 94, .85), 0 0 0 1px rgba(255,255,255,.25) inset;
}
.btn--ghost {
  color: var(--paper);
  border-color: rgba(245,241,234,.25);
  background: rgba(245,241,234,.04);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(245,241,234,.10);
  border-color: rgba(245,241,234,.45);
}
.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }

/* ---- LOGO STYLES ---- */
.logo { display: block; }
.logo--brand {
  width: auto; height: 40px;          /* normalize brand mark by height */
  max-width: 200px;
  object-fit: contain; object-position: left center;
  filter: drop-shadow(0 0 30px rgba(232,200,134,.16));
}
.logo--mono {
  width: auto; height: 34px;          /* row of brand logos: normalize by height */
  max-width: 130px;
  object-fit: contain;
  opacity: .82;
  transition: opacity .4s var(--ease);
}
.logo--mono:hover { opacity: 1; }
.logo--footer { height: 34px; }

/* ---- RIBBON ---- */
.ribbon {
  background: var(--ink-1);
  color: var(--paper);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.ribbon__inner {
  display: inline-flex; align-items: center; gap: .85rem;
  flex-wrap: wrap; justify-content: center;
}
.ribbon__sep { opacity: .35; }
.ribbon__dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold-1);
  box-shadow: 0 0 10px var(--gold-1);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .55; transform: scale(.85); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--ink-1);
  color: var(--paper);
  padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(4.5rem, 8vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero__grain {
  position: absolute; inset: -50%;
  background-image:
    radial-gradient(rgba(245,241,234,.05) 1px, transparent 1px),
    radial-gradient(rgba(232,200,134,.04) 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  background-position: 0 0, 2px 2px;
  opacity: .8;
  mix-blend-mode: overlay;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.hero__glow--gold {
  width: 60vw; height: 60vw;
  top: -20%; right: -15%;
  background: radial-gradient(circle, rgba(232,200,134,.55), transparent 60%);
}
.hero__glow--cool {
  width: 50vw; height: 50vw;
  bottom: -25%; left: -15%;
  background: radial-gradient(circle, rgba(111,179,154,.20), transparent 60%);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1400px; margin-inline: auto;
}
.nav__brand .logo--brand { height: 38px; max-width: 190px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(245,241,234,.20);
  font-size: .85rem;
  font-weight: 500;
  color: var(--paper);
  transition: all .35s var(--ease);
}
.nav__cta:hover {
  background: var(--paper);
  color: var(--ink-1);
  border-color: var(--paper);
}

.hero__content {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 1.8rem;
  max-width: 18ch;
}
.hero__title em { font-style: italic; font-weight: 300; opacity: .9; }
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: rgba(245,241,234,.78);
  max-width: 62ch;
  margin: 0 0 2.4rem;
}
.hero__lede strong {
  color: var(--paper); font-weight: 500;
}
.hero__cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__meta {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: clamp(1rem, 3vw, 2.4rem);
  flex-wrap: wrap; align-items: flex-end;
  border-top: 1px solid rgba(245,241,234,.12);
  padding-top: 2rem;
}
.hero__meta li {
  display: block;
}
.hero__meta .metric {
  display: inline-flex;
  align-items: baseline;
  gap: .08em;
}
.hero__meta .cap { display: block; margin-top: .35rem; }
.hero__meta .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__meta .unit {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-left: .15em;
  color: var(--gold-1);
}
.hero__meta .cap {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,241,234,.55);
}
.hero__meta .sep {
  width: 1px; height: 40px;
  background: rgba(245,241,234,.15);
  align-self: center;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(245,241,234,.35);
  border-radius: 999px;
  display: grid; place-items: center;
  opacity: .6;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--gold-1);
  border-radius: 2px;
  animation: scroll 2s var(--ease) infinite;
}
@keyframes scroll {
  0%   { transform: translateY(-6px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(8px);  opacity: 0; }
}

/* ---- TRUST STRIP ---- */
.strip {
  background: var(--paper-2);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.strip__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(20,22,28,.55);
  margin-bottom: 1.6rem;
}
.strip__logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.strip__logos .logo--mono { width: auto; height: clamp(26px, 4.5vw, 34px); max-width: 130px; object-fit: contain; }
/* h²one is near-square — give it a touch more height so it reads at the same weight */
.strip__logos .logo--mono[alt^="h"] { height: clamp(34px, 6vw, 46px); }

/* ---- PROTOKOLL ---- */
.protokoll {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.protokoll__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 2.4rem 1.6rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
}
.step:last-child { border-right: 0; }
.step:hover { background: var(--paper-2); }
.step__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-3);
  margin-bottom: 1.4rem;
  letter-spacing: .05em;
}
.step__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
}
.step__copy {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(20,22,28,.65);
  margin: 0;
}

/* ---- PILLARS ---- */
.pillars {
  background: var(--ink-1);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 40% at 50% 0%, rgba(232,200,134,.10), transparent 60%),
    radial-gradient(60% 40% at 50% 100%, rgba(111,179,154,.06), transparent 60%);
  pointer-events: none;
}
.pillars .h2 { color: var(--paper); }
.pillars .lede { color: rgba(245,241,234,.72); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
  position: relative;
}
.pillar {
  grid-column: span 2;
  position: relative;
  background: linear-gradient(180deg, rgba(245,241,234,.04), rgba(245,241,234,.015));
  border: 1px solid rgba(245,241,234,.08);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem 2rem;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease), background .5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(232,200,134,.35);
  background: linear-gradient(180deg, rgba(245,241,234,.07), rgba(245,241,234,.02));
}
.pillar--feature { grid-column: span 6; }
.pillar--feature .pillar__title { font-size: clamp(1.7rem, 2.6vw, 2.1rem); max-width: 22ch; }

.pillar__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.pillar__index {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-1);
  letter-spacing: .04em;
}
.pillar__field {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,241,234,.55);
}
.pillar__logo {
  height: 42px;
  margin-bottom: 1.6rem;
  display: flex; align-items: center;
}
.pillar__logo img { height: 100%; width: auto; max-width: 175px; object-fit: contain; object-position: left center; }
/* h²one is near-square — scale it up so it matches the optical weight of the wordmarks */
.pillar--h2one .pillar__logo { height: 58px; }
.pillar__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 .8rem;
  letter-spacing: -.01em;
}
.pillar__copy {
  font-size: .94rem;
  line-height: 1.6;
  color: rgba(245,241,234,.72);
  margin: 0 0 1.4rem;
}
.pillar__list {
  list-style: none; padding: 0; margin: auto 0 0;
  border-top: 1px solid rgba(245,241,234,.08);
  padding-top: 1.2rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.pillar__list li {
  font-size: .85rem;
  line-height: 1.4;
  color: rgba(245,241,234,.78);
  padding-left: 1.1rem;
  position: relative;
}
.pillar__list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold-grad);
}
.pillar__highlight {
  margin: auto 0 0;
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem;
  border: 1px dashed rgba(232,200,134,.35);
  border-radius: var(--r-md);
  font-size: .85rem;
  color: var(--gold-1);
}
.pillar__highlight .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--gold-1); box-shadow: 0 0 10px var(--gold-1);
}
.pillar__highlight strong { color: var(--paper); font-weight: 600; }

.pillar__deco {
  position: absolute; z-index: -1;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,134,.18), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.pillar:hover .pillar__deco { opacity: 1; }

/* ---- GOODIE ---- */
.goodie {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper);
  position: relative;
}
.goodie__shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--paper-2);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  box-shadow: var(--sh-card);
  position: relative;
  overflow: hidden;
}
.goodie__shell::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,134,.30), transparent 65%);
  pointer-events: none;
}
.goodie__copy { position: relative; }
.goodie__value {
  display: inline-flex; align-items: baseline; gap: .8rem;
  margin: 0 0 2rem;
  padding: .85rem 1.2rem;
  border: 1px solid rgba(200,163,94,.35);
  border-radius: var(--r-md);
  background: rgba(232,200,134,.10);
}
.goodie__value-label {
  font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.goodie__value-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.goodie__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .8rem;
  position: relative;
}
.goodie__list li {
  display: flex; gap: 1.2rem;
  padding: 1.3rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.goodie__list li:hover {
  transform: translateX(4px);
  border-color: rgba(200,163,94,.45);
  box-shadow: 0 12px 24px -16px rgba(20,22,28,.18);
}
.goodie__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--gold-grad);
  color: var(--ink-1);
}
.goodie__icon svg { width: 22px; height: 22px; }
.goodie__list h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 .15rem;
  letter-spacing: -.005em;
}
.goodie__list p {
  margin: 0;
  font-size: .87rem;
  color: rgba(20,22,28,.65);
  line-height: 1.45;
}

/* ---- CLUB ---- */
.club {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper-2);
  text-align: center;
}
.club__quote {
  margin: 3rem auto 0;
  max-width: 720px;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.club__qmark {
  width: 38px; height: auto;
  color: var(--gold-2);
  opacity: .35;
  margin-bottom: 1rem;
  display: inline-block;
}
.club__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  margin: 0 0 1.6rem;
  color: var(--ink-1);
}
.club__quote cite {
  display: block;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(20,22,28,.55);
}

/* ---- MANIFEST (English brand statement) ---- */
.manifest {
  text-align: center;
  margin: 0 auto 2.6rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(245,241,234,.10);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.35;
  color: rgba(245,241,234,.92);
  letter-spacing: -.005em;
  max-width: 28ch;
}
.manifest__line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: manifestIn .9s var(--ease-out) forwards;
}
.manifest__line:nth-child(1) { animation-delay: .25s; }
.manifest__line:nth-child(2) { animation-delay: .55s; }
.manifest__line:nth-child(3) { animation-delay: .85s; }
.manifest__cap {
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}
@keyframes manifestIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- CTA / FORM ---- */
.cta {
  background: var(--ink-1);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__glow {
  position: absolute;
  width: 70vw; height: 70vw;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,134,.18), transparent 60%);
  filter: blur(20px);
}
.form {
  max-width: 560px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field { display: flex; flex-direction: column; text-align: left; }
.field__label {
  font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.6);
  margin-bottom: .5rem;
}
.field input {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(245,241,234,.05);
  border: 1px solid rgba(245,241,234,.15);
  border-radius: var(--r-md);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(245,241,234,.08);
}
.check {
  display: flex; gap: .8rem; align-items: flex-start;
  text-align: left;
  margin: 1rem 0 1.6rem;
  font-size: .82rem;
  color: rgba(245,241,234,.7);
  line-height: 1.45;
}
.check input { margin-top: .25rem; accent-color: var(--gold-2); }

.form .btn--primary { width: 100%; justify-content: center; }
.form__note {
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(245,241,234,.55);
  margin: 1.2rem 0 0;
}
.form__success {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem;
  margin-top: 1.6rem;
  border: 1px solid rgba(111,179,154,.4);
  background: rgba(111,179,154,.08);
  border-radius: var(--r-md);
  color: var(--paper);
  text-align: left;
}
/* The HTML5 `hidden` attribute uses `display: none`, but the explicit
   `display: flex` rule above wins. Force the hidden state explicitly: */
.form__success[hidden] { display: none; }
.form__success svg { width: 32px; height: 32px; color: var(--vital); flex-shrink: 0; }
.form__success div { display: flex; flex-direction: column; gap: .2rem; }
.form__success strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.form__success span { font-size: .85rem; color: rgba(245,241,234,.7); }

/* ---- FAQ ---- */
.faq { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--paper); }
.faq__list { margin: 3rem 0 0; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  padding: 1.6rem 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-3); }
.faq__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before { top: 50%; left: 25%; right: 25%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 25%; bottom: 25%; width: 1.5px; transform: translateX(-50%); transition: transform .35s var(--ease); }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--gold-grad); border-color: transparent; color: var(--ink-1); }
.faq__body {
  padding: 0 0 1.8rem;
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(20,22,28,.7);
  max-width: 70ch;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--ink-1);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,241,234,.65);
  margin: 0;
}
.footer__brands {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: .7;
}
.footer__brands img { width: auto; height: 26px; max-width: 110px; object-fit: contain; }
.footer__brands img[alt^="h"] { height: 36px; }   /* near-square h²one mark */
.footer__meta {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(245,241,234,.5);
}
.footer__sep { opacity: .4; }
.footer__meta a:hover { color: var(--gold-1); }

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: none;
  align-items: center; gap: .5rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  background: var(--gold-grad);
  color: var(--ink-1);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 14px 30px -10px rgba(200,163,94,.6);
}

/* ---- REVEAL ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BMS DEEP DIVE — 3 Dimensions, Mindset Quadrant, Mission
   Shared structural CSS, themed via tokens (mono / summit / gold).
   ============================================================ */

/* ---- 3 DIMENSIONS (Körper · Geist · Seele) ---- */
.dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 3rem auto 0;
  max-width: 1080px;
}
.dim {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  border-radius: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.dim:hover {
  transform: translateY(-3px);
  border-color: rgba(20,22,28,.4);
  box-shadow: 0 28px 60px -32px rgba(20,22,28,.25);
}
.dim__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ink-1);
  color: var(--paper);
  margin-bottom: 1.4rem;
}
.dim__icon svg { width: 22px; height: 22px; }
.dim__name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0 0 .25rem;
  color: var(--ink-1);
}
.dim__short {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-3);
  margin: 0 0 .9rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.dim__copy {
  font-size: .93rem;
  line-height: 1.55;
  color: rgba(20,22,28,.7);
  margin: 0;
}
.dim-formula {
  max-width: 620px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-1);
}
.dim-formula strong {
  font-style: normal;
  font-weight: 500;
  color: var(--ink-1);
}
/* dim-formula emphasis uses the themed .grad span — automatic per theme */

/* ---- MINDSET QUADRANT ---- */
.mindset {
  background: var(--paper-2);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.mindset-grid {
  position: relative;
  max-width: 720px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  padding: 2rem 2rem 2rem 3.2rem;
}
.mindset__axis-y,
.mindset__axis-x {
  position: absolute;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-3);
}
.mindset__axis-y {
  left: 0;
  top: 50%;
  transform: translate(-10%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}
.mindset__axis-x {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: .8rem 0 0;
}

.mindset__cell {
  position: relative;
  padding: 1.4rem 1.2rem;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 130px;
  display: flex; flex-direction: column; gap: .55rem;
}
.mindset__type {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(20,22,28,.55);
}
.mindset__cell p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.35;
  color: rgba(20,22,28,.78);
  margin: 0;
}

/* TARGET cell — inverted (dark filled) so it pops in any theme */
.mindset__cell.is-target {
  background: var(--ink-1);
  color: var(--paper);
  border-color: var(--gold-2);
  box-shadow: 0 18px 40px -18px rgba(20,22,28,.35), 0 0 0 3px rgba(225,29,42,0);
}
.mindset__cell.is-target .mindset__type { color: var(--gold-1); }
.mindset__cell.is-target p { color: var(--paper); }
.mindset__cell.is-target .mindset__target-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  position: absolute; top: .75rem; right: .8rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-1);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 620px) {
  .mindset-grid { grid-template-columns: 1fr; padding-left: 1rem; gap: .7rem; }
  .mindset__axis-y { display: none; }
}

/* ---- MISSION BELIEFS (within the club section) ---- */
.mission-beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 3.2rem 0 0;
}
.mission-belief {
  position: relative;
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  border-top: 2px solid var(--gold-2);
  background: rgba(0,0,0,.025);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mission-belief__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-3);
  margin-bottom: .8rem;
}
.mission-belief h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 .4rem;
  letter-spacing: -.005em;
  color: var(--ink-1);
}
.mission-belief p {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(20,22,28,.65);
  margin: 0;
}
@media (max-width: 820px) { .mission-beliefs { grid-template-columns: 1fr; gap: .9rem; } }

/* ---- RESPONSIVE adds for dims ---- */
@media (max-width: 820px) { .dims { grid-template-columns: 1fr; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { grid-column: span 1; }
  .pillar--feature { grid-column: span 2; }
  .protokoll__steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(odd)  { border-right: 1px solid var(--line); }
  .step:nth-child(even) { border-right: 0; }
  .step:not(:last-child):not(:nth-last-child(2)) { border-bottom: 1px solid var(--line); }
  .step:nth-last-child(1) { border-right: 0; }
  .goodie__shell { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__brand .logo--brand { width: 140px; }
  .nav__cta { padding: .55rem .9rem; font-size: .8rem; }
  .nav__cta svg { display: none; }

  .hero { padding-bottom: 4rem; }
  .hero__title br { display: none; }
  .hero__meta { gap: 1.5rem; }
  .hero__meta .sep { display: none; }
  .hero__scroll { display: none; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar, .pillar--feature { grid-column: span 1; }
  .protokoll__steps { grid-template-columns: 1fr; }
  .step { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }

  .form__row { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; align-items: flex-start; }

  .sticky-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
