/* ============================================================
   TOKENS — shared across all three directions
   Monochrome, warm-toned. One accent: a muted forest green
   (oklch) that quietly nods to the circularity track record.
   ============================================================ */
:root {
  --ink:        oklch(0.22 0.008 70);   /* warm near-black */
  --ink-2:      oklch(0.36 0.008 70);   /* secondary text */
  --ink-3:      oklch(0.55 0.006 70);   /* tertiary / captions */
  --line:       oklch(0.22 0.008 70 / 0.14);
  --line-soft:  oklch(0.22 0.008 70 / 0.08);
  --paper:      oklch(0.985 0.004 85);  /* warm ivory */
  --paper-2:    oklch(0.955 0.006 85);  /* faint panel */
  --accent:     oklch(0.70 0.18 350);   /* orchid pink — driven by Tweaks */
  --accent-deep: color-mix(in oklab, var(--accent), black 18%);
  --accent-tint: color-mix(in srgb, var(--accent), transparent 88%);
  --accent-soft: color-mix(in oklab, var(--accent), white 42%);
  --wash:       oklch(0.62 0.18 152);    /* kelly green companion — driven by Tweaks */

  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --grotesk: "Space Grotesk", system-ui, sans-serif;
  --serif: "Bodoni Moda", Georgia, serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

/* striped placeholder for imagery the user will drop in */
.ph {
  background-color: #ece8e0;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.045) 0 1px, transparent 1px 10px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ph > span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.38);
  background: var(--paper); padding: 4px 9px; border-radius: 2px;
}

.cta-primary {
  font-family: var(--sans); font-weight: 600; font-size: 15px; white-space: nowrap;
  border: none; cursor: pointer; color: var(--paper); text-decoration: none;
  background: var(--ink); display: inline-flex; align-items: center; gap: 10px;
  transition: background .18s, transform .18s;
}
.cta-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.cta-primary svg { width: 15px; height: 15px; }

/* =====================================================================
   DIRECTION A — QUIET AUTHORITY
   Generous whitespace, calm large type, hairline rules, mono numbers.
   ===================================================================== */
.a-root { font-family: var(--sans); color: var(--ink); width: 100%; position: relative;
  background:
    radial-gradient(105% 65% at 94% -6%, color-mix(in oklab, var(--accent), white 72%) 0%, transparent 46%),
    radial-gradient(85% 60% at 4% 8%, color-mix(in oklab, var(--wash), white 78%) 0%, transparent 44%),
    radial-gradient(120% 78% at 62% 106%, color-mix(in oklab, var(--wash), white 76%) 0%, transparent 52%),
    var(--paper); }
.a-pad { padding: 0 96px; }
.a-hero { position: relative; }

.a-nav { display: flex; align-items: baseline; justify-content: space-between;
  padding: 40px 96px 0; }
.a-nav .name { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.a-nav .links { display: flex; gap: 34px; }
.a-nav .links a { font-size: 14px; color: var(--ink-2); text-decoration: none; letter-spacing: 0.01em; }
.a-nav .links a:hover { color: var(--accent-deep); }

.a-hero { display: grid; grid-template-columns: 1.45fr 1fr; gap: 72px;
  padding: 80px 96px 96px; align-items: end; }
.a-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-deep); display: flex; align-items: center; gap: 12px; }
.a-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.a-hero h1 { font-family: var(--display); font-weight: 600; font-size: 64px; line-height: 1.02;
  letter-spacing: -0.025em; margin: 28px 0 0; text-wrap: balance; }
.a-hero .sub { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 36ch; margin: 28px 0 38px; }
.a-hero .actions { display: flex; align-items: center; gap: 28px; }
.a-hero .cta-primary { padding: 15px 26px; border-radius: 2px; }
.a-hero .secondary { font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
  padding-bottom: 3px; transition: border-color .18s; }
.a-hero .secondary:hover { border-color: var(--accent); }
.a-portrait { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }

/* hero signal panel (replaces headshot) — proof as the visual anchor */
.a-signal { border-top: 2px solid var(--ink); align-self: end; }
.a-signal .cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); padding: 14px 0 6px; }
.a-signal .item { padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.a-signal .item:last-child { border-bottom: none; padding-bottom: 0; }
.a-signal .item .fig { font-family: var(--display); font-weight: 600; font-size: 40px; letter-spacing: -0.03em;
  color: var(--accent-deep); line-height: 1; }
.a-signal .item .lab { font-size: 14.5px; color: var(--ink-2); line-height: 1.4; margin-top: 9px; max-width: 30ch; }

.a-domains { display: flex; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 0 96px; }
.a-domains span { flex: 1; padding: 22px 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); border-left: 1px solid var(--line-soft); padding-left: 22px; }
.a-domains span:first-child { border-left: none; }

.a-section { padding: 100px 96px; }
.a-sec-head { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; margin-bottom: 64px; }
.a-sec-head h2 { font-family: var(--display); font-weight: 600; font-size: 40px; line-height: 1.08;
  letter-spacing: -0.02em; margin: 18px 0 0; text-wrap: balance; }
.a-sec-head .lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); align-self: end; }

.a-stakes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.a-stakes-grid .item { display: flex; gap: 20px; padding: 32px 40px 32px 0; border-bottom: 1px solid var(--line-soft); }
.a-stakes-grid .item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.a-stakes-grid .num { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); padding-top: 4px; }
.a-stakes-grid .txt { font-size: 21px; line-height: 1.35; color: var(--ink); letter-spacing: -0.01em; }

.a-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); }
.a-value-grid .cell { background: var(--paper); padding: 40px; }
.a-value-grid .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.a-value-grid .tick svg { width: 12px; height: 12px; stroke: var(--accent-deep); }
.a-value-grid h3 { font-family: var(--display); font-weight: 600; font-size: 23px; margin: 0 0 10px; letter-spacing: -0.01em; }
.a-value-grid p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }

.a-metrics { border-top: 1px solid var(--line); }
.a-metric { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 56px; padding: 38px 0;
  border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.a-metric .fig { font-family: var(--display); font-weight: 600; font-size: 46px; letter-spacing: -0.03em;
  color: var(--accent-deep); line-height: 1; }
.a-metric .fig .lab { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 12px; font-weight: 500; }
.a-metric p { font-size: 18px; line-height: 1.5; color: var(--ink); margin: 0; max-width: 52ch; }

.a-quote { padding: 100px 96px; color: var(--paper); position: relative; overflow: hidden;
  background:
    radial-gradient(85% 120% at 100% 100%, color-mix(in oklab, var(--ink), var(--accent) 30%) 0%, transparent 62%),
    radial-gradient(80% 110% at 0% 0%, color-mix(in oklab, var(--ink), var(--wash) 30%) 0%, transparent 58%),
    var(--ink); }
.a-quote > * { position: relative; z-index: 1; }
.a-quote blockquote { font-family: var(--display); font-weight: 500; font-size: 30px; line-height: 1.32;
  letter-spacing: -0.015em; margin: 0; max-width: 40ch; text-wrap: pretty; }
.a-quote .who { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-soft); margin-top: 32px; }

.a-plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.a-plan .step .n { font-family: var(--display); font-weight: 600; font-size: 54px; color: var(--line);
  letter-spacing: -0.03em; line-height: 1; }
.a-plan .step h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 20px 0 12px;
  letter-spacing: -0.01em; }
.a-plan .step p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.a-plan .step .bar { width: 32px; height: 2px; background: var(--accent); margin-top: 18px; }

.a-closing { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; padding: 110px 96px; align-items: center; }
.a-closing h2 { font-family: var(--display); font-weight: 600; font-size: 52px; line-height: 1.04;
  letter-spacing: -0.025em; margin: 18px 0 0; text-wrap: balance; }
.a-closing p { font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 32px; }
.a-closing .cta-primary { padding: 16px 28px; border-radius: 2px; }

.a-footer { display: flex; justify-content: space-between; align-items: flex-end;
  padding: 48px 96px; border-top: 1px solid var(--line); }
.a-footer .name { font-family: var(--display); font-weight: 600; font-size: 18px; }
.a-footer .tag { font-size: 14px; color: var(--ink-3); margin-top: 6px; }
.a-footer .cols { display: flex; gap: 56px; }
.a-footer .col a { display: block; font-size: 14px; color: var(--ink-2); text-decoration: none; margin-bottom: 10px; }
.a-footer .col a:hover { color: var(--accent-deep); }

/* WHY IT MATTERS — clarity thesis + From→To device (Direction A) */
.a-why { padding: 96px; background: var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.a-why h2 { font-family: var(--display); font-weight: 600; font-size: 42px; line-height: 1.08;
  letter-spacing: -0.022em; margin: 20px 0 0; text-wrap: balance; }
.a-why h2 em { font-style: normal; color: var(--accent-deep); }
.a-why .body p { font-size: 19px; line-height: 1.6; color: var(--ink-2); margin: 0 0 36px; max-width: 46ch; }
.a-fromto { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.a-fromto li { display: grid; grid-template-columns: 1fr 28px 1fr; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.a-fromto .from { font-size: 16px; color: var(--ink-3); }
.a-fromto .arrow { color: var(--accent-deep); font-size: 17px; text-align: center; }
.a-fromto .to { font-size: 17px; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }

/* WHY ME vs CONSULTANCY — comparison (Direction A) */
.a-vs-table { border-top: 1px solid var(--line); }
.a-vs-row { display: grid; grid-template-columns: 184px 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.a-vs-row > div { padding: 22px 30px; }
.a-vs-row .dim { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); padding-left: 0; align-self: center; }
.a-vs-row .col-c { color: var(--ink-3); font-size: 18px; line-height: 1.4; }
.a-vs-row .col-me { color: var(--ink); font-size: 18px; line-height: 1.4; font-weight: 600;
  letter-spacing: -0.01em; background: var(--accent-tint); }
.a-vs-headrow > div { padding-top: 16px; padding-bottom: 16px; }
.a-vs-headrow .col-c, .a-vs-headrow .col-me { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.3; }
.a-vs-headrow .col-c { color: var(--ink-3); font-weight: 500; }
.a-vs-headrow .col-me { color: var(--accent-deep); font-weight: 600; }

/* Steve Jobs pull-quote inside the Why-me section */
.a-jobs { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: start;
  padding: 44px 0; margin-bottom: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.a-jobs .mark { font-family: var(--display); font-weight: 600; font-size: 84px; line-height: 0.62;
  color: var(--accent); }
.a-jobs blockquote { margin: 0; }
.a-jobs p { font-family: var(--display); font-weight: 500; font-size: 31px; line-height: 1.3;
  letter-spacing: -0.02em; margin: 0; max-width: 40ch; text-wrap: pretty; color: var(--ink); }
.a-jobs p .hl { color: var(--accent-deep); }
.a-jobs cite { font-style: normal; display: block; margin-top: 26px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.a-jobs cite b { color: var(--ink); font-weight: 500; }

/* =====================================================================
   DIRECTION A — POP COVER THEME (two color stories, toggled in Tweaks)
   Generic poster tokens drive every rule below; each palette just resets
   the token VALUES. Scoped to .a-root so B and C are untouched.
     · default        = "Main Character" — vermilion red + powder blue
     · [data-pop=camel] = "Mostly Smut"  — warm camel + bubblegum pink
   ===================================================================== */
.a-root {
  --pop-display: "Anton", "Schibsted Grotesk", system-ui, sans-serif;

  /* ---- DEFAULT palette: red ground, powder-blue type ---- */
  --pop-ground:      oklch(0.600 0.218 27);    /* page ground */
  --pop-band:        oklch(0.548 0.215 27);    /* deeper band / outline fill */
  --pop-panel:       oklch(0.470 0.190 27);    /* deepest — cards / panels */
  --pop-feature:     oklch(0.775 0.085 232);   /* display caps + accent fills */
  --pop-feature-hi:  oklch(0.865 0.060 230);   /* hover bright */
  --pop-onfeature:   oklch(0.420 0.190 27);    /* text sitting on feature fills */
  --pop-feature-tint: var(--pop-feature-tint);
  --pop-shadow:      var(--pop-shadow);
  --pop-toplift:     oklch(0.640 0.210 30);
  --ink:        oklch(0.905 0.045 230);
  --ink-2:      oklch(0.840 0.060 230);
  --ink-3:      oklch(0.760 0.070 230);
  --line:       oklch(0.80 0.08 232 / 0.34);
  --line-soft:  oklch(0.80 0.08 232 / 0.18);

  /* semantic mappings shared by both palettes */
  --paper:       var(--pop-panel);
  --paper-2:     var(--pop-band);
  --accent:      var(--pop-feature);
  --accent-deep: var(--pop-feature);
  --accent-soft: var(--pop-feature-hi);
  --accent-tint: var(--pop-feature-tint);

  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -8%, var(--pop-toplift) 0%, transparent 56%),
    var(--pop-ground);
  border-left: 14px solid var(--pop-feature);
}

/* ---- "Mostly Here for the Smut": warm camel ground, bubblegum-pink type ---- */
[data-pop="camel"] .a-root {
  --pop-ground:      oklch(0.652 0.078 76);    /* camel / golden tan */
  --pop-band:        oklch(0.588 0.078 73);    /* deeper camel */
  --pop-panel:       oklch(0.430 0.058 64);    /* espresso-brown panel */
  --pop-feature:     oklch(0.500 0.275 350);   /* deep vivid magenta */
  --pop-feature-hi:  oklch(0.580 0.255 350);   /* hover bright magenta */
  --pop-onfeature:   oklch(0.972 0.016 340);   /* cream text on magenta */
  --pop-feature-tint: oklch(0.500 0.275 350 / 0.16);
  --pop-shadow:      oklch(0.34 0.05 62 / 0.50);
  --pop-toplift:     oklch(0.706 0.080 78);
  --ink:        oklch(0.952 0.018 84);         /* warm cream */
  --ink-2:      oklch(0.898 0.026 84);
  --ink-3:      oklch(0.822 0.036 82);
  --line:       oklch(0.93 0.030 84 / 0.32);
  --line-soft:  oklch(0.93 0.030 84 / 0.16);
  background:
    radial-gradient(95% 70% at 100% 0%, var(--pop-feature-tint) 0%, transparent 48%),
    radial-gradient(130% 85% at 50% -10%, var(--pop-toplift) 0%, transparent 52%),
    linear-gradient(176deg, var(--pop-ground) 0%, var(--pop-ground) 38%, var(--pop-band) 100%);
}
/* the dark constellation belongs to the old theme — gone for the pop look */
.a-root > .a-net,
.a-root > .a-sky { display: none !important; }
.a-root > * { position: relative; z-index: 1; }

/* ---- heavy blocky display type, the cover's signature ---- */
.a-root .a-hero h1,
.a-root .a-sec-head h2,
.a-root .a-why h2,
.a-root .a-closing h2 {
  font-family: var(--pop-display); font-weight: 400; color: var(--pop-feature);
  text-transform: uppercase; letter-spacing: 0.005em; line-height: 0.92;
  /* Anton ink overflows its 0.92 line-box by ~0.3em on the last line, so the
     next element tucks under it — pad the box to contain the ink. */
  text-wrap: normal; padding-bottom: 0.32em;
}
.a-root .a-hero h1 { font-size: 78px; padding-bottom: 0.5em; }
.a-root .a-closing h2 { font-size: 64px; }
.a-root .a-sec-head h2 { font-size: 50px; }
.a-root .a-why h2 { font-size: 46px; }
.a-root .a-why h2 em { font-style: normal; color: var(--pop-onfeature);
  -webkit-text-stroke: 0; background: var(--pop-feature); padding: 0 .12em;
  border-radius: 3px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
/* secondary heavy display uses */
.a-root .a-value-grid h3,
.a-root .a-plan .step h3,
.a-root .a-words-body .lead-line {
  font-family: var(--pop-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--pop-feature); line-height: 0.98;
}
.a-root .a-words-body .lead-line { font-size: 40px; }
.a-root .a-value-grid h3 { font-size: 26px; }
.a-root .a-plan .step h3 { font-size: 24px; }

/* big figures — fat green caps */
.a-root .a-signal .item .fig,
.a-root .a-metric .fig,
.a-root .a-plan .step .n {
  font-family: var(--pop-display); font-weight: 400; color: var(--pop-feature);
  letter-spacing: 0; }
.a-root .a-plan .step .n { color: var(--pop-band); -webkit-text-stroke: 1.5px var(--pop-feature); }

/* eyebrows — green pill, very book-label */
.a-root .a-eyebrow { color: var(--pop-onfeature); background: var(--pop-feature);
  padding: 6px 13px 5px; border-radius: 999px; width: fit-content; gap: 0;
  white-space: nowrap; font-weight: 600; letter-spacing: 0.14em; }
.a-root .a-eyebrow::before { display: none; }

/* nav — name in heavy caps, animated green underline */
.a-root .a-nav .name { font-family: var(--pop-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em; font-size: 24px; color: var(--pop-feature); }
.a-root .a-nav .links a { position: relative; color: var(--ink-2); font-weight: 600; transition: color .2s; }
.a-root .a-nav .links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 2px; background: var(--pop-feature); transition: right .28s ease; }
.a-root .a-nav .links a:hover { color: var(--pop-feature-hi); }
.a-root .a-nav .links a:hover::after { right: 0; }

/* CTA — solid green block, white caps, the spine treatment */
.a-root .cta-primary { background: var(--pop-feature); color: var(--pop-onfeature); border-radius: 999px;
  font-weight: 700; letter-spacing: 0.02em; box-shadow: 0 12px 26px -12px var(--pop-shadow);
  transition: background .2s, transform .2s, box-shadow .2s; }
.a-root .cta-primary:hover { background: var(--pop-feature-hi); transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px var(--pop-shadow); }
.a-root .a-hero .secondary { color: var(--ink); border-bottom: 2px solid var(--pop-feature);
  font-weight: 600; transition: color .2s; }
.a-root .a-hero .secondary:hover { color: var(--pop-feature-hi); }

/* signal panel — green topline */
.a-root .a-signal { border-top: 3px solid var(--pop-feature); }

/* domains strip — green dividers, hover fills green */
.a-root .a-domains { border-top: 2px solid var(--pop-feature); border-bottom: 2px solid var(--pop-feature); }
.a-root .a-domains span { transition: color .2s, background .2s; }
.a-root .a-domains span:hover { color: var(--pop-onfeature); background: var(--pop-feature); }

/* stakes — green numbers, pink hover */
.a-root .a-stakes-grid { border-top: 2px solid var(--pop-feature); }
.a-root .a-stakes-grid .num { font-family: var(--pop-display); font-size: 17px; color: var(--pop-feature); }
.a-root .a-stakes-grid .item { transition: background .2s; }
.a-root .a-stakes-grid .item:hover { background: var(--pop-feature-tint); }

/* why-it-matters — deeper pink band, green hairlines */
.a-root .a-why { background: var(--pop-band);
  border-top: 3px solid var(--pop-feature); border-bottom: 3px solid var(--pop-feature); }

/* value cells — cream cards, green ticks/heads */
.a-root .a-value-grid { background: var(--pop-feature); border: 2px solid var(--pop-feature); gap: 2px; }
.a-root .a-value-grid .cell { background: var(--pop-panel); transition: transform .2s; }
.a-root .a-value-grid .cell:hover { transform: translateY(-3px); }
.a-root .a-value-grid .tick { background: var(--pop-feature); }
.a-root .a-value-grid .tick svg { stroke: var(--pop-onfeature); }

/* metrics — green divider lines */
.a-root .a-metrics { border-top: 2px solid var(--pop-feature); }

/* testimonial — solid GREEN block, cream text, pink credit (cover energy) */
.a-root .a-quote { color: var(--pop-onfeature); background: var(--pop-feature);
  border-top: 3px solid var(--pop-band); border-bottom: 3px solid var(--pop-band);
  backdrop-filter: none; -webkit-backdrop-filter: none; }
.a-root .a-quote blockquote { font-family: var(--pop-display); font-weight: 400;
  text-transform: uppercase; line-height: 0.98; letter-spacing: 0.005em; font-size: 44px; max-width: 22ch; }
.a-root .a-quote .who { color: var(--pop-panel); }

/* steve-jobs pull quote — green mark + green highlight */
.a-root .a-jobs { border-top: 2px solid var(--pop-feature); border-bottom: 2px solid var(--pop-feature); }
.a-root .a-jobs .mark { color: var(--pop-feature); font-family: var(--pop-display); }
.a-root .a-jobs p .hl { color: var(--pop-onfeature); background: var(--pop-feature); padding: 0 .1em; border-radius: 3px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* vs-table — green header + green "me" column */
.a-root .a-vs-table { border-top: 2px solid var(--pop-feature); }
.a-root .a-vs-row .col-me { background: var(--pop-feature-tint); }
.a-root .a-vs-headrow .col-me { color: var(--pop-feature); }
.a-root .a-vs-row { transition: background .2s; }
.a-root .a-vs-row:not(.a-vs-headrow):hover { background: var(--pop-feature-tint); }

/* plan — green bars that grow on hover */
.a-root .a-plan .step .bar { background: var(--pop-feature); height: 3px; }
.a-root .a-plan .step:hover .bar { width: 64px; transition: width .3s ease; }
.a-root .a-plan .step .bar { transition: width .3s ease; }

/* footer */
.a-root .a-footer { border-top: 2px solid var(--pop-feature); }
.a-root .a-footer .name { font-family: var(--pop-display); font-weight: 400;
  text-transform: uppercase; color: var(--pop-feature); font-size: 22px; }
.a-root .a-footer .col a { transition: color .2s; }
.a-root .a-footer .col a:hover { color: var(--pop-feature-hi); }

/* placeholders, if any remain */
.a-root .ph { background-color: var(--pop-band);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 10px); }
.a-root .ph > span { background: var(--pop-feature); color: var(--pop-onfeature); }

/* IN MY WORDS — personal note + portrait + signature */
.a-words { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 76px; padding: 104px 96px;
  align-items: center; border-top: 2px solid var(--pop-feature); }
.a-words-portrait { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden;
  box-shadow: 0 24px 50px -22px var(--pop-feature-hi), 0 0 0 6px var(--pop-feature); }
.a-words-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.a-words-body .a-eyebrow { margin-bottom: 26px; }
.a-words-body .lead-line { margin: 0 0 24px; max-width: 18ch; text-wrap: balance; }
.a-words-body p { font-size: 18px; line-height: 1.62; color: var(--ink-2); margin: 0 0 18px; max-width: 50ch; }
.a-words-body p:last-of-type { margin-bottom: 0; }
.a-words-body .sign { margin-top: 36px; }
.a-words-body .sign .mark { font-family: "Sacramento", cursive; font-size: 56px; line-height: 0.7;
  color: var(--pop-feature); }
.a-words-body .sign .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 16px; }

/* =====================================================================
   DIRECTION B — THE OPERATING SYSTEM
   Strategy-dossier grid: visible 1px borders, mono labels, scorecard.
   ===================================================================== */
.b-root { font-family: var(--sans); background: var(--paper); color: var(--ink); width: 100%;
  border-bottom: 1px solid var(--ink); }
.b-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 56px;
  border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.b-bar .name { font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.b-bar .right { display: flex; gap: 28px; color: var(--ink-2); text-transform: uppercase; }
.b-bar .right a { color: inherit; text-decoration: none; }
.b-bar .right a:hover { color: var(--accent-deep); }
.b-bar .dot { color: var(--accent-deep); }

.b-hero { display: grid; grid-template-columns: 1.5fr 1fr; border-bottom: 1px solid var(--ink); }
.b-hero .main { padding: 64px 56px; border-right: 1px solid var(--ink); }
.b-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep); }
.b-hero h1 { font-family: var(--grotesk); font-weight: 700; font-size: 56px; line-height: 1.02;
  letter-spacing: -0.03em; margin: 26px 0 24px; text-wrap: balance; }
.b-hero .sub { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 40ch; margin-bottom: 36px; }
.b-hero .cta-primary { padding: 14px 24px; border-radius: 0; }
.b-hero .side { display: flex; flex-direction: column; }
.b-hero .side .ph { flex: 1; min-height: 300px; }
.b-meta { border-top: 1px solid var(--ink); }
.b-meta .row { display: flex; align-items: center; gap: 12px; padding: 14px 24px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft); }
.b-meta .row:last-child { border-bottom: none; }
.b-meta .row b { color: var(--ink); font-weight: 700; }
.b-meta .row .k { color: var(--ink-3); width: 88px; flex: none; }

.b-module { border-bottom: 1px solid var(--ink); }
.b-modhead { display: flex; align-items: baseline; gap: 18px; padding: 22px 56px;
  border-bottom: 1px solid var(--ink); background: var(--paper-2); }
.b-modhead .tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600; }
.b-modhead h2 { font-family: var(--grotesk); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.b-modhead .lead { margin-left: auto; font-size: 15px; color: var(--ink-2); max-width: 42ch; text-align: right; }

.b-cells { display: grid; grid-template-columns: repeat(4, 1fr); }
.b-cells .cell { padding: 36px 28px; border-right: 1px solid var(--line); min-height: 200px;
  display: flex; flex-direction: column; }
.b-cells .cell:last-child { border-right: none; }
.b-cells .idx { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-bottom: auto; }
.b-cells .cell .txt { font-size: 19px; line-height: 1.32; letter-spacing: -0.01em; margin-top: 40px; }

.b-value { display: grid; grid-template-columns: repeat(4, 1fr); }
.b-value .cell { padding: 32px 28px; border-right: 1px solid var(--line); }
.b-value .cell:last-child { border-right: none; }
.b-value .cell h3 { font-family: var(--grotesk); font-weight: 600; font-size: 18px; margin: 0 0 12px;
  letter-spacing: -0.01em; padding-bottom: 14px; border-bottom: 2px solid var(--accent); display: inline-block; }
.b-value .cell p { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 6px 0 0; }

.b-score { display: grid; grid-template-columns: repeat(3, 1fr); }
.b-score .stat { padding: 38px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.b-score .stat:nth-child(3n) { border-right: none; }
.b-score .stat:nth-last-child(-n+3) { border-bottom: none; }
.b-score .fig { font-family: var(--grotesk); font-weight: 700; font-size: 42px; letter-spacing: -0.03em;
  color: var(--accent-deep); line-height: 1; }
.b-score .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin: 14px 0 16px; font-weight: 500; }
.b-score p { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.b-quote { padding: 56px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.b-quote .mark { font-family: var(--grotesk); font-weight: 700; font-size: 90px; color: var(--accent);
  line-height: 0.7; }
.b-quote blockquote { font-family: var(--grotesk); font-weight: 500; font-size: 23px; line-height: 1.4;
  letter-spacing: -0.01em; margin: 0; }
.b-quote .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 18px; }

.b-plan { display: grid; grid-template-columns: repeat(3, 1fr); }
.b-plan .step { padding: 40px 32px; border-right: 1px solid var(--line); }
.b-plan .step:last-child { border-right: none; }
.b-plan .step .n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent-deep);
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); display: block; }
.b-plan .step h3 { font-family: var(--grotesk); font-weight: 600; font-size: 21px; margin: 0 0 12px; letter-spacing: -0.01em; }
.b-plan .step p { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.b-closing { display: grid; grid-template-columns: 1.3fr 1fr; }
.b-closing .main { padding: 64px 56px; border-right: 1px solid var(--ink); }
.b-closing h2 { font-family: var(--grotesk); font-weight: 700; font-size: 44px; line-height: 1.04;
  letter-spacing: -0.03em; margin: 22px 0; text-wrap: balance; }
.b-closing p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 50ch; }
.b-closing .act { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; gap: 20px;
  background: var(--ink); color: var(--paper); }
.b-closing .act .big { font-family: var(--grotesk); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.b-closing .act .cta-primary { background: var(--accent); color: #fff; padding: 15px 24px; border-radius: 0;
  align-self: flex-start; }
.b-closing .act .cta-primary:hover { background: #fff; color: var(--ink); }
.b-closing .act .em { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent-soft); }

/* =====================================================================
   DIRECTION C — STATEMENT
   Editorial drama: ink hero, high-contrast serif headline, huge scale.
   ===================================================================== */
.c-root { font-family: var(--sans); background: var(--paper); color: var(--ink); width: 100%; scroll-behavior: smooth; }
.c-root section[id] { scroll-margin-top: 24px; }

/* domains strip — part of the ink hero, keywords highlighted in magenta */
.c-domains { display: flex; gap: 0; background: var(--ink);
  border-top: 1px solid oklch(1 0 0 / 0.12); padding: 0 80px; }
.c-domains span { flex: 1; padding: 26px 20px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper);
  border-left: 1px solid oklch(1 0 0 / 0.1); text-align: center; white-space: nowrap;
  transition: color .2s, background .2s; cursor: default; }
.c-domains span:first-child { border-left: none; }
.c-domains span:hover { color: var(--ink); background: var(--accent); }
.c-hero { background: var(--ink); color: var(--paper); padding: 44px 80px 80px; position: relative; overflow: hidden; }
.c-hero .topline { display: flex; align-items: baseline; justify-content: space-between; }
.c-hero .topline .name { font-family: var(--display); font-weight: 600; font-size: 19px; display: flex; align-items: center; gap: 12px; }
.eye-mark { width: 38px; height: auto; flex: 0 0 auto; }
.c-hero .topline .links { display: flex; gap: 30px; }
.c-hero .topline .links a { font-size: 13px; color: oklch(0.78 0.01 80); text-decoration: none; letter-spacing: 0.02em; }
.c-hero .topline .links a:hover { color: #fff; }
.c-hero .eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft); margin-top: 96px; }
.c-hero h1 { font-family: var(--serif); font-weight: 500; font-size: 100px; line-height: 1.04;
  letter-spacing: -0.005em; margin: 24px 0 0; max-width: 16ch; text-wrap: balance; padding-bottom: 0.12em; }
.c-hero h1 em { font-style: italic; color: var(--accent-soft); }
.c-hero .lower { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-top: 56px; }
.c-hero .sub { font-size: 20px; line-height: 1.55; color: oklch(0.82 0.01 80); max-width: 44ch; }
.c-hero .actions { display: flex; align-items: center; gap: 26px; flex: none; }
.c-hero .cta-primary { background: var(--accent); color: #fff; padding: 16px 28px; border-radius: 999px; }
.c-hero .cta-primary:hover { background: #fff; color: var(--ink); }
.c-hero .secondary { font-size: 14px; color: oklch(0.82 0.01 80); text-decoration: none; border-bottom: 1px solid oklch(0.82 0.01 80 / 0.3); padding-bottom: 3px; }
.c-hero .secondary:hover { color: #fff; }

.c-section { padding: 120px 80px; position: relative; }
.c-watermark { position: absolute; top: 64px; right: 80px; font-family: var(--serif); font-size: 200px;
  color: var(--line-soft); line-height: 0.7; pointer-events: none; user-select: none; }
.c-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep); }
.c-h2 { font-family: var(--serif); font-weight: 500; font-size: 64px; line-height: 1.05; letter-spacing: 0;
  margin: 22px 0 0; max-width: 18ch; text-wrap: balance; }
.c-h2 em { font-style: italic; color: var(--accent-deep); }
.c-lead { font-size: 21px; line-height: 1.5; color: var(--ink-2); margin-top: 28px; max-width: 44ch; }

.c-stakes { margin-top: 72px; border-top: 1px solid var(--ink); }
.c-stakes .row { display: grid; grid-template-columns: 60px 1fr; gap: 32px; padding: 30px 0;
  border-bottom: 1px solid var(--line); align-items: center; }
.c-stakes .row .n { font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
.c-stakes .row .t { font-family: var(--serif); font-size: 34px; line-height: 1.1; letter-spacing: -0.01em; }

.c-value { display: grid; grid-template-columns: 1fr 1fr; gap: 64px 80px; margin-top: 80px; }
.c-value .item { border-top: 2px solid var(--accent); padding-top: 24px; }
.c-value .item h3 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 0 0 12px; letter-spacing: -0.01em; }
.c-value .item p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0; }

.c-proof { background: var(--paper-2); }
.c-metrics { margin-top: 72px; }
.c-metric { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; padding: 48px 0;
  border-top: 1px solid var(--line); align-items: center; }
.c-metric:last-child { border-bottom: 1px solid var(--line); }
.c-metric .fig { font-family: var(--serif); font-weight: 500; font-size: 84px; letter-spacing: 0;
  color: var(--accent-deep); line-height: 0.95; }
.c-metric .lab { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 18px; }
.c-metric p { font-size: 19px; line-height: 1.5; color: var(--ink); margin: 0; }

.c-quote { background: var(--ink); color: var(--paper); padding: 130px 80px; text-align: center; }

/* insights — editorial index of POVs */
.c-insights { margin-top: 56px; }
.c-insight { display: grid; grid-template-columns: auto 1fr auto auto; gap: 44px; align-items: center;
  padding: 34px 0; border-top: 1px solid var(--line); text-decoration: none; color: var(--ink);
  transition: background .2s, padding .2s; }
.c-insight:last-child { border-bottom: 1px solid var(--line); }
.c-insight .n { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--ink-3); }
.c-insight .body h3 { font-family: var(--serif); font-weight: 500; font-size: 34px; line-height: 1.08;
  letter-spacing: 0; margin: 0; transition: color .2s; }
.c-insight .body p { font-size: 17px; line-height: 1.5; color: var(--ink-2); margin: 8px 0 0; max-width: 62ch; }
.c-insight .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap; }
.c-insight .arrow { font-size: 24px; line-height: 1; color: var(--accent); opacity: 0;
  transform: translateX(-8px); transition: opacity .2s, transform .2s; }
.c-insight:hover { background: var(--paper-2); padding-left: 24px; padding-right: 24px; }
.c-insight:hover .body h3 { color: var(--accent-deep); }
.c-insight:hover .arrow { opacity: 1; transform: translateX(0); }

/* link from the plan section out to the Insights page */
.c-insights-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 64px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-deep); text-decoration: none; padding-bottom: 6px;
  border-bottom: 1px solid var(--accent); transition: gap .2s; }
.c-insights-link:hover { gap: 22px; }
.c-insights-link .arrow { font-size: 18px; }

/* WHY I DO THIS — personal note + portrait + signature (Direction C) */
.c-words { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 76px; padding: 120px 80px;
  align-items: center; border-top: 1px solid var(--line); background: var(--paper-2); }
.c-words-portrait { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.38); }
.c-words-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.c-words-body .c-eyebrow { margin-bottom: 24px; }
.c-words-body .lead-line { font-family: var(--serif); font-weight: 500; font-size: 46px; line-height: 1.1;
  letter-spacing: 0; margin: 0 0 30px; max-width: 20ch; text-wrap: balance; color: var(--ink); }
.c-words-body .lead-line em { font-style: italic; color: var(--accent-deep); }
.c-words-body p { font-size: 19px; line-height: 1.62; color: var(--ink-2); margin: 0 0 20px; max-width: 52ch; }
.c-words-body p:last-of-type { margin-bottom: 0; }
.c-words-body .sign { margin-top: 42px; }
.c-words-body .sign .mark { font-family: "Sacramento", cursive; font-size: 58px; line-height: 0.7;
  color: var(--accent-deep); }
.c-words-body .sign .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 20px; }
.c-quote blockquote { font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.3;
  letter-spacing: -0.01em; margin: 0 auto; max-width: 32ch; text-wrap: pretty; }
.c-quote blockquote em { font-style: italic; color: var(--accent-soft); }
.c-quote .who { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-soft); margin-top: 40px; }

.c-plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 80px; }
.c-plan .step .n { font-family: var(--serif); font-size: 72px; color: var(--accent-deep); line-height: 0.8; }
.c-plan .step h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 24px 0 12px; letter-spacing: -0.01em; }
.c-plan .step p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }

.c-closing { background: var(--ink); color: var(--paper); padding: 140px 80px; text-align: center; }
.c-closing .eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft); }
.c-closing h2 { font-family: var(--serif); font-weight: 500; font-size: 76px; line-height: 1.06; letter-spacing: 0;
  margin: 24px auto 0; max-width: 16ch; text-wrap: balance; padding-bottom: 0.1em; }
.c-closing p { font-size: 19px; line-height: 1.6; color: oklch(0.82 0.01 80); margin: 32px auto 44px; max-width: 56ch; }
.c-closing .cta-primary { background: var(--accent); color: #fff; padding: 17px 32px; border-radius: 999px; font-size: 16px; }
.c-closing .cta-primary:hover { background: #fff; color: var(--ink); }
.c-contact { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 52px; }
.c-contact .email { font-family: var(--serif); font-weight: 500; font-size: 40px; letter-spacing: 0;
  color: var(--paper); text-decoration: none; border-bottom: 2px solid oklch(1 0 0 / 0.18);
  padding-bottom: 6px; transition: color .2s, border-color .2s; }
.c-contact .email:hover { color: var(--accent-soft); border-color: var(--accent); }
.c-contact .li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(0.72 0.01 80); text-decoration: none; transition: color .2s; }
.c-contact .li:hover { color: #fff; }

.c-footer { padding: 56px 80px; display: flex; justify-content: space-between; align-items: center; }
.c-footer .name { font-family: var(--display); font-weight: 600; font-size: 17px; display: flex; align-items: center; gap: 11px; }
.c-footer .eye-mark { width: 26px; }
.c-footer .links { display: flex; gap: 32px; }
.c-footer .links a { font-size: 14px; color: var(--ink-2); text-decoration: none; }
.c-footer .links a:hover { color: var(--accent-deep); }

/* ============================ MOBILE (Direction C) ============================ */
@media (max-width: 760px) {
  /* hero */
  .c-hero { padding: 26px 20px 44px; }
  .c-hero .topline { flex-wrap: wrap; gap: 14px 20px; }
  .c-hero .topline .name { font-size: 17px; gap: 10px; }
  .eye-mark { width: 30px; }
  .c-hero .topline .links { gap: 14px 16px; flex-wrap: wrap; }
  .c-hero .topline .links a { font-size: 12px; }
  .c-hero .eyebrow { margin-top: 36px; font-size: 11px; }
  .c-hero h1 { font-size: 42px; line-height: 1.07; margin-top: 16px; max-width: none; }
  .c-hero .lower { flex-direction: column; align-items: flex-start; gap: 26px; margin-top: 34px; }
  .c-hero .sub { font-size: 17px; max-width: none; }
  .c-hero .actions { flex-wrap: wrap; gap: 16px 22px; }

  /* domains strip → horizontal scroll, no cramming */
  .c-domains { padding: 0 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .c-domains::-webkit-scrollbar { display: none; }
  .c-domains span { flex: 0 0 auto; padding: 16px 16px; font-size: 11px; }

  /* sections */
  .c-section { padding: 54px 20px; }
  .c-watermark { font-size: 96px; top: 34px; right: 20px; }
  .c-eyebrow { font-size: 11px; }
  .c-h2 { font-size: 32px; max-width: none; margin-top: 16px; }
  .c-lead { font-size: 18px; max-width: none; margin-top: 18px; }

  /* stakes */
  .c-stakes { margin-top: 40px; }
  .c-stakes .row { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; }
  .c-stakes .row .t { font-size: 21px; }

  /* value → 1 column */
  .c-value { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .c-value .item { padding-top: 20px; }
  .c-value .item h3 { font-size: 25px; }

  /* metrics → stacked */
  .c-metrics { margin-top: 40px; }
  .c-metric { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .c-metric .fig { font-size: 52px; }
  .c-metric p { font-size: 17px; }

  /* quote */
  .c-quote { padding: 60px 20px; }
  .c-quote blockquote { font-size: 25px; max-width: none; }
  .c-quote .who { margin-top: 26px; }

  /* insights link */
  .c-insights-link { margin-top: 38px; }

  /* why I do this → stack portrait over text */
  .c-words { grid-template-columns: 1fr; gap: 30px; padding: 54px 20px; }
  .c-words-portrait { max-width: 300px; }
  .c-words-body .lead-line { font-size: 30px; max-width: none; margin-bottom: 22px; }
  .c-words-body p { font-size: 17px; max-width: none; }
  .c-words-body .sign { margin-top: 32px; }
  .c-words-body .sign .mark { font-size: 48px; }

  /* plan → 1 column */
  .c-plan { grid-template-columns: 1fr; gap: 34px; margin-top: 40px; }
  .c-plan .step .n { font-size: 54px; }
  .c-plan .step h3 { font-size: 23px; margin: 16px 0 10px; }

  /* closing */
  .c-closing { padding: 68px 20px; }
  .c-closing h2 { font-size: 40px; max-width: none; }
  .c-closing p { font-size: 17px; max-width: none; margin: 24px auto 32px; }
  .c-contact { margin-top: 36px; }
  .c-contact .email { font-size: 21px; word-break: break-word; text-align: center; }

  /* footer → stack */
  .c-footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 40px 20px; }
  .c-footer .links { flex-wrap: wrap; gap: 14px 22px; }
}
