/* ════════════════════════════════════════════════════════════════════
   entu — shared site styles
   Cohesive with the pitch deck (deep-green / sage / Georgia + Figtree).
   Used by index.html, angebote.html and the Angebot detail pages.
   ════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --green-deep:    #1A3028;   /* anchor / dark canvas        */
  --green-deeper:  #142621;   /* deepest panels              */
  --green-rule:    #4A7C59;   /* rule on light               */
  --green-sage:    #6DB88A;   /* sage accent / rule on dark  */
  --paper:         #FAFAF8;   /* light canvas                */
  --tint:          #EEF4F0;   /* soft green tint box         */
  --ink:           #141414;   /* headings on light           */
  --ink-body:      #23241F;   /* body on light               */
  --ink-caption:   #595B51;   /* captions / sublines         */
  --ink-muted:     #8A8C82;   /* sources / fine print        */
  --hairline:      rgba(74, 124, 89, 0.20);
  --hairline-dk:   rgba(109, 184, 138, 0.22);

  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   'Figtree', system-ui, sans-serif;

  --maxw:   1200px;
  --pad-x:  clamp(22px, 5vw, 72px);
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--green-rule); }
sup { font-size: 0.58em; font-weight: 600; color: var(--green-rule); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }

/* shared serif headline helper */
.h-serif {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-rule);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--green-rule);
}

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--green-sage); color: var(--green-deeper); }
.btn--primary:hover { background: #82c89c; transform: translateY(-2px); }
.btn--ghost-dark { border-color: var(--hairline-dk); color: var(--paper); }
.btn--ghost-dark:hover { border-color: var(--green-sage); color: var(--green-sage); }
.btn--solid-dark { background: var(--green-deep); color: var(--paper); }
.btn--solid-dark:hover { background: var(--green-deeper); transform: translateY(-2px); }
.btn--ghost { border-color: var(--hairline); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green-rule); color: var(--green-rule); }

/* ── NAV ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--paper); letter-spacing: -0.01em; transition: color .35s var(--ease); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 14px; font-weight: 500; color: rgba(250,250,248,0.82); transition: color .25s var(--ease); position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--green-sage); transition: width .25s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--paper); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; font-size: 14px; }

/* scrolled state (also used as the default on light-hero inner pages via .nav--solid) */
.nav.is-scrolled,
.nav--solid { background: rgba(250,250,248,0.92); backdrop-filter: blur(12px); border-bottom-color: var(--hairline); }
.nav.is-scrolled .nav__logo,
.nav--solid .nav__logo { color: var(--ink); }
.nav.is-scrolled .nav__links a,
.nav--solid .nav__links a { color: var(--ink-caption); }
.nav.is-scrolled .nav__links a:not(.btn):hover,
.nav--solid .nav__links a:not(.btn):hover { color: var(--ink); }
.nav.is-scrolled .nav__cta,
.nav--solid .nav__cta { background: var(--green-deep); color: var(--paper); border-color: var(--green-deep); }
.nav.is-scrolled .nav__cta:hover,
.nav--solid .nav__cta:hover { background: var(--green-deeper); }

/* ── HERO (home) ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--paper);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(109,184,138,0.16), transparent 60%),
    radial-gradient(800px 600px at 8% 95%, rgba(74,124,89,0.18), transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(109,184,138,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,184,138,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); width: 100%; }
.hero .kicker { color: var(--green-sage); }
.hero .kicker::before { background: var(--green-sage); }
.hero__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--paper);
  margin: 26px 0 28px;
  max-width: 16ch;
}
.hero__title em { color: var(--green-sage); }
.hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(250,250,248,0.80);
  max-width: 56ch; line-height: 1.55;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__trust {
  margin-top: 54px; padding-top: 26px;
  border-top: 1px solid var(--hairline-dk);
  display: flex; gap: 38px; flex-wrap: wrap;
  font-size: 13px; color: rgba(250,250,248,0.62);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero__trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-sage); }

.scrollcue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 2; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,248,0.45); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scrollcue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--green-sage), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{ opacity:1; transform: scaleY(1);} }

/* ── PAGE HERO (inner pages — shorter, dark, with breadcrumb) ──────── */
.phero {
  position: relative; background: var(--green-deep); color: var(--paper);
  padding: 158px 0 78px; overflow: hidden;
}
.phero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 520px at 82% 6%, rgba(109,184,138,0.16), transparent 60%);
}
.phero .wrap { position: relative; z-index: 2; }
.phero .kicker { color: var(--green-sage); }
.phero .kicker::before { background: var(--green-sage); }
.phero__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--paper); margin: 20px 0 22px; max-width: 18ch;
}
.phero__title em { color: var(--green-sage); }
.phero__lead { font-size: clamp(16px, 1.9vw, 19px); color: rgba(250,250,248,0.80); max-width: 58ch; }
.phero__meta {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--hairline-dk);
  display: flex; gap: 48px; flex-wrap: wrap;
}
.phero__meta div { display: flex; flex-direction: column; gap: 4px; }
.phero__meta .lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,248,0.5); }
.phero__meta .val { font-size: 18px; font-family: var(--serif); color: var(--green-sage); font-weight: 700; }

/* breadcrumb */
.crumb { font-size: 13px; color: rgba(250,250,248,0.55); display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--green-sage); }
.crumb span { color: rgba(250,250,248,0.35); }

/* ── PROOF / STATS BAND ────────────────────────────────────────────── */
.proof { background: var(--paper); padding: 86px 0 78px; border-bottom: 1px solid var(--hairline); }
.proof__head { max-width: 60ch; margin-bottom: 52px; }
.proof__head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(24px,3vw,33px); line-height: 1.15; color: var(--ink); letter-spacing: -0.015em; margin-top: 18px; }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 6px 30px 6px 0; border-left: 1px solid var(--hairline); padding-left: 26px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num { font-family: var(--serif); font-weight: 700; font-size: clamp(40px, 4.6vw, 60px); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stat--accent .stat__num { color: var(--green-rule); }
.stat__label { font-size: 14px; color: var(--ink-body); margin-top: 14px; font-weight: 500; line-height: 1.4; }
.stat__src { font-size: 11px; color: var(--ink-muted); margin-top: 8px; }

/* ── SECTION HEADING (shared) ──────────────────────────────────────── */
.sec { padding: clamp(78px, 9vw, 118px) 0; }
.sec--tight { padding: clamp(56px, 6vw, 84px) 0; }
.sec__head { max-width: 64ch; margin-bottom: 60px; }
.sec__title { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin-top: 20px; }
.sec__title em { color: var(--green-rule); }
.sec__intro { font-size: 18px; color: var(--ink-caption); margin-top: 22px; max-width: 60ch; }

/* ── PILLARS (home Leistungen) ─────────────────────────────────────── */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.pillar { padding: 44px 34px 40px; border-right: 1px solid var(--hairline); position: relative; transition: background .3s var(--ease); }
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--tint); }
.pillar__no { font-family: var(--serif); font-size: 15px; color: var(--green-rule); font-weight: 700; }
.pillar__title { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1.12; color: var(--ink); margin: 18px 0 14px; letter-spacing: -0.01em; }
.pillar__body { font-size: 15.5px; color: var(--ink-body); }
.pillar__list { list-style: none; margin: 20px 0 24px; }
.pillar__list li { font-size: 14px; color: var(--ink-caption); padding-left: 20px; position: relative; margin-bottom: 9px; }
.pillar__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--green-rule); }
.pillar__tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--green-rule); background: var(--tint); border: 1px solid var(--hairline);
  padding: 5px 12px; border-radius: 2px; text-transform: uppercase;
}

/* ── OFFER CARDS (Angebote hub) ────────────────────────────────────── */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.offer-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 4px;
  padding: 38px 34px 32px; background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(20,38,33,0.35); border-color: var(--green-rule); }
.offer-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.offer-card__no { font-family: var(--serif); font-size: 15px; color: var(--green-rule); font-weight: 700; }
.offer-card__tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--green-rule); background: var(--tint); border: 1px solid var(--hairline);
  padding: 5px 11px; border-radius: 2px;
}
.offer-card__title { font-family: var(--serif); font-weight: 700; font-size: 28px; line-height: 1.1; color: var(--ink); margin: 16px 0 12px; letter-spacing: -0.012em; }
.offer-card__body { font-size: 15.5px; color: var(--ink-body); }
.offer-card__meta { display: flex; gap: 28px; margin: 22px 0; flex-wrap: wrap; }
.offer-card__meta div { display: flex; flex-direction: column; gap: 3px; }
.offer-card__meta .lbl { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.offer-card__meta .val { font-size: 14px; color: var(--ink-body); font-weight: 600; }
.offer-card__price { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--hairline); }
.offer-card__price .gross { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--ink); letter-spacing: -0.01em; }
.offer-card__price .net { font-size: 13px; color: var(--green-rule); font-weight: 600; margin-top: 4px; }
.offer-card__link { margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--green-rule); display: inline-flex; gap: 9px; align-items: center; }
.offer-card .arr { transition: transform .25s var(--ease); }
.offer-card:hover .arr { transform: translateX(4px); }

/* ── APPROACH / PRINCIPLES (dark) ──────────────────────────────────── */
.approach { background: var(--green-deep); color: var(--paper); position: relative; overflow: hidden; }
.approach::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 85% 0%, rgba(109,184,138,0.12), transparent 60%);
}
.approach .wrap { position: relative; z-index: 2; }
.approach .kicker { color: var(--green-sage); }
.approach .kicker::before { background: var(--green-sage); }
.approach .sec__title { color: var(--paper); }
.approach .sec__title em { color: var(--green-sage); }
.approach .sec__intro { color: rgba(250,250,248,0.74); }
.approach__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-dk); border: 1px solid var(--hairline-dk); margin-top: 12px; }
.principle { background: var(--green-deep); padding: 40px 34px; }
.principle__icon { width: 40px; height: 40px; margin-bottom: 24px; }
.principle__icon svg { width: 100%; height: 100%; stroke: var(--green-sage); fill: none; stroke-width: 1.4; }
.principle__title { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--paper); margin-bottom: 14px; letter-spacing: -0.01em; }
.principle__body { font-size: 15px; color: rgba(250,250,248,0.74); }
.approach__note { margin-top: 44px; font-size: 14px; color: rgba(250,250,248,0.58); display: flex; align-items: center; gap: 12px; }
.approach__note::before { content: ""; width: 26px; height: 1px; background: var(--green-sage); }

/* ── INCLUDES LIST (detail pages) ──────────────────────────────────── */
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; border-top: 1px solid var(--hairline); }
.include { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--hairline); }
.include__check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--tint); border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.include__check svg { width: 12px; height: 12px; stroke: var(--green-rule); stroke-width: 2.4; fill: none; }
.include__text h4 { font-size: 16px; color: var(--ink); font-weight: 600; margin-bottom: 5px; }
.include__text p { font-size: 14px; color: var(--ink-caption); }

/* ── PROCESS / TIMELINE STEPS ──────────────────────────────────────── */
.steps { position: relative; }
.step { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 0 0 40px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step__no {
  font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--green-rule);
  position: relative; z-index: 2;
}
.step::before {
  content: ""; position: absolute; left: 16px; top: 46px; bottom: -6px; width: 1px; background: var(--hairline);
}
.step:last-child::before { display: none; }
.step__phase { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.step__title { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.step__body { font-size: 15px; color: var(--ink-body); max-width: 60ch; }
/* steps on a dark (approach) section */
.steps--on-dark .step__no { color: var(--green-sage); }
.steps--on-dark .step::before { background: var(--hairline-dk); }
.steps--on-dark .step__phase { color: rgba(250,250,248,0.5); }
.steps--on-dark .step__title { color: var(--paper); }
.steps--on-dark .step__body { color: rgba(250,250,248,0.74); }

/* ── PRICING BLOCK (detail pages) ──────────────────────────────────── */
.pricing { background: var(--green-deep); color: var(--paper); border-radius: 6px; padding: 48px clamp(28px,4vw,56px); position: relative; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 100% 0%, rgba(109,184,138,0.14), transparent 60%);
}
.pricing__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pricing__label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-sage); font-weight: 600; }
.pricing__gross { font-family: var(--serif); font-weight: 700; font-size: clamp(38px,5vw,56px); line-height: 1.02; color: var(--paper); margin: 14px 0 6px; letter-spacing: -0.02em; }
.pricing__unit { font-size: 16px; color: rgba(250,250,248,0.7); }
.pricing__net { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--hairline-dk); }
.pricing__net .net-line { font-size: 15px; color: rgba(250,250,248,0.85); display: flex; align-items: baseline; gap: 10px; }
.pricing__net .net-line b { font-family: var(--serif); font-size: 24px; color: var(--green-sage); font-weight: 700; }
.pricing__foot { font-size: 12px; color: rgba(250,250,248,0.55); margin-top: 16px; line-height: 1.5; }
.pricing__cta { display: flex; flex-direction: column; gap: 14px; }
.pricing__cta .note { font-size: 13px; color: rgba(250,250,248,0.62); }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.faq__q .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease); }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--green-rule); }
.faq__q .ic::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq__q .ic::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); transition: opacity .3s var(--ease); }
.faq__item.is-open .faq__q .ic::after { opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 26px; font-size: 15.5px; color: var(--ink-body); max-width: 70ch; }

/* ── FOUNDERS ──────────────────────────────────────────────────────── */
.founders { background: var(--paper); }
.founders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--hairline); }
.founder { padding: 48px 0; }
.founder:first-child { border-right: 1px solid var(--hairline); padding-right: 48px; }
.founder:last-child { padding-left: 48px; }
.founder__mono {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-deep); color: var(--green-sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 22px; margin-bottom: 24px;
}
.founder__name { font-family: var(--serif); font-weight: 700; font-size: 28px; color: var(--ink); letter-spacing: -0.015em; }
.founder__role { font-size: 14px; color: var(--green-rule); font-weight: 600; margin-top: 6px; }
.founder__bio { font-size: 15.5px; color: var(--ink-body); margin: 20px 0 22px; }
.founder__list { list-style: none; }
.founder__list li { font-size: 14px; color: var(--ink-caption); padding-left: 22px; position: relative; margin-bottom: 11px; }
.founder__list li::before { content: "—"; position: absolute; left: 0; color: var(--green-rule); }
.founder__list b { color: var(--ink-body); font-weight: 600; }

/* ── RELATED OFFERS (detail page footer band) ──────────────────────── */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.related__item { padding: 30px 28px 30px 0; border-right: 1px solid var(--hairline); transition: background .3s var(--ease); }
.related__item:last-child { border-right: none; }
.related__item:hover { background: var(--tint); }
.related__no { font-family: var(--serif); font-size: 13px; color: var(--green-rule); font-weight: 700; }
.related__title { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--ink); margin: 10px 0 8px; }
.related__link { font-size: 13px; font-weight: 600; color: var(--green-rule); display: inline-flex; gap: 7px; }

/* ── CTA ───────────────────────────────────────────────────────────── */
.cta { background: var(--green-deeper); color: var(--paper); position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(109,184,138,0.16), transparent 60%),
    radial-gradient(700px 500px at 95% 90%, rgba(74,124,89,0.16), transparent 55%);
}
.cta__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(80px,10vw,130px) var(--pad-x); }
.cta__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.cta .kicker { color: var(--green-sage); }
.cta .kicker::before { background: var(--green-sage); }
.cta__title { font-family: var(--serif); font-weight: 700; font-size: clamp(32px,4.5vw,52px); line-height: 1.06; letter-spacing: -0.02em; color: var(--paper); margin: 22px 0 24px; }
.cta__title em { color: var(--green-sage); }
.cta__lead { font-size: 18px; color: rgba(250,250,248,0.78); max-width: 48ch; margin-bottom: 36px; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta__card { background: rgba(250,250,248,0.04); border: 1px solid var(--hairline-dk); border-radius: 4px; padding: 34px; }
.cta__card h4 { font-family: var(--serif); font-size: 19px; color: var(--paper); margin-bottom: 20px; font-weight: 700; }
.cta__row { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-top: 1px solid var(--hairline-dk); }
.cta__row:first-of-type { border-top: none; padding-top: 0; }
.cta__row .lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,248,0.5); }
.cta__row .val { font-size: 15px; color: var(--paper); font-weight: 500; }
.cta__row a.val:hover { color: var(--green-sage); }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer { background: var(--green-deep); color: rgba(250,250,248,0.6); padding: 54px 0 40px; border-top: 1px solid var(--hairline-dk); }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--hairline-dk); }
.footer__brand { max-width: 38ch; }
.footer__logo { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--paper); }
.footer__tag { font-size: 14px; margin-top: 12px; line-height: 1.55; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-sage); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; font-size: 14px; margin-bottom: 10px; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 12px; color: var(--ink-muted); }

/* ── SCROLL REVEAL ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scrollcue::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat { border-left: none; padding-left: 0; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--hairline); }
  .pillar:last-child { border-bottom: none; }
  .offers { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; gap: 0; }
  .founders__grid { grid-template-columns: 1fr; }
  .founder:first-child { border-right: none; border-bottom: 1px solid var(--hairline); padding-right: 0; }
  .founder:last-child { padding-left: 0; }
  .pricing__inner { grid-template-columns: 1fr; gap: 32px; }
  .related { grid-template-columns: 1fr; }
  .related__item { border-right: none; border-bottom: 1px solid var(--hairline); padding-right: 0; }
  .related__item:last-child { border-bottom: none; }
  .cta__grid { grid-template-columns: 1fr; gap: 44px; }
  .phero__meta { gap: 28px; }
  .footer__top { flex-direction: column; }
}
