/* =========================================================
   Closemint — styles.css
   Tokens follow closemint-design-system.md
   ========================================================= */

:root {
  --navy: #0B1F3A;
  --navy-2: #132C4F;
  --mint: #2ED8A3;
  --mint-hover: #27C293;
  --mint-ink: #0A7A59;
  --paper: #F5F8F7;
  --white: #FFFFFF;
  --slate: #51627A;
  --mist: #A9B8CC;
  --line: #DCE3E8;
  --line-dark: rgba(169, 184, 204, 0.18);
  --signal: #FFB547;
  --error: #C8412B;
  --error-text: #FF8A73;
  --tint: #EAF8F3;

  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(42px, 6vw, 72px);
  --fs-h1: clamp(34px, 4.4vw, 52px);
  --fs-h2: clamp(28px, 3.4vw, 40px);
  --fs-h3: clamp(22px, 2.2vw, 26px);
  --fs-h4: clamp(18px, 1.7vw, 20px);
  --fs-body-lg: clamp(18px, 1.6vw, 20px);
  --fs-body: clamp(16px, 1.4vw, 17px);
  --fs-small: 14px;
  --fs-metric: clamp(40px, 4.8vw, 56px);

  --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px;
  --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --container: 1200px;
  --gutter: 24px;
  --r-pill: 999px;
  --r-card: 10px;
  --r-image: 16px;
  --nav-h: 76px;

  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: inherit; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; border-radius: 4px; }
.section--navy :focus-visible, .nav :focus-visible { outline-color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--mint); color: var(--navy); padding: 8px 16px; border-radius: var(--r-pill);
}
.skip-link:focus { left: 16px; }

/* ---------- Type ---------- */
.display, .h1, .h2, .h3, .h4, .logo__word, .metric__num, .plan__price, .step__num {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.display { font-size: var(--fs-display); line-height: 1.02; font-weight: 700; }
.h1 { font-size: var(--fs-h1); line-height: 1.08; font-weight: 700; }
.h2 { font-size: var(--fs-h2); line-height: 1.12; font-weight: 700; }
.h3 { font-size: var(--fs-h3); line-height: 1.25; font-weight: 600; }
.h4 { font-size: var(--fs-h4); line-height: 1.3; font-weight: 600; }
.body-lg { font-size: var(--fs-body-lg); line-height: 1.55; }
.body { font-size: var(--fs-body); line-height: 1.6; }
.small { font-size: var(--fs-small); line-height: 1.5; }
.muted { color: var(--slate); }
.mist { color: var(--mist); }

.link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.link:hover { color: var(--mint-ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * 32px);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--s-10) 0; }
.section--tight-top { padding-top: 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

.section-head { max-width: 640px; margin-bottom: var(--s-8); }
.section-head .h2 { margin-bottom: var(--s-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--mint); color: var(--navy); }
.btn--primary:hover { background: var(--mint-hover); }
.btn--secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn--secondary:hover { background: rgba(255, 255, 255, 0.08); }
.btn--secondary-light { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary-light:hover { background: var(--paper); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.btn-row--center { justify-content: center; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.logo__mark { width: 30px; height: 30px; color: var(--white); }
.logo__word { font-size: 24px; font-weight: 700; line-height: 1; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .2s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 24px rgba(11, 31, 58, 0.18); }
.nav__inner { height: var(--nav-h); display: flex; align-items: center; gap: var(--s-6); }
.nav__links { display: flex; gap: var(--s-6); margin-left: auto; }
.nav__links a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--mint); }
.nav__links a[aria-current="page"] { color: var(--mint); }
.nav__cta { min-height: 44px; padding: 10px 22px; }
.nav__toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav__toggle span { display: block; height: 2px; background: var(--white); margin: 6px 0; transition: transform .2s ease; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 0 0 0;
  background: var(--navy);
  padding: var(--s-6) 20px calc(var(--s-6) + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--line-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--s-9));
  padding-bottom: var(--s-8);
}
.hero__ring {
  position: absolute; right: -14vw; top: 4%;
  width: 62vw; max-width: 900px; height: auto;
  color: var(--mint); opacity: 0.06; pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center;
  min-height: 520px;
}
.hero__sub { color: var(--mist); margin: var(--s-5) 0 var(--s-6); max-width: 34ch; }
.hero__note { color: var(--mist); margin-top: var(--s-4); }

/* ---------- Call log (signature) ---------- */
.calllog {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.35);
  padding: var(--s-5);
  font-variant-numeric: tabular-nums;
}
.calllog__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--s-4); border-bottom: 1px solid var(--line-dark); }
.live { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--mint); }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.calllog__row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: var(--s-4); align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line-dark);
  font-size: 15px;
}
.calllog__row .t { color: var(--mist); font-weight: 500; }
.calllog__row .co { color: var(--white); }
.calllog__foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); padding-top: var(--s-5); }
.calllog__foot .num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; color: var(--white); }
.calllog__foot .num--mint { color: var(--mint); }
.calllog__foot .lbl { font-size: 14px; color: var(--mist); }

/* Row reveal: JS adds .is-animating to the list, then .is-in to each row */
.calllog__rows.is-animating .calllog__row { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.calllog__rows.is-animating .calllog__row.is-in { opacity: 1; transform: none; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  border: 1.5px solid transparent;
}
.chip--booked { background: var(--mint); color: var(--navy); }
.chip--conn { border-color: var(--mint); color: var(--mint); }
.chip--ring { border-color: var(--signal); color: var(--signal); }
.chip--cb { border-color: var(--mist); color: var(--mist); }

/* ---------- Proof strip ---------- */
.proof { margin-top: var(--s-9); padding-top: var(--s-6); border-top: 1px solid var(--line-dark); }
.proof__label { color: var(--mist); margin-bottom: var(--s-5); }
.proof__logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-5); }
.logo-ph {
  height: 40px; display: grid; place-items: center;
  border: 1px dashed rgba(169, 184, 204, 0.4); border-radius: 6px;
  color: var(--mist); font-size: 12px; opacity: .7;
}

/* ---------- Problem ---------- */
.split { display: grid; grid-template-columns: 5fr 1fr 6fr; }
.split__left { grid-column: 1; }
.split--flip .split__left { grid-column: 3; }
.split--flip .pains { grid-column: 1; }
.split__left .h2 { margin-bottom: var(--s-5); }
.pains { grid-column: 3; border-top: 1px solid var(--line); }
.pains li { display: flex; flex-direction: column; gap: 4px; padding: var(--s-5) 0; border-bottom: 1px solid var(--line); }
.pains span { color: var(--slate); }

/* ---------- Cards / Services ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: var(--s-6); }
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }
.service { display: flex; flex-direction: column; gap: var(--s-4); }
.service .icon { width: 40px; height: 40px; }
.deliverables li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 15px; }
.service .link { margin-top: auto; align-self: flex-start; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: var(--gutter); position: relative; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.steps::before {
  content: ""; position: absolute; left: 22px; right: 0; top: 22px;
  height: 1px; background: var(--mist); opacity: .4;
}
.steps::after {
  content: ""; position: absolute; right: 0; top: 18px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--mint);
}
.step { position: relative; display: flex; flex-direction: column; gap: var(--s-3); padding-right: var(--s-4); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--mint); background: var(--navy);
  color: var(--white); font-size: 20px; font-weight: 700;
  margin-bottom: var(--s-3);
}
.how__img { margin: var(--s-8) auto 0; max-width: 800px; }

/* ---------- Image placeholders ---------- */
.img-ph {
  position: relative; width: 100%;
  border-radius: var(--r-image);
  background: repeating-linear-gradient(135deg, #E7ECEF 0 12px, #EEF2F4 12px 24px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--slate); font-size: 14px; font-weight: 500; text-align: center; padding: var(--s-4);
}
.img-ph--dark {
  background: repeating-linear-gradient(135deg, #132C4F 0 12px, #16325A 12px 24px);
  border-color: var(--line-dark); color: var(--mist);
}
.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-4-5 { aspect-ratio: 4 / 5; }

/* ---------- Results ---------- */
.results { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: start; }
.case { display: flex; flex-direction: column; gap: var(--s-4); }
.case__dl > div { padding: var(--s-3) 0; border-top: 1px solid var(--line); }
.case__dl dt { font-weight: 600; font-size: 14px; }
.case__dl dd { color: var(--slate); }
.metrics { display: flex; flex-direction: column; }
.metric { padding: var(--s-6) 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.metric:first-child { padding-top: 0; }
.metric__num { font-size: var(--fs-metric); font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }

.testimonial { margin-top: var(--s-8); max-width: 760px; }
.testimonial blockquote { margin-bottom: var(--s-5); }
.testimonial figcaption { display: flex; align-items: center; gap: var(--s-4); }
.avatar-ph {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: #E7ECEF; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 9px; color: var(--slate);
}

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: 5fr 1fr 6fr; align-items: center; }
.founder__img { grid-column: 1; max-width: 480px; }
.founder__copy { grid-column: 3; display: flex; flex-direction: column; gap: var(--s-5); max-width: 560px; }
.sign { font-family: var(--font-display); font-size: 24px; font-weight: 700; display: flex; flex-direction: column; }
.sign .small { font-family: var(--font-body); font-weight: 400; letter-spacing: 0; }
.founder__links { display: flex; gap: var(--s-5); }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); align-items: stretch; }
.plan { display: flex; flex-direction: column; gap: var(--s-3); position: relative; }
.plan .deliverables { margin: var(--s-4) 0 var(--s-6); }
.plan .btn { margin-top: auto; }
.plan__price { font-size: 36px; font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.plan__price .small { font-family: var(--font-body); font-weight: 400; letter-spacing: 0; }
.plan--featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.plan--featured .deliverables li { border-top-color: var(--line-dark); }
.plan__badge { position: absolute; top: var(--s-6); right: var(--s-6); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 4fr 8fr; gap: var(--gutter); }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: var(--s-5) 48px var(--s-5) 0; position: relative;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 16px; height: 16px; margin-top: -8px;
  background:
    linear-gradient(var(--navy), var(--navy)) center / 16px 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center / 2px 16px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: var(--s-5); max-width: 62ch; }

/* ---------- Final CTA + form ---------- */
.cta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-5); }
.cta__ring { width: 160px; height: 160px; margin-bottom: var(--s-3); }
.cta__inner > .body-lg { max-width: 560px; }

.form { width: 100%; max-width: 720px; margin-top: var(--s-6); text-align: left; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4) var(--gutter); margin-bottom: var(--s-6); }
.form__full { grid-column: 1 / -1; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; color: var(--mist); }
.form input, .form select, .form textarea {
  font: inherit; font-size: 16px; color: var(--navy);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  min-height: 52px; padding: 12px 14px;
}
.form textarea { resize: vertical; min-height: 96px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--mint); outline-offset: 0; }
.form [aria-invalid="true"] { border: 2px solid var(--error); }
.form__error { color: var(--error-text); margin-bottom: var(--s-4); text-align: center; }
.form__success { color: var(--mint); font-weight: 600; text-align: center; margin-top: var(--s-4); }

/* ---------- Footer ---------- */
.footer { padding: var(--s-9) 0 var(--s-6); border-top: 1px solid var(--line-dark); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--gutter); }
.footer__grid a:not(.logo) { display: block; color: var(--white); text-decoration: none; padding: 5px 0; font-size: 15px; }
.footer__grid a:not(.logo):hover { color: var(--mint); }
.footer__h { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--mist); margin-bottom: var(--s-3); }
.footer__desc { margin-top: var(--s-4); max-width: 28ch; }
.footer__email { display: block; margin-top: var(--s-4); color: var(--mist); text-decoration: none; font-size: 15px; }
.footer__email:hover { color: var(--mint); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--line-dark); }
.footer__bottom a { color: var(--mist); margin-left: var(--s-4); }

/* ---------- Card grid utility ---------- */
.cards { display: grid; gap: var(--gutter); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(2, 1fr); }
.card--on-navy { background: var(--navy-2); border-color: var(--line-dark); }
.card--filled { background: var(--navy); border-color: var(--navy); color: var(--white); }
.card--filled .muted { color: var(--mist); }
a.card { text-decoration: none; color: inherit; display: block; transition: border-color .15s ease; }
a.card:hover { border-color: var(--mint); }
a.card .link { margin-top: var(--s-3); display: inline-block; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; font-weight: 500; color: var(--mist); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--mist); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint); }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.trust-pill {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line-dark); color: var(--mist);
  font-size: 14px; font-weight: 500;
}
.section--white .trust-pill, .section--paper .trust-pill { border-color: var(--line); color: var(--slate); }

/* ---------- Fact / engagement box (hero side panel) ---------- */
.fact-box {
  background: var(--navy-2); border: 1px solid var(--line-dark); border-radius: var(--r-card);
  padding: var(--s-5);
}
.fact-box__head { margin-bottom: var(--s-4); }
.fact-box ul { display: flex; flex-direction: column; gap: 0; }
.fact-box li { display: flex; gap: 10px; font-size: 15px; color: var(--mist); padding: var(--s-3) 0; border-bottom: 1px solid var(--line-dark); }
.fact-box li:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-box li::before { content: "—"; color: var(--mint); flex-shrink: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-card); border: 1px solid var(--line); }
table.compare { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--white); }
table.compare th, table.compare td { text-align: left; padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare thead th { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); background: var(--paper); white-space: nowrap; }
table.compare th.is-featured, table.compare td.is-featured { background: var(--navy); color: var(--white); }
table.compare tbody th { font-weight: 600; color: var(--navy); background: var(--paper); white-space: nowrap; }
table.compare td.is-yes { color: var(--mint-ink); font-weight: 600; }
table.compare td.is-featured.is-yes { color: var(--mint); }

/* ---------- Funnel ---------- */
.funnel { display: flex; flex-direction: column; gap: var(--s-4); }
.funnel__row { display: grid; grid-template-columns: 100px 1fr 56px; align-items: center; gap: var(--s-4); }
.funnel__label { font-size: 14px; color: var(--mist); }
.funnel__bar { height: 14px; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--mint-hover), var(--mint)); }
.funnel__num { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; text-align: right; }

/* ---------- Script / call-excerpt panel ---------- */
.script-panel {
  background: var(--navy-2); border: 1px solid var(--line-dark); border-radius: var(--r-card);
  padding: var(--s-5); font-size: 14px; line-height: 1.8;
}
.script-panel p { color: var(--mist); margin-bottom: var(--s-3); }
.script-panel p:last-child { margin-bottom: 0; }
.script-panel .who { color: var(--mint); font-weight: 600; }

/* ---------- Prose (narrow long-form column) ---------- */
.prose { max-width: 640px; }
.prose h2 { margin-top: var(--s-8); margin-bottom: var(--s-4); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--s-4); color: var(--slate); }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Post list (blog index) ---------- */
.post-list { border-top: 1px solid var(--line); }
.post-row { display: grid; grid-template-columns: 140px 1fr; gap: var(--s-6); padding: var(--s-6) 0; border-bottom: 1px solid var(--line); align-items: baseline; text-decoration: none; color: inherit; }
.post-row__tag { font-size: 13px; font-weight: 600; color: var(--mint-ink); text-transform: uppercase; letter-spacing: .04em; }
.post-row__title { transition: color .15s ease; }
.post-row:hover .post-row__title { color: var(--mint-ink); }
.post-row__meta { color: var(--slate); margin-top: var(--s-2); }

/* ---------- Article ---------- */
.article-header { text-align: center; max-width: 720px; margin: 0 auto; }
.article-header__meta { color: var(--mist); margin-top: var(--s-4); }
.pull-quote { border-left: 3px solid var(--mint); background: var(--paper); padding: var(--s-5) var(--s-6); border-radius: 0 var(--r-card) var(--r-card) 0; margin: var(--s-6) 0; }
.pull-quote p { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.35; color: var(--navy); letter-spacing: -0.01em; }

/* ---------- Section tint (rhythm: white -> grey -> dark -> tint) ---------- */
.section--tint { background: var(--tint); }

/* ---------- Conversion band (repeated on every page) ---------- */
.convert-band {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: var(--s-6); display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-6); flex-wrap: wrap;
}
.convert-band__copy { max-width: 46ch; }
.convert-band .btn-row { flex-wrap: nowrap; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .nav__links { gap: var(--s-5); }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .calllog { max-width: 560px; }
  .split, .founder { grid-template-columns: 1fr; gap: var(--s-7); }
  .pains, .founder__copy, .founder__img, .split--flip .split__left { grid-column: 1; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-7); }
  .steps::before, .steps::after { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 520px; }
  .faq { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: var(--s-7); }
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .funnel__row { grid-template-columns: 84px 1fr 48px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section--tight-top { padding-top: 0; }
  .section-head { margin-bottom: var(--s-7); }
  .hero { padding-top: calc(var(--nav-h) + var(--s-7)); }
  .hero__ring { width: 120vw; right: -60vw; }
  .proof { margin-top: var(--s-8); }
  .proof__logos { grid-template-columns: repeat(3, 1fr); }
  .services, .results { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .cta__ring { width: 112px; height: 112px; }
  .btn-row .btn { flex: 1 1 100%; }
  .footer__bottom { flex-direction: column; gap: var(--s-3); }
  .footer__bottom a { margin: 0 var(--s-4) 0 0; }
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .post-row { grid-template-columns: 1fr; gap: var(--s-2); }
  .funnel__row { grid-template-columns: 72px 1fr 44px; gap: var(--s-3); }
  .convert-band { flex-direction: column; align-items: stretch; text-align: center; }
  .convert-band .btn-row { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .calllog__row { grid-template-columns: 48px 1fr; }
  .calllog__row .chip { grid-column: 2; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
