/* GreenArt Edu — Redesign */
:root {
  --ink: #0e1f15;
  --ink-2: #1a3a2a;
  --moss: #2d4a32;
  --sage: #5c8a5c;
  --sage-soft: #c8d6b9;
  --paper: #f4f1e8;
  --paper-2: #ece8db;
  --line: #d6d2c2;
  --line-strong: #1a3a2a;
  --muted: #6b7565;
  --accent: #c2410c;
  --radius: 2px;
  --max: 1320px;
  --gutter: 32px;
  --font-display: "Inter Tight", "Söhne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Söhne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "JT Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-2);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink-2);
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 480;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink-2);
  text-wrap: balance;
  margin: 0;
}

/* ───────── NAV ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--paper), transparent 8%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.foot .brand-logo { height: 48px; }
.brand-edu {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--moss);
  letter-spacing: -0.01em;
  line-height: 1;
  padding-left: 2px;
  position: relative;
  top: 1px;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid var(--line);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-2);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--ink-2);
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: #0a1f12; }
.nav-links a.nav-cta { opacity: 1; color: #ffffff; }
.nav-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ab87a;
  box-shadow: 0 0 0 3px rgba(122, 184, 122, 0.25);
}

@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .brand-tag { display: none; }
}

/* ───────── HERO ───────── */
.hero {
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-left { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: end;
}
.hero-left .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 78px);
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink-2);
}
.hero h1 em {
  font-style: italic;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-weight: 400;
  color: var(--moss);
}
.h-words { display: inline; }
.h-words .w { display: inline-block; padding-right: 0.28em; }
.hero h1 em .h-words .w { padding-right: 0.34em; }
.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 560px;
  margin: 0 0 36px;
  opacity: 0.82;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink-2);
  color: var(--paper);
  border-color: var(--ink-2);
}
.btn-primary:hover {
  background: #0a1f12;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink-2);
  color: var(--paper);
}
.btn .arrow {
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding-top: 8px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, var(--paper) 0%, var(--paper) 100%);
}
.meta-block .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.meta-block .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 480;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.meta-block .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

@media (max-width: 880px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; flex-direction: row; flex-wrap: wrap; }
  .meta-block { flex: 1 1 140px; }
}

/* ───────── PILLARS ───────── */
.pillars {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 32px 32px 32px 28px;
  border-right: 1px solid var(--line);
}
.pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink-2);
}
.pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
}
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; border-left: none; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .pillar:last-child { border-bottom: none; }
}

/* ───────── METHODS / NUMBERS ───────── */
.methods {
  padding: 96px 0 80px;
  background: var(--ink-2);
  color: var(--paper);
  position: relative;
}
.methods .eyebrow { color: var(--sage-soft); }
.methods .eyebrow::before { background: var(--sage-soft); }
.methods h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--paper);
  margin: 16px 0 0;
  text-wrap: balance;
  max-width: 22ch;
}
.methods-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.14);
}
.methods-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 241, 232, 0.78);
  max-width: 52ch;
  margin: 0;
}
.methods-intro p code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  background: rgba(244, 241, 232, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--sage-soft);
}

.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244, 241, 232, 0.14);
}
.figure {
  padding: 40px 28px 32px;
  border-right: 1px solid rgba(244, 241, 232, 0.14);
  border-bottom: 1px solid rgba(244, 241, 232, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.figure:nth-child(3n) { border-right: none; }
.figure:nth-last-child(-n+3) { border-bottom: none; }
.figure .id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
  display: flex;
  justify-content: space-between;
  opacity: 0.7;
}
.figure .big {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--paper);
}
.figure .big sup {
  font-size: 0.4em;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--sage-soft);
  vertical-align: top;
  margin-left: 4px;
  letter-spacing: 0.1em;
}
.figure .label {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(244, 241, 232, 0.85);
  margin: 0;
}
.figure .note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(244, 241, 232, 0.18);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--sage-soft);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
@media (max-width: 880px) {
  .methods { padding: 64px 0 48px; }
  .methods-intro { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .figures { grid-template-columns: 1fr; }
  .figure { border-right: none; }
  .figure:nth-last-child(-n+3) { border-bottom: 1px solid rgba(244, 241, 232, 0.14); }
  .figure:last-child { border-bottom: none; }
}

.methods-outro {
  margin-top: 56px;
  padding-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.methods-outro h3 {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--paper);
  max-width: 22ch;
}
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checks li {
  font-size: 14px;
  color: rgba(244, 241, 232, 0.85);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.checks li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--sage-soft);
  font-size: 13px;
}
@media (max-width: 880px) {
  .methods-outro { grid-template-columns: 1fr; gap: 24px; }
}

/* ───────── USE CASES ───────── */
.cases {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}
.cases-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.cases-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 16px 0 0;
  max-width: 22ch;
}
.cases-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.case {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.case:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 32px; padding-left: 0; }
.case:nth-child(even) { padding-left: 32px; padding-right: 0; }
.case .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  padding-top: 4px;
}
.case h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink-2);
  line-height: 1.25;
}
.case p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
}
.case .ex {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--moss);
  letter-spacing: 0.02em;
  display: block;
}
@media (max-width: 880px) {
  .cases { padding: 64px 0 32px; }
  .cases-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case, .case:nth-child(odd), .case:nth-child(even) { padding: 28px 0; border-right: none; }
}

/* ───────── PROCESS ───────── */
.process {
  padding: 96px 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.process-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 16px 0 0;
  max-width: 22ch;
}
.process-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -16px rgba(14, 31, 21, 0.25);
}
.step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--ink-2);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  color: var(--ink-2);
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
}
.step-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--moss);
  letter-spacing: 0.04em;
}
.step-meta .price {
  color: var(--ink-2);
  font-weight: 500;
}
@media (max-width: 880px) {
  .process { padding: 64px 0; }
  .process-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .steps { grid-template-columns: 1fr; }
}

/* ───────── PRICING ───────── */
.pricing {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.pricing-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 16px 0 0;
}
.pricing-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 50ch;
}
.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.price-cell {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-cell:last-child { border-right: none; }
.price-cell.highlight {
  background: var(--ink-2);
  color: var(--paper);
}
.price-cell.highlight .pc-step,
.price-cell.highlight .pc-meta { color: var(--sage-soft); }
.price-cell.highlight h3 { color: var(--paper); }
.price-cell.highlight p { color: rgba(244, 241, 232, 0.78); }
.pc-step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-cell h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.2;
}
.pc-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pc-amount .cur {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.price-cell.highlight .pc-amount .cur { color: var(--sage-soft); }
.pc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  gap: 16px;
}
.price-cell p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
}
@media (max-width: 880px) {
  .pricing { padding: 64px 0; }
  .pricing-head { grid-template-columns: 1fr; gap: 24px; }
  .price-table { grid-template-columns: 1fr; }
  .price-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .price-cell:last-child { border-bottom: none; }
}

/* ───────── FAQ ───────── */
.faq {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.faq-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 16px 0 0;
}
.faq-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  align-items: center;
  gap: 16px;
  color: var(--ink-2);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--moss); }
.faq-q .qnum {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
}
.faq-q .qtxt {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-q .qsign {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink-2);
  text-align: right;
  transition: transform 0.2s;
}
.faq-item.open .qsign { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  padding: 0 56px 0 64px;
}
.faq-item.open .faq-a-inner { padding-bottom: 24px; }
.faq-a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.82;
  max-width: 64ch;
}

@media (max-width: 880px) {
  .faq { padding: 56px 0; }
  .faq-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .faq-q { grid-template-columns: 28px 1fr 24px; gap: 12px; }
  .faq-a-inner { padding: 0 0 0 40px; }
}

/* ───────── CTA / FINAL ───────── */
.final {
  padding: 120px 0;
  background: var(--ink-2);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(122, 184, 122, 0.18), transparent 60%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper);
  margin: 24px 0 0;
  text-wrap: balance;
}
.final h2 em {
  font-style: italic;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-weight: 400;
  color: var(--sage-soft);
}
.final .eyebrow { color: var(--sage-soft); }
.final .eyebrow::before { background: var(--sage-soft); }
.final-side p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 232, 0.78);
  margin: 0 0 24px;
  max-width: 40ch;
}
.final-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.final .btn-primary {
  background: var(--paper);
  color: var(--ink-2);
  border-color: var(--paper);
}
.final .btn-primary:hover { background: #fff; }
.final .btn-ghost {
  color: var(--paper);
  border-color: rgba(244, 241, 232, 0.4);
}
.final .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink-2);
  border-color: var(--paper);
}
@media (max-width: 880px) {
  .final { padding: 72px 0; }
  .final-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ───────── FOOTER ───────── */
.foot {
  padding: 56px 0 40px;
  background: var(--paper);
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.foot h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.foot ul a {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
}
.foot ul a:hover { opacity: 1; color: var(--moss); }
.foot-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 38ch;
  margin: 16px 0 0;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ───────── DECORATIVE BLUEPRINT ───────── */
/* legacy blueprint replaced by animated SVG */
.blueprint { display: none; }

/* utilities */
.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;
}

/* ───────── ANIMATIONS ───────── */

/* Section divider draw-in */
.hero, .pillars, .methods, .cases, .process, .pricing, .faq, .final {
  position: relative;
}
.hero::after, .pillars::after, .methods::after, .cases::after,
.process::after, .pricing::after, .faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--ink-2);
  animation: line-draw 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}
.pillars::after { animation-delay: 0.5s; }
.methods::after { animation-delay: 0.7s; background: var(--sage-soft); opacity: 0.25; }
.cases::after { animation-delay: 0.9s; }
.process::after { animation-delay: 1.1s; }
.pricing::after { animation-delay: 1.3s; }
@keyframes line-draw {
  to { width: 100%; }
}

/* Data ticker — terminal-style streaming line */
.ticker {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--moss);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 14px;
  letter-spacing: 0.02em;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.ticker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sage);
  animation: ticker-pulse 2.4s ease-in-out infinite;
}
.ticker-prompt {
  color: var(--sage);
  font-weight: 600;
}
.ticker-line {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: ticker-type 0.8s steps(40, end);
  color: var(--ink-2);
}
.ticker-cursor {
  display: inline-block;
  color: var(--sage);
  animation: ticker-blink 1s step-end infinite;
  margin-left: -4px;
  font-size: 10px;
}
@keyframes ticker-type {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}
@keyframes ticker-blink {
  50% { opacity: 0; }
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Reveal on scroll — base */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.12s; }
.reveal[data-delay="3"] { transition-delay: 0.18s; }
.reveal[data-delay="4"] { transition-delay: 0.24s; }
.reveal[data-delay="5"] { transition-delay: 0.30s; }
.reveal[data-delay="6"] { transition-delay: 0.36s; }

/* Hero word-reveal — split spans */
.h-words {
  display: inline;
}
.h-words .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.h-words.in .w {
  opacity: 1;
  transform: none;
}

/* Hero blueprint — animated drawing */
.bp-svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 720px;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease 0.2s;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
.bp-svg.in { opacity: 0.32; }
@media (max-width: 1100px) {
  .bp-svg { display: none; }
}
.bp-svg .bp-grid line { stroke: rgba(26, 58, 42, 0.07); stroke-width: 1; }
.bp-svg .bp-grid line.major { stroke: rgba(26, 58, 42, 0.12); }
.bp-svg .bp-draw {
  stroke: rgba(26, 58, 42, 0.42);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: bp-draw 3.2s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
.bp-svg .bp-fill {
  fill: rgba(92, 138, 92, 0.06);
  opacity: 0;
  animation: bp-fade 1.2s ease 2.4s forwards;
}
.bp-svg .bp-mark {
  opacity: 0;
  animation: bp-mark 0.6s ease forwards;
}
.bp-svg .bp-mark.m1 { animation-delay: 1.6s; }
.bp-svg .bp-mark.m2 { animation-delay: 2.0s; }
.bp-svg .bp-mark.m3 { animation-delay: 2.4s; }
.bp-svg .bp-mark.m4 { animation-delay: 2.8s; }
.bp-svg .bp-mark text {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: rgba(26, 58, 42, 0.55);
  letter-spacing: 0.08em;
}
.bp-svg .bp-mark line { stroke: rgba(26, 58, 42, 0.32); stroke-width: 1; }
.bp-svg .bp-mark circle { fill: rgba(26, 58, 42, 0.5); }
.bp-svg .bp-dim {
  stroke: rgba(26, 58, 42, 0.28);
  stroke-width: 1;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: bp-draw 1.4s ease forwards;
}
.bp-svg .bp-dim.d1 { animation-delay: 2.2s; }
.bp-svg .bp-dim.d2 { animation-delay: 2.5s; }
.bp-svg .bp-dim text {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: rgba(26, 58, 42, 0.5);
  opacity: 0;
  animation: bp-fade 0.6s ease forwards;
}
.bp-svg .bp-dim.d1 text { animation-delay: 3.0s; }
.bp-svg .bp-dim.d2 text { animation-delay: 3.3s; }

@keyframes bp-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes bp-fade {
  to { opacity: 1; }
}
@keyframes bp-mark {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* Live dot in nav — pulse */
.nav-cta .dot {
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(122, 184, 122, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(122, 184, 122, 0.05); }
}

/* Count-up numbers — subtle scale-in pre-pop */
.figure .big {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.figure.in .big {
  animation: num-pop 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes num-pop {
  0%   { transform: translateY(0.2em); opacity: 0; letter-spacing: -0.06em; }
  60%  { opacity: 1; }
  100% { transform: none; letter-spacing: -0.035em; }
}

/* Tag stagger */
.hero-tags .tag {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-tags.in .tag { opacity: 1; transform: none; }
.hero-tags.in .tag:nth-child(1) { transition-delay: 0.05s; }
.hero-tags.in .tag:nth-child(2) { transition-delay: 0.10s; }
.hero-tags.in .tag:nth-child(3) { transition-delay: 0.15s; }
.hero-tags.in .tag:nth-child(4) { transition-delay: 0.20s; }
.hero-tags.in .tag:nth-child(5) { transition-delay: 0.25s; }
.hero-tags.in .tag:nth-child(6) { transition-delay: 0.30s; }

/* Tag hover lift */
.tag {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.tag:hover {
  background: var(--ink-2);
  color: var(--paper);
  border-color: var(--ink-2);
  transform: translateY(-1px);
}

/* Button — sage-soft underline sweep on ghost */
.btn-ghost {
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-2);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-ghost:hover::before { transform: translateY(0); }
.btn-ghost > * { position: relative; z-index: 1; }

/* Hero CTA — subtle hover scale */
.hero-ctas .btn-primary { position: relative; }
.hero-ctas .btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 1px solid var(--ink-2);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-ctas .btn-primary:hover::after {
  opacity: 0.3;
  transform: scale(1.06);
}

/* Pillars hover */
.pillar {
  transition: background 0.25s ease;
}
.pillar:hover { background: color-mix(in oklab, var(--paper-2), transparent 40%); }
.pillar h3 {
  transition: color 0.2s ease;
}
.pillar:hover h3 { color: var(--moss); }

/* Cases hover */
.case {
  transition: background 0.25s ease;
}
.case:hover {
  background: color-mix(in oklab, var(--paper-2), transparent 40%);
}
.case h3 {
  transition: color 0.2s ease;
}
.case:hover h3 { color: var(--moss); }
.case .ex {
  transition: transform 0.3s ease;
  display: inline-block;
}
.case:hover .ex { transform: translateX(4px); }

/* Method figure — line draw on hover */
.figure {
  position: relative;
  transition: background 0.3s ease;
}
.figure:hover { background: rgba(244, 241, 232, 0.03); }
.figure::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: var(--sage-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.figure:hover::after { transform: scaleX(1); }

/* FAQ — chevron + content */
.faq-q .qsign {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), color 0.2s;
}
.faq-q:hover .qsign { color: var(--moss); }

/* Pricing highlight pulse on load */
.price-cell.highlight {
  position: relative;
  overflow: hidden;
}
.price-cell.highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 214, 185, 0.08) 50%,
    transparent 100%
  );
  animation: shine 6s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}
@keyframes shine {
  0%, 100% { left: -100%; }
  40%, 60% { left: 100%; }
}

/* Step cards entry stagger handled by reveal */
.step:hover .step-num {
  color: var(--moss);
  transition: color 0.3s ease;
}

/* Final-CTA glow drift */
.final::before {
  animation: glow-drift 12s ease-in-out infinite;
}
@keyframes glow-drift {
  0%, 100% { transform: translateX(-3%) translateY(2%); opacity: 1; }
  50%      { transform: translateX(3%) translateY(-2%); opacity: 0.85; }
}

/* Parallax helpers — sparingly applied */
.parallax-slow { will-change: transform; }
.parallax-fast { will-change: transform; }

/* Brand mark — gentle breathing */
.brand-mark::after {
  animation: brand-pulse 4s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.85); }
}

/* Reduced motion — kill it all */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .h-words .w, .hero-tags .tag, .bp-svg {
    opacity: 1 !important;
    transform: none !important;
  }
  .bp-svg .bp-draw, .bp-svg .bp-dim {
    stroke-dashoffset: 0 !important;
  }
  .bp-svg .bp-mark, .bp-svg .bp-fill {
    opacity: 1 !important;
  }
}

/* ───────── SUB-PAGE COMPONENTS ───────── */

/* Compact hero variant for sub-pages (no blueprint, no meta column) */
.hero-compact {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-compact .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.hero-compact h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  margin: 24px 0 24px;
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink-2);
  text-wrap: balance;
}
.hero-compact h1 em {
  font-style: italic;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-weight: 400;
  color: var(--moss);
}
.hero-compact .hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 28px;
  opacity: 0.82;
}
.hero-compact .hero-side {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.hero-compact .hero-side h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.hero-compact .hero-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-compact .hero-side ul li {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.82;
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.5;
}
.hero-compact .hero-side ul li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--moss);
  font-size: 12px;
  flex: 0 0 auto;
}
@media (max-width: 880px) {
  .hero-compact { padding: 48px 0 48px; }
  .hero-compact .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-compact .hero-side { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
}

/* Generic content section (sub-pages) */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.section.alt { background: var(--paper-2); }
.section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.section .section-head h2 {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 0;
  color: var(--ink-2);
  max-width: 26ch;
  text-wrap: balance;
}
.section .section-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}
@media (max-width: 880px) {
  .section { padding: 56px 0; }
  .section .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
}

/* Two-column block (e.g., contact: address | form) */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* Info card (paper) */
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card h2, .info-card h3 {
  font-family: var(--font-display);
  font-weight: 480;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.2;
}
.info-card h2 { font-size: 22px; }
.info-card h3 { font-size: 18px; }
.info-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
}
.info-card p strong { color: var(--ink-2); opacity: 1; font-weight: 500; }
.info-card a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }

/* Inline meta row (e.g., 0 EUR · 139 EUR · Teams) */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.meta-row span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* Form (editorial paper style) */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
}
.form-card h2 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink-2);
}
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.form-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--ink-2);
  background: #fff;
}
.form-card .btn { margin-top: 8px; cursor: pointer; }
.form-card button.btn {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
}
.form-status {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  min-height: 1em;
}

/* Two-column legal card grid */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .legal-grid { grid-template-columns: 1fr; } }

/* Plain-prose card stretches across content */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
}

/* Small CTA block (sub-page version of final-cta) */
.cta-block {
  background: var(--ink-2);
  color: var(--paper);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(122, 184, 122, 0.16), transparent 60%);
  pointer-events: none;
}
.cta-block-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--paper);
  margin: 16px 0 0;
  text-wrap: balance;
}
.cta-block h2 em {
  font-style: italic;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-weight: 400;
  color: var(--sage-soft);
}
.cta-block .eyebrow { color: var(--sage-soft); }
.cta-block .eyebrow::before { background: var(--sage-soft); }
.cta-block p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 232, 0.78);
  margin: 0 0 20px;
  max-width: 44ch;
}
.cta-block .btn-primary {
  background: var(--paper);
  color: var(--ink-2);
  border-color: var(--paper);
}
.cta-block .btn-primary:hover { background: #fff; }
.cta-block .btn-ghost {
  color: var(--paper);
  border-color: rgba(244, 241, 232, 0.4);
}
.cta-block .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink-2);
  border-color: var(--paper);
}
.cta-block .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .cta-block-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Cal.com booking embed iframe */
.booking-embed {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
}
.booking-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  display: block;
}

/* Author / portrait inline block */
.author-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.author-row img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--line);
}
.author-row p { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: 0.85; }

/* Bullet list inside info-card */
.info-card ul.bullet {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.info-card ul.bullet li {
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.85;
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.55;
}
.info-card ul.bullet li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--moss);
  font-size: 12px;
  flex: 0 0 auto;
}

/* Module cards (e.g. produkte page) */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .modules-grid { grid-template-columns: 1fr; } }
.module-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -16px rgba(14, 31, 21, 0.25);
}
.module-card .module-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  align-self: flex-start;
}
.module-card h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  color: var(--ink-2);
}
.module-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
}
.module-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.module-card ul li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--moss);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.module-card ul li::before {
  content: "·";
  color: var(--sage);
}
.module-card .module-cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.module-card .module-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}
.module-card .module-link:hover { gap: 12px; color: var(--moss); }
.module-card .module-link::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform 0.2s;
}

/* Problem-Solution comparison block (inside dark Methods section) */
.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 56px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(244, 241, 232, 0.14);
}
.ps-card {
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.ps-after {
  background: rgba(122, 184, 122, 0.04);
  border-color: rgba(200, 214, 185, 0.28);
}
.ps-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid currentColor;
}
.ps-before .ps-tag { color: rgba(244, 241, 232, 0.6); }
.ps-after  .ps-tag { color: var(--sage-soft); }
.ps-card h3 {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  color: var(--paper);
}
.ps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ps-list li {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 241, 232, 0.85);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.ps-before .ps-list li::before {
  content: "×";
  font-family: var(--font-mono);
  color: rgba(244, 241, 232, 0.4);
  font-size: 14px;
  flex: 0 0 auto;
}
.ps-after .ps-list li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--sage-soft);
  font-size: 13px;
  flex: 0 0 auto;
}
@media (max-width: 880px) {
  .problem-solution { grid-template-columns: 1fr; }
}
