/* ============================================================
   Mayur Lodhi — Founder Execution & Scaling Partner
   One-page site. Built on the Inside the Room system.
   Plain HTML/CSS so the editor can direct-edit; tokens from
   ../colors_and_type.css. Voice: calm, senior, outcome-first.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; }

:root {
  /* motif intensity, driven by the Tweaks panel (0.22 / 0.5 / 0.85) */
  --motif: 0.5;
  --maxw: 1160px;
  --gutter: 40px;
}

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

/* ---------- shared type ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin: 0;
}
.eyebrow--slate { color: var(--slate-accent); }
.eyebrow--ondark { color: var(--sage-green); }

.lede { font-size: 19px; line-height: 1.6; color: var(--fg-2); margin: 0; text-wrap: pretty; }

/* ---------- the systems-grid motif ---------- */
.motif { opacity: var(--motif); pointer-events: none; transition: opacity var(--dur-slow) var(--ease); }
.dotfield {
  background-image: radial-gradient(var(--border-strong) 1px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: calc(var(--motif) * 0.7);
  transition: opacity var(--dur-slow) var(--ease);
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  border-radius: var(--r-md); padding: 13px 24px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    transform var(--dur-fast) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-2); }
.btn-slate { background: var(--slate-accent); color: #fff; }
.btn-slate:hover { background: var(--slate-accent-hover); box-shadow: var(--shadow-2); }
.btn-secondary { background: var(--surface); color: var(--fg-1); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--slate-faint); border-color: var(--slate-accent); }
.btn-ghost { background: transparent; color: var(--slate-accent); padding-left: 6px; padding-right: 6px; }
.btn-ghost:hover { color: var(--slate-accent-hover); gap: 12px; }
.btn-on-dark { background: var(--off-white); color: var(--slate-blue); }
.btn-on-dark:hover { background: #fff; box-shadow: var(--shadow-2); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav.is-scrolled {
  background: rgba(246,247,242,.84);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand__name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: var(--fg-1); }
.brand__role {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3); padding-left: 12px; border-left: 1px solid var(--border-strong);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 14.5px; font-weight: 500; color: var(--fg-2); transition: color var(--dur) var(--ease); }
.nav__link:hover { color: var(--fg-1); }
.nav__burger { display: none; }

/* ============================================================
   HERO — three treatments, switched by [data-hero]
   ============================================================ */
.hero { display: none; position: relative; overflow: hidden; }
body[data-hero="a"] .hero--a,
body[data-hero="b"] .hero--b,
body[data-hero="c"] .hero--c { display: block; }

.motifphrase {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.motifphrase span { color: var(--fg-3); }
.motifphrase .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-quiet); }

/* --- Hero A · Editorial (light, statement-left) --- */
.hero--a { padding: 92px 0 84px; }
.hero--a .dotfield { position: absolute; inset: 0; }
.hero--a__half {
  position: absolute; right: -150px; top: -160px; width: 440px; height: 440px;
  border-radius: 50%; background: var(--sage-green); opacity: calc(var(--motif) * .55);
}
.hero--a__svg { position: absolute; right: 3%; top: 70px; width: 520px; height: 350px; }
.hero--a .wrap { position: relative; }
.hero--a__eyebrow { margin-bottom: 22px; }
.hero--a__name {
  font-size: 76px; line-height: 1.04; font-weight: 600; letter-spacing: -.035em;
  margin: 0; color: var(--fg-1); max-width: 15ch; text-wrap: balance;
}
.hero--a__pos {
  font-size: 21px; line-height: 1.55; color: var(--fg-2); margin: 26px 0 0;
  max-width: 46ch; text-wrap: pretty;
}
.hero--a__cta { display: flex; gap: 14px; margin: 36px 0 0; flex-wrap: wrap; }
.hero--a__phrase { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--border); max-width: 640px; }

/* --- Hero B · Authority (slate full-bleed) --- */
.hero--b { background: var(--slate-blue); color: var(--off-white); padding: 100px 0 92px; }
.hero--b .dotfield {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(167,184,168,.55) 1px, transparent 1.4px);
}
.hero--b__svg { position: absolute; left: -40px; bottom: -50px; width: 540px; height: 360px; }
.hero--b__half {
  position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  border-radius: 50%; background: var(--sage-green); opacity: calc(var(--motif) * .22);
}
.hero--b .wrap { position: relative; }
.hero--b__eyebrow { margin-bottom: 22px; }
.hero--b__name { font-size: 74px; line-height: 1.05; font-weight: 600; letter-spacing: -.035em; margin: 0; color: var(--off-white); max-width: 15ch; text-wrap: balance; }
.hero--b__pos { font-size: 21px; line-height: 1.55; color: var(--fg-on-dark-2); margin: 26px 0 0; max-width: 46ch; text-wrap: pretty; }
.hero--b__cta { display: flex; gap: 14px; margin: 38px 0 0; flex-wrap: wrap; }
.hero--b__phrase { margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--border-on-dark); max-width: 680px; }
.hero--b__phrase span { color: var(--fg-on-dark-2); }
.hero--b__phrase .sep { background: var(--sage-green); }

/* --- Hero C · Masthead (literal grid frame) --- */
.hero--c { padding: 64px 0 84px; }
.hero--c .frame {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface);
  display: grid; grid-template-columns: 1.55fr 1fr;
  position: relative;
}
.hero--c .frame::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--border) 1px, transparent 1.4px);
  background-size: 30px 30px; opacity: calc(var(--motif) * .6);
}
.cell { position: relative; padding: 40px; border-bottom: 1px solid var(--border); }
.cell--main { grid-column: 1; border-right: 1px solid var(--border); padding: 52px 48px; }
.cell--meta { grid-column: 2; display: flex; flex-direction: column; }
.cell--phrase { grid-column: 1 / -1; border-bottom: none; padding: 24px 48px; }
.cell__tag {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3); margin: 0 0 16px;
}
.hero--c__name { font-size: 58px; line-height: 1.05; font-weight: 600; letter-spacing: -.035em; margin: 0; max-width: 14ch; text-wrap: balance; }
.hero--c__role { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 16px 0 0; }
.hero--c__pos { font-size: 18px; line-height: 1.55; color: var(--fg-2); margin: 24px 0 0; max-width: 42ch; text-wrap: pretty; }
.hero--c__cta { display: flex; gap: 14px; margin: 32px 0 0; flex-wrap: wrap; }
.metarow { padding: 26px 32px; border-bottom: 1px solid var(--border); }
.metarow:last-child { border-bottom: none; }
.metarow .k { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 6px; }
.metarow .v { font-size: 16px; font-weight: 500; color: var(--fg-1); margin: 0; }
.hero--c .cell--phrase .motifphrase { justify-content: flex-start; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { padding: 92px 0; position: relative; }
.section--tight { padding: 76px 0; }
.section__head { max-width: 64ch; margin-bottom: 48px; }
.section__title { font-size: 38px; line-height: 1.14; font-weight: 600; letter-spacing: -.025em; margin: 14px 0 0; color: var(--fg-1); }
.section__sub { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 16px 0 0; max-width: 56ch; text-wrap: pretty; }
.section--slate { background: var(--slate-blue); color: var(--off-white); overflow: hidden; }
.section--slate .section__title { color: var(--off-white); }
.section--slate .section__sub { color: var(--fg-on-dark-2); }
.section--band { background: var(--sage-faint); }
.section--alt { background: var(--bg-alt); }

/* ============================================================
   WHAT I HELP WITH — three founder problems
   ============================================================ */
.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); }
.problem { padding: 36px 32px 38px 0; border-bottom: 1px solid transparent; position: relative; }
.problem + .problem { padding-left: 36px; border-left: 1px solid var(--border); }
.problem__n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin: 0 0 18px; }
.problem__t { font-size: 22px; line-height: 1.25; font-weight: 600; letter-spacing: -.015em; color: var(--fg-1); margin: 0 0 14px; text-wrap: balance; }
.problem__d { font-size: 15.5px; line-height: 1.62; color: var(--fg-2); margin: 0; text-wrap: pretty; }

/* ============================================================
   THE FOUR SPRINTS — stacked full-width rows
   ============================================================ */
.sprints { display: flex; flex-direction: column; gap: 18px; }

/* Build / Scale group dividers */
.sprintgroup { display: flex; align-items: baseline; gap: 16px; margin: 14px 0 4px; }
.sprintgroup:first-child { margin-top: 0; }
.sprintgroup__label { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-accent); margin: 0; flex: none; }
.sprintgroup__desc { font-size: 14px; color: var(--fg-3); margin: 0; }
.sprintgroup__line { height: 1px; flex: 1; background: var(--border); align-self: center; }

/* Flagship emphasis on the 0→1 sprint */
.sprint--flagship { border-color: var(--accent-quiet); box-shadow: var(--shadow-1); }
.sprint--flagship .sprint__id { background: var(--sage-faint); }
.sprint__flag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.sprint__flag svg { width: 13px; height: 13px; }
.sprint {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  display: grid; grid-template-columns: 300px 1fr; overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sprint:hover { box-shadow: var(--shadow-2); border-color: var(--border-strong); }

.sprint__id { padding: 34px 32px; border-right: 1px solid var(--border); background: var(--surface-sunk); position: relative; }
.sprint__num { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--accent); font-family: var(--font-mono); margin: 0; }
.sprint__name { font-size: 23px; line-height: 1.18; font-weight: 600; letter-spacing: -.02em; color: var(--fg-1); margin: 14px 0 22px; text-wrap: balance; }
.sprint__forlabel { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 7px; }
.sprint__for { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0 0 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  padding: 6px 13px; border-radius: var(--r-pill); background: var(--slate-faint); color: var(--slate-accent-hover);
}
.pill svg { width: 13px; height: 13px; }

.sprint__body { padding: 34px 36px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; }
.sprint__lead .micro,
.sprint__installs .micro {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px;
}
.micro--problem { color: var(--accent); }
.micro--outcome { color: var(--slate-accent); }
.micro--installs { color: var(--fg-3); }
.sprint__problem { font-size: 20px; line-height: 1.34; font-weight: 600; letter-spacing: -.01em; color: var(--fg-1); margin: 0 0 24px; text-wrap: pretty; }
.sprint__outcome { font-size: 15.5px; line-height: 1.6; color: var(--fg-2); margin: 0; text-wrap: pretty; }
.sprint__arrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--accent-quiet); }
.sprint__arrow .line { height: 1px; flex: 1; background: var(--border); }

.installs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.installs li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--fg-2); }
.installs li::before {
  content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--accent-quiet);
  margin-top: 6px; flex: none;
}

/* ============================================================
   FRACTIONAL PARTNER — understated, selective strip
   ============================================================ */
.retainer {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  background: linear-gradient(0deg, var(--slate-faint), var(--surface));
  padding: 40px 44px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start;
}
.retainer__tag { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; }
.retainer__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.retainer__tag span { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
.retainer__title { font-size: 26px; line-height: 1.18; font-weight: 600; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.retainer__outcome { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0 0 22px; text-wrap: pretty; }
.retainer__model { display: flex; flex-wrap: wrap; gap: 8px; }
.retainer__model .pill { background: var(--surface); border: 1px solid var(--border); color: var(--fg-2); }
.retainer__owns .micro { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 14px; }
.ownsgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; list-style: none; margin: 0; padding: 0; }
.ownsgrid li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.4; color: var(--fg-2); }
.ownsgrid li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--slate-accent); margin-top: 7px; flex: none; }

/* ============================================================
   WHY ME — proof (slate authority)
   ============================================================ */
.section--slate .why__svg { position: absolute; right: -60px; top: -40px; width: 460px; height: 320px; }
.why__quote { font-size: 30px; line-height: 1.36; font-weight: 500; letter-spacing: -.018em; color: var(--off-white); margin: 0 0 52px; max-width: 24ch; text-wrap: balance; position: relative; }
.why__quote .amp { color: var(--sage-green); }
.proofcluster + .proofcluster { margin-top: 34px; }
.prooflabel { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-green); margin: 0 0 16px; display: flex; align-items: baseline; gap: 14px; }
.prooflabel .ln { height: 1px; flex: 1; background: var(--border-on-dark); align-self: center; }
.proofs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-on-dark); border: 1px solid var(--border-on-dark); border-radius: var(--r-md); overflow: hidden; }
.proofs--4 { grid-template-columns: repeat(4, 1fr); }
.proofs--2 { grid-template-columns: repeat(2, 1fr); }
.proof { background: var(--slate-blue); padding: 28px 26px; }
.proof__metric { font-size: 17px; font-weight: 600; color: var(--sage-green); margin: 0 0 10px; letter-spacing: -.01em; }
.proof__d { font-size: 14px; line-height: 1.55; color: var(--fg-on-dark-2); margin: 0; }
.credrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.crednote { font-size: 14px; line-height: 1.5; color: var(--fg-on-dark-2); margin: 16px 0 0; }
.cred { font-size: 13px; font-weight: 500; color: var(--off-white); padding: 8px 15px; border: 1px solid var(--border-on-dark); border-radius: var(--r-pill); }

/* ============================================================
   FOCUSED NEXT — demoted, modest
   ============================================================ */
.focusnext { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start;
  border-left: 2px solid var(--accent-quiet); padding-left: 36px; }
.focusnext__body p { font-size: 16.5px; line-height: 1.66; color: var(--fg-2); margin: 0 0 16px; text-wrap: pretty; }
.focusnext__body p:last-child { margin-bottom: 0; }
.focusnext__title { font-size: 26px; font-weight: 600; letter-spacing: -.02em; margin: 12px 0 0; color: var(--fg-1); }

/* ============================================================
   NOTES FROM THE FIELD — teardowns, placeholder/empty
   ============================================================ */
.notes { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.note { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center;
  padding: 22px 4px; border-bottom: 1px solid var(--border); }
.note__date { font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); }
.note__title { font-size: 17px; font-weight: 500; color: var(--fg-2); }
.note__tag { font-size: 12px; font-weight: 600; color: var(--fg-3); padding: 4px 11px; border: 1px solid var(--border); border-radius: var(--r-pill); }
.note--soon .note__title { color: var(--fg-3); }
.notes__foot { margin-top: 26px; font-size: 14px; color: var(--fg-3); display: flex; align-items: center; gap: 10px; }
.notes__foot .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-quiet); }

/* ============================================================
   START A CONVERSATION — intake CTA
   ============================================================ */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta__title { font-size: 40px; line-height: 1.1; font-weight: 600; letter-spacing: -.03em; margin: 16px 0 0; }
.cta__sub { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 16px 0 0; max-width: 42ch; text-wrap: pretty; }
.form { display: flex; flex-direction: column; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-3); }
.input, .textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--fg-1); background: var(--surface);
  border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 12px 15px; outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); width: 100%;
}
.textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.input:focus, .textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.form .btn { justify-content: center; margin-top: 4px; }
.form__note { font-size: 13px; color: var(--fg-3); text-align: center; margin: 0; }
.cta__done { display: flex; align-items: center; gap: 12px; color: var(--accent); font-size: 16px; padding: 20px 0; }
.cta__done p { margin: 0; color: var(--fg-1); }

/* Tally embed wrapper — holds the live form iframe */
.tally-slot {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-1);
}
.tally-slot iframe { width: 100%; border: 0; display: block; }
.cta__email { font-size: 14px; color: var(--fg-3); margin: 16px 0 0; }
.cta__email a { color: var(--accent); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate-blue); color: var(--off-white); padding: 64px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-on-dark); }
.footer__name { font-size: 20px; font-weight: 700; letter-spacing: -.01em; color: var(--off-white); margin: 0; }
.footer__role { font-size: 13px; color: var(--fg-on-dark-2); margin: 10px 0 0; max-width: 34ch; line-height: 1.6; }
.footer__h { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-green); margin: 0 0 16px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col span.li { font-size: 14.5px; color: var(--fg-on-dark-2); transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--off-white); }
.footer__base { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 18px; flex-wrap: wrap; }
.footer__phrase { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-on-dark-2); }
.footer__copy { font-size: 13px; color: var(--fg-on-dark-2); }
.endorse { display: flex; align-items: center; gap: 12px; }
.endorse__lbl { font-size: 11px; letter-spacing: .04em; color: var(--fg-on-dark-2); max-width: 12ch; line-height: 1.4; }
.endorse img { height: 30px; width: auto; opacity: .85; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero--c .frame { grid-template-columns: 1fr; }
  .hero--c .cell--main { border-right: none; }
  .hero--c .cell--meta { flex-direction: row; flex-wrap: wrap; }
  .metarow { flex: 1 1 30%; border-bottom: 1px solid var(--border); }
  .sprint { grid-template-columns: 1fr; }
  .sprint__id { border-right: none; border-bottom: 1px solid var(--border); }
  .sprint__body { grid-template-columns: 1fr; gap: 26px; }
  .retainer, .focusnext, .cta__inner { grid-template-columns: 1fr; gap: 28px; }
  .focusnext { border-left: none; padding-left: 0; }
}
@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .nav__links { display: none; }
  .problems { grid-template-columns: 1fr; }
  .problem + .problem { padding-left: 0; border-left: none; border-top: 1px solid var(--border); }
  .problem { padding: 28px 0; }
  .proofs { grid-template-columns: 1fr; }
  .ownsgrid { grid-template-columns: 1fr; }
  .hero--a__name, .hero--b__name { font-size: 50px; }
  .hero--c__name { font-size: 42px; }
  .section__title, .cta__title { font-size: 29px; }
  .why__quote { font-size: 23px; }
  .note { grid-template-columns: 1fr; gap: 8px; }
  .brand__role { display: none; }
}

/* ---------- phone polish (most traffic is mobile) ---------- */
@media (max-width: 560px) {
  .hero--a { padding: 56px 0 60px; }
  .hero--a__name { font-size: 40px; }
  .hero--a__pos { font-size: 18px; }
  .section, .section--tight { padding: 60px 0; }
  .section__head { margin-bottom: 32px; }
  /* full-width, thumb-friendly CTAs */
  .hero--a__cta, .hero--b__cta, .hero--c__cta { flex-direction: column; align-items: stretch; }
  .hero--a__cta .btn, .hero--b__cta .btn, .hero--c__cta .btn { justify-content: center; width: 100%; }
  .retainer { padding: 28px 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__base { gap: 14px; }
}
