/* =========================================================================
   ContractorOS — Bold Editorial Brand
   Navy structure + energetic orange accent. Magazine energy.
   ========================================================================= */

:root {
  /* Navy structure */
  --navy-900: #0a1730;
  --navy-800: #0d1f3c;
  --navy-700: #112a52;
  --navy-600: #173462;
  --navy-500: #1f4178;
  --navy-300: #7d9bd1;

  /* Orange accent */
  --orange-500: #f97316;   /* bright — large non-text accents only */
  --orange-600: #e2620c;
  --orange-700: #b8500a;   /* AA on white for large text */
  --orange-800: #a3470a;   /* AA on white for body-ish text */

  /* Neutrals / ink */
  --ink-900: #0d1428;
  --ink-700: #38445c;
  --ink-500: #5d6a82;
  --paper: #ffffff;
  --paper-soft: #f5f4ef;   /* warm off-white, paper feel */
  --paper-line: #e7e3d8;
  --line: #e3e6ec;

  /* On-dark text */
  --on-dark: #eef2f8;
  --on-dark-soft: #b9c4d6;

  /* System */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(10,23,48,.06), 0 2px 6px rgba(10,23,48,.05);
  --shadow-md: 0 10px 30px -12px rgba(10,23,48,.28);
  --shadow-lg: 0 40px 80px -28px rgba(10,23,48,.45), 0 12px 28px -16px rgba(10,23,48,.30);
  --maxw: 1200px;

  --serif: "Fraunces", "Fraunces Fallback", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Metric-matched fallback so the Fraunces swap doesn't shift layout (CLS guard) */
@font-face {
  font-family: "Fraunces Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 102%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}
:root { --serif-fallback: "Fraunces Fallback", Georgia, "Times New Roman", serif; }

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

.visually-hidden, .skip-link:not(:focus) {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: 12px; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 600; text-decoration: none;
}

:focus-visible { outline: 3px solid var(--orange-600); outline-offset: 2px; border-radius: 4px; }

/* =========================================================================
   Typography system
   ========================================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-800);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--orange-600); border-radius: 2px;
}
.eyebrow--light { color: #ffb87a; }
.eyebrow--light::before { background: var(--orange-500); }

h1, .editorial-head h2, .who h2, .faq-wrap h2, .finalcta h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
}
.hero__accent {
  display: block;
  color: #ffb87a;
  font-style: italic;
  font-weight: 500;
}

.editorial-head h2, .who h2, .faq-wrap h2, .finalcta h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  color: var(--navy-800);
}
.editorial-head--light h2, .finalcta h2, .section--dark .editorial-head h2 { color: #fff; }

.u {
  background-image: linear-gradient(transparent 58%, rgba(249,115,22,.30) 58%, rgba(249,115,22,.30) 94%, transparent 94%);
  background-repeat: no-repeat;
  padding-inline: .06em;
  /* navy text stays on a pale peach swatch — AA clear (~11:1) */
}
.hl { color: #ffb87a; font-style: italic; font-weight: 500; }

h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-700);
}
.lead--light { color: var(--on-dark-soft); }
.lead--measure { max-width: 60ch; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  --btn-bg: var(--orange-700);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700; font-size: 1rem;
  line-height: 1; text-decoration: none;
  color: #fff; background: var(--btn-bg);
  padding: 15px 24px; min-height: 48px;
  border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(184,80,10,.7);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { background: var(--orange-800); transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(184,80,10,.7); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 11px 18px; min-height: 44px; font-size: .94rem; }
.btn--lg { padding: 17px 30px; min-height: 54px; font-size: 1.06rem; }
.btn--xl { padding: 20px 40px; min-height: 60px; font-size: 1.18rem; }

.btn--ghost {
  color: var(--navy-700); background: transparent;
  border: 1.5px solid var(--navy-500); box-shadow: none;
}
.btn--ghost:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.btn--ghost-light {
  color: #fff; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.32); box-shadow: none;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

/* =========================================================================
   Top bar
   ========================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,31,60,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.topbar.is-scrolled { box-shadow: 0 8px 24px -14px rgba(0,0,0,.6); background: rgba(10,23,48,.94); }
.topbar__inner { display: flex; align-items: center; gap: 20px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand__mark { display: inline-flex; color: var(--navy-300); }
.brand__name { font-family: var(--sans); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: #fff; }
.brand__name b { color: var(--orange-500); font-weight: 800; }

.topnav { margin-left: auto; display: flex; gap: 30px; }
.topnav a {
  text-decoration: none; color: var(--on-dark-soft); font-weight: 500; font-size: .96rem;
  position: relative; padding: 4px 0; transition: color .15s ease;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--orange-500); transition: right .2s ease;
}
.topnav a:hover { color: #fff; }
.topnav a:hover::after { right: 0; }
.topbar__cta { margin-left: 6px; }

@media (max-width: 720px) {
  .topnav { display: none; }
  .topbar__cta { margin-left: auto; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--navy-800);
  color: #fff;
  padding-top: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 82% 0%, rgba(249,115,22,.20), transparent 55%),
    radial-gradient(90% 70% at 0% 18%, rgba(31,65,120,.6), transparent 60%),
    linear-gradient(180deg, var(--navy-700), var(--navy-900));
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 60% 0%, #000 35%, transparent 78%);
}
.hero__inner { position: relative; z-index: 1; }

.hero__head { max-width: 760px; }
.hero__head .eyebrow { margin-bottom: 22px; }

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero__left { max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta {
  margin-top: 22px; font-size: .92rem; color: var(--on-dark-soft);
  font-family: var(--mono); letter-spacing: .01em;
}

.hero__shot { margin: 0; align-self: end; }
.hero__shotcap {
  margin-top: 16px; text-align: right;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-300);
}

/* window frame (shared) */
.window {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.window__bar {
  display: flex; align-items: center; gap: 12px;
  height: 44px; padding: 0 16px;
  background: linear-gradient(180deg, #f4f6fa, #e9edf4);
  border-bottom: 1px solid #dce2ec;
}
.window__dots { display: inline-flex; gap: 7px; }
.window__dots i { width: 11px; height: 11px; border-radius: 50%; background: #cfd6e2; display: block; }
.window__dots i:nth-child(1) { background: #f0817b; }
.window__dots i:nth-child(2) { background: #f6c252; }
.window__dots i:nth-child(3) { background: #62c084; }
.window__title {
  flex: 1; min-width: 0; text-align: center; font-size: .82rem; font-weight: 600; color: var(--ink-500);
  font-family: var(--mono); letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.window__app {
  font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  color: #fff; background: #1e8a52; padding: 3px 7px; border-radius: 5px;
}
.window__screen { background: #fff; }
.window__screen img { width: 100%; height: auto; display: block; }
/* For tall screenshots: clip to top so the frame stays a balanced rectangle */
.window__screen--top { max-height: 460px; overflow: hidden; }
.window--hero .window__screen--top { max-height: 520px; }
/* followup shot has white space at the bottom — clip it to the live rows */
.window__screen--crop { max-height: 360px; overflow: hidden; }

.window--hero { transform: perspective(1600px) rotateY(-1.5deg); }
@media (prefers-reduced-motion: reduce) { .window--hero { transform: none; } }

/* hero stat band */
.hero__stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(10,23,48,.4);
}
.statband {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 30px 26px;
  border-left: 1px solid rgba(255,255,255,.10);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1;
  color: #ffb87a; letter-spacing: -0.02em;
}
.stat__num small { font-family: var(--sans); font-size: .42em; font-weight: 600; color: var(--on-dark-soft); }
.stat__lbl { display: block; margin-top: 10px; font-size: .9rem; color: var(--on-dark-soft); line-height: 1.4; }

@media (max-width: 860px) {
  .hero__body { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .hero__left { max-width: none; }
  .hero__shot { width: 100%; min-width: 0; }
  .hero__shotcap { text-align: left; }
  .statband { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 460px) {
  .statband { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.10); }
  .stat:first-child { border-top: 0; }
}

/* =========================================================================
   Section scaffolding
   ========================================================================= */
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--soft { background: var(--paper-soft); }
.section--dark { background: var(--navy-800); color: var(--on-dark); position: relative; overflow: hidden; }
.section__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(100% 60% at 85% -10%, rgba(249,115,22,.16), transparent 55%),
    linear-gradient(180deg, var(--navy-700), var(--navy-900));
}
.section__grid-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(110% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(110% 80% at 50% 0%, #000 30%, transparent 75%);
}
.section--dark > .container { position: relative; z-index: 1; }

.editorial-head { max-width: 880px; margin-bottom: clamp(44px, 6vw, 72px); }
.editorial-head .eyebrow { margin-bottom: 18px; }
.editorial-head .lead { margin-top: 22px; }

/* =========================================================================
   PROBLEM
   ========================================================================= */
.pains {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.pain {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 30px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}
.pain:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--line); }
.pain:nth-child(even) { padding-left: 40px; }
/* 5th item spans the full row so there's no dead half-cell */
.pain--wide {
  grid-column: 1 / -1;
  border-right: 0; padding-right: 0;
}
.pain--wide .pain__txt { max-width: 62ch; }
.pain__no {
  font-family: var(--mono); font-weight: 700; font-size: 1rem;
  color: var(--orange-700);
  border: 1.5px solid rgba(184,80,10,.28); border-radius: 8px;
  padding: 6px 9px; line-height: 1; flex: none; margin-top: 4px;
}
.pain__txt h3 { font-size: 1.22rem; margin-bottom: 8px; color: var(--navy-800); }
.pain__txt p { color: var(--ink-700); font-size: 1rem; }

.turn {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 28px;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(30px, 4vw, 48px);
  background: var(--navy-800); color: #fff;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
}
.turn::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,115,22,.34), transparent 65%);
}
.turn__kick {
  position: relative; font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: #ffb87a; flex: none;
}
.turn__line {
  position: relative; flex: 1; min-width: 280px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.4; color: var(--on-dark);
}

@media (max-width: 720px) {
  .pains { grid-template-columns: 1fr; }
  .pain, .pain:nth-child(odd), .pain:nth-child(even) {
    padding: 24px 0; border-right: 0; padding-left: 0; padding-right: 0;
  }
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.feat {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 64px);
}
.feat + .feat { border-top: 1px solid rgba(255,255,255,.10); }
.feat:last-child { padding-bottom: 0; }
.feat--flip .feat__media { order: 2; }

.feat__body .feat__no {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1;
  color: rgba(255,184,122,.28); margin-bottom: 6px;
}
.feat__tag {
  display: inline-block; font-family: var(--mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #ffb87a; margin-bottom: 14px;
}
.feat__tag--star {
  color: #fff; background: var(--orange-600);
  padding: 5px 12px; border-radius: 999px;
}
.feat__body h3 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.05; color: #fff; margin-bottom: 16px;
}
.feat__body > p { color: var(--on-dark-soft); font-size: 1.06rem; max-width: 48ch; }
.feat__list { margin-top: 22px; display: grid; gap: 12px; }
.feat__list li {
  position: relative; padding-left: 30px; color: var(--on-dark); font-size: 1rem; line-height: 1.5;
}
.feat__list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* star feature gets an orange spine */
.feat--star { position: relative; }
.feat--star .feat__media .window { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(249,115,22,.4); }

.feat__media .window { border-color: rgba(255,255,255,.18); }
.feat--app .window { background: #fff; }

@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; gap: 28px; }
  .feat--flip .feat__media { order: 0; }
  .feat__media { order: 0; }
}

/* =========================================================================
   WHY grid + compare
   ========================================================================= */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: #fff;
}
.why {
  padding: 34px 32px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff; transition: background .2s ease;
}
.why-grid .why:nth-child(3n) { border-right: 0; }
.why-grid .why:nth-last-child(-n+3) { border-bottom: 0; }
.why:hover { background: var(--paper-soft); }
.why__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  font-family: var(--mono); font-weight: 700; font-size: 1.1rem;
  color: var(--orange-700); background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.22); margin-bottom: 18px;
}
.why h3 { font-size: 1.18rem; color: var(--navy-800); margin-bottom: 8px; }
.why p { color: var(--ink-700); font-size: .98rem; }

.compare {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid; grid-template-columns: 0.85fr 2.15fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.compare__intro h3 { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; color: var(--navy-800); letter-spacing: -0.02em; }
.compare__intro p { color: var(--ink-700); margin-top: 12px; font-size: 1.05rem; }

.ctable { width: 100%; border-collapse: collapse; font-size: .97rem; }
.ctable thead th {
  text-align: left; vertical-align: bottom; padding: 14px 16px;
  font-weight: 700; color: var(--ink-500); font-size: .9rem;
  border-bottom: 2px solid var(--line);
}
.ctable thead th small { display: block; font-weight: 500; color: var(--ink-500); font-size: .8rem; }
.ctable thead th.ctable__ours {
  color: #fff; background: var(--navy-800); border-bottom: 2px solid var(--orange-600);
  border-radius: var(--r-sm) var(--r-sm) 0 0; font-size: 1.02rem;
}
.ctable tbody th {
  text-align: left; font-weight: 700; color: var(--navy-800); padding: 16px 16px;
  border-bottom: 1px solid var(--line); width: 30%;
}
.ctable tbody td {
  padding: 16px 16px; color: var(--ink-700); border-bottom: 1px solid var(--line);
}
.ctable td.no { color: var(--ink-500); }
.ctable .ctable__ours { background: rgba(13,31,60,.04); color: var(--navy-800); }
.ctable tbody tr:last-child .ctable__ours { border-radius: 0 0 var(--r-sm) var(--r-sm); }
.ctable .ctable__ours b { color: var(--navy-800); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid .why:nth-child(3n) { border-right: 1px solid var(--line); }
  .why-grid .why:nth-child(2n) { border-right: 0; }
  .why-grid .why:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .why-grid .why:nth-last-child(-n+2) { border-bottom: 0; }
  .compare { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
  .why { border-right: 0 !important; }
  .ctable { font-size: .88rem; }
  .ctable thead th, .ctable tbody th, .ctable tbody td { padding: 11px 9px; }
}
/* very small screens: let the comparison table scroll inside its lane rather
   than push the whole page wider (keeps the rest pixel-tight) */
@media (max-width: 440px) {
  .compare { display: block; }
  .compare__intro { margin-bottom: 22px; }
  .compare .ctable { min-width: 420px; }
  /* table sits in a horizontally scrollable, contained frame */
  .ctable-scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line); border-radius: var(--r-md);
    background: #fff; box-shadow: var(--shadow-sm);
  }
  .ctable-scroll .ctable { font-size: .84rem; }
  .ctable-scroll .ctable thead th, .ctable-scroll .ctable tbody th, .ctable-scroll .ctable tbody td { padding: 10px 10px; }
  .ctable-scroll .ctable tbody th { width: auto; }
  /* hint that the table scrolls: a soft fade on the right edge */
  .ctable-scroll {
    background:
      linear-gradient(#fff 30%, rgba(255,255,255,0)),
      linear-gradient(rgba(255,255,255,0), #fff 70%) 0 100%,
      radial-gradient(farthest-side at 100% 50%, rgba(13,31,60,.10), rgba(13,31,60,0)) 100% 0;
    background-repeat: no-repeat;
    background-size: 100% 24px, 100% 24px, 14px 100%;
    background-attachment: local, local, scroll;
  }
  .turn__line { min-width: 0; }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.tiers {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; align-items: start;
}
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.tier--hero {
  position: relative; overflow: hidden;
  background: var(--navy-800); color: #fff; border: 0;
  padding: clamp(30px, 3.5vw, 44px);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.tier--hero::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.28), transparent 65%); pointer-events: none;
}
.tier--hero > * { position: relative; }
.tier--hero .tier__kind { color: #ffb87a; }
.tier--hero .tier__name { color: #fff; }
.tier--hero .tier__sub { color: var(--on-dark-soft); }

.tier__kind {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange-800);
}
.tier__name { font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em; font-size: 2.1rem; margin: 8px 0 4px; }
.tier__sub { color: var(--ink-700); font-size: 1.02rem; }

.tier__pricerow { display: flex; align-items: baseline; gap: 12px; margin: 26px 0 22px; }
.tier__price { font-family: var(--serif); font-weight: 700; font-size: 4rem; line-height: .9; letter-spacing: -0.03em; color: #ffb87a; }
.tier__once { font-family: var(--mono); font-size: .82rem; color: var(--on-dark-soft); line-height: 1.4; }
.tier__once small { color: rgba(185,196,214,.7); }

.tier__list { display: grid; gap: 13px; margin-bottom: 28px; }
.tier__list li { position: relative; padding-left: 30px; line-height: 1.45; font-size: 1rem; }
.tier--hero .tier__list li { color: var(--on-dark); }
.tier__list .ic {
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-600); color: #fff; font-size: .72rem; font-weight: 800;
}
.tier__cta { width: 100%; }
.tier__note { margin-top: 14px; text-align: center; font-family: var(--mono); font-size: .76rem; color: var(--on-dark-soft); letter-spacing: .04em; }
.tier__assure {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
}
.tier__assure li {
  position: relative; padding-left: 24px; font-size: .92rem; color: var(--on-dark-soft);
}
.tier__assure li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

.tier-stack { display: grid; gap: 22px; }
.tier--mini { padding: 26px 28px; transition: transform .18s ease, box-shadow .18s ease; }
.tier--mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-mini__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.tier__name--sm { font-family: var(--sans); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--navy-800); margin: 6px 0 0; }
.tier__price--sm { font-family: var(--serif); font-weight: 700; font-size: 1.9rem; color: var(--orange-800); letter-spacing: -0.02em; flex: none; }
.tier--mini .tier__sub { margin-top: 10px; font-size: .96rem; }
.tier--mini .tier__list { margin-top: 18px; margin-bottom: 22px; gap: 10px; }
.tier--mini .tier__list li { color: var(--ink-700); font-size: .96rem; }

.tiers-note {
  margin-top: 30px; max-width: 70ch; color: var(--ink-500); font-size: .94rem;
  border-left: 3px solid var(--orange-500); padding-left: 16px;
}

@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
}

/* =========================================================================
   WHO IT'S FOR
   ========================================================================= */
.who { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.who__head .eyebrow { margin-bottom: 18px; }
.who__head .lead { margin-top: 22px; }
.who-not {
  margin-top: 28px; padding: 22px 24px;
  background: var(--paper-soft); border: 1px solid var(--paper-line); border-radius: var(--r-md);
  border-left: 4px solid var(--orange-600);
}
.who-not__kick { display: block; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.who-not p { color: var(--ink-700); font-size: .98rem; }

.who__list {
  background: var(--navy-800); color: #fff; border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 38px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.who__list::before {
  content: ""; position: absolute; left: -50px; bottom: -50px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(249,115,22,.24), transparent 65%);
}
.who__lbl {
  position: relative; display: block; font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #ffb87a; margin-bottom: 18px;
}
.trades { position: relative; display: flex; flex-wrap: wrap; gap: 9px; }
.trades li {
  font-size: .92rem; font-weight: 600; color: var(--on-dark);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 820px) {
  .who { grid-template-columns: 1fr; }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-wrap__head { position: sticky; top: 92px; }
.faq-wrap__head .eyebrow { margin-bottom: 18px; }
.faq-wrap__head .lead { margin-top: 20px; }

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; min-height: 44px;
  font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--navy-800);
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange-800); }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--orange-600); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.faq__plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq__plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq details[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__body { padding: 0 4px 24px; }
.faq__body p { color: var(--ink-700); font-size: 1rem; max-width: 64ch; }
.faq details[open] summary { color: var(--orange-800); }

@media (max-width: 820px) {
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap__head { position: static; }
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.finalcta { padding-block: clamp(72px, 10vw, 130px); text-align: center; }
.finalcta__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.finalcta .eyebrow { justify-content: center; margin-bottom: 20px; }
.finalcta h2 { margin-bottom: 22px; }
.finalcta__lead { color: var(--on-dark-soft); font-size: 1.2rem; line-height: 1.55; max-width: 56ch; margin-inline: auto; margin-bottom: 36px; }
.finalcta__note { margin-top: 20px; font-family: var(--mono); font-size: .84rem; letter-spacing: .04em; color: var(--on-dark-soft); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--navy-900); color: var(--on-dark-soft); padding-block: 56px 40px; }
.footer__top {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px 40px; align-items: center;
}
.brand--footer .brand__name { color: #fff; }
.footer__tag { color: var(--on-dark-soft); font-size: .98rem; max-width: 58ch; line-height: 1.55; }
.footer__nav { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 26px; }
.footer__nav a { color: var(--on-dark-soft); text-decoration: none; font-size: .94rem; font-weight: 500; transition: color .15s ease; }
.footer__nav a:hover { color: #fff; }
.footer__rule { border: 0; border-top: 1px solid rgba(255,255,255,.10); margin: 34px 0 22px; }
.footer__legal { font-size: .8rem; line-height: 1.6; color: #7e8aa0; max-width: 100%; }

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

/* =========================================================================
   Small-screen type + rhythm guard (<=480px)
   Keeps the serif legible, prevents cramped/clipped headers, body stays 16px+.
   ========================================================================= */
@media (max-width: 480px) {
  .container { padding-inline: 22px; }
  /* serif display: a touch more leading so descenders never clip, wraps stay clean */
  h1 { font-size: clamp(2.3rem, 11vw, 3rem); line-height: 1.06; }
  .editorial-head h2, .who h2, .faq-wrap h2, .finalcta h2 { line-height: 1.08; }
  .feat__body h3 { line-height: 1.12; }
  /* body never drops below comfortable reading size */
  .lead { font-size: 1.0625rem; line-height: 1.6; }
  .pain__txt p, .why p, .faq__body p, .feat__body > p { font-size: 1rem; }
  /* balance two-word orphans on supporting browsers */
  h1, .editorial-head h2, .who h2 { text-wrap: balance; }
  .lead { text-wrap: pretty; }
}

/* =========================================================================
   Reveal motion
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .topnav a::after, .why, .tier--mini, .guide-card { transition: none !important; }
}

/* =========================================================================
   GUIDES — hub + article reading shell (ADDITIVE; reuses brand tokens)
   ========================================================================= */
.guide-main { max-width: 760px; margin-inline: auto; padding-inline: 28px; padding-block: clamp(40px, 6vw, 80px); }
.hub-main { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; padding-block: clamp(40px, 6vw, 80px); }

/* breadcrumb */
.breadcrumb { margin-bottom: clamp(22px, 3vw, 34px); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: var(--ink-500); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--paper-line); }
.breadcrumb a { color: var(--orange-800); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb [aria-current="page"] { color: var(--ink-500); }

/* eyebrow for guides reuses .eyebrow; alias kept for clarity */
.guide-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-800); }
.guide-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange-600); border-radius: 2px; }

/* hub header */
.hub-header { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.hub-header .guide-eyebrow { margin-bottom: 18px; }
.hub-title { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.04; color: var(--navy-800); font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.hub-sub { margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.24rem); line-height: 1.55; color: var(--ink-700); max-width: 62ch; }

/* article header */
.guide-header { margin-bottom: clamp(28px, 4vw, 40px); }
.guide-header .guide-eyebrow { margin-bottom: 16px; }
.guide-title { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.06; color: var(--navy-800); font-size: clamp(2rem, 4.4vw, 3.1rem); }
.guide-lede { margin-top: 20px; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.5; color: var(--ink-700); }
.guide-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.guide-meta__item { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: var(--ink-500); }
.guide-meta__item svg { color: var(--orange-700); flex: none; }

/* prose reading column */
.prose { font-size: 1.06rem; }
.prose h2 { font-family: var(--serif); font-weight: 600; color: var(--navy-800); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.12; letter-spacing: -.02em; margin: 2em 0 .5em; }
.prose h3 { font-family: var(--sans); font-weight: 700; color: var(--navy-800); font-size: 1.22rem; letter-spacing: -.01em; margin: 1.7em 0 .4em; }
.prose p { color: var(--ink-700); font-size: 1.06rem; line-height: 1.72; margin: 1em 0; }
.prose ul, .prose ol { color: var(--ink-700); margin: 1em 0; padding-left: 1.3em; list-style: revert; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 1.06rem; line-height: 1.7; margin: .5em 0; padding-left: .2em; }
.prose li::marker { color: var(--orange-700); }
.prose a { color: var(--orange-800); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--orange-700); }
.prose strong { color: var(--navy-800); font-weight: 700; }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--paper-soft); border: 1px solid var(--paper-line); border-radius: 6px; padding: 1px 6px; color: var(--navy-700); }

/* prose tables — match the .ctable look */
.prose table { width: 100%; border-collapse: collapse; font-size: .98rem; margin: 1.6em 0; }
.prose thead th { text-align: left; padding: 13px 15px; font-weight: 700; color: #fff; background: var(--navy-800); border-bottom: 2px solid var(--orange-600); }
.prose thead th:first-child { border-radius: var(--r-sm) 0 0 0; }
.prose thead th:last-child { border-radius: 0 var(--r-sm) 0 0; }
.prose tbody td { padding: 13px 15px; color: var(--ink-700); border-bottom: 1px solid var(--line); vertical-align: top; }
.prose tbody tr:nth-child(even) { background: var(--paper-soft); }
.prose tbody td:first-child { font-weight: 600; color: var(--navy-800); }
.prose-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* callouts */
.callout { border: 1px solid var(--paper-line); background: var(--paper-soft); border-left: 4px solid var(--orange-600); border-radius: var(--r-md); padding: 18px 22px; margin: 1.8em 0; }
.callout p { margin: .4em 0 0; color: var(--ink-700); font-size: 1rem; }
.callout p:first-child { margin-top: 0; }
.callout__title { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; color: var(--navy-800); font-size: 1.02rem; }
.callout__title svg { color: var(--orange-700); flex: none; }
.callout--bad { border-left-color: #c2410c; }
.callout--formula { font-family: var(--mono); }
.callout--formula .formula { display: block; font-family: var(--mono); font-size: 1.02rem; color: var(--navy-800); background: #fff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 12px 16px; margin: 10px 0 0; }

/* dark takeaway */
.takeaway { position: relative; overflow: hidden; background: var(--navy-800); color: var(--on-dark); border-radius: var(--r-lg); padding: 26px 28px; margin: 1.9em 0; }
.takeaway::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(249,115,22,.30), transparent 65%); pointer-events: none; }
.takeaway > * { position: relative; }
.takeaway__label { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #ffb87a; margin-bottom: 8px; }
.takeaway__label svg { color: #ffb87a; flex: none; }
.takeaway p:not(.takeaway__label) { color: var(--on-dark); font-size: 1.08rem; line-height: 1.55; margin: 0; }

/* inline product CTA (navy card, links to Gumroad FE) */
.guide-cta { position: relative; overflow: hidden; background: var(--navy-800); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px); margin: 2.2em 0; text-align: center; box-shadow: var(--shadow-md); }
.guide-cta::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(249,115,22,.28), transparent 65%); pointer-events: none; }
.guide-cta > * { position: relative; }
.guide-cta__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #ffb87a; margin-bottom: 14px; justify-content: center; }
.guide-cta__eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange-500); border-radius: 2px; }
.guide-cta__title { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.1; color: #fff; margin-bottom: 12px; }
.guide-cta__sub { color: var(--on-dark-soft); font-size: 1.05rem; line-height: 1.55; max-width: 52ch; margin: 0 auto 24px; }
.guide-cta__note { margin-top: 14px; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: var(--on-dark-soft); }

/* guide cards (hub + related) */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.guide-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.4); }
.guide-card__kicker { font-family: var(--mono); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-800); margin-bottom: 12px; }
.guide-card__title { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; font-size: 1.32rem; line-height: 1.18; color: var(--navy-800); margin-bottom: 10px; }
.guide-card__desc { color: var(--ink-700); font-size: .98rem; line-height: 1.55; }
.guide-card__more { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .94rem; color: var(--orange-800); }
.guide-card__more svg { transition: transform .18s ease; flex: none; }
.guide-card:hover .guide-card__more svg { transform: translateX(3px); }

/* related guides block */
.related { max-width: 760px; margin: clamp(48px, 6vw, 72px) auto 0; padding-inline: 28px; }
.related__title { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; color: var(--navy-800); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 24px; }
.related__grid { display: grid; gap: 18px; }

@media (max-width: 720px) {
  .hub-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   CAPTURE — lead-magnet email section (matches dark bands)
   ========================================================================= */
.capture { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.capture-band { position: relative; }
.capture__copy .eyebrow { margin-bottom: 16px; }
.capture__copy h2 { margin-bottom: 0; }
.capture__copy .lead { margin-top: 18px; }
.capture__form { display: grid; gap: 12px; }
.capture__field { display: block; }
.capture__input { width: 100%; padding: 15px 18px; min-height: 52px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 1rem; transition: border-color .15s ease, background .15s ease; }
.capture__input::placeholder { color: var(--on-dark-soft); }
.capture__input:focus { outline: none; border-color: var(--orange-500); background: rgba(255,255,255,.10); }
.capture__submit { width: 100%; }
.capture__status { font-family: var(--mono); font-size: .82rem; min-height: 1.2em; margin: 0; letter-spacing: .02em; }
.capture__status.is-pending { color: var(--on-dark-soft); }
.capture__status.is-error { color: #ffb4a8; }
.capture__status.is-success { color: #7fe3a8; }
.capture__microcopy { font-family: var(--mono); font-size: .8rem; color: var(--on-dark-soft); margin: 0; }

/* compact capture used on the guides hub (sits on paper) */
.capture--compact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-top: clamp(40px, 6vw, 64px); background: var(--navy-800); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px); position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.capture--compact::before { content: ""; position: absolute; left: -70px; bottom: -70px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(249,115,22,.24), transparent 65%); pointer-events: none; }
.capture--compact > * { position: relative; }
.capture--compact .capture__copy .eyebrow { margin-bottom: 14px; }
.capture--compact .capture__title { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.12; color: #fff; }
.capture--compact .capture__sub { margin-top: 12px; color: var(--on-dark-soft); font-size: 1.02rem; line-height: 1.5; }

@media (max-width: 820px) {
  .capture, .capture--compact { grid-template-columns: 1fr; }
}

/* =========================================================================
   Footer nav (additive — middle column now wraps tag + a small nav)
   ========================================================================= */
.footer__mid { display: flex; flex-direction: column; gap: 14px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__nav a { color: var(--on-dark-soft); text-decoration: none; font-weight: 600; font-size: .92rem; }
.footer__nav a:hover { color: #fff; }
