/* ═══════════════════════════════════════════════════════════
   CLEVER-BUDDIES — style.css
   Design System | Forest Green · Teal · Mint · Sand · Gold
   Fraunces (display) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Palette */
  --forest:      #1A3A2C;
  --forest-deep: #0F2419;
  --forest-mid:  #234D38;
  --teal:        #2AA98C;
  --teal-light:  #4DC4A8;
  --teal-pale:   #A8EAD8;
  --mint:        #C5EFE3;
  --sand:        #F5F0E8;
  --cream:       #FBF8F4;
  --graphite:    #1C1C1C;
  --slate:       #4A5568;
  --muted:       #718096;
  --gold:        #D4A853;
  --white:       #FFFFFF;

  /* Borders */
  --border-light: rgba(255,255,255,0.10);
  --border-dark:  rgba(26,58,44,0.12);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;

  /* Type scale */
  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.25rem;
  --t-xl:   1.5rem;
  --t-2xl:  2rem;
  --t-3xl:  2.75rem;
  --t-4xl:  3.75rem;
  --t-5xl:  5rem;

  /* Spacing */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 6px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.14);

  /* Transition */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --dur:  0.28s;
  --dur-slow: 0.55s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--graphite);
  background: var(--cream);
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }
fieldset { border: none; }
address { font-style: normal; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* ── Typography helpers ─────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
em { font-style: italic; }

.section-title {
  font-size: clamp(var(--t-3xl), 5.5vw, var(--t-4xl));
  margin-bottom: var(--s5);
}
.section-title em { color: var(--teal); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--mint); }

.section-sub {
  font-size: var(--t-lg);
  color: var(--slate);
  line-height: 1.75;
  max-width: 58ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s4);
}
.eyebrow--mint { color: var(--mint); }
.eyebrow--gold { color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.btn--lg {
  font-size: var(--t-md);
  padding: var(--s4) var(--s8);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42,169,140,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--mint);
  border: 1px solid rgba(197,239,227,0.25);
}
.btn--ghost:hover {
  background: rgba(197,239,227,0.07);
  border-color: rgba(197,239,227,0.5);
}
.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,58,44,0.3);
}

/* ── Scroll-reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tags & Chips ───────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: var(--s2); }
.tag {
  font-size: var(--t-xs);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(42,169,140,0.1);
  color: var(--teal);
  letter-spacing: 0.02em;
}
.chip {
  font-size: var(--t-xs);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}
.chip--active {
  background: rgba(42,169,140,0.2);
  color: var(--mint);
  border-color: rgba(42,169,140,0.3);
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s3);
}
.badge--no  { background: rgba(220,60,60,0.1); color: #c0392b; }
.badge--yes { background: rgba(42,169,140,0.12); color: var(--teal); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease);
  padding: var(--s4) 0;
}
.nav--scrolled {
  background: rgba(15,36,25,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: var(--s3) 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,169,140,0.25);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex: 1;
}
.nav__links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur);
}
.nav__links a:hover { color: var(--white); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-left: auto;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur), opacity var(--dur);
}
.nav__mobile {
  display: none;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile--open { display: block; }
.nav__mobile ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: var(--t-md);
  padding: var(--s2) 0;
  transition: color var(--dur);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile-cta {
  display: block;
  text-align: center;
  margin-top: var(--s2);
}

@media (max-width: 780px) {
  .nav__links  { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 72% 50%,
    rgba(42,169,140,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--s32) + var(--s8)) var(--s6) var(--s16);
  width: 100%;
}
.hero__content { display: flex; flex-direction: column; }

.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero__headline {
  font-size: clamp(var(--t-3xl), 6.5vw, var(--t-5xl));
  color: var(--white);
  font-weight: 300;
  line-height: 1.04;
  margin-bottom: var(--s8);
}
.hero__headline em { color: var(--mint); font-style: italic; }

.hero__sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.60);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: var(--s10);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s12);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--s6);
  padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}
.stat__label {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}
.stat__sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Trust canvas */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.trust-canvas {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  display: block;
}
.trust-legend {
  display: flex;
  gap: var(--s5);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-legend__item {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.trust-legend__item--1 { color: rgba(197,239,227,0.9); }
.trust-legend__item--2 { color: rgba(42,169,140,0.6); }
.trust-legend__item--3 { color: rgba(255,255,255,0.25); }

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  padding: var(--s8) 0 var(--s6);
  color: rgba(255,255,255,0.25);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollBar 2s ease-in-out infinite;
}
@keyframes scrollBar {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s8);
    padding-top: calc(var(--s24) + var(--s8));
  }
  .hero__content { align-items: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .trust-canvas { max-width: 320px; }
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════════════════ */
.problem {
  background: var(--forest-deep);
  padding: var(--s24) 0;
}
.problem__intro {
  text-align: center;
  margin-bottom: var(--s16);
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s5);
  margin-bottom: var(--s16);
}
.problem__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: background var(--dur), transform var(--dur);
}
.problem__card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.problem__card-icon { font-size: var(--t-2xl); margin-bottom: var(--s4); }
.problem__card h3 {
  font-family: var(--font-body);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s3);
}
.problem__card p { color: rgba(255,255,255,0.5); line-height: 1.75; }
.problem__quote {
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 3vw, var(--t-3xl));
  color: rgba(255,255,255,0.80);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: var(--s10);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) {
  .problem__cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   KONZEPT
══════════════════════════════════════════════════════════════ */
.konzept {
  background: var(--sand);
  padding: var(--s24) 0;
}
.konzept__header { margin-bottom: var(--s16); max-width: 640px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s4);
  margin-bottom: var(--s12);
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--dur), transform var(--dur);
}
.pillar:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.pillar__not { margin-bottom: 0; }
.pillar__not h3 { color: var(--slate); margin-bottom: var(--s2); }
.pillar__not p { font-size: var(--t-sm); color: var(--muted); line-height: 1.65; }
.pillar__strike { text-decoration: line-through; text-decoration-color: rgba(192,57,43,0.45); }
.pillar__arrow {
  font-size: var(--t-xl);
  color: var(--teal);
  text-align: center;
  padding: var(--s5) 0;
  border-top: 1px dashed var(--border-dark);
  border-bottom: 1px dashed var(--border-dark);
  margin: var(--s5) 0;
}
.pillar__yes h3 { color: var(--graphite); margin-bottom: var(--s2); }
.pillar__yes p  { font-size: var(--t-sm); color: var(--slate); line-height: 1.65; }
.pillar__yes p em { color: var(--teal); font-style: italic; font-weight: 500; }

.konzept__tagline {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s12);
  text-align: center;
}
.konzept__tagline p {
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 2.5vw, var(--t-2xl));
  color: rgba(255,255,255,0.80);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  max-width: 65ch;
  margin: 0 auto;
}
.konzept__tagline strong { color: var(--mint); font-style: normal; font-weight: 500; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; max-width: 520px; }
  .konzept__tagline { padding: var(--s8); }
}

/* ══════════════════════════════════════════════════════════════
   WIE ES FUNKTIONIERT
══════════════════════════════════════════════════════════════ */
.wie {
  background: var(--cream);
  padding: var(--s24) 0;
}
.wie__header { text-align: center; margin-bottom: var(--s16); }
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  max-width: 820px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s8);
  padding: var(--s8);
  background: var(--sand);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  transition: box-shadow var(--dur), transform var(--dur);
}
.step:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.step__num {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--teal);
  opacity: 0.45;
  line-height: 1;
  padding-top: 2px;
  font-weight: 300;
}
.step__body h3 {
  font-family: var(--font-body);
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: var(--s3);
  color: var(--graphite);
}
.step__body p { color: var(--slate); line-height: 1.75; margin-bottom: var(--s5); }

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: var(--s3); }
  .step__num { font-size: var(--t-xl); }
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.features {
  background: var(--forest);
  padding: var(--s24) 0;
}
.features__header { margin-bottom: var(--s16); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s4);
}

/* Feature card base */
.fcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: background var(--dur), transform var(--dur), border-color var(--dur);
}
.fcard:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(42,169,140,0.22);
  transform: translateY(-3px);
}
.fcard--lg { grid-column: span 6; }
.fcard--sm { grid-column: span 3; }

.fcard__icon { width: 44px; height: 44px; color: var(--teal); margin-bottom: var(--s6); }
.fcard__icon svg { width: 100%; height: 100%; }
.fcard h3 {
  font-family: var(--font-body);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s3);
}
.fcard p { color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: var(--s4); }
.fcard__example { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

/* Trust Passport levels */
.passport-levels {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-top: var(--s6);
}
.lvl {
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.3);
}
.lvl--active {
  background: rgba(42,169,140,0.15);
  border-color: rgba(42,169,140,0.3);
  color: var(--mint);
}

/* FAV Consent split layout */
.fcard__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  height: 100%;
}
.consent-levels { display: flex; flex-direction: column; gap: var(--s3); justify-content: center; }
.clvl {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--dur);
}
.clvl--active {
  background: rgba(42,169,140,0.12);
  border-color: rgba(42,169,140,0.25);
}
.clvl__icon { font-size: var(--t-base); width: 20px; text-align: center; flex-shrink: 0; }
.clvl strong { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--white); }
.clvl p { font-size: var(--t-xs); color: rgba(255,255,255,0.4); margin: 0; }
.clvl--active strong { color: var(--mint); }
.clvl--active p     { color: rgba(197,239,227,0.55); }

/* Feature grid responsive */
@media (max-width: 1024px) {
  .fcard--lg, .fcard--sm { grid-column: span 12; }
  .fcard__split { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .fcard--sm { grid-column: span 6; }
}

/* ══════════════════════════════════════════════════════════════
   VERGLEICH
══════════════════════════════════════════════════════════════ */
.vergleich {
  background: var(--sand);
  padding: var(--s24) 0;
}
.vergleich__header { text-align: center; margin-bottom: var(--s16); }
.vtable {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--sh-md);
}
.vtable__row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  border-bottom: 1px solid var(--border-dark);
}
.vtable__row:last-child { border-bottom: none; }
.vcell {
  padding: var(--s4) var(--s5);
  font-size: var(--t-sm);
  color: var(--slate);
  background: var(--cream);
  border-right: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
}
.vcell:last-child { border-right: none; }
.vtable__row--head .vcell {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--sand);
  padding: var(--s3) var(--s5);
}
.vcell--label { font-weight: 600; color: var(--graphite); background: var(--sand); }
.vcell--cb {
  background: rgba(42,169,140,0.06);
  color: var(--forest);
  font-weight: 600;
}
.vtable__row--head .vcell--cb { color: var(--teal); background: rgba(42,169,140,0.05); }

@media (max-width: 720px) {
  .vtable__row { grid-template-columns: 1.4fr 1fr 1fr; }
  /* Hide cols 2 & 3 (Social Media, WhatsApp) */
  .vtable__row .vcell:nth-child(2),
  .vtable__row .vcell:nth-child(3) { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   PERSONAS
══════════════════════════════════════════════════════════════ */
.personas {
  background: var(--cream);
  padding: var(--s24) 0;
}
.personas__header { text-align: center; margin-bottom: var(--s16); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.persona {
  background: var(--sand);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: box-shadow var(--dur), transform var(--dur);
}
.persona:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.persona__age {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s2);
}
.persona__name {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  color: var(--graphite);
  margin-bottom: var(--s6);
}
.persona__quote {
  font-size: var(--t-base);
  color: var(--slate);
  line-height: 1.75;
  border-left: 2px solid var(--teal);
  padding-left: var(--s4);
  margin-bottom: var(--s6);
  font-style: italic;
}
.persona__benefits { display: flex; flex-direction: column; gap: var(--s2); }
.persona__benefits li {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--forest);
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
}
.persona__benefits li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
  .persona-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   ANBIETER
══════════════════════════════════════════════════════════════ */
.anbieter {
  background: var(--forest);
  padding: var(--s24) 0;
}
.anbieter__header { margin-bottom: var(--s16); max-width: 560px; }
.anbieter__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
  margin-bottom: var(--s12);
}

/* Profile mock card */
.profile-mock {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--s8);
}
.profile-mock__head {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.profile-mock__av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: var(--t-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-mock__name  { font-weight: 600; color: var(--white); font-size: var(--t-base); }
.profile-mock__title { font-size: var(--t-sm); color: rgba(255,255,255,0.45); }
.profile-mock__badge {
  margin-left: auto;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--mint);
  background: rgba(42,169,140,0.15);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.profile-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s6);
  text-align: center;
}
.pstat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  color: var(--mint);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2px;
}
.pstat__label { font-size: var(--t-xs); color: rgba(255,255,255,0.35); }
.profile-mock__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s6);
}
.ptag {
  font-size: var(--t-xs);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(42,169,140,0.12);
  color: var(--teal-pale);
  border: 1px solid rgba(42,169,140,0.2);
}
.profile-mock__why {
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  padding: var(--s4);
  border: 1px solid rgba(255,255,255,0.06);
}
.profile-mock__why-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.profile-mock__why ul { display: flex; flex-direction: column; gap: var(--s2); }
.profile-mock__why li { font-size: var(--t-sm); color: rgba(255,255,255,0.52); }

/* Benefits grid */
.anbieter__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
.abenefit {
  padding: var(--s6);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  transition: background var(--dur), transform var(--dur);
}
.abenefit:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.abenefit__icon { font-size: var(--t-2xl); margin-bottom: var(--s4); }
.abenefit h3 {
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s2);
}
.abenefit p { font-size: var(--t-sm); color: rgba(255,255,255,0.48); line-height: 1.7; }

.anbieter__cta { text-align: center; }
.anbieter__cta-sub {
  margin-top: var(--s3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.30);
}

@media (max-width: 900px) {
  .anbieter__body { grid-template-columns: 1fr; }
  .anbieter__benefits { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   VISION
══════════════════════════════════════════════════════════════ */
.vision {
  background: var(--forest-deep);
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 80% 50%,
    rgba(212,168,83,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.vision__header { text-align: center; margin-bottom: var(--s16); }
.vision__sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.52);
  max-width: 60ch;
  margin: var(--s6) auto 0;
  line-height: 1.8;
}
.vision__layers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s16);
}
.vlayer {
  text-align: center;
  padding: var(--s8) var(--s6);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  transition: background var(--dur), transform var(--dur), border-color var(--dur);
}
.vlayer:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.18);
  transform: translateY(-4px);
}
.vlayer__icon { font-size: 2rem; margin-bottom: var(--s4); }
.vlayer h3 {
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s2);
}
.vlayer p { font-size: var(--t-sm); color: rgba(255,255,255,0.4); line-height: 1.65; }
.vision__quote {
  font-family: var(--font-display);
  font-size: clamp(var(--t-lg), 2.5vw, var(--t-2xl));
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-top: var(--s10);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vision__quote em { color: var(--gold); font-style: italic; }

@media (max-width: 840px) {
  .vision__layers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vision__layers { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   WAITLIST
══════════════════════════════════════════════════════════════ */
.waitlist {
  background: var(--sand);
  padding: var(--s24) 0;
}
.waitlist__content { max-width: 660px; }
.waitlist__sub {
  font-size: var(--t-lg);
  color: var(--slate);
  line-height: 1.75;
  margin-top: var(--s4);
  margin-bottom: var(--s10);
}
.waitlist__form { display: flex; flex-direction: column; gap: var(--s4); }
.waitlist__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}
.waitlist__input {
  flex: 1;
  min-width: 220px;
  padding: var(--s4) var(--s6);
  border-radius: var(--r-pill);
  background: var(--cream);
  border: 1px solid var(--border-dark);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--graphite);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.waitlist__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,169,140,0.15);
}
.waitlist__type {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: var(--s2);
  cursor: pointer;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--slate);
  transition: color var(--dur);
}
.radio-opt:hover { color: var(--graphite); }
.radio-opt input { accent-color: var(--teal); width: 15px; height: 15px; }
.waitlist__legal {
  font-size: var(--t-xs);
  color: var(--muted);
  margin-top: var(--s2);
}

/* Success state */
.waitlist__success {
  text-align: center;
  padding: var(--s12);
  background: var(--cream);
  border-radius: var(--r-xl);
  border: 1px solid rgba(42,169,140,0.2);
  margin-top: var(--s8);
}
.success-ring {
  width: 52px; height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xl);
  font-weight: 700;
  margin: 0 auto var(--s4);
}
.waitlist__success h3 {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  margin-bottom: var(--s2);
}
.waitlist__success p { color: var(--slate); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--graphite);
  padding: var(--s16) 0 var(--s8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--white);
  font-weight: 400;
  margin-bottom: var(--s4);
}
.footer__logo-ring {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.footer__brand p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: var(--s1);
}
.footer__tagline { font-style: italic; color: rgba(255,255,255,0.25) !important; }
.footer__links h4 {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: var(--s4);
}
.footer__links ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer__links a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.22);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
