/* ============================================================
   Frontier Content Studio — canonical site stylesheet
   Palette, type, and spacing per website-workbook.md §2.
   Serif = meaning (headlines, proof, pull quotes)
   Sans  = evidence (body, nav, buttons, labels, metrics)
   ============================================================ */

:root {
  --font-display: "Iowan Old Style", "Source Serif 4", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --forest: #0F1A16;
  --forest-2: #18261F;
  --forest-muted: #39433D;
  --sandstone: #B4593A;
  --terracotta: #C46A44;
  --sage: #85927D;
  --sand: #D9C4A8;
  --sand-2: #E8DCCB;
  --ivory: #F4EFE6;
  --paper: #FBF8F1;
  --wgray: #8B8F8A;

  --border-light: #E3DCCC;
  --border-dark: rgba(244, 239, 230, 0.14);
  --text-on-dark: rgba(244, 239, 230, 0.94);
  --muted-on-dark: rgba(244, 239, 230, 0.64);

  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px;
  --section-pad: clamp(80px, 8.5vw, 118px);
  --container: 1140px;
  --measure: 66ch;

  --radius-btn: 5px; --radius-card: 14px; --radius-panel: 18px;
  --shadow: 0 2px 8px rgba(15, 26, 22, 0.06), 0 16px 40px rgba(15, 26, 22, 0.08);
  --shadow-dark: 0 8px 20px rgba(0, 0, 0, 0.35), 0 24px 60px rgba(0, 0, 0, 0.3);

  --glow-dark:
    radial-gradient(900px 480px at 78% 8%, rgba(133, 146, 125, 0.14), transparent 65%),
    radial-gradient(700px 400px at 12% 95%, rgba(180, 89, 58, 0.10), transparent 60%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sandstone); text-decoration: none; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--terracotta); color: var(--forest); padding: 12px 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); line-height: 0.99; letter-spacing: -0.022em; }
h1 em, .accent-italic { font-style: italic; color: var(--terracotta); }
h2 { font-size: clamp(2.125rem, 4vw, 3.25rem); line-height: 1.08; margin-bottom: 18px; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 500; line-height: 1.16; letter-spacing: -0.01em; margin-bottom: 8px; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sandstone); margin-bottom: 20px;
}
.dark .eyebrow { color: var(--terracotta); }
.lead, .section-lead { font-size: clamp(1.19rem, 1.6vw, 1.375rem); color: var(--forest-muted); line-height: 1.5; }
p, li { text-wrap: pretty; }
.dark .lead, .dark .section-lead { color: var(--muted-on-dark); }

.section-head { text-align: center; margin-bottom: var(--space-7); }
.section-head .section-lead { max-width: 640px; margin: 0 auto; }
.section-head.left { text-align: left; }
.section-head.left .section-lead { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 26px; border-radius: var(--radius-btn); cursor: pointer;
  border: 0; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn .ne { font-size: 14px; transition: transform 0.18s ease; }
.btn:hover .ne { transform: translate(2px, -2px); }
.btn-lg { padding: 18px 30px; }
.btn-primary { background: var(--forest); color: var(--ivory); }
.btn-primary:hover { background: var(--forest-2); }
.btn-primary-dark { background: var(--sandstone); color: var(--ivory); }
.btn-primary-dark:hover { background: var(--terracotta); }
.btn-nav-cta { background: var(--terracotta); color: var(--forest); padding: 13px 20px; }
.btn-nav-cta:hover { background: #cf7850; }
.btn-secondary { border: 1.5px solid var(--forest); color: var(--forest); background: transparent; }
.btn-secondary:hover { background: var(--forest); color: var(--ivory); }
.btn-secondary-dark { border: 1.5px solid rgba(244, 239, 230, 0.35); color: var(--text-on-dark); background: transparent; }
.btn-secondary-dark:hover { border-color: rgba(244, 239, 230, 0.6); background: rgba(244, 239, 230, 0.05); }
.cta-note { font-size: 14px; color: var(--wgray); margin-top: 16px; }
.cta-note .fact { white-space: nowrap; }
.dark .cta-note { color: var(--muted-on-dark); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: transparent; transition: background 0.25s ease, box-shadow 0.25s ease; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav .container { max-width: 1320px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo svg { width: 32px; height: 32px; flex: none; }
.nav-logo .wm { font-family: var(--font-display); font-size: 25px; letter-spacing: -0.01em; color: var(--text-on-dark); }
.nav-logo .dot { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
  color: var(--muted-on-dark); font-weight: 500; font-size: 15px;
  padding-bottom: 5px; border-bottom: 2px solid transparent; transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--text-on-dark); border-bottom-color: var(--terracotta); }
.nav.scrolled:not(.on-light) { background: rgba(15, 26, 22, 0.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border-dark); }
.nav.on-light { background: rgba(244, 239, 230, 0.97); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border-light); }
.nav.on-light .nav-logo .wm { color: var(--forest); }
.nav.on-light .nav-links a:not(.btn) { color: var(--forest-muted); }
.nav.on-light .nav-links a:not(.btn):hover { color: var(--forest); border-bottom-color: var(--terracotta); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-on-dark); margin: 5px 0; border-radius: 2px; }
.nav.on-light .nav-toggle span { background: var(--forest); }

/* ---------- Surfaces ----------
   Any dark-background surface must also set a light text colour. Nested dark
   panels (.time-band, .cta-band, .guarantee) sit inside light sections, so they
   inherit dark body text unless they opt out here — the failure mode is silent
   and invisible: near-black text on near-black background. */
.dark, .time-band, .cta-band { background: var(--forest); color: var(--text-on-dark); }
.dark h1, .dark h2, .dark h3,
.time-band h1, .time-band h2, .time-band h3,
.cta-band h1, .cta-band h2, .cta-band h3 { color: var(--text-on-dark); }
.time-band .cta-note, .cta-band .cta-note { color: var(--muted-on-dark); }
.section { padding: var(--section-pad) 0; }
.section.cream { background: var(--ivory); }
.section.paper { background: var(--paper); }
.section.sand { background: var(--sand-2); }
.section.dark { background: var(--glow-dark), var(--forest); }

/* ---------- Hero ---------- */
.hero { margin-top: -78px; padding: 148px 0 76px; background: var(--glow-dark), var(--forest); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 3.6vw, 3.55rem); line-height: 1.07; margin-bottom: 30px; }
.hero .lead { margin-bottom: 20px; max-width: 560px; }
.hero .time-note { font-size: 15px; color: var(--terracotta); font-weight: 600; margin-bottom: 34px; letter-spacing: 0.01em; }
.hero-cta { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.hero .eyebrow { color: var(--muted-on-dark); }
.hero .lead { margin-bottom: 40px; }
.hero-link { font-size: 14px; font-weight: 600; color: var(--muted-on-dark); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(244, 239, 230, 0.3); transition: color 0.18s ease; }
.hero-link:hover { color: var(--text-on-dark); }

/* Hero proof cluster: profile card + live inbound artifact */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: flex-end; width: 100%; max-width: 880px; margin: 0 0 0 auto; }
.hero .container { max-width: 1320px; }
.hv-grid { position: relative; display: grid; grid-template-columns: 38% 1fr; gap: 40px; width: 100%; align-items: start; }
.hv-left { grid-row: 1 / span 2; }
.hv-left { display: flex; flex-direction: column; gap: 16px; }
.iv-card { background: rgba(244, 239, 230, 0.05); border: 1px solid var(--border-dark); border-radius: var(--radius-card); padding: 11px 11px 9px; }
.iv-label { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted-on-dark); margin-bottom: 8px; }
.iv-cam { width: 14px; height: 9px; background: var(--terracotta); border-radius: 2px; position: relative; }
.iv-cam::after { content: ""; position: absolute; right: -4px; top: 1.5px; border-left: 4px solid var(--terracotta); border-top: 3px solid transparent; border-bottom: 3px solid transparent; }
.iv-card img { display: block; width: 100%; border-radius: 9px; }
.iv-chrome { display: flex; justify-content: center; gap: 9px; padding: 9px 0 2px; }
.iv-chrome span { width: 20px; height: 20px; border-radius: 50%; background: rgba(244, 239, 230, 0.14); }
.iv-chrome span.end { background: var(--sandstone); }
.li-card { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-dark); padding: 14px 16px 12px; }
.li-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #24292E; padding-bottom: 9px; border-bottom: 1px solid #EDEDEA; margin-bottom: 11px; }
.li-badge { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 4px; background: #0A66C2; color: #fff; font-size: 12px; font-weight: 700; }
.li-author { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; }
.li-author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.li-who { font-size: 13px; line-height: 1.3; color: #24292E; }
.li-who strong { font-weight: 600; }
.li-1st { color: #8A8F94; font-size: 12px; }
.li-role { display: block; font-size: 11.5px; color: #8A8F94; margin-top: 1px; }
.li-text { font-size: 13px; line-height: 1.45; color: #33383D; margin-bottom: 10px; }
.li-more { color: #8A8F94; }
.li-eng { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #6B7075; padding-top: 9px; border-top: 1px solid #EDEDEA; }
.li-reacts { display: inline-flex; }
.li-reacts i { width: 15px; height: 15px; border-radius: 50%; border: 2px solid #fff; margin-left: -4px; }
.li-reacts i:first-child { margin-left: 0; }
.li-reacts .r1 { background: #378FE9; }
.li-reacts .r2 { background: #5F9B41; }
.li-reacts .r3 { background: #DF704D; }
.li-eng-r { margin-left: auto; }
.hv-connector { position: absolute; left: calc(38% + 2px); top: 42%; transform: translateY(-50%); }
.proof-panel { width: 100%; background: var(--ivory); border-radius: var(--radius-panel); box-shadow: var(--shadow-dark); padding: 20px 18px 12px; }
.pp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; padding: 0 4px; }
.pp-num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--terracotta); }
.pp-title { line-height: 1.3; }
.pp-title strong { display: block; font-size: 16.5px; font-weight: 600; color: #1E2A25; }
.pp-title span { display: block; font-size: 13.5px; color: #6B6F6C; margin-top: 2px; }
.pp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pp-list li { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 10px; padding: 9px 12px; }
.pp-list li:nth-child(3) { opacity: 0.85; }
.pp-list li:nth-child(4) { opacity: 0.7; }
.pp-list li:nth-child(5) { opacity: 0.55; }
.pp-list img { width: 34px; height: 34px; border-radius: 50%; flex: none; }
.ppl-txt { flex: 1; min-width: 0; line-height: 1.3; }
.ppl-txt strong { display: block; font-size: 12.5px; font-weight: 600; color: #24292E; }
.ppl-txt { line-height: 1.25; }
.ppl-txt span { display: block; font-size: 10.5px; color: #6B7075; }
.pill { flex: none; font-size: 9.5px; font-weight: 600; color: #55605B; border: 1px solid #D8D6CE; border-radius: 99px; padding: 3px 8px; white-space: nowrap; }
.pill.on { color: var(--sandstone); border-color: var(--sandstone); }
.ppl-right { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.ppl-date { font-size: 10px; color: #9A9E99; }
.metrics-row { grid-column: 2; display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 8px; padding: 0 6px; }
.mr-item { font-size: 14px; color: var(--muted-on-dark); white-space: nowrap; }
.mr-item b { font-family: var(--font-display); font-weight: 400; font-size: 26px; color: var(--terracotta); margin-right: 6px; }
.metrics-row i { width: 1px; height: 26px; background: rgba(244, 239, 230, 0.15); }
.dash-shot { display: block; width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow); background: #fff; }
.profile-card { width: 100%; max-width: 430px; background: #fff; border-radius: var(--radius-panel); overflow: hidden; box-shadow: var(--shadow-dark); }
.pc-banner { display: flex; flex-direction: column; gap: 5px; padding: 28px 30px 46px; background: radial-gradient(380px 200px at 82% 0%, rgba(196, 106, 68, 0.22), transparent 70%), var(--forest); }
.pc-banner-brand { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 239, 230, 0.7); }
.pc-banner-title { font-family: var(--font-display); font-size: 25px; color: var(--ivory); letter-spacing: -0.01em; }
.pc-banner-sub { font-size: 11.5px; color: rgba(244, 239, 230, 0.5); letter-spacing: 0.03em; }
.pc-body { padding: 0 30px 28px; background: #fff; }
.pc-avatar { width: 86px; height: 86px; border-radius: 50%; border: 4px solid #fff; object-fit: cover; margin-top: -43px; margin-bottom: 14px; }
.pc-body h3 { font-family: var(--font-body); font-weight: 600; font-size: 19px; letter-spacing: 0; margin-bottom: 3px; color: var(--forest); }
.pc-headline { font-size: 13.5px; color: var(--wgray); margin-bottom: 18px; }
.pc-result { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--forest); background: rgba(133, 146, 125, 0.16); border-radius: 99px; padding: 9px 15px; }
.pc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); flex: none; }
.pc-caption { font-size: 12.5px; color: var(--muted-on-dark); letter-spacing: 0.02em; }

.inquiry-card {
  position: static; width: 100%; max-width: 430px;
  background: #fff; color: var(--forest); border-radius: var(--radius-card);
  padding: 14px 18px; box-shadow: var(--shadow-dark);
}
.inquiry-card .iq-label {
  display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--sandstone); margin-bottom: 8px;
}
.inquiry-card .iq-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); flex: none; }
.inquiry-card p { font-size: 14px; line-height: 1.48; color: var(--forest-muted); }

/* ---------- Proof strip ---------- */
.hero-founders { margin-top: 88px; padding-top: 40px; border-top: 1px solid var(--border-dark); }
.hero-founders-label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-on-dark); text-align: center; margin-bottom: 46px; }
.hero-founders-label strong { color: var(--text-on-dark); font-weight: 600; }
.hero-founders-label strong { color: var(--terracotta); }
.founder-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.founder-card { display: grid; grid-template-columns: 64px 1fr; column-gap: 14px; row-gap: 1px; align-items: center; text-align: left; }
.founder-card img { grid-row: 1 / span 3; display: block; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--border-dark); margin: 0; }
.fc-name { font-size: 15.5px; font-weight: 600; color: var(--text-on-dark); }
.fc-role { font-size: 12.5px; color: var(--muted-on-dark); line-height: 1.35; min-height: 34px; }
.fc-result { font-size: 13px; font-weight: 600; color: var(--terracotta); letter-spacing: 0.01em; margin-top: 6px; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0 52px; }
.stat-tile { text-align: left; }
.stat-value { display: block; font-family: var(--font-body); font-weight: 600; font-size: 44px; letter-spacing: -0.025em; line-height: 1; color: var(--terracotta); }
.stat-label { display: block; font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.62; margin-top: 10px; font-weight: 600; line-height: 1.4; }
.proof-strip-note { grid-column: 1 / -1; font-size: 14px; color: var(--muted-on-dark); padding-top: 8px; }

/* ---------- Fit ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); max-width: 1000px; margin: 0 auto; }
.fit-col { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-panel); padding: 38px 36px; }
.fit-col h3 { font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; }
.fit-col.not h3 { color: var(--sandstone); }
.fit-col ul { list-style: none; }
.fit-col li { padding: 10px 0 10px 30px; position: relative; font-size: 15.5px; color: var(--forest-muted); line-height: 1.5; }
.fit-col ul.do li::before { content: "\2713"; position: absolute; left: 0; top: 10px; color: var(--sage); font-weight: 700; }
.fit-col ul.dont li::before { content: "\2715"; position: absolute; left: 0; top: 10px; color: var(--sandstone); font-weight: 700; }
.fit-col li strong { display: block; font-weight: 600; color: var(--forest); margin-bottom: 2px; }
.pull-note { text-align: center; max-width: 640px; margin: 44px auto 0; font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--forest); line-height: 1.45; }
.dark .pull-note { color: var(--text-on-dark); }

/* ---------- Problem ---------- */
.problem-list { max-width: 700px; margin: var(--space-6) auto 0; }
.problem-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--border-dark); align-items: baseline; }
.problem-row:last-child { border-bottom: 0; }
.problem-row > span { font-size: 13px; font-weight: 600; color: var(--terracotta); letter-spacing: 0.09em; }
.problem-row h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 400; margin-bottom: 6px; }
.problem-row p { color: var(--muted-on-dark); font-size: 16px; }

.feature-quote { max-width: 720px; margin: 88px auto 0; text-align: center; padding-top: 56px; border-top: 1px solid var(--border-dark); }
.feature-quote blockquote { font-family: var(--font-display); font-size: clamp(1.375rem, 2.6vw, 1.875rem); line-height: 1.3; font-style: italic; margin-bottom: 18px; }
.feature-quote figcaption { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-on-dark); }
.feature-quote strong { color: var(--text-on-dark); }

/* ---------- Positioning argument ---------- */
.argument-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 1080px; margin: 0 auto; }
.argument-num { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.09em; color: var(--sandstone); border-top: 2px solid var(--sandstone); padding-top: 14px; margin-bottom: 14px; width: 44px; }
.argument-col h3 { font-size: 24px; line-height: 1.22; margin-bottom: 10px; }
.argument-col p { color: var(--forest-muted); font-size: 15.5px; }


/* ---------- Arbitrage ---------- */
.arbitrage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
.arbitrage-grid > div { border-top: 1px solid var(--border-dark); padding-top: 26px; }
.arbitrage-grid strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 400; line-height: 1.15; margin-bottom: 8px; color: var(--text-on-dark); }
.arbitrage-grid span { font-size: 15px; color: var(--muted-on-dark); line-height: 1.5; }

/* ---------- Mechanism phases ---------- */
.phase { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; padding: 44px 0; }
.phase.flip .phase-copy { order: 2; }
.phase.flip .phase-media { order: 1; }
.phase-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sandstone); margin-bottom: 12px; }
.phase h3 { margin-bottom: 12px; }
.phase-copy > p { color: var(--forest-muted); }
.phase-media { border-radius: var(--radius-panel); padding: 34px; }
.phase-media.tint-a { background: #EDE4D3; }
.phase-media.tint-b { background: #E7E4DA; }
.phase-media img { border-radius: var(--radius-card); box-shadow: var(--shadow); width: 100%; }
.phase-deliverable { margin-top: 20px; font-size: 15px; background: rgba(217, 196, 168, 0.35); border-radius: 10px; padding: 13px 17px; color: var(--forest); font-weight: 500; }

.dash-card { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); padding: 26px 28px; }
.dash-title { font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--wgray); margin-bottom: 16px; }
.dash-row { display: flex; align-items: baseline; gap: 14px; padding: 10px 0; border-top: 1px solid var(--border-light); }
.dash-num { font-weight: 600; font-size: 30px; letter-spacing: -0.02em; color: var(--forest); min-width: 64px; }
.dash-label { font-size: 14px; color: var(--forest-muted); }
.dash-label b { color: var(--sage); font-weight: 600; margin-left: 6px; }

.milestone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
.milestone-grid > div { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 28px 30px; }
.milestone-grid > div:last-child { border-color: var(--sandstone); box-shadow: 0 8px 32px rgba(180, 89, 58, 0.10); }
.ms-when { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sandstone); margin-bottom: 12px; }
.milestone-grid strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.01em; }
.milestone-grid p { font-size: 14.5px; color: var(--forest-muted); }

.time-band { margin-top: var(--space-5); text-align: center; background: var(--glow-dark), var(--forest); border-radius: var(--radius-panel); padding: 52px 40px; }
.time-band-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 30px; color: var(--text-on-dark); }
.time-stats { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.time-stats .stat-tile { text-align: center; }

/* ---------- Case studies ---------- */
.featured-case {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-5);
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-panel);
  padding: 48px; margin-bottom: var(--space-4); align-items: center;
}
.featured-copy h3 { font-size: clamp(1.625rem, 2.6vw, 2.125rem); line-height: 1.2; margin-bottom: 24px; }
.case-narrative { margin-bottom: 26px; }
.case-narrative p { font-size: 15.5px; color: var(--forest-muted); line-height: 1.6; margin-bottom: 12px; max-width: 560px; }
.case-narrative strong { color: var(--forest); font-weight: 600; }
.featured-copy blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.45;
  color: var(--forest); border-left: 2px solid var(--terracotta); padding-left: 20px; margin-bottom: 28px; max-width: 540px;
}
.featured-copy blockquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--wgray); margin-top: 14px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); border-top: 1px solid var(--border-light); padding-top: 26px; margin-bottom: 28px; }
.case-metrics strong { display: block; font-family: var(--font-body); font-weight: 600; font-size: 34px; letter-spacing: -0.025em; color: var(--sandstone); line-height: 1.1; }
.case-metrics span { display: block; font-size: 13px; color: var(--wgray); margin-top: 6px; line-height: 1.4; }
.case-visual { position: relative; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow); background: #fff; }
.case-visual img { width: 100%; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.case-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-panel);
  overflow: hidden; display: flex; flex-direction: column; text-align: left; padding: 0;
  cursor: pointer; font-family: var(--font-body); color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand); }
.case-thumb { height: 168px; overflow: hidden; background: var(--ivory); border-bottom: 1px solid var(--border-light); }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.case-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-who { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.case-who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.case-who h3 { font-family: var(--font-body); font-weight: 600; font-size: 15.5px; margin: 0; letter-spacing: 0; }
.case-who p { font-size: 12.5px; color: var(--wgray); line-height: 1.35; }
.case-headline { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--forest); line-height: 1.3; margin-bottom: 16px; }
.case-headline span { display: block; font-size: 38px; letter-spacing: -0.025em; color: var(--sandstone); line-height: 1.05; margin-bottom: 4px; }
.case-sub { font-size: 14.5px; color: var(--forest-muted); line-height: 1.5; flex: 1; margin-bottom: 20px; }
.case-open {
  display: inline-flex; align-items: center; gap: 8px; width: 100%;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--sandstone);
  background: none; border: 0; border-top: 1px solid var(--border-light);
  padding: 18px 0 0; margin: 0; cursor: pointer; text-align: left;
}
.case-card:hover .case-open .ne { transform: translate(2px, -2px); }
.case-open .ne { transition: transform 0.18s ease; }

/* ---------- Case modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(15, 26, 22, 0.72);
  backdrop-filter: blur(4px); display: flex; align-items: flex-start; justify-content: center;
  padding: 48px 24px; overflow-y: auto; opacity: 0; visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative; width: 100%; max-width: 900px; background: var(--paper);
  border-radius: var(--radius-panel); box-shadow: var(--shadow-dark); overflow: hidden;
  transform: translateY(18px) scale(0.99); transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal-backdrop.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 3; width: 40px; height: 40px;
  border-radius: 50%; border: 0; cursor: pointer; background: rgba(15, 26, 22, 0.82); color: var(--ivory);
  font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.modal-close:hover { background: var(--forest); }
.modal-head { background: var(--glow-dark), var(--forest); color: var(--text-on-dark); padding: 44px 48px 40px; }
.modal-head .eyebrow { color: var(--terracotta); margin-bottom: 16px; }
.modal-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 20px; max-width: 640px; }
.modal-who { display: flex; align-items: center; gap: 14px; }
.modal-who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244, 239, 230, 0.2); }
.modal-who b { display: block; font-size: 15.5px; font-weight: 600; color: var(--text-on-dark); }
.modal-who span { font-size: 13.5px; color: var(--muted-on-dark); }
.modal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); padding: 32px 48px; background: var(--sand-2); border-bottom: 1px solid var(--border-light); }
.modal-metrics strong { display: block; font-family: var(--font-body); font-weight: 600; font-size: 34px; letter-spacing: -0.025em; color: var(--sandstone); line-height: 1.1; }
.modal-metrics span { display: block; font-size: 13px; color: var(--forest-muted); margin-top: 6px; line-height: 1.4; }
.modal-body { padding: 40px 48px 48px; }
.modal-body h3 { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sandstone); margin: 30px 0 10px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { font-size: 16px; color: var(--forest-muted); line-height: 1.62; max-width: var(--measure); }
.modal-body ul { list-style: none; margin: 0; max-width: var(--measure); }
.modal-body ul li { position: relative; padding: 5px 0 5px 24px; font-size: 16px; color: var(--forest-muted); line-height: 1.55; }
.modal-body ul li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 8px; height: 2px; border-radius: 1px; background: var(--sandstone); }
.modal-body blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.5;
  color: var(--forest); border-left: 2px solid var(--terracotta); padding-left: 22px; margin: 30px 0; max-width: 620px;
}
.modal-body blockquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--wgray); margin-top: 14px; }
.modal-figure { margin: 32px 0 0; border: 1px solid var(--border-light); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); }
.modal-figure img { display: block; width: 100%; height: auto; }
.modal-fig-duo { display: flex; gap: 18px; align-items: flex-start; border: none; border-radius: 0; overflow: visible; box-shadow: none; margin-top: 18px; }
.modal-fig-duo img { border: 1px solid var(--border-light); border-radius: var(--radius-card); box-shadow: var(--shadow); }
.modal-fig-duo img:first-child { width: 56%; }
.modal-fig-duo img:last-child { width: calc(44% - 18px); }
@media (max-width: 640px) {
  .modal-fig-duo { flex-direction: column; }
  .modal-fig-duo img:first-child, .modal-fig-duo img:last-child { width: 100%; }
}
.modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border-light); }
.modal-foot p { font-size: 15px; color: var(--forest-muted); max-width: 400px; }

/* ---------- Distribution proof ---------- */
.dist-panel { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: center; }
.dist-copy p { color: var(--forest-muted); font-size: 17px; margin-bottom: 24px; max-width: 460px; }
.dist-list { list-style: none; }
.dist-list li { padding: 11px 0 11px 30px; position: relative; font-size: 15.5px; color: var(--forest-muted); border-bottom: 1px solid var(--border-light); }
.dist-list li:last-child { border-bottom: 0; color: var(--forest); font-weight: 600; }
.dist-list li::before { content: ""; position: absolute; left: 3px; top: 19px; width: 8px; height: 5px; border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg); }
.dist-list li:last-child::before { border-color: var(--sandstone); }
.dist-media { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow); }

/* ---------- Offer ---------- */


/* ---------- Work grid ---------- */

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 88px; align-items: start; }
.about-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 62% 50%; border-radius: var(--radius-panel); box-shadow: var(--shadow); }
.about-copy p { margin-bottom: 14px; color: var(--forest-muted); font-size: 17px; max-width: 560px; }
.about-copy .pull-line { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 2rem); font-style: italic; color: var(--forest); line-height: 1.2; letter-spacing: -0.015em; margin: 20px 0 22px; text-wrap: balance; }
.founder-card:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: var(--radius-card); }
.about-copy .em-line { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--forest); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--forest); margin-top: 22px; }
.founder-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border-light); max-width: 560px; align-items: start; }
.founder-proof strong { display: block; font-family: var(--font-body); font-weight: 600; font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; color: var(--forest); }
.founder-proof span { display: block; font-size: 12.5px; color: var(--wgray); margin-top: 7px; line-height: 1.35; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 17.5px; padding: 24px 4px; gap: 24px; min-height: 44px; transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--sandstone); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 400; font-size: 26px; color: var(--sandstone); flex-shrink: 0; transition: transform 0.22s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--forest-muted); padding: 0 4px 24px; font-size: 15.5px; max-width: var(--measure); }
.faq-item p + p { margin-top: -8px; }
.faq-item p strong { color: var(--forest); font-weight: 600; }

/* ---------- CTA band + final ---------- */
.cta-band { margin-top: var(--space-7); text-align: center; border-radius: var(--radius-panel); padding: 76px 48px; background: var(--glow-dark), var(--forest); }
.cta-band h2 { max-width: 660px; margin: 0 auto 14px; color: var(--text-on-dark); }
.cta-band > p { color: var(--muted-on-dark); margin-bottom: 30px; max-width: 540px; margin-inline: auto; }

.final-cta { padding: 128px 0 0; text-align: center; background: var(--glow-dark), var(--forest); }
.final-cta h2 { max-width: 820px; margin: 0 auto 26px; font-size: clamp(2.375rem, 4.6vw, 3.5rem); }
.final-cta .section-lead { margin-bottom: 36px; max-width: 640px; margin-inline: auto; }
.proof-chips { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.proof-chips span { font-size: 13.5px; font-weight: 600; color: var(--muted-on-dark); border: 1px solid var(--border-dark); border-radius: 99px; padding: 8px 18px; }

/* ---------- Footer ---------- */
.footer { margin-top: 104px; border-top: 1px solid var(--border-dark); padding: 26px 0; }
.footer-bar { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-left { margin: 0; font-size: 13.5px; color: rgba(244, 239, 230, 0.5); }
.footer-left .fdiv { margin: 0 10px; color: rgba(244, 239, 230, 0.25); }
.footer-left .fstrong { color: rgba(244, 239, 230, 0.78); }
.footer-links { display: flex; align-items: center; gap: 26px; }
.footer-links a { font-size: 13.5px; color: rgba(244, 239, 230, 0.6); text-decoration: none; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--ivory); }
.footer-links .ficon img { height: 18px; width: auto; display: block; opacity: 0.65; transition: opacity 0.15s ease; }
.footer-links .ficon:hover img { opacity: 1; }
.footer-links .ficon + .ficon { margin-left: -6px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--muted-on-dark); font-size: 14.5px; }
.footer-links a:hover { color: var(--text-on-dark); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (min-width: 721px) {
  .js .reveal { filter: blur(5px); }
  .js .reveal.in { filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn .ne, .modal { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .section-head { margin-bottom: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { align-items: center; margin: 0 auto; }
  .inquiry-card { left: 0; bottom: 30px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .fit-grid { grid-template-columns: 1fr; }
  .argument-row, .arbitrage-grid, .milestone-grid, .case-grid { grid-template-columns: 1fr; }
  .phase, .phase.flip { grid-template-columns: 1fr; gap: 32px; }
  .phase.flip .phase-copy { order: 1; }
  .phase.flip .phase-media { order: 2; }
  .featured-case { grid-template-columns: 1fr; padding: 32px 28px; }
  .dist-panel { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; gap: 44px; }
  .modal-head, .modal-metrics, .modal-body { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding-top: 96px; }
  .final-cta { padding-top: 96px; }
  .fof-models--two .fof-model { padding: 26px 22px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--forest); padding: 28px;
    border-bottom: 1px solid var(--border-dark); gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 20px; color: var(--text-on-dark); padding: 12px 0; border-bottom: 0; }
  .nav.on-light .nav-links.open a:not(.btn) { color: var(--text-on-dark); }
  .nav-links .btn { justify-content: center; width: 100%; margin-top: 12px; }
  .inquiry-card { position: static; width: 100%; transform: none; margin-top: 4px; }
  .proof-strip { grid-template-columns: 1fr; gap: 24px; }
  .founder-cards { grid-template-columns: 1fr; gap: 20px; }
  .hv-grid { grid-template-columns: 1fr; gap: 16px; }
  .hv-connector { display: none; }
  .hv-grid .proof-panel { order: -1; }
  .metrics-row { flex-wrap: wrap; gap: 10px 18px; justify-content: center; }
  .metrics-row i { display: none; }
  .case-metrics, .modal-metrics { grid-template-columns: 1fr; gap: 18px; }
  .time-stats { gap: 40px; }
  .modal-backdrop { padding: 16px 12px; }
  .modal-head, .modal-metrics, .modal-body { padding-left: 24px; padding-right: 24px; }
  .modal-head { padding-top: 36px; }
}
@media (max-width: 480px) {
  .hero-cta .btn, .cta-band .btn, .final-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Problem grid (2x2) ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.problem-card { background: rgba(244, 239, 230, 0.05); border: 1px solid var(--border-dark); border-radius: var(--radius-card); padding: 30px 32px 28px; }
.problem-card .pc-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(196, 106, 68, 0.16); color: var(--terracotta); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 18px; }
.problem-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--text-on-dark); margin-bottom: 10px; line-height: 1.3; }
.problem-card p { font-size: 15px; line-height: 1.55; color: var(--muted-on-dark); }
.problem-segue { text-align: center; margin-top: 44px; font-size: 15px; color: var(--muted-on-dark); }
.problem-segue a { color: var(--terracotta); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(196, 106, 68, 0.4); }
.problem-segue a:hover { text-decoration-color: var(--terracotta); }
@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-card { padding: 24px 22px; }
}

/* ---------- Thesis visual (funnel + copy) ---------- */
@media (max-width: 720px) {
}

/* ---------- Flywheel (mechanism) ---------- */

.fw-wheel svg { display: block; width: 340px; height: auto; }
.fw-col { display: flex; flex-direction: column; }


.fw-step h3 { font-family: var(--font-body); font-weight: 600; font-size: 17.5px; letter-spacing: -0.01em; color: var(--forest); margin-bottom: 7px; }
.fw-step p { font-size: 15px; line-height: 1.55; color: var(--forest-muted); }
.fw-step .fw-deliverable { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--sandstone); }
.fw-note { max-width: 620px; margin: 56px auto 0; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--forest); }
@media (max-width: 900px) {
  .flywheel { grid-template-columns: 1fr; gap: 32px; }
  .fw-wheel { order: -1; margin: 0 auto; }
  .fw-wheel svg { width: 260px; }
  .fw-col.left, .fw-col.right { text-align: left; gap: 28px; }
  .fw-note { margin-top: 36px; font-size: 18px; }
}

.fw-you { display: inline-block; margin-left: 7px; padding: 2px 7px; border-radius: 99px; background: rgba(196,106,68,0.12); color: var(--sandstone); font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; vertical-align: 2px; }
.fw-deliverables { max-width: 760px; margin: 30px auto 0; text-align: center; font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--sandstone); }

/* ---------- Flywheel v2: evidence-anchored steps ---------- */
.flywheel { display: grid; grid-template-columns: 1fr auto 1fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto; }
.fw-wheel { position: sticky; top: 120px; }
.fw-col { display: flex; flex-direction: column; gap: 44px; text-align: left; }
.fw-col.left { gap: 78px; }
.fw-step { max-width: 330px; }
.fw-col.left .fw-step { margin-left: auto; }
.fw-n { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--sandstone); margin-bottom: 5px; }
.fw-step.payoff .fw-n { color: var(--terracotta); }
.fw-art { border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid var(--border-light); box-shadow: 0 2px 10px rgba(15,26,22,0.06); margin-bottom: 14px; }
.fw-art img:not(.fwp-avatar) { display: block; width: 100%; height: 100px; object-fit: cover; object-position: top center; }
.fw-art-profile { display: flex; align-items: center; gap: 11px; padding: 15px 16px; }
.fwp-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.fwp-txt strong { display: block; font-size: 13.5px; font-weight: 600; color: #24292E; line-height: 1.25; }
.fwp-txt span { display: block; font-size: 11px; color: #8A8F94; margin-top: 1px; }
.fw-art-post { padding: 12px 15px 11px; }
.fwq-head { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: #24292E; margin-bottom: 8px; }
.fwq-body { font-size: 12.5px; line-height: 1.45; color: #33383D; margin-bottom: 8px; }
.fwq-eng { font-size: 11px; color: #6B7075; }
@media (max-width: 900px) {
  .flywheel { grid-template-columns: 1fr; gap: 34px; }
  .fw-wheel { order: -1; margin: 0 auto; }
  .fw-col { gap: 34px; }
  .fw-col.left .fw-step { margin-left: 0; }
  .fw-step { max-width: none; }
}

.fw-step:nth-child(2) .fw-art img { object-position: center left; }
.fw-art-profile .fwp-avatar { width: 44px; height: 44px; }
.fw-art { max-width: 330px; }

/* ---------- Mechanism: five-step track ---------- */
.ms .container { max-width: 1320px; }
.ms-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin-top: 8px; }
.ms-rail { position: absolute; left: 0; right: 0; top: 197px; height: 1px; background: var(--border-light); }
.ms-card { position: relative; aspect-ratio: 3 / 2; border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid var(--border-light); box-shadow: 0 2px 8px rgba(15,26,22,.06); }
.ms-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ms-chip { position: absolute; left: 10px; top: 10px; padding: 4px 9px; border-radius: 12px; background: var(--sandstone); color: var(--ivory); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.ms-step--payoff .ms-chip { background: var(--terracotta); }
.ms-badge { position: relative; z-index: 2; width: 38px; height: 38px; margin: 20px 0 18px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--rule-strong, #C9BFA9); display: flex; align-items: center; justify-content: center; }
.ms-badge span { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--sandstone); }
.ms-step--payoff .ms-badge { background: var(--sandstone); border-color: var(--sandstone); }
.ms-step--payoff .ms-badge span { color: var(--ivory); }
.ms-step h3 { font-family: var(--font-display); font-size: 21px; line-height: 1.28; font-weight: 400; color: var(--forest); min-height: 54px; margin-bottom: 16px; }
.ms-step--payoff h3 { color: var(--sandstone); }
.ms-line { display: grid; grid-template-columns: 40px 1fr; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--forest-muted); margin-bottom: 10px; }
.ms-line span { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sandstone); padding-top: 4px; }
.ms-rows { display: flex; flex-direction: column; justify-content: center; gap: 7px; height: 100%; padding: 14px 13px; }
.ms-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ms-row span { font-size: 10.5px; line-height: 1.3; color: #6B7075; }
.ms-row strong { display: block; font-size: 11.5px; font-weight: 600; color: #24292E; }
.ms-row em { flex: none; font-style: normal; font-size: 8.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #6B7075; border: 1px solid #D8D6CE; border-radius: 99px; padding: 3px 7px; }
.ms-row em.on { color: var(--sandstone); border-color: var(--sandstone); }
.ms-loop { position: relative; margin-top: 34px; height: 60px; }
.ms-loop svg { position: absolute; inset: 0; width: 100%; height: 60px; }
.ms-loop span { position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%); background: var(--ivory); padding: 0 18px; font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--forest); }
@media (max-width: 980px) {
  .ms-track { grid-template-columns: 1fr; gap: 40px; }
  .ms-rail { display: none; }
  .ms-badge { margin: 16px 0 12px; }
  .ms-step h3 { min-height: 0; }
  .ms-loop { display: none; }
}

/* ---------- Mechanism wheel (final) ---------- */
and <script> blocks.
  - Fonts: Iowan Old Style/Source Serif 4/Georgia (serif) + Inter (sans) with system fallbacks;
    load Inter + Source Serif 4 upstream if not already on the page.
  - Assembly animation runs once when the wheel scrolls into view; click the wheel to replay.
    prefers-reduced-motion shows everything instantly.
  - Section background assumed #F4EFE6 (ivory). The visual inherits its parent background.
  - Under 980px: collapses to a single column — wheel first, steps 01-05 in order.
-->
<style>
.fkw{font-family:Inter,system-ui,sans-serif;color:#39433D}
.fkw *{box-sizing:border-box}
.fkw-serif{font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-weight:400}
#system .container{max-width:1360px}
#system .section-head{margin-bottom:40px}
#system{background:var(--paper);border-top:1px solid rgba(0,0,0,.06)}
.fkw-grid{display:grid;grid-template-columns:310px 1fr 380px;gap:40px;align-items:center;max-width:1360px;margin:0 auto}
.fkw-col-l{display:flex;flex-direction:column;gap:150px;text-align:right}
.fkw-col-r{display:flex;flex-direction:column;gap:82px}
.fkw-num{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:1.6px;color:#B4593A;margin:0 0 10px}
.fkw-title{display:flex;align-items:center;gap:14px}
.fkw-col-l .fkw-title{justify-content:flex-end}
.fkw-name{font-size:28px;line-height:1.22;color:#0F1A16}
.fkw-name--accent{color:#B4593A}
.fkw-tick{width:30px;height:1.5px;background:#C46A44;opacity:.55;flex:none}
.fkw-body{font-size:16px;line-height:1.6;margin:10px 0 0}
.fkw-wheel{display:block;margin:0 auto;cursor:pointer;width:100%;max-width:600px;height:auto}
.fkw-seg{opacity:0;transform:rotate(-16deg);transform-origin:400px 400px}
.fkw.is-assembled .fkw-seg{opacity:1;transform:rotate(0deg)}
.fkw-seg.d1{transition:opacity .5s ease-out 0s,transform .65s cubic-bezier(.22,1,.36,1) 0s}
.fkw-seg.d2{transition:opacity .5s ease-out .13s,transform .65s cubic-bezier(.22,1,.36,1) .13s}
.fkw-seg.d3{transition:opacity .5s ease-out .26s,transform .65s cubic-bezier(.22,1,.36,1) .26s}
.fkw-seg.d4{transition:opacity .5s ease-out .39s,transform .65s cubic-bezier(.22,1,.36,1) .39s}
.fkw-seg.d5{transition:opacity .5s ease-out .52s,transform .65s cubic-bezier(.22,1,.36,1) .52s}
.fkw-hub{opacity:0;transition:opacity .6s ease-out .85s}
.fkw.is-assembled .fkw-hub{opacity:1}
@media (prefers-reduced-motion: reduce){
  .fkw-seg,.fkw-hub{opacity:1 !important;transform:none !important;transition:none !important}
}
@media (max-width: 980px){
  .fkw-grid{display:flex;flex-direction:column;max-width:480px;gap:0}
  .fkw-col-l,.fkw-col-r{display:contents}
  .fkw-tick{display:none}
  .fkw-title{justify-content:flex-start}
  .fkw-col-l .fkw-title{justify-content:flex-start}
  .fkw-step{margin:0 0 34px;text-align:left}
  .fkw-wheel{order:1;margin:4px auto 40px}
  .fkw-col-l .fkw-step:nth-of-type(1){order:2}
  .fkw-col-r .fkw-step:nth-of-type(1){order:3}
  .fkw-col-r .fkw-step:nth-of-type(2){order:4}
  .fkw-col-r .fkw-step:nth-of-type(3){order:5}
  .fkw-col-l .fkw-step:nth-of-type(2){order:6}
  .fkw-name{font-size:24px}
}

/* ---------- Hero visual v2: beveled panel + founder interview + 90-day stats ---------- */
.fhv{width:100%;max-width:820px;font-family:Inter,system-ui,sans-serif;container-type:inline-size}
.fhv-serif{font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-weight:400}
.fhv-panel{background:linear-gradient(180deg,rgba(251,248,241,.07),rgba(251,248,241,.02));border-radius:20px;padding:18px;box-shadow:inset 0 1px 0 rgba(251,248,241,.12),inset 0 -1px 0 rgba(0,0,0,.25),0 20px 60px rgba(0,0,0,.35)}
.fhv-label{display:flex;align-items:center;gap:12px;padding:2px 4px 14px}
.fhv-label span{font:500 16px/1.3 Inter,system-ui,sans-serif;color:#FBF8F1;white-space:nowrap}
.fhv-img{display:block;width:100%;height:auto;border-radius:12px;border:1px solid rgba(251,248,241,.1);box-shadow:0 10px 36px rgba(0,0,0,.4)}
.fhv-stats{background:linear-gradient(180deg,rgba(251,248,241,.06),rgba(251,248,241,.02));border-radius:16px;padding:24px 32px;margin-top:24px;box-shadow:inset 0 1px 0 rgba(251,248,241,.1),inset 0 -1px 0 rgba(0,0,0,.2)}
.fhv-stats-label{font:600 11.5px/1 Inter,system-ui,sans-serif;letter-spacing:1.8px;text-transform:uppercase;color:#C46A44;text-align:center;margin:0}
.fhv-row{display:flex;align-items:center;justify-content:space-evenly;gap:18px;margin-top:18px}
.fhv-stat{display:flex;align-items:baseline;gap:9px}
.fhv-num{font-size:30px;color:#C46A44;white-space:nowrap}
.fhv-desc{font:400 14.5px/1.3 Inter,system-ui,sans-serif;color:#C9CFC6;white-space:nowrap}
.fhv-div{width:1px;height:26px;background:rgba(251,248,241,.15);flex:none}
@media (max-width: 640px){
  .featured-case .btn{font-size:12.5px;padding:16px 20px;letter-spacing:0.08em}
  .fhv-row{flex-direction:column;align-items:flex-start;gap:14px}
  .fhv-div{display:none}
  .fhv-stats{padding:20px 24px}
}

/* ---------- Thesis v2: two paths + compounds (fth) ---------- */
.fth{font-family:Inter,system-ui,sans-serif}
.fth-serif{font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-weight:400}
#thesis{background:var(--ivory);padding:var(--section-pad) 48px}
.fth-head{text-align:center;max-width:820px;margin:0 auto}
.fth-eyebrow{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:2px;text-transform:uppercase;color:#B4593A;margin:0}
.fth-h2{font-size:clamp(2.4rem, 3.6vw, 3.55rem);line-height:1.1;color:#0F1A16;margin:18px 0 0;text-wrap:balance}
.fth-sub{font:400 19px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:20px 0 0}
.fth-chartwrap{max-width:1100px;margin:64px auto 0}
.fth-chart-eyebrow{font:600 11.5px/1 Inter,system-ui,sans-serif;letter-spacing:2px;text-transform:uppercase;color:#B4593A;margin:0;text-align:center}
.fth-chart-title{font-size:32px;line-height:1.15;color:#0F1A16;margin:0;text-align:center}
.fth-svg{display:block;width:100%;height:auto;margin-top:24px}
.fth-caption{font:400 17px/1.6 Inter,system-ui,sans-serif;color:#39433D;text-align:center;max-width:680px;margin:36px auto 0}
.fth-caption strong{display:block;margin-top:10px;color:#0F1A16}
.fth-caption strong{color:#0F1A16}
.fth-practice{font-size:19px;line-height:1.4;font-style:italic;color:#39433D;text-align:center;margin:64px auto 0}
.fth-proof{max-width:1100px;margin:72px auto 0;background:#FDFBF6;border:1px solid rgba(0,0,0,.07);border-radius:16px;padding:36px 44px}
.fth-proof-label{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:1.8px;text-transform:uppercase;color:#B4593A;margin:0}
.fth-stages{display:grid;grid-template-columns:repeat(5,1fr);margin-top:14px}
.fth-stage{font:400 15px/1.45 Inter,system-ui,sans-serif;color:#39433D;text-align:center;padding:20px 14px 0}
.fth-stage--first{padding-top:0}
.fth-stage--deal{display:none}
.fth-stage--silence{display:none}
.fth-chart-legend{display:none}
.fth-stage-month{font:400 12px/1 Inter,system-ui,sans-serif;color:#8B8F8A;margin-bottom:8px}
.fth-case-row{display:flex;align-items:center;gap:14px;margin-top:28px;flex-wrap:wrap}
.fth-case-row img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:none}
.fth-case-name{font:600 14px/1.3 Inter,system-ui,sans-serif;color:#0F1A16}
.fth-case-org{font:400 13px/1.3 Inter,system-ui,sans-serif;color:#8B8F8A}
.fth-case-link{font:500 15px/1 Inter,system-ui,sans-serif;color:#B4593A;border-bottom:1.5px solid #B4593A;display:inline-block;padding-bottom:2px;text-decoration:none;margin-left:14px}
.fth-close{font-size:28px;line-height:1.3;color:#0F1A16;text-align:center;margin:72px 0 0}
.fth-close em{color:#B4593A}
.fth-exit{text-align:center;margin-top:44px}
.fth-exit a{font:500 16px/1 Inter,system-ui,sans-serif;color:#B4593A;border-bottom:1.5px solid #B4593A;padding-bottom:3px;text-decoration:none}
@media (max-width: 900px){
  .fth-h2{font-size:38px}
  .fth-stages{grid-template-columns:repeat(2,1fr);gap:16px}
  .fth-stage{padding-top:0;text-align:left}
}
@media (max-width: 640px){
  #thesis{padding:56px 20px 48px}
  .fth-h2{font-size:32px}
  .fth-close em{display:block;margin-top:4px}
  .fth-label-sub{display:none}
  .fth-chart-title{font-size:22px;line-height:1.35}
  .fth-chartwrap .fth-axis-mobile{display:block;text-align:left;font:600 11px/1 Inter,system-ui,sans-serif;letter-spacing:1.5px;text-transform:uppercase;color:#8B8F8A;margin:26px 0 6px}
  #system .section-lead br{display:none}
  .fth-svg text{display:none}
  .fth-chart-legend{display:flex;flex-direction:column;gap:10px;margin:18px auto 0;max-width:340px}
  .fth-chart-legend span{display:flex;align-items:center;gap:10px;font:400 14.5px/1.4 Inter,system-ui,sans-serif;color:#39433D;text-align:left}
  .fth-leg-dot{width:12px;height:12px;border-radius:50%;flex:none}
  .fth-proof{padding:26px 22px}
  .fth-proof-label{font-size:11px;letter-spacing:1.2px;line-height:1.6}
  .fth-proof .fth-svg{display:none}
  .fth-stages{grid-template-columns:1fr;gap:0;margin-top:10px}
  .fth-stage{text-align:left;padding:11px 0 11px 26px;border-bottom:none;position:relative}
  .fth-stage::before{content:"";position:absolute;left:0;top:16px;width:9px;height:9px;border-radius:50%;background:#F4EFE6;border:2px solid #85927D;z-index:1}
  .fth-stage::after{content:"";position:absolute;left:6px;top:0;bottom:0;border-left:2px solid rgba(15,26,22,.1)}
  .fth-stage--first{padding-top:0}
  .fth-stage--first::before{top:25px}
  .fth-stage--first::after{top:25px}
  .fth-stage:nth-child(4)::before,.fth-stage:nth-child(5)::before{background:#B4593A;border-color:#B4593A}
  .fth-stage--silence{display:block;padding:13px 0 13px 26px}
  .fth-stage--silence::before{display:none}
  .fth-stage--silence::after{border-left-style:dotted;border-left-color:#B9AF9C}
  .fth-stage--silence{font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-style:italic;font-size:15.5px;color:#8B8F8A}
  .fth-stage--silence .fth-stage-month{font-style:normal}
  .fth-stage--deal{display:block;text-align:left;position:relative;padding:13px 0 2px 26px;border-bottom:none;font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-size:21px;color:#B4593A}
  .fth-stage--deal::before{content:"";position:absolute;left:1px;top:38px;width:11px;height:11px;border-radius:50%;background:#B4593A;z-index:1}
  .fth-stage--deal::after{content:"";position:absolute;left:6px;top:0;height:38px;border-left:2px solid rgba(15,26,22,.1)}
}

/* ---------- Offer v1: ownership matrix + models (fof) ---------- */
.fof{font-family:Inter,system-ui,sans-serif}
.fof-serif{font-family:"Iowan Old Style","Source Serif 4",Georgia,serif;font-weight:400}
#offer{background:var(--ivory);padding:var(--section-pad) 48px}
.fof-head{text-align:center;max-width:900px;margin:0 auto}
.fof-eyebrow{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:2px;text-transform:uppercase;color:#B4593A;margin:0}
.fof-h2{font-size:clamp(2.4rem, 3.6vw, 3.55rem);line-height:1.12;color:#0F1A16;margin:18px 0 0}
.fof-matrixwrap{max-width:1080px;margin:56px auto 0}
.fof-matrix-title{font-size:32px;line-height:1.2;color:#0F1A16;margin:0;text-align:center}
.fof-matrix-sub{font:400 17px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:10px 0 0;text-align:center}
.fof-matrix-sub strong{color:#0F1A16}
.fof-matrix{background:#FFFFFF;border:1px solid rgba(0,0,0,.07);border-radius:16px;padding:36px 48px 32px;margin-top:28px}
.fof-row{display:grid;grid-template-columns:1fr 150px 150px;align-items:stretch;border-bottom:1px solid #EEE8DC}
.fof-row--head{border-bottom:1.5px solid #0F1A16}
.fof-row--last{border-bottom:none}
.fof-row--foot{border-bottom:none;border-top:1.5px solid #0F1A16;align-items:start}
.fof-colhead{font:600 13px/1 Inter,system-ui,sans-serif;letter-spacing:1.5px;text-transform:uppercase;text-align:center;padding:14px 0}
.fof-colhead--work{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:1.8px;text-transform:uppercase;color:#8B8F8A;text-align:left;padding:0 0 14px;align-self:end}
.fof-colhead--frontier{color:#0F1A16;background:rgba(180,89,58,.07);border-radius:10px 10px 0 0}
.fof-colhead--you{color:#B4593A;align-self:end}
.fof-work{padding:14px 0}
.fof-work-title{font:500 16px/1.4 Inter,system-ui,sans-serif;color:#0F1A16;margin:0}
.fof-work-sub{font:400 14px/1.45 Inter,system-ui,sans-serif;color:#5B5F5A;margin:3px 0 0}
.fof-cell{display:flex;align-items:center;justify-content:center}
.fof-cell--frontier{background:rgba(180,89,58,.07)}
.fof-dot{width:13px;height:13px;border-radius:50%;background:#B4593A}
.fof-dot--outline{background:transparent;border:2.5px solid #B4593A;box-sizing:border-box}
.fof-legend{display:flex;align-items:center;gap:18px;padding-top:14px}
.fof-legend span{display:inline-flex;align-items:center;gap:7px;font:400 12.5px/1 Inter,system-ui,sans-serif;color:#8B8F8A}
.fof-legend .fof-dot{width:11px;height:11px}
.fof-legend .fof-legend-note{font:italic 400 15px/1 "Iowan Old Style","Source Serif 4",Georgia,serif;color:#B4593A;margin-left:6px}
.fof-legend .fof-dot--outline{border-width:2px}
.fof-foot-frontier{font:400 13px/1.5 Inter,system-ui,sans-serif;color:#8B8F8A;text-align:center;padding:14px 6px;background:rgba(180,89,58,.07);border-radius:0 0 10px 10px}
.fof-foot-you{font:400 13px/1.5 Inter,system-ui,sans-serif;color:#39433D;text-align:center;padding:14px 6px 0}
.fof-band{max-width:1080px;margin:28px auto 0;background:#FFFFFF;border:1px solid rgba(0,0,0,.07);border-radius:16px;display:grid;grid-template-columns:minmax(0,1fr) 300px}
.fof-band-main{padding:30px 40px 28px}
.fof-band-side{border-left:1px solid #EEE8DC;padding:30px 32px 28px}
.fof-band-label{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:1.8px;text-transform:uppercase;margin:0}
.fof-band-intro{font:400 15px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:12px 0 0}
.fof-signals{display:flex;align-items:center;gap:12px;margin-top:18px;flex-wrap:wrap}
.fof-signal{font:500 14.5px/1.3 Inter,system-ui,sans-serif;color:#39433D;white-space:nowrap}
.fof-signal--last{font-weight:600;color:#B4593A}
.fof-arrow{color:#C4B9A4;flex:none}
.fof-pill{display:inline-block;font:600 13.5px/1.3 Inter,system-ui,sans-serif;color:#FBF8F1;background:#0F1A16;border-radius:99px;padding:10px 18px;white-space:nowrap;margin-top:18px}
.fof-traj{font:400 14px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:12px 0 0}
.fof-def{font:400 13.5px/1.55 Inter,system-ui,sans-serif;color:#8B8F8A;margin:16px 0 0;border-top:1px solid #EEE8DC;padding-top:14px}
.fof-terms{display:flex;flex-direction:column;gap:11px;margin-top:16px}
.fof-terms span{font:500 14px/1.3 Inter,system-ui,sans-serif;color:#39433D}
.fof-models{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:24px;max-width:1080px;margin:56px auto 0;align-items:stretch}
.fof-model{background:#F7F2E9;border:1px solid rgba(0,0,0,.07);border-radius:16px;padding:30px 32px}
.fof-model--primary{background:#FFFFFF;border:1.5px solid #C46A44;padding:36px 34px;box-shadow:0 10px 32px rgba(196,106,68,.16)}
.fof-model-eyebrow{font:600 12px/1 Inter,system-ui,sans-serif;letter-spacing:1.8px;text-transform:uppercase;color:#8B8F8A;margin:0}
.fof-model--primary .fof-model-eyebrow{color:#B4593A}
.fof-model-name{font-size:25px;color:#0F1A16;margin:14px 0 0}
.fof-model--primary .fof-model-name{font-size:28px}
.fof-model-price{font:600 14px/1.4 Inter,system-ui,sans-serif;color:#B4593A;margin:8px 0 0;letter-spacing:.01em}
.fof-model-body{font:400 15px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:10px 0 0}
.fof-pricing{text-align:center;font:400 17px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin-top:36px}
.fof-pricing strong{color:#0F1A16}
.fof-pricing p{margin:0}
.fof-pricing p+p{margin-top:10px}
.fof-pricing-q{color:#0F1A16;font-weight:600}
@media (max-width: 900px){
  .fof-h2{font-size:34px}
  .fof-band{grid-template-columns:minmax(0,1fr)}
  .fof-band-side{border-left:none;border-top:1px solid #EEE8DC}
  .fof-models{grid-template-columns:minmax(0,1fr)}
}
@media (max-width: 700px){
  .fof-row{grid-template-columns:minmax(0,1fr) 64px 64px}
  .fof-matrix{padding:24px 18px 18px}
  .fof-colhead{font-size:10.5px;letter-spacing:1px}
  .fof-colhead--work{font-size:10.5px;letter-spacing:1.2px}
  .fof-row--foot{display:flex;flex-direction:column;gap:10px;padding-top:16px}
  .fof-legend{padding-top:0}
  .fof-foot-frontier{border-radius:10px;text-align:left;padding:12px 14px}
  .fof-foot-you{text-align:left;padding:0 2px}
}
@media (max-width: 640px){
  #offer{padding:64px 24px 48px}
  .fof-h2 br{display:none}
  .fof-pill{white-space:normal;text-align:center;border-radius:16px}
  .fof-signals{gap:8px 14px}
  .fof-band-main{padding:24px 22px 22px}
  .fof-band-side{padding:22px}
}

/* ---------- v10 additions ---------- */
.founder-card{cursor:pointer;transition:transform .18s ease}
.founder-card:hover{transform:translateY(-3px)}
.fth-exit{margin-top:36px}
.cta-follow{margin-top:34px;font-size:15.5px;color:var(--muted-on-dark)}
.cta-follow a{color:#D98E68;font-weight:500;text-decoration:underline;text-underline-offset:3px}
.about-follow{margin-top:18px;font-size:15px}
.about-follow a{color:var(--sandstone);font-weight:600;text-decoration:none;border-bottom:1.5px solid var(--sandstone);padding-bottom:2px}

/* ---------- v10 round 1: section rhythm ---------- */
#proof.section.paper{background:#EFE7D8}
#about{border-top:1px solid rgba(0,0,0,.06)}
#faq.section.cream{border-top:1px solid rgba(0,0,0,.06)}
.fof-model{background:var(--paper)}

/* stats stay one row; type scales down when the CARD is narrow */
@container (max-width: 740px){
  .fhv-num{font-size:24px}
  .fhv-desc{font-size:13px}
  .fhv-row{gap:12px}
  .fhv-stats{padding:20px 18px}
}

@media (max-width: 1020px){
  .founder-cards{grid-template-columns:repeat(2, 1fr);gap:32px 30px}
}
@media (max-width: 560px){
  .founder-cards{grid-template-columns:1fr;gap:26px}
  .fc-role{min-height:0}
}

@media (max-width: 900px){
  .problem-grid{grid-template-columns:1fr}
}

@media (max-width: 860px){
  .footer-bar{flex-direction:column;gap:16px;text-align:center}
  .footer-left .fdiv{display:none}
  .footer-left .fstrong{display:block;margin-top:4px}
}

/* ---------- How-we-work upgrade: price lead, guarantee block, sprint architecture ---------- */
.fof-lead{text-align:center;font:400 17px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:18px auto 0;max-width:640px}
.fof-lead strong{color:#0F1A16}
.fof-guarantee{background:rgba(180,89,58,.07);border:1px solid rgba(180,89,58,.18);border-radius:14px;padding:18px 22px;margin-top:18px;max-width:640px}
.fof-g-label{font:600 11.5px/1 Inter,system-ui,sans-serif;letter-spacing:1.6px;text-transform:uppercase;color:#B4593A;margin:0}
.fof-g-body{font:400 14.5px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:8px 0 0}
.fof-sprint{max-width:900px;margin:64px auto 0;text-align:center}
.fof-sprint-title{font-size:32px;line-height:1.2;color:#0F1A16;margin:0}
.fof-sprint-sub{font:400 16.5px/1.6 Inter,system-ui,sans-serif;color:#39433D;margin:12px auto 0;max-width:620px}
.fof-models--two{grid-template-columns:1fr 1fr;max-width:900px;margin-top:28px}
.fof-models--two .fof-model{background:#FFFFFF;border:1px solid rgba(0,0,0,.07)}
.fof-choose-eyebrow{color:#B4593A;margin-bottom:14px}
.fof-model-best{font:400 14.5px/1.5 Inter,system-ui,sans-serif;color:#8B8F8A;margin:12px 0 0}
.fof-model-label{font:600 11.5px/1 Inter,system-ui,sans-serif;letter-spacing:1.6px;text-transform:uppercase;color:#B4593A;margin:22px 0 10px}
.fof-model-list{list-style:none;margin:0;padding:0}
.fof-model-list li{position:relative;padding:5px 0 5px 20px;font:400 14.5px/1.5 Inter,system-ui,sans-serif;color:#39433D}
.fof-model-list li strong{color:#0F1A16;font-weight:600}
.fof-model-list li::before{content:"";position:absolute;left:2px;top:14px;width:7px;height:2px;border-radius:1px;background:#B4593A}
.fof-model-own{font:400 14px/1.55 Inter,system-ui,sans-serif;color:#39433D;margin:18px 0 0;padding-top:16px;border-top:1px solid rgba(0,0,0,.07)}
.fof-model-own strong,.fof-model-day90 strong{color:#0F1A16;font-weight:600}
.fof-model-day90{font:400 14px/1.55 Inter,system-ui,sans-serif;color:#39433D;margin:12px 0 0}
.fof-models--two .fof-model{display:flex;flex-direction:column}
.fof-models--two .fof-model-own{margin-top:auto;padding-top:16px}
@media (max-width:900px){
  .fof-models--two{grid-template-columns:minmax(0,1fr)}
  .fof-sprint-title{font-size:26px}
}


.fth-axis-mobile{display:none}

.fof-sigpair{display:inline-flex;align-items:center;gap:12px;white-space:nowrap}
@media (max-width: 640px){
  .fof-signals .fof-signal{font-size:13.5px}
  .fof-signals{row-gap:10px}
}

/* Fit H2: each sentence is its own block on every viewport, balanced wrapping */
.two-line span { display: block; text-wrap: balance; }

/* Fit card price kicker */
.fit-price { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-light); font-size: 15px; font-weight: 600; color: var(--forest); }
