:root {
  --paper: #f7f6f2;
  --white: #fdfcf9;
  --mist: #edf2f4;
  --ink: #111a23;
  --navy: #0b2033;
  --navy-soft: #12314b;
  --blue: #249bd3;
  --blue-deep: #0c719f;
  --orange: #f47b42;
  --orange-deep: #9d3d15;
  --line: #ced4d6;
  --line-dark: rgba(231, 239, 243, .2);
  --muted: #5c6670;
  --muted-light: #aebbc4;
  --sans: Inter, Aptos, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --page: min(1600px, 100%);
  --content: min(1440px, 100%);
  --gutter: clamp(1.25rem, 4.5vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.55; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
::selection { background: rgba(36, 155, 211, .24); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; box-shadow: 0 0 0 6px var(--paper); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; width: var(--page); min-height: 82px; margin: auto; padding: 1rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); background: rgba(247, 246, 242, .94); backdrop-filter: blur(14px); transition: box-shadow .2s, background .2s; }
.site-header.is-scrolled { background: rgba(253, 252, 249, .97); box-shadow: 0 8px 30px rgba(11, 32, 51, .07); }
.brand { flex: 0 0 auto; }
.brand img { width: 236px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(1.15rem, 2.2vw, 2.25rem); font-size: .69rem; font-weight: 760; letter-spacing: .105em; text-transform: uppercase; }
.primary-nav a { position: relative; text-decoration: none; }
.primary-nav a::before { position: absolute; left: 0; bottom: -.45rem; width: 0; height: 2px; background: var(--blue); content: ""; transition: width .2s ease; }
.primary-nav a:hover::before, .primary-nav a[aria-current="page"]::before { width: 100%; }
.primary-nav a[aria-current="page"] { color: var(--blue-deep); }
.nav-contact { min-height: 40px; padding: .75rem 1rem; border: 1px solid var(--ink); }
.nav-contact::before { display: none; }
.nav-contact:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; appearance: none; border: 1px solid var(--ink); padding: .68rem .8rem; background: transparent; color: var(--ink); font: 780 .69rem/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.mobile-menu { position: absolute; left: 0; top: 100%; width: 100%; max-height: calc(100svh - 68px); overflow-y: auto; overscroll-behavior: contain; padding: .5rem var(--gutter) 1.75rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(11, 32, 51, .1); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--line); font: 760 .8rem/1.3 var(--sans); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.mobile-menu a::after { color: var(--orange); content: "↗"; }
.mobile-menu a[aria-current="page"] { color: var(--blue-deep); }
.menu-open { overflow: hidden; }

/* Shared typography and actions */
.section { padding: clamp(5.5rem, 9vw, 9rem) var(--gutter); }
.section-inner { width: var(--content); margin: 0 auto; }
.section-kicker, .eyebrow { margin: 0 0 1.35rem; color: var(--blue-deep); font-size: .69rem; font-weight: 820; letter-spacing: .145em; text-transform: uppercase; }
.section-title { max-width: 1040px; margin: 0; font-family: var(--serif); font-size: clamp(2.9rem, 5.4vw, 5.8rem); font-weight: 500; letter-spacing: -.048em; line-height: .96; }
.section-lead { max-width: 760px; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.55vw, 1.37rem); line-height: 1.55; }
.text-large { margin: 0; font-family: var(--serif); font-size: clamp(2.15rem, 3.8vw, 4.45rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; }
.muted { color: var(--muted); }
.paper { background: var(--white); }
.dark { background: var(--ink); color: var(--white); }
.forest { background: var(--navy); color: var(--white); }
.rule-top { border-top: 1px solid var(--line); }
.clay-text, .eyebrow.clay-text { color: var(--orange); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.35rem; }
.button { display: inline-flex; min-width: 188px; min-height: 52px; align-items: center; justify-content: space-between; padding: .95rem 1.05rem; border: 1px solid currentColor; background: transparent; text-decoration: none; font-size: .72rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.button::after { margin-left: 1.8rem; color: var(--orange); content: "↗"; font-size: 1rem; }
.button-primary { border-color: var(--navy); background: var(--navy); color: white; }
.button:hover { border-color: var(--blue-deep); background: var(--blue-deep); color: white; transform: translateY(-2px); }
.button:hover::after { color: white; }

/* Homepage hero */
.hero { position: relative; width: var(--page); min-height: min(850px, calc(100svh - 82px)); margin: auto; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); border-bottom: 1px solid var(--line); }
.hero-copy { position: relative; min-height: 730px; padding: clamp(4.5rem, 8vw, 8.5rem) var(--gutter) 2rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.hero-copy::before { position: absolute; right: 0; top: 0; width: 54%; height: 100%; opacity: .32; background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to left, black, transparent); content: ""; pointer-events: none; }
.hero-copy > * { position: relative; }
.eyebrow { color: var(--ink); }
.re-word { color: var(--blue-deep); }
.ad-word { color: var(--orange-deep); }
h1 { max-width: 890px; margin: 0; font-family: var(--serif); font-size: clamp(4.25rem, 7.35vw, 8rem); font-weight: 500; letter-spacing: -.062em; line-height: .88; }
h1 em { display: block; color: var(--blue-deep); font-weight: 500; }
.hero-intro { max-width: 730px; margin: 2.7rem 0 0; font-size: clamp(1.12rem, 1.5vw, 1.37rem); line-height: 1.55; }
.hero-partner { max-width: 680px; margin: 1rem 0 0; color: var(--muted); font-size: .91rem; line-height: 1.6; }
.hero-foot { display: flex; flex-wrap: wrap; gap: .65rem 1.4rem; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-foot span { display: flex; align-items: center; gap: 1.4rem; }
.hero-foot span:not(:last-child)::after { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); content: ""; }
.hero-visual { position: relative; min-height: 730px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.hero-visual::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); content: ""; pointer-events: none; }
.hero-visual img { position: relative; width: min(100%, 760px); height: auto; }
.visual-label { position: absolute; right: 1.65rem; top: 1.8rem; color: rgba(255,255,255,.68); font-size: .63rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }

.platform-strip { width: var(--page); min-height: 112px; margin: auto; display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.platform-strip > * { display: flex; min-width: 0; align-items: center; padding: 1.35rem clamp(1rem, 2.4vw, 2.35rem); border-right: 1px solid var(--line); }
.platform-strip > :last-child { border-right: 0; }
.platform-strip-label { color: var(--muted); font-size: .67rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.platform-strip a { position: relative; gap: 1rem; text-decoration: none; font-family: var(--serif); font-size: 1.25rem; transition: background .2s, color .2s; }
.platform-strip a b { color: var(--blue-deep); font: 820 .65rem/1 var(--sans); }
.platform-strip a small { position: absolute; left: clamp(1rem, 2.4vw, 2.35rem); bottom: .8rem; color: var(--orange-deep); font: 800 .53rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.platform-strip a:hover { background: var(--mist); color: var(--blue-deep); }

/* Resilience and adaptation */
.principle-section { background: var(--paper); }
.principle-intro, .exposure-heading, .platform-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.principle-intro .section-lead, .exposure-heading .section-lead, .platform-heading .section-lead { margin: 0; }
.principle-map { margin-top: clamp(3.5rem, 7vw, 6.5rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr) minmax(0, 1fr); border: 1px solid var(--line); background: var(--white); }
.principle-card { position: relative; min-height: 430px; padding: clamp(2rem, 4vw, 4rem); display: flex; flex-direction: column; }
.principle-card::before { position: absolute; left: -1px; right: -1px; top: -1px; height: 5px; content: ""; }
.resilience-card::before { background: var(--blue); }
.adaptation-card::before { background: var(--orange); }
.principle-number { color: var(--muted); font-size: .65rem; font-weight: 820; letter-spacing: .12em; }
.principle-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: clamp(3.5rem, 5vw, 5.8rem); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.resilience-card h3 { color: var(--blue-deep); }
.adaptation-card h3 { color: var(--orange-deep); }
.principle-card > p { max-width: 450px; margin: 0 0 2rem; font-size: 1.05rem; }
.principle-card ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.principle-card li { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.principle-axis { padding: 2rem 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border-inline: 1px solid var(--line); background: var(--mist); text-align: center; }
.principle-axis span { color: var(--muted); font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.principle-axis strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.1; }
.principle-axis i { width: 1px; height: 72px; background: linear-gradient(var(--blue), var(--orange)); }
.value-thesis { margin: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: white; font-family: var(--serif); font-size: clamp(1.5rem, 2.65vw, 3rem); line-height: 1.15; }
.value-thesis span { padding: 1.7rem clamp(1.5rem, 4vw, 4rem); }
.value-thesis span + span { border-left: 1px solid var(--line-dark); color: #ffc3a3; }

/* Economic exposure */
.exposure-section { background: var(--navy); color: white; }
.exposure-section .section-kicker { color: #6fc8ef; }
.exposure-section .section-lead { color: #becbd3; }
.value-stack { margin-top: clamp(3.5rem, 7vw, 6.5rem); display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.value-stack article { min-height: 265px; padding: 1.6rem; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.value-stack article > span { color: #6fc8ef; font-size: .61rem; font-weight: 820; letter-spacing: .12em; }
.value-stack h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.05; }
.value-stack p { margin: 0 0 1.5rem; color: #aebdc6; font-size: .82rem; }
.value-stack strong { padding-top: .75rem; border-top: 1px solid var(--line-dark); color: white; font-size: .68rem; letter-spacing: .03em; }
.regional-heading { margin-top: clamp(5rem, 9vw, 9rem); display: grid; grid-template-columns: .5fr 1.5fr; gap: 3rem; align-items: end; }
.regional-heading h3 { max-width: 960px; margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.2vw, 4.7rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.exposure-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line-dark); }
.region-card { min-width: 0; padding: clamp(1.7rem, 3.5vw, 3.5rem); background: var(--navy-soft); }
.region-card + .region-card { border-left: 1px solid var(--line-dark); }
.region-card header { display: flex; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-dark); }
.region-card header > div { display: flex; align-items: flex-start; gap: 1rem; }
.region-code { display: inline-flex; min-width: 38px; min-height: 38px; align-items: center; justify-content: center; border: 1px solid #6fc8ef; color: #6fc8ef; font-size: .66rem; font-weight: 820; letter-spacing: .08em; }
.region-na .region-code { border-color: #ffa477; color: #ffa477; }
.region-card header h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.region-card header > p { margin: 0; text-align: right; }
.region-card header small, .region-card header strong, .region-card header p > span { display: block; }
.region-card header small { color: #aebdc6; font-size: .57rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.region-card header strong { margin-top: .35rem; color: #ffa477; font-family: var(--serif); font-size: 2.25rem; font-weight: 500; line-height: 1; }
.region-card header p > span { margin-top: .35rem; color: #d2dce2; font-size: .63rem; letter-spacing: .04em; text-transform: uppercase; }
.regional-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border-bottom: 1px solid var(--line-dark); }
.regional-metrics p { min-width: 0; margin: 0; padding: 2rem 1.5rem 2rem 0; }
.regional-metrics p + p { padding-left: 1.5rem; border-left: 1px solid var(--line-dark); }
.regional-metrics strong, .regional-metrics span { display: block; }
.regional-metrics strong { color: white; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 500; letter-spacing: -.035em; line-height: 1; overflow-wrap: anywhere; }
.region-na .regional-metrics strong { white-space: nowrap; font-size: clamp(1.65rem, 2vw, 2.15rem); }
.regional-metrics span { margin-top: .65rem; color: #aebdc6; font-size: .69rem; line-height: 1.45; }
.region-summary { margin: 2rem 0; color: #d3dde3; font-size: .92rem; line-height: 1.65; }
.region-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.region-card li { padding: .75rem .5rem .75rem 0; border-bottom: 1px solid var(--line-dark); color: #b8c6ce; font-size: .71rem; }
.region-card li:nth-child(even) { padding-left: .75rem; border-left: 1px solid var(--line-dark); }
.source-note { max-width: 1180px; margin: 1.5rem 0 0; color: #91a4b0; font-size: .72rem; line-height: 1.7; }
.source-note a { color: #b9dded; }

/* Board and partnership */
.board-section { background: var(--mist); }
.board-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.board-copy { position: sticky; top: 132px; }
.partner-line { display: flex; flex-wrap: wrap; margin-top: 2.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner-line span { flex: 1 1 30%; padding: .72rem .8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.48); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.board-questions { border-top: 1px solid var(--ink); }
.board-questions p { margin: 0; padding: 1.45rem 0; display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.4rem, 2.25vw, 2.35rem); line-height: 1.18; }
.board-questions span { padding-top: .3rem; color: var(--orange-deep); font: 820 .62rem/1 var(--sans); letter-spacing: .1em; }

/* Platform */
.platform-section { background: var(--white); }
.activity-list { margin-top: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--ink); }
.activity-row { display: grid; grid-template-columns: 4rem minmax(250px, .8fr) minmax(300px, 1.15fr) auto; gap: 2rem; align-items: start; padding: 2.15rem 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s, background .2s, padding .2s; }
.activity-row:hover { padding-inline: 1rem; background: var(--mist); color: var(--blue-deep); }
.activity-row .index { padding-top: .45rem; color: var(--blue-deep); font-size: .66rem; font-weight: 820; letter-spacing: .1em; }
.activity-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 3.4vw, 3.9rem); font-weight: 500; letter-spacing: -.04em; line-height: .95; }
.activity-row small { display: block; margin-top: .65rem; color: var(--orange-deep); font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.activity-row p { max-width: 560px; margin: .35rem 0 0; color: var(--muted); line-height: 1.65; }
.activity-row .arrow { font-size: 1.35rem; }
.status-tag { display: inline-flex; width: fit-content; margin-top: .7rem; padding: .28rem .42rem; border: 1px solid var(--orange); color: var(--orange-deep); font-size: .52rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }

/* Operating model */
.operating-section { background: #e7eef1; }
.operating-grid { display: grid; grid-template-columns: minmax(340px, .75fr) minmax(440px, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.operating-copy p:not(.section-kicker) { max-width: 600px; color: var(--muted); font-size: 1.05rem; }
.operating-visual { border: 1px solid #c2cdd2; background: var(--white); }
.stage-line { display: flex; flex-wrap: wrap; margin: 2rem 0 0; padding: 0; list-style: none; }
.stage-line li { padding: .68rem .78rem; border: 1px solid var(--line); margin: -1px 0 0 -1px; background: rgba(255,255,255,.45); font-size: .59rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.forest .stage-line li, .dark .stage-line li { border-color: var(--line-dark); background: rgba(255,255,255,.03); }

/* Interest and founder */
.interest-section { background: var(--paper); }
.interest-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.interest-group { position: relative; min-height: 330px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.interest-group::before { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--blue); content: ""; }
.interest-group:nth-child(even)::before { background: var(--orange); }
.interest-group > span { color: var(--blue-deep); font-size: .62rem; font-weight: 820; letter-spacing: .11em; }
.interest-group:nth-child(even) > span { color: var(--orange-deep); }
.interest-group h3 { margin: 4.5rem 0 1.4rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.interest-group p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.founder-section { background: var(--ink); color: white; }
.founder-grid { display: grid; grid-template-columns: minmax(260px, .52fr) minmax(380px, 1.15fr); gap: clamp(3rem, 9vw, 10rem); }
.founder-meta { padding-top: 1.25rem; border-top: 1px solid var(--line-dark); }
.founder-meta strong { display: block; font-family: var(--serif); font-size: 2.25rem; font-weight: 500; }
.founder-meta span { display: block; margin-top: .5rem; color: var(--muted-light); font-size: .77rem; }
.founder-meta .button { margin-top: 2.2rem; }
.founder-section .button { color: white; }
.statement { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 4.8rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; }
.statement-note { margin-top: 2rem; color: var(--muted-light); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

.cta-band { padding: clamp(4rem, 8vw, 8rem) var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: end; background: var(--orange); color: var(--ink); }
.cta-band > div { max-width: 1050px; }
.cta-band .section-kicker { color: #35190c; }
.cta-band h2 { max-width: 1000px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.6vw, 6rem); font-weight: 500; letter-spacing: -.05em; line-height: .94; }
.cta-band .button { border-color: var(--ink); color: var(--ink); }
.cta-band .button::after { color: var(--ink); }
.cta-band .button:hover { background: var(--navy); color: white; }

/* Footer */
.site-footer { padding: 4.5rem var(--gutter) 2rem; background: var(--navy); color: white; }
.footer-grid { width: var(--content); margin: auto; display: grid; grid-template-columns: 1.3fr repeat(3, .5fr); gap: 3rem; }
.footer-brand img { width: 230px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 430px; margin: 1.6rem 0 0; color: #aebcc5; font-size: .88rem; }
.footer-col h3 { margin: 0 0 1.1rem; color: #7f97a8; font-size: .61rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: .65rem 0; color: white; text-decoration: none; font-size: .81rem; }
.footer-col a:hover { color: #77cef3; }
.footer-bottom { width: var(--content); margin: 4rem auto 0; padding-top: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-dark); color: #8197a6; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }

/* Inner pages */
.page-hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .65fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero-copy { padding: clamp(5rem, 10vw, 10rem) var(--gutter) clamp(4rem, 8vw, 8rem); }
.page-hero h1 { max-width: 1040px; font-size: clamp(3.8rem, 7vw, 7.6rem); }
.page-hero .section-lead { max-width: 790px; }
.page-hero-side { position: relative; min-height: 440px; padding: clamp(3rem, 5vw, 5.5rem); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--navy); color: white; }
.page-hero-side::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px); background-size: 64px 64px; content: ""; }
.page-hero-side > * { position: relative; }
.page-hero-side .big-index { font-family: var(--serif); font-size: clamp(7rem, 12vw, 13rem); line-height: .72; color: rgba(255,255,255,.13); }
.page-hero-side p { max-width: 390px; margin: 0; color: #d4dfe5; font-size: .93rem; }
.page-hero-side .side-label { font-size: .62rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.split { display: grid; grid-template-columns: minmax(220px, .48fr) minmax(420px, 1.25fr); gap: clamp(3rem, 10vw, 11rem); }
.split-label { margin: .4rem 0 0; color: var(--blue-deep); font-size: .66rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.split-content > :first-child { margin-top: 0; }
.split-content p { max-width: 760px; font-size: 1.06rem; line-height: 1.72; }
.split-content .text-large { max-width: 980px; }
.split-content > img { margin-top: 3rem; border: 1px solid var(--line); }
.split-content > .button { margin-top: 1.5rem; }

.capability-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.capability { position: relative; min-height: 330px; padding: clamp(2rem, 4vw, 3.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.capability::before { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); content: ""; }
.capability:nth-child(even)::before { background: var(--orange); }
.capability .index { color: var(--blue-deep); font-size: .62rem; font-weight: 820; letter-spacing: .1em; }
.capability:nth-child(even) .index { color: var(--orange-deep); }
.capability h3 { margin: 3rem 0 1.15rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.15rem); font-weight: 500; line-height: 1; }
.capability p { max-width: 540px; color: var(--muted); }
.capability ul { margin: 1.5rem 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .83rem; }
.capability li { padding: .53rem 0; border-top: 1px solid var(--line); }

.process { margin-top: 4rem; border-top: 1px solid currentColor; }
.process-step { display: grid; grid-template-columns: 4rem minmax(190px, .55fr) 1.1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.forest .process-step, .dark .process-step { border-color: var(--line-dark); }
.process-step .index { color: var(--orange); font-size: .65rem; font-weight: 820; }
.process-step h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.process-step p { max-width: 640px; margin: .3rem 0 0; color: var(--muted); }
.forest .process-step p, .dark .process-step p { color: #b7c5cd; }

.question-list { margin-top: 3rem; border-top: 1px solid var(--line-dark); }
.question-list p { margin: 0; padding: 1.5rem 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2.5rem); }
.question-list p::before { margin-right: 1rem; color: var(--orange); content: "↳"; }
.phase-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.phase { min-height: 400px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); }
.phase .index { color: var(--blue-deep); font-size: .62rem; font-weight: 820; }
.phase h3 { margin: 4rem 0 1.25rem; font-family: var(--serif); font-size: 2.15rem; font-weight: 500; line-height: 1; }
.phase p, .phase ol { color: var(--muted); }
.phase ol { margin: 1.5rem 0 0; padding-left: 1.1rem; font-size: .82rem; }
.phase li { margin: .7rem 0; padding-left: .35rem; }

.criteria-list { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.criterion { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid var(--line-dark); }
.criterion:nth-child(3n+2), .criterion:nth-child(3n+3) { padding-left: 2rem; border-left: 1px solid var(--line-dark); }
.criterion h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 1.72rem; font-weight: 500; }
.criterion p { margin: 0; color: #b5c3cb; font-size: .86rem; }
.fund-status { display: inline-flex; align-items: center; gap: .7rem; margin-top: 2rem; padding: .55rem .7rem; border: 1px solid var(--orange); color: var(--orange-deep); font-size: .63rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.fund-status::before { width: .43rem; height: .43rem; border-radius: 50%; background: currentColor; content: ""; }
.thesis-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.thesis-item { min-height: 300px; padding: clamp(2rem, 4vw, 4rem); background: var(--white); }
.thesis-item h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.thesis-item p { color: var(--muted); }
.disclaimer { padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.4); color: var(--muted); font-size: .78rem; line-height: 1.75; }
.disclaimer strong { color: var(--ink); }
.bio-facts { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.bio-facts li { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.bio-facts li::before { display: inline-block; width: .4rem; height: .4rem; margin-right: 1rem; background: var(--orange); content: ""; }
.domain-chain { display: flex; flex-wrap: wrap; margin-top: 2rem; padding: 0; list-style: none; }
.domain-chain li { padding: .7rem .9rem; margin: -1px 0 0 -1px; border: 1px solid var(--line); font-size: .64rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }

.contact-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-route { position: relative; min-height: 280px; padding: clamp(2rem, 4vw, 3.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s, color .2s; }
.contact-route::before { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--blue); content: ""; }
.contact-route:nth-child(even)::before { background: var(--orange); }
.contact-route:hover { background: var(--navy); color: white; }
.contact-route .index { color: var(--blue-deep); font-size: .62rem; font-weight: 820; }
.contact-route h2 { margin: 3.2rem 0 1rem; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3.1rem); font-weight: 500; line-height: 1; }
.contact-route p { max-width: 520px; color: var(--muted); }
.contact-route:hover p { color: #bdcad2; }
.email-display { max-width: none; overflow-wrap: normal; word-break: normal; font-size: clamp(2.35rem, 5.7vw, 6.5rem); }
.legal-copy { max-width: 860px; }
.legal-copy h2 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.legal-copy p, .legal-copy li { color: var(--muted); line-height: 1.75; }
.legal-copy ul { padding-left: 1.2rem; }
.error-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--navy); color: white; }
.error-main { flex: 1; padding: clamp(5rem, 12vw, 11rem) var(--gutter); display: grid; grid-template-columns: .5fr 1fr; gap: 4rem; align-items: end; }
.error-code { font-family: var(--serif); font-size: clamp(8rem, 22vw, 24rem); line-height: .65; color: rgba(255,255,255,.1); }
.error-copy h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
.error-page .section-lead { color: #b7c5cd; }
.error-page .error-main .button { color: white; }
.error-page .site-header .button { color: var(--ink); }

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

@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }
  .value-stack { grid-template-columns: repeat(3, 1fr); }
  .value-stack article:nth-child(n+4) { min-height: 230px; }
  .interest-grid, .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-row { grid-template-columns: 3rem minmax(220px, .65fr) minmax(260px, 1fr) auto; gap: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header { min-height: 74px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 690px; }
  .hero-visual { min-height: 560px; }
  .platform-strip { grid-template-columns: repeat(2, 1fr); }
  .platform-strip-label { grid-column: 1 / -1; min-height: 64px; border-bottom: 1px solid var(--line); }
  .platform-strip > * { min-height: 86px; border-bottom: 1px solid var(--line); }
  .principle-intro, .exposure-heading, .platform-heading, .board-grid, .operating-grid, .founder-grid, .split, .page-hero, .regional-heading { grid-template-columns: 1fr; }
  .principle-intro .section-lead, .exposure-heading .section-lead, .platform-heading .section-lead { margin-top: 1rem; }
  .principle-map { grid-template-columns: 1fr; }
  .principle-card { min-height: 360px; }
  .principle-axis { min-height: 100px; flex-direction: row; border-inline: 0; border-block: 1px solid var(--line); }
  .principle-axis i { width: min(14vw, 90px); height: 1px; }
  .value-stack { grid-template-columns: repeat(2, 1fr); }
  .exposure-grid { grid-template-columns: 1fr; }
  .region-card + .region-card { border-left: 0; border-top: 1px solid var(--line-dark); }
  .board-copy { position: static; }
  .page-hero { min-height: auto; }
  .page-hero-side { min-height: 370px; }
  .activity-row { grid-template-columns: 2.5rem 1fr auto; }
  .activity-row p { grid-column: 2 / 4; }
  .capability-grid, .contact-grid, .thesis-grid { grid-template-columns: 1fr; }
  .criteria-list { grid-template-columns: 1fr; }
  .criterion, .criterion:nth-child(3n+2), .criterion:nth-child(3n+3) { padding: 1.5rem 0; border-left: 0; }
  .process-step { grid-template-columns: 2.5rem 1fr; }
  .process-step p { grid-column: 2; }
  .cta-band { grid-template-columns: 1fr; align-items: start; }
  .footer-brand { grid-column: 1 / -1; }
  .error-main { grid-template-columns: 1fr; align-items: center; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; padding-block: .85rem; }
  .brand img { width: 198px; }
  .section { padding-block: 4.75rem; }
  .section-title { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-copy { min-height: 650px; padding-top: 4rem; }
  .hero-copy::before { display: none; }
  h1 { font-size: clamp(3.65rem, 17.5vw, 5.4rem); }
  .hero-intro { margin-top: 2rem; }
  .hero-partner { font-size: .82rem; }
  .hero-foot { gap: .65rem; }
  .hero-foot span { width: 100%; justify-content: space-between; }
  .hero-foot span::after { display: none; }
  .hero-visual { min-height: 440px; }
  .platform-strip { grid-template-columns: 1fr; }
  .platform-strip-label { grid-column: auto; }
  .platform-strip > * { border-right: 0; }
  .button { width: 100%; }
  .value-thesis { grid-template-columns: 1fr; }
  .value-thesis span + span { border-left: 0; border-top: 1px solid var(--line-dark); }
  .principle-axis { padding-inline: .75rem; gap: .5rem; }
  .principle-axis i { width: 24px; }
  .principle-axis span { font-size: .52rem; }
  .value-stack { grid-template-columns: 1fr; }
  .value-stack article { min-height: 220px; }
  .region-card header { flex-direction: column; }
  .region-card header > p { text-align: left; }
  .regional-metrics { grid-template-columns: 1fr; }
  .regional-metrics p { padding: 1.5rem 0; }
  .regional-metrics p + p { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .region-card ul { grid-template-columns: 1fr; }
  .region-card li:nth-child(even) { padding-left: 0; border-left: 0; }
  .partner-line span { flex-basis: 50%; }
  .activity-row { grid-template-columns: 2rem 1fr auto; }
  .activity-row h3 { font-size: 2.35rem; }
  .interest-grid, .phase-grid { grid-template-columns: 1fr; margin-top: 2.75rem; }
  .interest-group, .phase { min-height: auto; }
  .interest-group h3 { margin-top: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .process-step h3 { font-size: 1.6rem; }
  .email-display { overflow-wrap: anywhere; word-break: break-word; font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .error-page .site-header { gap: .75rem; }
  .error-page .site-header .button { width: auto; min-width: 0; min-height: 42px; padding: .65rem .75rem; font-size: .6rem; }
  .error-page .site-header .button::after { display: none; }
  .error-main { gap: 2rem; }
}

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