/* ------------------------------------------------------------------
   Portfolio - Free Clinic Workflow Check landing page (V2)
   Self-contained. Mirrors the tokens and shared primitives from
   styles/home.css (project convention: mirror, do not import).
   ------------------------------------------------------------------ */

:root {
  --paper: #f7f6f2;
  --paper-2: #efeee9;
  --surface: #ffffff;
  --ink: #111111;
  --ink-2: #363636;
  --muted: #656565;
  --rule: #d9d7d0;
  --rule-dark: #343434;
  --accent: #315d73;
  --accent-soft: #e7edf0;
  --serif: Charter, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Inter, Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  --gutter: clamp(20px, 5vw, 56px);
  --wrap: 1120px;
  --bar-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 4px; text-decoration-thickness: 1px; }
button, a { touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
[id] { scroll-margin-top: calc(var(--bar-h) + 18px); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: white;
  padding: 10px 16px; font-size: .85rem; z-index: 60;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }

/* ------------------------------------------------------------- type */

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
h3 { font-size: 1.28rem; line-height: 1.3; letter-spacing: -.012em; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow[data-n]::before {
  content: attr(data-n);
  margin-right: 14px;
  color: var(--muted);
}
.eyebrow--light { color: #9db8c6; }
.eyebrow--light[data-n]::before { color: #7d7d78; }

.section-intro { max-width: 720px; margin-bottom: clamp(36px, 5.4vw, 64px); }
.section-intro > p { color: var(--ink-2); max-width: 46ch; font-size: 1.06rem; }
.section-intro__big {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--ink) !important;
  line-height: 1.4;
}

.note { margin-top: 26px; color: var(--muted); font-size: .86rem; max-width: 62ch; }

.pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--warn { border-color: #cbb98a; background: #faf5e6; color: #6d5a24; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary,
.btn--primary:visited { background: var(--ink); color: white; }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: white; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--paper-2); }
.btn--light { border-color: white; background: white; color: var(--ink); }
.btn--light:hover { border-color: #c7d6dc; background: #c7d6dc; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.text-link:hover { border-bottom-color: var(--accent); color: var(--accent); }
.text-link span[aria-hidden] { transition: transform 180ms var(--ease); }
.text-link:hover span[aria-hidden] { transform: translateY(2px); }

/* --------------------------------------------------------- site bar */

.site-bar {
  position: sticky; top: 0; z-index: 40;
  min-height: var(--bar-h);
  display: flex; align-items: center;
  background: rgba(247, 246, 242, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.site-bar__inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-bar__back {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-size: .84rem; font-weight: 600; text-decoration: none;
}
.site-bar__back:hover { color: var(--accent); }
.site-bar__links { display: flex; align-items: center; gap: 20px; }
.site-bar__how {
  min-height: 44px; display: inline-flex; align-items: center;
  font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--ink-2);
}
.site-bar__how:hover { color: var(--ink); }
.site-bar__cta {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: .76rem; font-weight: 700; letter-spacing: .02em;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.site-bar__cta:hover { background: var(--accent); border-color: var(--accent); color: white; }

/* ------------------------------------------------------------- hero */

.hero { padding-block: clamp(44px, 6vw, 78px) clamp(56px, 8vw, 104px); }
.hero__grid {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero__copy { max-width: 640px; animation: enter 460ms var(--ease) both; }
.hero__kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__tagalog {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
}
.hero__lede { max-width: 44ch; margin-bottom: 12px; color: var(--ink-2); font-size: 1.06rem; }
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
}
.check-row {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 8px 26px;
  margin: 22px 0 0; padding: 14px 0 0;
  border-top: 1px solid var(--rule);
}
.check-row li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: .88rem;
}
.check-row li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero__card { animation: enter 460ms 70ms var(--ease) both; }
.mini-report {
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: 0 1px 2px rgba(17, 17, 17, .04), 0 28px 60px -42px rgba(17, 17, 17, .35);
}
.mini-report__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px 0;
}
.mini-report__brand {
  margin: 0;
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
}
.mini-report__subject {
  margin: 8px 0 0; padding: 0 22px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted); font-size: .82rem;
}
.mini-report__rows { list-style: none; margin: 0; padding: 6px 22px; }
.mini-report__rows li {
  display: flex; gap: 14px;
  padding: 13px 0;
}
.mini-report__rows li + li { border-top: 1px solid var(--paper-2); }
.mini-report__rows span {
  flex: none;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .72rem; font-weight: 700;
  padding-top: 3px;
}
.mini-report__rows b { display: block; font-size: .92rem; letter-spacing: -.01em; }
.mini-report__rows p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.mini-report__foot {
  margin: 0; padding: 13px 22px;
  background: var(--accent-soft);
  border-top: 1px solid var(--rule);
  color: var(--accent);
  font-size: .84rem; font-weight: 600;
}

/* --------------------------------------------------------- sections */

.section { padding-block: clamp(60px, 8.4vw, 112px); }
.section--tint { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #e6e5df; }
.section--ink h2 { color: white; }
.section--ink .section-intro > p { color: #c9c8c1; }

/* ------------------------------------------------------ chains (flows) */

.chain {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 10px;
  margin: 0;
}
.chain span {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 6px 11px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-2);
  white-space: nowrap;
}
.chain i { font-style: normal; color: var(--accent); font-size: .82rem; }
.chain--accent span { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }
.chain--stack span { white-space: normal; }

/* --------------------------------------------- 2 problem recognition */

.problems {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.problems li {
  display: grid;
  gap: 12px 40px;
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.problems__statement {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 18ch;
  text-wrap: balance;
}
.problems__quiet { margin: 0; color: var(--muted); font-size: .95rem; }
@media (min-width: 760px) {
  .problems li { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .problems__statement { grid-column: 1; grid-row: 1; }
  .problems__quiet { grid-column: 1; grid-row: 2; margin-top: -6px; }
  .problems .chain { grid-column: 2; grid-row: 1 / span 2; justify-self: end; justify-content: flex-end; }
  .problems li:last-child .problems__quiet { grid-column: 1; grid-row: 2; }
}

.bridge {
  margin-top: clamp(44px, 6vw, 68px);
  text-align: center;
}
.bridge__line { margin: 0 0 10px; color: var(--muted); font-size: .92rem; }
.bridge__big {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.bridge__arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 1.3rem;
}

/* ------------------------------------------------------- 3 fit grid */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 14px;
}
.fit-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 28px;
}
.fit-card--mine { border-color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); }
.fit-card__label {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.fit-card--mine .fit-card__label { color: var(--accent); }
.fit-card__lead { font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.fit-card ul { list-style: none; margin: 0; padding: 0; }
.fit-card li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-top: 1px solid var(--paper-2);
  color: var(--ink-2);
  font-size: .92rem;
}
.fit-card li::before {
  content: "";
  position: absolute; left: 4px; top: 19px;
  width: 7px; height: 7px;
  background: var(--rule);
}
.fit-card--mine li::before { background: var(--accent); }

.outcomes { margin-top: clamp(28px, 4vw, 40px); }
.outcomes__label { margin: 0 0 14px; font-weight: 600; font-size: .95rem; }
.outcomes__chips {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin: 0; padding: 0;
}
.outcomes__chips li {
  padding: 9px 15px;
  background: var(--surface);
  border: 1px solid var(--rule);
  font-size: .84rem;
  color: var(--ink-2);
}
.outcomes__custom { border-color: var(--accent) !important; color: var(--ink) !important; }

.trust-line {
  margin: clamp(40px, 6vw, 60px) 0 0;
  padding: 0;
  max-width: 640px;
}
.trust-line p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.42;
  color: var(--ink);
}
.trust-line footer {
  margin-top: 14px;
  color: var(--muted);
  font-size: .88rem;
}

/* --------------------------------------------------------- CTA bands */

.cta-band {
  padding-block: clamp(44px, 6vw, 72px);
  border-block: 1px solid var(--rule);
  background: var(--surface);
}
.cta-band__inner { text-align: center; }
.cta-band__inner--flush {
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.cta-band__line {
  margin: 0 auto 20px;
  max-width: 34ch;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  text-wrap: balance;
}
.cta-band__sub { margin: 14px 0 0; color: var(--muted); font-size: .84rem; }

/* ----------------------------------- 4 how it works + what you get */

.stepline {
  list-style: none;
  margin: 0 0 clamp(36px, 5vw, 52px); padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}
.stepline li {
  display: flex; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 18px;
}
.stepline span {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.stepline b { display: block; font-size: .92rem; margin-bottom: 3px; }
.stepline p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

.deliver { max-width: 760px; }
h3.deliver__label {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -.022em;
}
.deliver__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.deliver__list li {
  display: flex; gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.deliver__list span {
  flex: none;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .78rem; font-weight: 700;
  padding-top: 4px;
}
.deliver__list b {
  display: block;
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: -.014em;
  margin-bottom: 3px;
}
.deliver__list p { margin: 0; color: var(--muted); font-size: .95rem; }

.free-banner {
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 760px;
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 20px 26px;
}
.free-banner p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  color: var(--ink);
}
.free-banner b { color: var(--accent); }

/* -------------------------------------------------- 5 sample report */

.report {
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: 0 1px 2px rgba(17, 17, 17, .04), 0 32px 70px -48px rgba(17, 17, 17, .4);
}
.report__head {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 14px;
  padding: clamp(22px, 3.4vw, 32px);
  border-bottom: 1px solid var(--rule);
}
.report__brand {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.report__subject { margin: 0; color: var(--muted); font-size: .92rem; }
.report__n {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.report__flow { padding: clamp(20px, 3vw, 28px) clamp(22px, 3.4vw, 32px); }
.report__flow--after { border-top: 1px solid var(--paper-2); }
.report__findings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  border-block: 1px solid var(--paper-2);
}
.report__findings article { padding: clamp(20px, 3vw, 28px) clamp(22px, 3.4vw, 32px); }
.report__findings article + article { border-left: 1px solid var(--paper-2); }
.report__findings h3 { margin: 0 0 8px; font-size: 1.14rem; }
.report__findings p:last-child { color: var(--ink-2); font-size: .9rem; }
.report__reco {
  padding: clamp(20px, 3vw, 26px) clamp(22px, 3.4vw, 32px);
  background: var(--accent-soft);
  border-top: 1px solid var(--rule);
}
.report__reco p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------------------------------------------------------- 6 proof */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 18px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 26px;
  display: flex; flex-direction: column;
}
.proof-card__tag {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.proof-card__shot {
  display: block;
  height: 340px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}
.proof-card__shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 340ms var(--ease);
}
.proof-card__shot--phone img {
  width: min(62%, 250px);
  margin-inline: auto;
}
.proof-card__shot:hover img { transform: translateY(-6px); }
.proof-card h3 { margin: 20px 0 14px; font-size: 1.3rem; }
.proof-card .chain { margin-bottom: 20px; }
.proof-card__actions {
  margin-top: auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 20px;
}

/* -------------------------------------------------------- 7 privacy */

.no-strip {
  list-style: none;
  margin: 0 0 clamp(28px, 4vw, 40px); padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}
.no-strip li {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 26px 26px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -.018em;
}
.privacy-lines { max-width: 720px; }
.privacy-lines p { color: var(--ink-2); font-size: 1.06rem; margin-bottom: 10px; }
.privacy-lines b { color: var(--ink); }

/* ---------------------------------------------------- 8 free vs paid */

.split-offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 14px;
}
.offer { border: 1px solid var(--rule); background: var(--surface); padding: 28px; }
.offer--free { border-color: var(--accent); box-shadow: inset 0 3px 0 var(--accent); }
.offer__tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.offer--free .offer__tag { background: var(--accent); color: white; }
.offer--paid .offer__tag { background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--rule); }
.offer h3 { margin: 0 0 6px; }
.offer__cond { margin: 0 0 10px; color: var(--muted); font-size: .88rem; }
.offer ul { list-style: none; margin: 8px 0 0; padding: 0; }
.offer li {
  padding: 10px 0;
  border-top: 1px solid var(--paper-2);
  color: var(--ink-2);
  font-size: .93rem;
}

.decide {
  margin-top: clamp(28px, 4vw, 44px);
  max-width: 720px;
}
.decide p { color: var(--ink-2); }
.decide__key {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink) !important;
}
.decide__sub { margin-top: 14px; color: var(--muted) !important; font-size: .92rem; }

/* ---------------------------------------------------- 9 trial (ink) */

.trial-clarify { font-size: 1.02rem; color: #c9c8c1 !important; }
.trial-clarify b { color: white; }

.trial-ba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 900px;
}
.trial-ba__col {
  border: 1px solid var(--rule-dark);
  background: #1a1a19;
  padding: 26px;
}
.trial-ba__col--after { border-color: #47677a; }
.trial-ba__label {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #9db8c6;
}
.trial-ba__q {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: #e6e5df;
}
.trial-ba__big {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  color: white;
}
.trial-ba__cap { margin: 14px 0 0; color: #8f8f89; font-size: .86rem; }

.trial-facts {
  list-style: none;
  margin: 0 0 30px; padding: 0;
  max-width: 720px;
}
.trial-facts li {
  padding: 13px 0 13px 30px;
  position: relative;
  border-top: 1px solid var(--rule-dark);
  color: #c9c8c1;
  font-size: .95rem;
}
.trial-facts li:last-child { border-bottom: 1px solid var(--rule-dark); }
.trial-facts li::before {
  content: "\2713";
  position: absolute; left: 2px;
  color: #9db8c6;
  font-weight: 700;
}

/* ---------------------------------------------------------- 10 about */

.about {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about__portrait { margin: 0; max-width: 300px; }
.about__portrait picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about__copy { max-width: 560px; }
.about__copy > p:not(.eyebrow) { color: var(--ink-2); }
.about__line { max-width: 42ch; font-size: 1.06rem; }
.about__copy .text-link { margin-top: 8px; }

/* ------------------------------------------------------------ 11 faq */

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.13rem;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 1.05rem;
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details > p {
  margin: 0;
  padding: 0 2px 22px;
  max-width: 62ch;
  color: var(--ink-2);
  font-size: .95rem;
}

/* --------------------------------------------------- 12 start + form */

.start-grid {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.start-lead h2 { max-width: 18ch; }
.start-lead__big {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  line-height: 1.35;
  color: #e6e5df !important;
  max-width: 34ch;
}
.start-lead > p { color: #c9c8c1; max-width: 46ch; }
.start-lead__alt a { color: white; }
.start-lead__alt a:hover { color: #9db8c6; }
.start-lead__cap { font-size: .84rem; color: #8f8f89 !important; }

.wc-form {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: clamp(24px, 3.6vw, 38px);
  color: var(--ink);
  box-shadow: 0 40px 90px -60px rgba(0, 0, 0, .8);
}
.wc-form__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -.015em;
}
.wc-form__row--pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 0 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.field .opt {
  font-weight: 500;
  color: var(--muted);
  font-size: .76rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23363636' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field select:invalid { color: var(--muted); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 72px; }
.field input::placeholder,
.field textarea::placeholder { color: #9a9a94; }

.wc-form__notice {
  margin: 6px 0 18px;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: .82rem;
  line-height: 1.55;
}
.wc-form__submit { width: 100%; }
.wc-form__free {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.wc-fallback {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.wc-fallback__label { font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.wc-fallback > p { color: var(--ink-2); font-size: .86rem; }
.wc-fallback__text {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--ink);
  resize: vertical;
}
.wc-fallback__actions {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 16px;
}
.wc-fallback__status { font-size: .84rem; color: var(--accent); font-weight: 600; }

/* --------------------------------------------------- video (future) */
/* Ready for the hero explainer video. Nothing renders until the real
   file exists; the section markup lives in an HTML comment under the hero. */

.video-strip .section-intro { margin-bottom: clamp(24px, 3.6vw, 40px); }
.video-shell {
  position: relative;
  overflow: hidden;
  background: #0e1113;
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  max-width: 860px;
}
.video-shell video { width: 100%; height: 100%; object-fit: contain; background: #0e1113; }

/* Second instance of the explainer, inside the dark #start section. The light
   rule colour would glow against the ink background, so it borrows the dark one. */
.section--ink .video-shell { border-color: var(--rule-dark); }
.video-shell--start { margin: 22px 0 24px; max-width: 100%; }

/* ------------------------------------------------------------- foot */

.foot {
  padding-block: 34px 46px;
  border-top: 1px solid var(--rule-dark);
  background: var(--ink);
  color: #a9a9a5;
  font-size: .8rem;
}
.foot p { max-width: 76ch; }
.foot strong { color: #e6e5df; }
.foot a { color: white; }

/* ------------------------------------------- optional form fields */

.more-fields { margin-bottom: 16px; border-top: 1px solid var(--rule); }
.more-fields summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 2px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.more-fields summary::-webkit-details-marker { display: none; }
.more-fields summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1rem;
  transition: transform 200ms var(--ease);
}
.more-fields[open] summary::after { transform: rotate(45deg); }
.more-fields[open] summary { margin-bottom: 6px; }
.more-fields:not([open]) > .field { display: none; }

/* ---------------------------------------------------- yellow marker */

.mark {
  color: var(--ink);
  background: linear-gradient(100deg,
    rgba(246, 224, 122, 0) 0.6%,
    rgba(246, 224, 122, .95) 3%,
    rgba(246, 224, 122, .8) 50%,
    rgba(246, 224, 122, .95) 97%,
    rgba(246, 224, 122, 0) 99.4%);
  /* The serif's content box is taller than the tight heading line-height, so a
     full-height background lands on the line above. Painting a band instead
     keeps the marker stroke look and clears the neighbouring line. */
  background-repeat: no-repeat;
  background-size: 100% .92em;
  background-position: 0 .2em;
  border-radius: .38em .24em .42em .19em;
  padding: 0 .16em;
  margin-inline: -.02em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mark--strong { font-weight: 700; }

/* ------------------------------------------- form submission states */

.wc-form__submit[aria-busy="true"] { opacity: .72; cursor: progress; }
.wc-form__submit:disabled { cursor: not-allowed; }

.wc-status {
  margin: 14px 0 0;
  font-size: .92rem;
  line-height: 1.55;
}
.wc-status:empty { margin: 0; }
.wc-status--error { color: #b9563f; }
.wc-status--working { color: rgba(255, 255, 255, .74); }

.wc-done {
  margin-top: 8px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 2px;
  background: rgba(255, 255, 255, .06);
}
.wc-done__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  color: white;
}
.wc-done p { margin: 0 0 8px; color: rgba(255, 255, 255, .82); font-size: .95rem; }
.wc-done p:last-child { margin-bottom: 0; }
.wc-done__ref {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .55);
}

/* ------------------------------------------------- identity / trust */

.about__copy p.about__id {
  margin: -8px 0 18px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--accent);
}
.about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 28px;
  margin-top: 8px;
}
.start-lead__altnote { display: block; margin-top: 4px; font-size: .8rem; color: #8f8f89; }
.start-lead__altnote a { color: #c9c8c1; }

/* ------------------------------------ mobile horizontal swipe strips */

/* Pager under each swipeable strip: cue + dots + "n / total".
   A 5-card strip is ~3 screen-widths of swiping; without a position readout
   the visitor cannot tell how many cards remain. Hidden on desktop, where
   these are ordinary grids. */
.strip-nav { display: none; }
@keyframes nudgeX { 50% { transform: translateX(5px); } }

@media (max-width: 759px) {
  .strip-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 0;
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .strip-nav[hidden] { display: none; }

  .strip-nav__cue { flex: none; transition: opacity 260ms var(--ease); }
  .strip-nav__cue::after {
    content: " \2192";
    display: inline-block;
    animation: nudgeX 1.8s var(--ease) infinite;
  }
  /* once they have swiped, the instruction stops shouting */
  .strip-nav.is-moved .strip-nav__cue { opacity: 0; }

  .strip-nav__dots { flex: 1 1 auto; display: flex; align-items: center; gap: 6px; }
  .strip-nav__dots i {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rule);
    transition: background-color 220ms var(--ease), transform 220ms var(--ease);
  }
  .strip-nav__dots i.is-on { background: var(--accent); transform: scale(1.45); }
  .strip-nav__num { flex: none; color: var(--ink-2); }
}

@media (max-width: 759px) {
  .problems,
  .deliver__list,
  .proof-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: calc(-1 * var(--gutter));
    padding: 2px var(--gutter) 18px;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    border-top: 0;
    scrollbar-width: none;
    padding-bottom: 10px;
  }
  .problems::-webkit-scrollbar,
  .deliver__list::-webkit-scrollbar,
  .proof-grid::-webkit-scrollbar { display: none; }

  .problems li,
  .deliver__list li {
    display: block;
    flex: 0 0 84%;
    scroll-snap-align: start;
    border: 1px solid var(--rule);
    background: var(--surface);
    padding: 20px;
  }

  .problems__statement { max-width: none; margin-bottom: 6px; }
  .problems__quiet { margin-bottom: 16px; }
  .problems .chain { margin-top: 0; }

  .deliver__list span { display: block; padding: 0 0 8px; }

  .proof-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}

/* ------------------------------------------------- sticky mobile CTA */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(17, 17, 17, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--rule-dark);
  animation: ctaUp 240ms var(--ease);
}
.sticky-cta[hidden] { display: none; }
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid white;
  background: white;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}
.sticky-cta__btn:hover,
.sticky-cta__btn:active { background: #c7d6dc; border-color: #c7d6dc; }
@keyframes ctaUp { from { transform: translateY(100%); } to { transform: none; } }
@media (min-width: 760px) { .sticky-cta { display: none !important; } }

/* ----------------------------------------------------------- motion */

@keyframes enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* gentle stagger for list-like reveals */
.js-reveal .problems .reveal:nth-child(2),
.js-reveal .fit-grid .reveal:nth-child(2),
.js-reveal .trial-ba .reveal:nth-child(2) { transition-delay: 90ms; }
.js-reveal .problems .reveal:nth-child(3) { transition-delay: 150ms; }
.js-reveal .problems .reveal:nth-child(4) { transition-delay: 210ms; }
.js-reveal .problems .reveal:nth-child(5) { transition-delay: 270ms; }

/* ------------------------------------------------------- responsive */

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr); }
  .hero__card { justify-self: end; }
  .about { grid-template-columns: 300px minmax(0, 1fr); }
  .start-grid { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); }
}

@media (max-width: 639px) {
  body { font-size: 16px; }
  :root { --bar-h: 58px; }
  .section { padding-block: clamp(40px, 9vw, 58px); }
  .section-intro { margin-bottom: 24px; }
  .section-intro > p { font-size: 1.02rem; margin-bottom: 12px; }
  h2 { margin-bottom: 16px; }
  .eyebrow { margin-bottom: 18px; }
  .hero__lede { font-size: 1.02rem; }
  .site-bar__how { display: none; }
  .site-bar__cta { padding: 0 11px; font-size: .7rem; }
  .hero__actions .btn { width: 100%; }
  .wc-form__submit { width: 100%; }
  .cta-band__inner .btn, .cta-band__inner--flush .btn { width: 100%; }
  .proof-card__shot { height: 300px; }
  .report__findings article + article {
    border-left: 0;
    border-top: 1px solid var(--paper-2);
  }
}

@media (max-width: 389px) {
  .site-bar__back { font-size: .78rem; }
  .hero__tagalog { font-size: 1.14rem; }
  .btn { padding-inline: 16px; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  html.js-reveal .reveal { opacity: 1; transform: none; }
}
