/* ============================================================
   Entscheidungssparring — editorial landing page styles
   Swiss/minimal, generous whitespace, hairline grid
   ============================================================ */

/* Skip link for keyboard users (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: oklch(0.18 0.008 260);
  color: oklch(0.98 0.005 90);
  padding: 10px 14px;
  z-index: 999;
  font-size: 14px;
  border-radius: 2px;
}
.skip-link:focus { left: 8px; }

:root {
  --bg: oklch(0.985 0.003 90);
  --bg-2: oklch(0.97 0.004 90);
  --fg: oklch(0.18 0.008 260);
  --fg-soft: oklch(0.35 0.01 260);
  --fg-dim: oklch(0.55 0.01 260);
  --line: oklch(0.18 0.008 260 / 0.14);
  --line-strong: oklch(0.18 0.008 260 / 0.32);

  --accent: oklch(0.52 0.14 255);       /* Stefan Brutscher brand blue */
  --accent-ink: oklch(0.98 0.005 255);
  --accent-soft: oklch(0.52 0.14 255 / 0.08);

  --dark-bg: oklch(0.18 0.008 260);
  --dark-fg: oklch(0.97 0.004 90);

  --radius: 2px;
  --radius-lg: 4px;

  --ff-sans: "Geist", "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 160px);
  --maxw: 1320px;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
p { margin: 0 0 1em; }

/* ---------- Utility ---------- */
.mono-xs {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 400;
}
.dim { color: var(--fg-dim); }
.light { color: oklch(0.97 0.004 90 / 0.7) !important; }

.hairline {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}
.dot.light { background: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: space-between; }

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary-inverse {
  background: var(--dark-fg);
  color: var(--dark-bg);
}
.btn-primary-inverse:hover { background: var(--accent); color: var(--bg); }

.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--fg);
}
.btn-outline:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }

.btn-ghost {
  color: var(--fg);
  border: 1px solid transparent;
}
.btn-ghost:hover { border-color: var(--line-strong); }

.btn-link {
  padding: 14px 0;
  color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
}
.btn-link:hover { border-bottom-color: var(--fg); }
.btn-link-onDark {
  padding: 14px 0;
  color: var(--dark-fg);
  border-bottom: 1px solid oklch(0.97 0.004 90 / 0.3);
  border-radius: 0;
}

/* ---------- TopNav ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.wordmark-bullet {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 1px;
  display: inline-block;
}
.wordmark-logo { padding: 4px 0; }
.wordmark-logo img {
  display: block;
  height: 22px;
  width: auto;
}
.footer-brand { gap: 14px; }
.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 600px) {
  .wordmark-logo img { height: 18px; }
  .footer-logo { height: 44px; }
}
.topnav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--fg-soft);
}
.topnav-links a:hover { color: var(--fg); }

/* ---------- Section scaffolding ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
  position: relative;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--fg);
  letter-spacing: 0.06em;
}
.section-label-line {
  height: 1px;
  width: 48px;
  background: var(--fg);
}
.section-label-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.section-head {
  margin-bottom: 64px;
  max-width: 880px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-soft);
  margin-top: 18px;
  max-width: 56ch;
}

/* ---------- Typography ---------- */
.h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.h2-soft { color: var(--fg-dim); font-weight: 400; }

.h1-final {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 18ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

/* ---------- HERO: Editorial ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad-x) var(--section-y);
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}
.hero-meta.centered { justify-content: space-between; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  padding-top: 48px;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 16px 0 36px;
  text-wrap: balance;
}
.hero-headline-xl {
  font-size: clamp(60px, 10vw, 160px);
  max-width: 14ch;
  margin-left: auto; margin-right: auto;
}
.hero-headline-soft { color: var(--fg-dim); font-weight: 400; font-style: italic; }
.hero-headline-onDark { color: var(--dark-fg); font-style: normal; }
.hero-headline-soft-onDark { color: oklch(0.97 0.004 90 / 0.55); font-weight: 400; }

.hero-subline {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--fg-soft);
  max-width: 44ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-subline-centered { margin-left: auto; margin-right: auto; text-align: center; }
.hero-subline.onDark { color: oklch(0.97 0.004 90 / 0.75); }

.hero-support {
  border-left: 1px solid var(--line-strong);
  padding: 4px 0 4px 20px;
  margin: 0 0 40px;
  color: var(--fg-soft);
  font-size: 15px;
}
.hero-support p { margin: 0; }
.hero-support-strong { color: var(--fg); margin-top: 6px !important; font-weight: 500; }

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-ctas.centered { justify-content: center; margin-top: 40px; }

.hero-right { position: relative; }
.portrait-frame {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.portrait-meta {
  display: flex;
  justify-content: space-between;
}

.portrait-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.portrait-placeholder.tall { aspect-ratio: 3 / 4; height: 100%; }
.portrait-placeholder.square { aspect-ratio: 1 / 1; }

.portrait-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.portrait-figure.square { aspect-ratio: 1 / 1; }
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.split-portrait {
  height: 100%;
  min-height: 520px;
  object-position: center 18%;
}
.portrait-caption-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(to top, oklch(0 0 0 / 0.55), transparent);
}
.portrait-caption-overlay .mono-xs { color: oklch(1 0 0 / 0.95); }
.portrait-caption-overlay .mono-xs.dim { color: oklch(1 0 0 / 0.7); }

.placeholder-stripes {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0 14px,
      oklch(0.18 0.008 260 / 0.045) 14px 15px
    );
}
.placeholder-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(to top, color-mix(in oklch, var(--bg) 92%, transparent), transparent);
}

/* ---------- HERO: Centered ---------- */
.hero-centered { text-align: center; }
.hero-centered-body {
  padding: clamp(60px, 10vw, 140px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- HERO: Split ---------- */
.hero-split {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 88vh;
}
.split-left {
  background: var(--dark-bg);
  color: var(--dark-fg);
  display: flex;
  align-items: center;
  padding: 64px clamp(32px, 5vw, 96px);
}
.split-left-inner { max-width: 640px; }
.split-right {
  padding: 40px 40px 40px 0;
  background: var(--dark-bg);
}
.split-right-inner {
  height: 100%;
  background: oklch(0.22 0.008 260);
  border: 1px solid oklch(0.3 0.008 260);
}
.hero-split .portrait-placeholder {
  border: 0;
  background: oklch(0.22 0.008 260);
  height: 100%;
}
.hero-split .placeholder-stripes {
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, oklch(0.97 0.004 90 / 0.04) 14px 15px);
}
.hero-split .placeholder-caption {
  background: linear-gradient(to top, oklch(0.22 0.008 260 / 0.9), transparent);
}
.hero-split .placeholder-caption .mono-xs { color: oklch(0.97 0.004 90 / 0.7); }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
}
.problem-lead .h2 { max-width: 14ch; }
.lead-p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.lead-p strong { font-weight: 500; }
.lead-p.dim { color: var(--fg-dim); font-size: 18px; }

.where-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.where-list li {
  padding: 18px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.where-list li:nth-child(odd) { padding-right: 24px; }

.closer { font-size: 18px; color: var(--fg); max-width: 56ch; }
.closer em { font-style: italic; color: var(--fg-dim); }
.closer strong { font-weight: 500; background: var(--accent-soft); padding: 2px 6px; }

.anchors {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.anchor {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--line);
}
.anchor:last-child { border-right: 0; }
.anchor-word {
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.015em;
  font-weight: 500;
}

/* ---------- Situations ---------- */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.sit-card {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.sit-card:nth-child(4), .sit-card:nth-child(5) { grid-column: span 1; }
.sit-card:nth-child(4) { grid-column: 1 / span 1; }
.sit-card.is-active { background: var(--bg-2); }
.sit-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sit-title {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
  text-wrap: balance;
}
.sit-body {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}
.sit-card-foot {
  margin-top: auto;
  color: var(--fg-dim);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
}
.sit-card.is-active .sit-card-foot {
  opacity: 1;
  transform: translateY(0);
  color: var(--accent);
}

/* 5 cards: 3 top, 2 bottom-left — make last 2 span 1.5 each to fill */
.situations-grid .sit-card:nth-child(4) { grid-column: 1 / span 1; }
.situations-grid .sit-card:nth-child(5) { grid-column: 2 / span 2; border-right: 0; background: var(--bg-2); position: relative; }

/* ---------- Offers ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.offer-card {
  position: relative;
  padding: 40px 32px 32px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.offer-card:hover { border-color: var(--line-strong); }
.offer-card.is-featured {
  background: var(--dark-bg);
  color: var(--dark-fg);
  border-color: var(--dark-bg);
  transform: translateY(-12px);
}
.offer-card.is-featured .mono-xs { color: oklch(0.97 0.004 90 / 0.55); }
.offer-card.is-featured .bullet-mark { color: var(--accent); }

.offer-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.offer-title {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 12px;
}
.offer-lead {
  font-size: 15px;
  color: var(--fg-soft);
  margin-bottom: 24px;
}
.offer-card.is-featured .offer-lead { color: oklch(0.97 0.004 90 / 0.7); }

.offer-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.offer-bullets li {
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
}
.bullet-mark {
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  width: 14px;
}

.offer-ideal {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  padding: 16px 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-card.is-featured .offer-ideal {
  border-color: oklch(0.97 0.004 90 / 0.15);
}

.offer-card.is-featured .btn-primary {
  background: var(--dark-fg);
  color: var(--dark-bg);
}
.offer-card.is-featured .btn-primary:hover { background: var(--accent); color: var(--bg); }

/* ---------- Outcomes ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 96px);
}
.outcome-head .h2 { max-width: 12ch; }
.outcome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  counter-reset: outcome;
}
.outcome-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.outcome-list li:first-child { border-top: 1px solid var(--line-strong); }
.outcome-num { color: var(--fg-dim); }
.outcome-text { text-wrap: pretty; }

.outcome-pullquote {
  padding: 32px 0 0;
  max-width: 56ch;
}
.outcome-pullquote p {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-wrap: pretty;
  margin: 0;
}
.outcome-pullquote em { color: var(--accent); font-style: italic; }

/* ---------- Stefan ---------- */
.stefan-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.stefan-portrait {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stefan-name-block {
  display: flex;
  justify-content: space-between;
}
.stefan-focus { color: var(--fg-soft); font-style: italic; margin-top: 8px; }
.stefan-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 24px 0 40px;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--accent);
  color: var(--fg);
  text-wrap: balance;
}
.trust-anchors {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  border-top: 1px solid var(--line);
}
.trust-anchors li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.stefan-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 6px;
  transition: all 0.2s ease;
}
.stefan-link:hover { border-color: var(--fg); color: var(--accent); }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: left;
  border-top: 1px solid var(--line-strong);
}
.final-cta-body { max-width: 1000px; }
.final-cta-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--fg-soft);
  max-width: 52ch;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.final-cta-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.final-cta-meta {
  display: flex;
  gap: 16px;
  color: var(--fg-dim);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-soft);
}
.footer-col a:hover { color: var(--fg); }
.footer-base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.18 0.008 260 / 0.45);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.modal {
  width: 100%;
  max-width: 620px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-title {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 10px 0 0;
}
.modal-close {
  font-size: 28px;
  line-height: 1;
  color: var(--fg-dim);
  padding: 4px 10px;
}
.modal-close:hover { color: var(--fg); }

.modal-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--fg-dim);
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: 0; }
.step.is-active { color: var(--fg); }
.step.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
}
.step.is-done { color: var(--fg-soft); }

.modal-body { padding: 28px 32px; min-height: 280px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s ease;
  resize: vertical;
  font-family: var(--ff-sans);
}
.field input:focus, .field textarea:focus { border-color: var(--fg); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }

.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.radio-pill input { display: none; }
.radio-pill.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.form-note { grid-column: 1 / -1; color: var(--fg-dim); line-height: 1.5; margin: 0; }

.confirm { text-align: center; padding: 20px 0; }
.confirm-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.confirm h4 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.confirm p { color: var(--fg-soft); margin-bottom: 28px; }
.confirm-summary {
  display: grid;
  gap: 8px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.confirm-summary > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 14px;
  padding: 6px 0;
}
.confirm-summary dt { color: var(--fg-dim); margin: 0; }
.confirm-summary dd { margin: 0; }

.modal-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
}
.modal-foot .spacer { flex: 1; }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  width: 280px;
  font-size: 13px;
  box-shadow: 0 20px 40px -20px oklch(0.18 0.008 260 / 0.2);
}
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.tweak-group { display: flex; flex-direction: column; gap: 6px; }
.tweak-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.tweak-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-chip {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: capitalize;
}
.tweak-chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.tweak-swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  border: 1px solid oklch(0 0 0 / 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { order: -1; max-width: 420px; }
  .problem-grid, .outcome-grid, .stefan-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .situations-grid .sit-card:nth-child(5) { grid-column: 1 / span 2; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card.is-featured { transform: none; }
  .anchors { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .split-right { padding: 0 clamp(32px, 5vw, 96px) 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .topnav-links { display: none; }
  .stefan-portrait { position: static; max-width: 420px; }
}

@media (max-width: 600px) {
  .where-list { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
  .situations-grid .sit-card:nth-child(5) { grid-column: 1; }
  .anchors { grid-template-columns: 1fr; }
  .anchor { border-right: 0; border-bottom: 1px solid var(--line); }
  .anchor:last-child { border-bottom: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}
