:root {
  --ink: #06130e;
  --ink-deep: #020805;
  --ink-raised: #0a1d14;
  --paper: #f2f3eb;
  --paper-dim: #a6b3a8;
  --line: rgba(223, 241, 224, 0.2);
  --line-soft: rgba(223, 241, 224, 0.1);
  --moss: #a8f4b8;
  --moss-bright: #dcffe3;
  --amber: #f0b277;
  --shell: min(1320px, calc(100vw - 64px));
  --display: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 4%, rgba(61, 132, 82, 0.08), transparent 34rem),
    var(--ink-deep);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p, blockquote, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }

.page-noise,
.page-aura {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

#network-canvas {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0.76;
  transition: opacity 320ms ease;
  will-change: opacity;
}

.page-aura {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 8%, rgba(65, 147, 88, 0.09), transparent 30rem),
    linear-gradient(180deg, rgba(6, 17, 13, 0.04), var(--ink-deep) 68%);
}

.page-noise {
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(180deg, rgba(2, 8, 5, 0.94), rgba(2, 8, 5, 0.72));
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.wordmark { display: block; width: 188px; line-height: 0; }
.wordmark img { display: block; width: 100%; height: auto; }

.site-nav { display: flex; gap: 34px; color: var(--paper-dim); font-size: 0.73rem; letter-spacing: 0.025em; }
.site-nav a { position: relative; padding-block: 9px; }
.site-nav a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; content: ""; background: var(--moss); transform: scaleX(0); transform-origin: right; transition: transform 220ms ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a,
.header-cta,
.primary-link,
.venture-link,
.contact-link,
.site-footer a { transition: color 220ms ease; }
.site-nav a:hover,
.site-footer a:hover { color: var(--moss-bright); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
}
.header-cta span { color: var(--moss); font-size: 1rem; transition: transform 200ms ease; }
.header-cta:hover { color: var(--moss-bright); }
.header-cta:hover span { transform: translate(2px, -2px); }

.eyebrow,
.section-label,
.venture-meta,
.hero-scene-copy,
.site-footer {
  font: 400 0.66rem/1.4 var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 27px;
  color: var(--paper-dim);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); }

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(52px, 6vw, 94px);
  align-items: center;
  padding-block: clamp(48px, 7vh, 78px) clamp(78px, 10vh, 112px);
}
.hero-copy { position: relative; z-index: 2; width: min(100%, 720px); }

.hero-quote {
  max-width: 625px;
  margin: 44px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(165, 240, 181, 0.28);
}
.hero-quote p { max-width: 590px; margin-bottom: 10px; color: rgba(242, 243, 235, 0.78); font: italic 400 clamp(0.94rem, 1.1vw, 1.08rem)/1.5 var(--display); }
.hero-quote cite { color: rgba(242, 243, 235, 0.4); font: normal 0.54rem/1.5 var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }

h1 {
  max-width: 710px;
  margin-bottom: 28px;
  font: 500 clamp(4rem, 6.5vw, 6.65rem)/0.89 var(--display);
  letter-spacing: -0.065em;
}
h1 em,
h2 em { color: var(--moss); font-weight: 400; }

.hero-lede { max-width: 610px; margin-bottom: 31px; color: rgba(242, 243, 235, 0.7); font-size: clamp(0.98rem, 1.25vw, 1.1rem); line-height: 1.66; }
.hero-actions { display: flex; gap: 27px; align-items: center; }
.primary-link { display: inline-flex; gap: 11px; align-items: center; font-size: 0.84rem; }
.primary-link span { color: var(--moss); font-size: 1.2rem; transition: transform 180ms ease; }
.primary-link:hover { color: var(--moss-bright); }
.primary-link:hover span { transform: translateY(3px); }
.hero-fields { color: rgba(237, 241, 232, 0.4); font: 0.57rem var(--mono); letter-spacing: 0.055em; text-transform: uppercase; }

.hero-portal {
  position: relative;
  z-index: 1;
  min-height: clamp(540px, 68vh, 710px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(220, 244, 225, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 52% 42%, rgba(91, 185, 112, 0.11), transparent 46%),
    linear-gradient(155deg, rgba(13, 35, 23, 0.82), rgba(3, 12, 7, 0.94));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035);
}
.hero-portal::before { position: absolute; inset: 0; z-index: 1; content: ""; pointer-events: none; background: linear-gradient(180deg, rgba(2, 8, 5, 0.08), transparent 32%, transparent 68%, rgba(2, 8, 5, 0.58)); }
.hero-portal__frame { position: absolute; inset: 14px; z-index: 2; pointer-events: none; border: 1px solid rgba(222, 255, 229, 0.08); border-radius: 20px; }
.hero-portal__frame::before,
.hero-portal__frame::after { position: absolute; content: ""; background: rgba(222, 255, 229, 0.09); }
.hero-portal__frame::before { top: 0; bottom: 0; left: 50%; width: 1px; }
.hero-portal__frame::after { top: 50%; right: 0; left: 0; height: 1px; }
.hero-portal__meta,
.hero-portal__axis { position: absolute; z-index: 3; display: flex; color: rgba(242, 243, 235, 0.42); font: 0.54rem var(--mono); letter-spacing: 0.07em; text-transform: uppercase; }
.hero-portal__meta { top: 30px; right: 31px; left: 31px; justify-content: space-between; }
.hero-portal__axis { right: 31px; bottom: 29px; left: 31px; gap: 13px; align-items: center; }
.hero-portal__axis i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--amber), var(--moss)); opacity: 0.5; }

.hero-scene-copy {
  position: absolute;
  right: 31px;
  bottom: 73px;
  z-index: 4;
  width: 190px;
  color: var(--paper-dim);
  text-align: right;
}
.hero-scene-copy > p { margin-bottom: 15px; }
.hero-scene-copy strong { color: var(--paper); font-weight: 500; }
.scene-switcher { display: grid; justify-items: end; gap: 8px; }
.scene-switcher__item { appearance: none; cursor: pointer; border: 0; padding: 2px 0; background: transparent; color: rgba(237, 241, 232, 0.42); font: inherit; text-transform: none; transition: color 180ms ease; }
.scene-switcher__item:hover,
.scene-switcher__item.is-active { color: var(--paper); }
.scene-switcher__signal { display: inline-block; width: 6px; height: 6px; margin-right: 6px; vertical-align: 1px; border-radius: 50%; background: var(--paper-dim); }
.scene-switcher__item.is-active .scene-switcher__signal { background: var(--moss); }
.scene-switcher__signal--amber { background: var(--amber); }
.scene-switcher__signal--moss { background: #78d693; }

.hero-scroll { position: absolute; bottom: 29px; left: 0; display: flex; gap: 11px; align-items: center; color: rgba(237, 241, 232, 0.38); font: 0.6rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-scroll i { display: block; position: relative; width: 48px; height: 1px; background: var(--line); overflow: hidden; }
.hero-scroll i::after { position: absolute; content: ""; width: 18px; height: 1px; background: var(--moss); animation: scan 2.4s ease-in-out infinite; }

.section-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding-block: clamp(105px, 11vw, 165px); }
.section-label { display: flex; gap: 17px; color: var(--paper-dim); }
.section-label span { color: var(--moss); }
.section-label p { margin: 0; }

.house-copy { max-width: 860px; }
.house-copy h2,
.projects h2,
.capabilities h2,
.statement h2,
.contact h2 { font: 400 clamp(2.8rem, 5vw, 5.7rem)/0.93 var(--display); letter-spacing: -0.062em; }
.house-copy h2 { margin-bottom: 44px; }
.house-text { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 46px; }
.house-text p { margin-bottom: 0; color: var(--paper-dim); font-size: 1rem; line-height: 1.68; }
.house-text .house-intro { grid-column: 1 / -1; max-width: 660px; color: var(--paper); font: 400 clamp(1.5rem, 2.3vw, 2.35rem)/1.18 var(--display); letter-spacing: -0.035em; }

.founder-note { margin: 54px 0 0; padding: 25px 0 0 25px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.founder-note blockquote { max-width: 720px; margin-bottom: 20px; color: rgba(237, 241, 232, 0.9); font: italic 400 clamp(1.35rem, 2.1vw, 2.05rem)/1.3 var(--display); }
.founder-note figcaption { color: var(--paper-dim); font: 0.62rem var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }

.operating-model { display: grid; grid-template-columns: 1.12fr 0.88fr 1fr; gap: 12px; padding-bottom: clamp(76px, 8vw, 118px); }
.operating-step { min-height: 330px; padding: 28px 29px 32px; border: 1px solid var(--line-soft); border-radius: 17px; background: linear-gradient(145deg, rgba(11, 29, 19, 0.7), rgba(4, 13, 8, 0.44)); transition: transform 300ms ease, border-color 300ms ease, background 300ms ease; }
.operating-step:nth-child(2) { margin-top: 34px; }
.operating-step:hover { border-color: rgba(168, 244, 184, 0.25); background: linear-gradient(145deg, rgba(14, 36, 24, 0.8), rgba(4, 13, 8, 0.52)); transform: translateY(-5px); }
.operating-step__index { display: block; margin-bottom: 24px; color: var(--moss); font: 0.66rem var(--mono); }
.operating-step__verb { margin-bottom: 68px; color: var(--paper-dim); font: 0.62rem var(--mono); letter-spacing: 0.055em; text-transform: uppercase; }
.operating-step h3 { max-width: 300px; margin-bottom: 15px; font: 500 clamp(1.6rem, 2.1vw, 2.2rem)/1.02 var(--display); letter-spacing: -0.045em; }
.operating-step > p:last-child { max-width: 320px; margin-bottom: 0; color: var(--paper-dim); font-size: 0.89rem; line-height: 1.58; }

.visual-chapter { padding-bottom: clamp(105px, 12vw, 175px); }
.visual-chapter__frame { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--ink-raised); box-shadow: 0 42px 110px rgba(0, 0, 0, 0.32); }
.visual-chapter__frame::before,
.visual-chapter__frame::after { position: absolute; z-index: 2; content: ""; pointer-events: none; }
.visual-chapter__frame::before { inset: 0; background: linear-gradient(180deg, rgba(2, 8, 5, 0.04), transparent 46%, rgba(2, 8, 5, 0.78)); }
.visual-chapter__frame::after { inset: 14px; border: 1px solid rgba(242, 243, 235, 0.12); border-radius: 18px; }
.visual-chapter img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter 1.2s ease; }
.visual-chapter__frame:hover img { filter: saturate(1.07) contrast(1.03); transform: scale(1.018); }
.visual-chapter figcaption { position: absolute; right: 34px; bottom: 31px; left: 34px; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; color: rgba(242, 243, 235, 0.62); }
.visual-chapter figcaption span { font: 0.57rem var(--mono); letter-spacing: 0.07em; text-transform: uppercase; }
.visual-chapter figcaption p { margin: 0; color: var(--paper); font: italic 400 clamp(1.4rem, 2.5vw, 2.65rem)/1 var(--display); letter-spacing: -0.035em; }

.projects { padding-block: 92px clamp(110px, 12vw, 175px); border-top: 1px solid var(--line-soft); }
.projects-head { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; margin-bottom: 60px; }
.projects h2 { margin-bottom: 25px; }
.projects-intro { max-width: 560px; margin: 0; color: var(--paper-dim); font-size: 0.98rem; line-height: 1.62; }
.venture-list { display: grid; gap: 22px; }

.venture,
.next-venture { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(9, 26, 17, 0.9), rgba(4, 13, 8, 0.78)); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18); }
.venture::before { position: absolute; top: -1px; left: 9%; width: 28%; height: 2px; content: ""; background: var(--moss); box-shadow: 0 0 28px rgba(168, 244, 184, 0.25); }
.venture--vefa::before { background: var(--amber); box-shadow: 0 0 28px rgba(240, 178, 119, 0.22); }
.venture-meta { display: flex; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid var(--line-soft); color: var(--paper-dim); }
.venture-meta span:first-child { color: var(--moss); }
.venture--vefa .venture-meta span:first-child { color: var(--amber); }
.venture-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr); gap: 62px; padding-top: 34px; }
.venture--mycelia .venture-grid { grid-template-columns: minmax(440px, 1.1fr) minmax(0, 0.9fr); }
.venture--mycelia .venture-copy { order: 2; }
.venture--mycelia .venture-proof { order: 1; }
.venture-copy { padding: 20px 0 10px; }
.venture-copy h3 { margin-bottom: 12px; font: 500 clamp(3.2rem, 6vw, 6.5rem)/0.85 var(--display); letter-spacing: -0.065em; }
.venture-tagline { margin-bottom: 30px; color: var(--paper); font: 400 clamp(1.25rem, 2vw, 1.8rem)/1.2 var(--display); }
.venture-copy > p:not(.venture-tagline) { max-width: 565px; color: rgba(237, 241, 232, 0.7); font-size: 0.96rem; line-height: 1.65; }
.venture-features { display: grid; gap: 10px; margin: 29px 0 33px; padding: 0; list-style: none; }
.venture-features li { position: relative; padding-left: 18px; color: var(--paper-dim); font-size: 0.82rem; line-height: 1.45; }
.venture-features li::before { position: absolute; top: 0.65em; left: 0; width: 6px; height: 1px; content: ""; background: var(--moss); }
.venture--vefa .venture-features li::before { background: var(--amber); }
.venture-copy > .vefa-principle { margin: 27px 0 0; color: #f8dec4; font: italic 400 1.08rem/1.35 var(--display); }
.vefa-actions { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0 34px; padding: 0; border-top: 1px solid rgba(240, 178, 119, 0.18); border-bottom: 1px solid rgba(240, 178, 119, 0.18); list-style: none; }
.vefa-actions li { display: grid; min-width: 0; gap: 7px; padding: 14px 10px 14px 0; color: rgba(237, 241, 232, 0.78); border-right: 1px solid rgba(240, 178, 119, 0.18); font-size: 0.66rem; }
.vefa-actions li + li { padding-left: 13px; }
.vefa-actions li:last-child { border-right: 0; }
.vefa-actions span { color: var(--amber); font: 0.5rem var(--mono); }
.venture-link { display: inline-flex; gap: 10px; align-items: center; color: var(--moss-bright); font-size: 0.8rem; }
.venture--vefa .venture-link { color: #ffd5ad; }
.venture-link span { transition: transform 180ms ease; }
.venture-link:hover span { transform: translate(3px, -3px); }
.venture-link--inactive { color: var(--paper-dim); }

.venture-proof { position: relative; min-height: 440px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 17px; background: var(--ink); box-shadow: inset 0 1px rgba(255, 255, 255, 0.025); }
.venture-proof--vefa {
  --vefa-blue: #3498db;
  --vefa-orange: #ff4000;
  min-height: 555px;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.16);
  background: #0f172a;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}
.venture-proof--mycelia { background: linear-gradient(145deg, rgba(10, 31, 22, 0.96), rgba(4, 14, 9, 0.96)); }
.venture-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-bottom: 1px solid var(--line-soft); }
.venture-stats div { padding: 20px; border-right: 1px solid var(--line-soft); }
.venture-stats div:last-child { border-right: 0; }
.venture-stats dt { margin-bottom: 4px; color: var(--paper); font: 500 clamp(1.35rem, 2vw, 2rem)/1 var(--display); }
.venture-stats dd { color: var(--paper-dim); font: 0.54rem var(--mono); letter-spacing: 0.055em; text-transform: uppercase; }
.venture-visual { position: absolute; inset: 74px 0 0; overflow: hidden; }

.vefa-story { position: absolute; inset: 0; margin: 0; overflow: hidden; background: #0f172a; }
.vefa-story::before,
.vefa-story::after { position: absolute; inset: 0; z-index: 1; content: ""; pointer-events: none; }
.vefa-story::before { background: linear-gradient(90deg, rgba(248, 250, 252, 0.38), transparent 62%), linear-gradient(180deg, transparent 48%, rgba(2, 6, 23, 0.88) 100%); }
.vefa-story::after { border: 1px solid rgba(255, 255, 255, 0.12); border-radius: inherit; box-shadow: inset 0 0 70px rgba(2, 6, 23, 0.2); }
.vefa-story > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% center; filter: saturate(0.92) contrast(1.02); transform: scale(1.02); transition: filter 700ms cubic-bezier(.22,1,.36,1), transform 900ms cubic-bezier(.22,1,.36,1); }
.venture--vefa:hover .vefa-story > img { filter: saturate(1) contrast(1.02); transform: scale(1.045); }
.vefa-story__brand { position: absolute; top: 20px; left: 20px; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 8px 12px 8px 9px; color: #0f172a; border: 1px solid #e2e8f0; border-radius: 12px; background: #ffffff; box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16); }
.vefa-story__brand > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 7px; background: #f8fafc; }
.vefa-story__brand img { display: block; width: 23px; height: 23px; object-fit: contain; }
.vefa-story__brand p { display: grid; gap: 2px; margin: 0; }
.vefa-story__brand strong { font-size: 0.66rem; line-height: 1; }
.vefa-story__brand small { color: #475569; font-size: 0.43rem; line-height: 1; }

.vefa-story__question { position: absolute; top: 94px; left: 20px; z-index: 3; width: min(300px, 52%); padding: 18px 20px 17px; color: #0f172a; border-left: 3px solid var(--vefa-orange); border-radius: 4px 12px 12px 4px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16); }
.vefa-story__question > p { margin-bottom: 9px; color: #ff4000; font-size: 0.43rem; font-weight: 700; letter-spacing: 0.065em; text-transform: uppercase; }
.vefa-story__question blockquote { margin: 0; color: #020617; font: 600 clamp(0.92rem, 1.35vw, 1.18rem)/1.16 Charter, "Bitstream Charter", Georgia, serif; letter-spacing: -0.02em; }
.vefa-story__question > span { display: flex; align-items: center; gap: 7px; margin-top: 11px; color: #475569; font-size: 0.46rem; font-weight: 600; }
.vefa-story__question > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--vefa-blue); box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.12); }

.vefa-story__caption { position: absolute; right: 20px; bottom: 24px; left: 22px; z-index: 3; display: grid; max-width: 72%; gap: 7px; color: #ffffff; text-shadow: 0 2px 16px rgba(2, 6, 23, 0.35); }
.vefa-story__caption span { font: 0.48rem var(--mono); letter-spacing: 0.055em; text-transform: uppercase; }
.vefa-story__caption strong { max-width: 430px; font: 500 clamp(1.45rem, 2.4vw, 2.25rem)/0.98 var(--display); letter-spacing: -0.04em; }

.mycelium-lines { position: absolute; inset: 8% -5% 3% 22%; opacity: 0.42; background: repeating-radial-gradient(ellipse at 30% 90%, transparent 0 15px, rgba(146, 255, 177, 0.28) 16px 17px, transparent 18px 30px); transform: rotate(-10deg) scaleX(1.7); mask-image: linear-gradient(to bottom, black, transparent 90%); }
.mycelia-orb { position: absolute; display: block; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #edffe5 0, #a6ffc5 10%, rgba(94, 194, 120, 0.38) 38%, rgba(14, 55, 34, 0.1) 66%, transparent 70%); }
.mycelia-orb--one { top: 22%; left: 42%; width: 132px; height: 132px; }
.mycelia-orb--two { top: 47%; left: 70%; width: 62px; height: 62px; opacity: 0.72; }
.mycelia-orb--three { top: 58%; left: 24%; width: 76px; height: 76px; opacity: 0.58; }

.next-venture { background: rgba(5, 16, 10, 0.46); box-shadow: none; }
.next-venture__copy { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding-top: 35px; }
.next-venture h3 { margin-bottom: 0; color: var(--paper-dim); font: italic 400 clamp(2.8rem, 5vw, 5.4rem)/0.9 var(--display); letter-spacing: -0.05em; }
.next-venture__copy p { max-width: 680px; margin: 0; color: var(--paper-dim); font-size: 1rem; line-height: 1.68; }

.capabilities { padding-block: clamp(105px, 11vw, 165px); border-top: 1px solid var(--line-soft); }
.capabilities-head { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: end; margin: 42px 0 54px 18%; }
.capabilities-head h2 { margin-bottom: 0; }
.capabilities-head > p { max-width: 420px; margin-bottom: 5px; color: var(--paper-dim); line-height: 1.65; }
.capability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.capability { display: grid; min-height: 176px; grid-template-columns: 54px 1fr; grid-template-rows: auto 1fr; column-gap: 20px; padding: 27px 28px 29px; border: 1px solid var(--line-soft); border-radius: 15px; background: rgba(8, 24, 15, 0.46); }
.capability span { display: block; grid-row: 1 / 3; margin: 4px 0 0; color: var(--moss); font: 0.64rem var(--mono); }
.capability h3 { margin-bottom: 13px; font: 500 clamp(1.5rem, 2vw, 2rem)/1 var(--display); letter-spacing: -0.04em; }
.capability p { max-width: 340px; margin-bottom: 0; color: var(--paper-dim); font-size: 0.86rem; line-height: 1.58; }

.statement { padding-block: clamp(110px, 14vw, 190px); border-top: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.45fr); gap: clamp(58px, 8vw, 128px); align-items: start; }
.statement-origin { position: relative; padding: 34px 34px 38px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(16, 35, 25, 0.8), rgba(5, 15, 10, 0.72)); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22); }
.statement-origin::before,
.statement-origin::after { position: absolute; content: ""; pointer-events: none; }
.statement-origin::before { inset: 9px; border: 1px solid rgba(165, 240, 181, 0.08); border-radius: 15px; }
.statement-origin::after { top: -1px; left: 18%; width: 32%; height: 2px; background: var(--moss); box-shadow: 0 0 22px rgba(165, 240, 181, 0.26); }
.statement .eyebrow { position: relative; z-index: 1; margin-bottom: clamp(72px, 9vw, 128px); }
.statement-quote { position: relative; z-index: 1; margin: 0; }
.statement-quote p { margin-bottom: 24px; color: rgba(237, 241, 232, 0.9); font: italic 400 clamp(1.45rem, 2.4vw, 2.4rem)/1.24 var(--display); letter-spacing: -0.03em; }
.statement-quote cite { display: block; max-width: 290px; color: rgba(237, 241, 232, 0.42); font: normal 0.57rem/1.55 var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }
.statement-answer { padding-top: clamp(14px, 3vw, 48px); }
.statement-answer > p { max-width: 690px; margin-bottom: clamp(42px, 6vw, 82px); color: var(--paper-dim); font-size: 1rem; line-height: 1.72; }
.statement h2 { max-width: 900px; margin: 0; }

.contact { display: flex; min-height: 440px; margin-bottom: 48px; padding: 54px 56px 48px; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, rgba(14, 39, 25, 0.86), rgba(4, 14, 8, 0.9)); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22); }
.contact h2 { margin-bottom: 18px; }
.contact-copy { color: var(--paper-dim); font-size: 0.93rem; }
.contact-link { display: flex; justify-content: space-between; align-items: baseline; width: 100%; padding-bottom: 16px; border-bottom: 1px solid var(--paper-dim); font: 400 clamp(1.3rem, 3.3vw, 3.9rem)/1 var(--display); letter-spacing: -0.05em; }
.contact-link span:last-child { color: var(--moss); font-family: var(--sans); font-size: 0.72em; transition: transform 250ms ease; }
.contact-link:hover { color: var(--moss-bright); }
.contact-link:hover span:last-child { transform: translate(5px, -5px); }

.site-footer { display: flex; justify-content: space-between; padding-block: 26px 34px; color: rgba(237, 241, 232, 0.44); border-top: 1px solid var(--line-soft); }
.site-footer a { color: var(--paper-dim); }

.intro-reveal { opacity: 0; transform: translateY(16px); animation: enter 900ms cubic-bezier(.2,.8,.2,1) forwards; }
.intro-reveal--late { animation-delay: 100ms; }
.intro-reveal--last { animation-delay: 210ms; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 750ms cubic-bezier(.2,.8,.2,1), transform 750ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.operating-step:nth-child(2),
.capability:nth-child(2) { transition-delay: 80ms; }
.operating-step:nth-child(3),
.capability:nth-child(3) { transition-delay: 160ms; }
.capability:nth-child(4) { transition-delay: 240ms; }

@keyframes enter { to { opacity: 1; transform: translateY(0); } }
@keyframes scan { 0%, 100% { transform: translateX(-18px); } 50% { transform: translateX(49px); } }

@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr); gap: 36px; }
  .hero-portal { min-height: 560px; }
  h1 { font-size: clamp(3.8rem, 6.8vw, 5.4rem); }
  .venture-grid { grid-template-columns: 1fr; gap: 30px; }
  .venture--mycelia .venture-grid { grid-template-columns: 1fr; }
  .venture--mycelia .venture-copy,
  .venture--mycelia .venture-proof { order: initial; }
  .venture-proof { min-height: 420px; }
  .venture-proof--vefa { min-height: 540px; }
  .capabilities-head { margin-left: 0; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 40px, 1320px); }
  .site-header { height: 75px; grid-template-columns: 1fr auto; }
  .wordmark { width: 165px; }
  .site-nav { display: none; }
  .header-cta { font-size: 0.72rem; }
  #network-canvas { height: 100%; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 52px; padding-block: 64px 92px; align-items: flex-start; }
  .hero-copy { width: 100%; }
  .hero-quote { max-width: 88%; margin-top: 40px; }
  .hero-portal { width: 100%; min-height: 480px; }
  h1 { font-size: clamp(3.5rem, 15vw, 6rem); line-height: 0.88; }
  .hero-lede { max-width: 90%; font-size: 0.96rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-scene-copy { right: 31px; bottom: 73px; width: 168px; font-size: 0.54rem; }
  .hero-scroll { bottom: 24px; }
  .section-grid,
  .projects-head,
  .next-venture__copy,
  .capabilities-head { grid-template-columns: 1fr; gap: 34px; }
  .section-grid { padding-block: 105px; }
  .house-copy h2 { margin-bottom: 40px; }
  .house-text { grid-template-columns: 1fr; gap: 22px; }
  .house-text .house-intro { grid-column: auto; }
  .founder-note { margin-top: 48px; padding-left: 20px; }
  .operating-model { grid-template-columns: 1fr; padding-bottom: 72px; }
  .operating-step:nth-child(2) { margin-top: 0; }
  .operating-step,
  .operating-step + .operating-step { display: grid; min-height: 0; grid-template-columns: 45px 105px 1fr; gap: 0 12px; padding: 24px; border: 1px solid var(--line-soft); }
  .operating-step__index,
  .operating-step__verb { margin: 3px 0 0; }
  .operating-step h3 { margin-bottom: 10px; }
  .operating-step > p:last-child { grid-column: 3; }
  .visual-chapter { padding-bottom: 110px; }
  .visual-chapter__frame { aspect-ratio: 4 / 3; border-radius: 20px; }
  .visual-chapter__frame::after { inset: 10px; border-radius: 14px; }
  .visual-chapter figcaption { right: 24px; bottom: 23px; left: 24px; }
  .projects { padding-block: 78px 110px; }
  .projects-head { margin-bottom: 48px; }
  .venture,
  .next-venture { padding: 20px; }
  .venture-meta { gap: 20px; font-size: 0.54rem; }
  .venture-grid { padding-top: 20px; }
  .venture-copy h3 { font-size: 3.6rem; }
  .venture-proof { min-height: 390px; }
  .venture-proof--vefa { min-height: 535px; }
  .venture-stats div { padding: 15px 12px; }
  .venture-stats dd { font-size: 0.45rem; }
  .capabilities { padding-block: 105px; }
  .capabilities-head { margin: 38px 0 48px; }
  .capability-list { grid-template-columns: 1fr 1fr; }
  .capability,
  .capability + .capability { min-height: 176px; padding: 22px; border: 1px solid var(--line-soft); }
  .capability span { margin: 4px 0 0; }
  .statement { padding-block: 100px; }
  .statement-grid { grid-template-columns: 1fr; gap: 54px; }
  .statement-origin { max-width: 620px; }
  .statement-answer { padding-top: 0; }
  .statement-answer > p { margin-bottom: 42px; }
  .contact { min-height: 400px; padding: 44px 34px 38px; }
  .site-footer { gap: 13px; flex-wrap: wrap; font-size: 0.54rem; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 32px); }
  .hero { padding-top: 45px; }
  .hero-quote { max-width: 100%; margin-top: 32px; }
  .hero-quote p { font-size: 0.95rem; }
  .hero-quote cite { font-size: 0.5rem; letter-spacing: 0.03em; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .hero-fields { display: none; }
  .hero-portal { min-height: 390px; border-radius: 20px; }
  .hero-portal__frame { inset: 10px; border-radius: 14px; }
  .hero-portal__meta { top: 24px; right: 24px; left: 24px; font-size: 0.46rem; }
  .hero-portal__axis { right: 24px; bottom: 22px; left: 24px; font-size: 0.46rem; }
  .hero-scene-copy { display: none; }
  .operating-step,
  .operating-step + .operating-step { display: block; padding: 25px; }
  .operating-step__index { margin-bottom: 34px; }
  .operating-step__verb { margin-bottom: 46px; }
  .operating-step > p:last-child { grid-column: auto; }
  .visual-chapter__frame { aspect-ratio: 4 / 5; }
  .visual-chapter img { object-position: 58% center; }
  .visual-chapter figcaption { align-items: flex-start; flex-direction: column; gap: 10px; }
  .visual-chapter figcaption p { font-size: 1.55rem; }
  .venture-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .venture-proof { min-height: 345px; }
  .venture-proof--vefa { min-height: 570px; }
  .venture-stats dt { font-size: 1.12rem; }
  .venture-stats dd { font-size: 0.4rem; }
  .venture-visual { top: 68px; }
  .vefa-actions li { padding-right: 7px; font-size: 0.56rem; }
  .vefa-actions li + li { padding-left: 9px; }
  .vefa-story > img { object-position: 68% center; }
  .vefa-story__brand { top: 14px; left: 14px; }
  .vefa-story__question { top: 81px; right: auto; left: 14px; width: 76%; }
  .vefa-story__caption { right: 18px; bottom: 20px; left: 18px; max-width: 88%; }
  .vefa-story__caption strong { font-size: 1.55rem; }
  .mycelia-orb--one { width: 105px; height: 105px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability,
  .capability + .capability { min-height: 0; padding: 24px; border: 1px solid var(--line-soft); }
  .capability span { margin: 4px 0 0; }
  .statement-origin { padding: 27px 24px 30px; }
  .statement .eyebrow { margin-bottom: 64px; }
  .statement-quote p { font-size: 1.38rem; }
  .contact { margin-bottom: 24px; padding: 34px 24px 30px; border-radius: 20px; }
}

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