:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #6c6a66;
  --line: rgba(10, 10, 10, .16);
  --accent: #0a6b60;
  --accent-bright: #1fb8a6;
  --accent-solid: #0a6b60;
  --gold: #e8b44c;
  --max: 1240px;
  --pad: clamp(24px, 5vw, 76px);
  --display: "Archivo Black", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; position: relative; z-index: 2; }
.narrow { width: min(1120px, calc(100% - (var(--pad) * 2))); }
.section-pad { padding: clamp(100px, 13vw, 190px) 0; position: relative; overflow: hidden; }
.dark-section { --accent: var(--accent-bright); color: var(--white); background: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-accent { color: var(--accent); }

.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }

.site-header { --accent: var(--accent-bright); position: fixed; z-index: 100; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad); color: white; border-bottom: 1px solid rgba(255,255,255,.12); transition: background .35s, padding .35s, color .35s; }
.site-header.scrolled { --accent: var(--accent-solid); padding-top: 12px; padding-bottom: 12px; color: var(--ink); background: rgba(245,243,238,.92); backdrop-filter: blur(18px); border-color: var(--line); }
.wordmark { display: inline-flex; align-items: center; gap: 6px; font-weight: 950; letter-spacing: -.05em; text-decoration: none; font-size: 21px; line-height: 1; }
.wordmark span:nth-child(2) { color: var(--accent); }
.wordmark i { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(145deg, var(--gold), var(--accent)); box-shadow: 0 0 0 3px rgba(31,184,166,.16); }
.site-header nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.site-header nav a { text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.site-header nav a:not(.nav-cta) { position: relative; }
.site-header nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 16px; border: 1px solid currentColor; }
.nav-cta span { color: var(--accent); margin-left: 5px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; color: currentColor; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s, opacity .25s; }

.eyebrow { margin: 0 0 22px; color: var(--accent); text-transform: uppercase; font-size: 12px; line-height: 1.2; font-weight: 900; letter-spacing: .22em; }
.display { margin: 0; max-width: 880px; font-family: var(--display); font-size: clamp(42px, 4.6vw, 74px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; font-weight: 900; text-wrap: balance; }
.display span:not(.text-accent) { color: var(--accent); }
.lead { font-size: clamp(20px, 2vw, 30px); line-height: 1.45; color: var(--muted); }
.dark-section .lead { color: rgba(255,255,255,.72); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; font-size: 11px; line-height: 1; letter-spacing: .15em; font-weight: 900; transition: transform .25s, background .25s, color .25s, border .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--accent-solid); color: white; }
.button-primary:hover { background: var(--white); color: var(--ink); }
.button-ghost { color: white; border-color: rgba(255,255,255,.4); }
.button-ghost:hover { border-color: var(--white); background: white; color: var(--ink); }

.hero { min-height: 100svh; position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 80px; }
.hero::after { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, #080808 0 44%, rgba(8,8,8,.88) 60%, rgba(8,8,8,.25) 100%); }
.hero-glow { position: absolute; z-index: 0; width: 55vw; height: 55vw; right: -20vw; top: 5vh; border-radius: 50%; background: rgba(31,184,166,.2); filter: blur(100px); }
.hero-network { position: absolute; z-index: 0; width: min(49vw, 720px); max-width: none; right: -2vw; top: 2vh; opacity: .85; mix-blend-mode: screen; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); gap: clamp(50px, 8vw, 130px); align-items: end; }
.hero-copy h1 { margin: 0; max-width: 760px; font-family: var(--display); font-size: clamp(54px, 4.8vw, 76px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; font-weight: 900; text-wrap: balance; }
.hero-copy h1 span { color: var(--accent); }
.hero-lede { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(3px); }
.hero-proof > p { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 800; color: rgba(255,255,255,.5); }
.proof-stat { display: flex; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.proof-stat strong { min-width: 112px; font-family: var(--display); font-size: 54px; line-height: .8; letter-spacing: -.02em; }
.proof-stat span { text-transform: uppercase; font-size: 11px; line-height: 1.45; letter-spacing: .13em; font-weight: 700; color: rgba(255,255,255,.72); }
.proof-stat.accent strong { color: var(--accent); font-size: 46px; }
.proof-foot { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.7); }
.proof-foot b { color: white; }
.hero-bottom { position: absolute; left: 50%; transform: translateX(-50%); bottom: 24px; display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; color: rgba(255,255,255,.55); }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; }
.scroll-cue i { width: 38px; height: 1px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; width: 14px; height: 1px; background: var(--accent); animation: scrollcue 1.5s infinite ease-in-out; }
@keyframes scrollcue { from { left: -14px; } to { left: 42px; } }

.void-section { background: var(--paper); }
.giant-number { position: absolute; z-index: 0; right: -2vw; top: -3vw; font-family: var(--display); font-size: 30vw; line-height: .8; color: rgba(10,10,10,.025); pointer-events: none; }
.void-section .display { max-width: 960px; }
.void-section > .container > .lead { max-width: 760px; margin: 38px 0 70px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.problem-card { padding: 26px 34px 10px 0; min-height: 250px; border-right: 1px solid var(--line); }
.problem-card + .problem-card { padding-left: 34px; }
.problem-card:last-child { border-right: 0; }
.problem-card > span { display: block; margin-bottom: 48px; color: var(--accent); font-size: 11px; font-weight: 900; }
.problem-card h3 { margin: 0 0 16px; font-size: 23px; line-height: 1.1; }
.problem-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }

.solution { background: #0a0a0a; }
.solution .display { max-width: 1100px; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 74px; }
.solution-card { min-height: 430px; padding: 42px; background: #171717; display: flex; flex-direction: column; align-items: flex-start; }
.solution-card-accent { background: var(--accent-solid); }
.card-index { color: rgba(255,255,255,.6); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.solution-card h3 { margin: auto 0 22px; font-family: var(--display); font-size: clamp(38px, 3.5vw, 52px); line-height: .98; text-transform: uppercase; }
.solution-card p { max-width: 560px; margin: 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.55; }
.solution-card-accent p { color: rgba(255,255,255,.82); }
.solution-card a { margin-top: 32px; text-decoration: none; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; font-weight: 900; }
.solution-card a span { margin-left: 12px; }
.solution-thesis { margin: 34px 0 0; font-size: clamp(20px, 2.6vw, 36px); color: rgba(255,255,255,.68); }
.solution-thesis strong { color: white; }

.platform { background: var(--white); }
.platform-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.platform-intro { position: sticky; top: 140px; align-self: start; }
.platform-intro .display { font-size: clamp(46px, 4.6vw, 70px); }
.platform-intro .lead { margin: 36px 0; }
.platform-note { padding: 22px; background: var(--paper); border-left: 4px solid var(--accent); color: var(--muted); line-height: 1.5; }
.platform-note b { color: var(--ink); }
.agent-orbit { position: relative; width: min(100%, 690px); aspect-ratio: 1; margin-inline: auto; }
.orbit-ring { position: absolute; border: 1px solid rgba(10,10,10,.13); border-radius: 50%; inset: 17%; }
.ring-two { inset: 30%; border-style: dashed; animation: spin 30s linear infinite reverse; }
.ring-one { animation: spin 45s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core { --accent: var(--accent-bright); position: absolute; left: 50%; top: 50%; width: 190px; aspect-ratio: 1; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: white; background: var(--ink); box-shadow: 0 24px 80px rgba(0,0,0,.2); }
.orbit-core span, .orbit-core strong { font-size: 24px; line-height: .9; letter-spacing: -.04em; }
.orbit-core strong { color: var(--accent); }
.orbit-core small { margin-top: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; }
.agent { position: absolute; width: 155px; padding: 16px; background: var(--paper); box-shadow: 0 16px 55px rgba(0,0,0,.08); border-top: 3px solid var(--accent); transition: transform .25s, background .25s, color .25s; }
.agent:hover { transform: translateY(-6px); color: white; background: var(--accent); }
.agent b { display: block; margin-bottom: 17px; color: var(--accent); font-size: 10px; }
.agent:hover b { color: white; }
.agent span { display: block; font-weight: 850; }
.agent small { display: block; margin-top: 5px; color: var(--muted); line-height: 1.3; }
.agent:hover small { color: rgba(255,255,255,.7); }
.agent-1 { left: 43%; top: 0; }.agent-2 { right: 3%; top: 18%; }.agent-3 { right: 0; bottom: 21%; }.agent-4 { right: 29%; bottom: 0; }.agent-5 { left: 5%; bottom: 8%; }.agent-6 { left: -3%; top: 36%; }.agent-7 { left: 12%; top: 6%; }

.proof-section { background: #111; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-heading .lead { margin: 0 0 5px; }
.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.2); }
.pipeline-step { position: relative; min-height: 300px; padding: 24px 20px 20px 0; border-right: 1px solid rgba(255,255,255,.12); }
.pipeline-step + .pipeline-step { padding-left: 20px; }
.pipeline-step > b { color: rgba(255,255,255,.55); font-size: 11px; }
.pipeline-step > i { position: absolute; top: -5px; left: 0; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(31,184,166,.18); }
.pipeline-step h3 { margin: 82px 0 16px; font-family: var(--display); text-transform: uppercase; font-size: clamp(23px, 2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.pipeline-step p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.4; }
.proof-delivery { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.5); }
.proof-delivery span { color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.proof-delivery p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.6; }

.moat { background: var(--paper); }
.moat-layout { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 9vw, 130px); margin-top: 80px; align-items: center; }
.data-stack { border-top: 1px solid var(--ink); }
.data-row { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 20px; min-height: 76px; border-bottom: 1px solid var(--line); }
.data-row b { color: var(--accent); font-size: 10px; }
.data-row span { font-weight: 650; }
.flywheel { text-align: center; }
.flywheel-ring { position: relative; width: min(380px, 100%); aspect-ratio: 1; margin-inline: auto; border: 1px solid var(--line); border-radius: 50%; animation: spin 40s linear infinite; }
.flywheel-ring::before { content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 16px solid var(--accent); border-left-color: transparent; transform: rotate(30deg); }
.flywheel-ring span { position: absolute; padding: 7px 11px; background: var(--paper); text-transform: uppercase; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.flywheel-ring span:nth-child(1) { top: -8px; left: 43%; }.flywheel-ring span:nth-child(2) { top: 45%; right: -16px; }.flywheel-ring span:nth-child(3) { bottom: -8px; left: 43%; }.flywheel-ring span:nth-child(4) { top: 45%; left: -34px; }
.flywheel-ring strong { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: 58px; color: var(--accent); }
.flywheel h3 { margin: 35px auto 12px; max-width: 460px; font-size: 26px; }
.flywheel p { max-width: 500px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.traction-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 90px; padding-top: 28px; border-top: 1px solid var(--ink); }
.traction-strip p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.traction-strip span { display: block; margin-bottom: 8px; color: var(--accent); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .12em; }

.market { background: #0b0b0b; isolation: isolate; }
.market-map { position: absolute; inset: 0; z-index: 0; opacity: .15; background-image: radial-gradient(circle at 72% 20%, var(--accent) 0 2px, transparent 3px), radial-gradient(circle at 85% 55%, var(--accent) 0 2px, transparent 3px), radial-gradient(circle at 63% 70%, var(--accent) 0 2px, transparent 3px), linear-gradient(125deg, transparent 60%, rgba(31,184,166,.2) 60.2%, transparent 60.6%); background-size: 200px 200px, 270px 270px, 330px 330px, 100% 100%; }
.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 95px; border-top: 1px solid rgba(255,255,255,.2); }
.market-stat { min-height: 270px; padding: 28px 30px 20px 0; border-right: 1px solid rgba(255,255,255,.15); }
.market-stat + .market-stat { padding-left: 30px; }
.market-stat strong { display: block; font-family: var(--display); font-size: clamp(54px, 6.5vw, 96px); line-height: .92; letter-spacing: -.04em; }
.market-stat strong:not([data-count]) { font-size: clamp(36px, 3.4vw, 54px); letter-spacing: -.05em; }
.market-stat > span { display: inline-block; margin-top: 28px; color: var(--accent); font-weight: 900; font-size: 11px; letter-spacing: .18em; }
.market-stat p { margin: 8px 0 0; color: rgba(255,255,255,.68); text-transform: uppercase; font-size: 11px; letter-spacing: .08em; line-height: 1.5; }
.market-stat.featured strong { color: var(--accent); }
.market-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.55); }
.market-bottom p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.market-bottom b, .market-bottom strong { color: white; }
.horizontal-thesis { font-size: 22px; }

.business { background: var(--white); }
.business .section-heading .lead { color: var(--muted); }
.revenue-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 85px; }
.revenue-card { min-height: 430px; padding: 30px; border: 1px solid var(--line); margin-right: -1px; display: flex; flex-direction: column; transition: transform .3s, background .3s, color .3s; }
.revenue-card:hover { position: relative; z-index: 2; transform: translateY(-10px); color: white; background: var(--ink); }
.revenue-card > span { color: var(--accent); font-weight: 900; font-size: 10px; }
.revenue-card h3 { margin: auto 0 20px; font-family: var(--display); text-transform: uppercase; font-size: clamp(30px, 3.3vw, 48px); line-height: 1; }
.revenue-card p { margin: 0; min-height: 108px; color: var(--muted); line-height: 1.6; }
.revenue-card:hover p { color: rgba(255,255,255,.65); }
.revenue-card small { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); text-transform: uppercase; color: var(--accent); font-size: 9px; font-weight: 900; letter-spacing: .12em; }

.team { background: #111; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 85px; }
.person-card { display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; gap: 34px; padding: 28px; background: #191919; border: 1px solid rgba(255,255,255,.08); align-items: center; }
.portrait-wrap { overflow: hidden; border-radius: 50%; border: 3px solid var(--accent); aspect-ratio: 1; background: #ddd; }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; }
.person-copy h3 { margin: 0; color: var(--accent); font-family: var(--display); font-size: 34px; line-height: 1; text-transform: uppercase; }
.person-copy .role { margin: 12px 0 25px; min-height: 30px; color: white; font-size: 10px; line-height: 1.4; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.person-copy ul { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; }
.person-copy li { position: relative; padding-left: 14px; margin: 7px 0; }
.person-copy li::before { content: ""; position: absolute; left: 0; top: .65em; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.team-role-card { position: relative; min-height: 290px; padding: 32px 34px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: end; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(135deg, #171717, #0d0d0d); overflow: hidden; }
.team-role-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -75px; top: -120px; border: 1px solid rgba(31,184,166,.36); border-radius: 50%; box-shadow: 0 0 0 32px rgba(31,184,166,.06), 0 0 0 65px rgba(31,184,166,.035); }
.team-role-card > * { position: relative; z-index: 1; }
.team-role-index { align-self: start; color: var(--accent); font-family: var(--display); font-size: 18px; }
.team-role-label { margin: 0 0 18px; color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.team-role-card h3 { max-width: 420px; margin: 0 0 14px; font-family: var(--display); font-size: clamp(30px, 3vw, 42px); line-height: 1; text-transform: uppercase; }
.team-role-card div > p:last-child { max-width: 490px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.6; }

.questions { padding: 150px 0; background: #111; }
.questions-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq { border-top: 1px solid rgba(255,255,255,.4); }
.faq details { border-bottom: 1px solid rgba(255,255,255,.14); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--accent); font-size: 26px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -8px 0 28px; max-width: 700px; color: rgba(255,255,255,.72); line-height: 1.7; }

.final-cta { position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; background: #090909; }
.cta-network { position: absolute; z-index: 0; width: 54vw; max-width: 800px; right: -4vw; top: -10vw; opacity: .4; mix-blend-mode: screen; }
.final-cta .container { padding: 120px 0; }
.final-cta h2 { margin: 0; max-width: 900px; font-family: var(--display); font-size: clamp(58px, 6.5vw, 96px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; text-wrap: balance; }
.final-cta h2 span { color: var(--accent); }
.cta-row { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.4); }
.cta-row p { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6; }

.contact-page { min-height: 100svh; display: flex; flex-direction: column; background: #090909; }
.contact-main { position: relative; flex: 1; overflow: hidden; display: flex; align-items: center; min-height: calc(100svh - 110px); isolation: isolate; }
.contact-main::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, #090909 0 52%, rgba(9,9,9,.72) 76%, rgba(9,9,9,.2) 100%); }
.contact-network { position: absolute; z-index: -2; right: -3vw; top: 2vh; width: min(54vw, 850px); max-width: none; opacity: .46; mix-blend-mode: screen; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 9vw, 150px); align-items: center; padding: 150px 0 90px; }
.contact-copy h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(50px, 5.2vw, 76px); line-height: .92; letter-spacing: -.06em; text-transform: uppercase; text-wrap: balance; }
.contact-copy h1 span { color: var(--accent); }
.contact-copy > p:last-child { max-width: 650px; margin: 34px 0 0; color: rgba(255,255,255,.68); font-size: clamp(19px, 1.7vw, 25px); line-height: 1.5; }
.contact-card { padding: clamp(28px, 4vw, 46px); border-top: 3px solid var(--accent); background: rgba(255,255,255,.08); box-shadow: 0 24px 80px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.contact-label { display: block; color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.contact-form-heading > p { margin: 12px 0 26px; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.55; }
.contact-form label { display: grid; gap: 8px; margin-top: 17px; color: rgba(255,255,255,.9); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.contact-form .optional { color: rgba(255,255,255,.4); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { min-width: 0; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; padding: 13px 14px; background: rgba(0,0,0,.22); color: white; font: inherit; font-size: 14px; font-weight: 500; letter-spacing: normal; text-transform: none; transition: border-color .2s, background .2s; }
.contact-form textarea { resize: vertical; min-height: 100px; line-height: 1.45; }
.contact-form textarea::placeholder { color: rgba(255,255,255,.34); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); background: rgba(0,0,0,.42); }
.contact-form .button { width: 100%; margin-top: 23px; border: 0; cursor: pointer; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.45; }
.direct-email { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.4; }
.direct-email a { color: rgba(255,255,255,.75); text-decoration: none; }
.direct-email a:hover { color: var(--accent); }

footer { color: white; background: #050505; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-grid p { color: rgba(255,255,255,.6); text-transform: uppercase; font-size: 11px; letter-spacing: .14em; }
.footer-grid > a:last-child { justify-self: end; text-decoration: none; color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

body.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
body.js .reveal.visible { opacity: 1; transform: translateY(0); }


.skip-link { position: fixed; z-index: 2000; top: 10px; left: 10px; padding: 12px 18px; background: var(--ink); color: white; font-size: 13px; font-weight: 700; text-decoration: none; transform: translateY(-200%); transition: transform .2s; }
.skip-link:focus { transform: none; }

.person-link { display: inline-block; margin-top: 16px; color: var(--accent); text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .14em; border-bottom: 1px solid var(--accent); padding-bottom: 3px; }

.status-section { background: var(--white); }
.status-section > .container > .lead { max-width: 760px; margin: 38px 0 0; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--ink); }
.status-card { padding: 26px 30px 30px 0; border-right: 1px solid var(--line); }
.status-card + .status-card { padding-left: 30px; }
.status-card:last-child { border-right: 0; }
.status-card > span { display: inline-block; margin-bottom: 34px; color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.status-card h3 { margin: 0 0 14px; font-family: var(--display); text-transform: uppercase; font-size: clamp(20px, 1.8vw, 28px); line-height: 1; letter-spacing: -.03em; }
.status-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.partner-strip { background: var(--paper); border-top: 1px solid var(--line); }
.partner-strip .lead { max-width: 760px; margin: 38px 0 0; }
.partner-actions { margin-top: 44px; }

.contact-form select { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; padding: 13px 14px; background: rgba(0,0,0,.22); color: white; font: inherit; font-size: 14px; font-weight: 500; letter-spacing: normal; text-transform: none; transition: border-color .2s, background .2s; }
.contact-form select:focus { border-color: var(--accent); background: rgba(0,0,0,.42); }
.contact-form select option { color: var(--ink); background: white; }

.whywin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; }
.whywin-col h3 { margin: 0 0 26px; font-family: var(--display); text-transform: uppercase; font-size: clamp(18px, 1.7vw, 25px); letter-spacing: -.02em; color: var(--accent); }
.whywin-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 22px; }
.whywin-col li { position: relative; padding-left: 24px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.62; }
.whywin-col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.whywin-col li b { color: white; font-weight: 700; }

.ask-line { max-width: 940px; margin: 56px 0 0; padding: 30px 34px; border: 1px solid var(--line); border-left: 3px solid var(--accent); font-size: clamp(17px, 1.9vw, 22px); line-height: 1.55; color: var(--muted); }
.ask-line strong { color: var(--ink); font-weight: 800; }

.deploy-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 64px; border-top: 1px solid rgba(255,255,255,.14); }
.deploy-card { padding: 44px 44px 48px 0; border-right: 1px solid rgba(255,255,255,.14); }
.deploy-card:last-child { padding: 44px 0 48px 44px; border-right: 0; }
.deploy-index { margin-bottom: 44px; color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.deploy-card h3 { margin: 0 0 16px; font-family: var(--display); text-transform: uppercase; font-size: clamp(28px, 3.2vw, 44px); line-height: .96; letter-spacing: -.03em; }
.deploy-card p { max-width: 470px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }
.deploy-foot { margin: 44px 0 0; color: rgba(255,255,255,.62); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1020px) {
  .hero-grid, .section-heading { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero-proof { max-width: 620px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hero-proof > p, .proof-foot { grid-column: 1 / -1; }
  .proof-stat { display: block; }
  .proof-stat strong { display: block; min-width: 0; }
  .platform-layout { grid-template-columns: 1fr; }
  .platform-intro { position: static; }
  .pipeline { grid-template-columns: repeat(5, minmax(180px, 1fr)); overflow-x: auto; padding-bottom: 15px; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .market-stat:nth-child(2) { border-right: 0; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-card:nth-child(2) { border-right: 0; padding-left: 30px; }
  .status-card:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
  .status-card:nth-child(4) { border-top: 1px solid var(--line); }
  .market-stat.featured { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); }
  .person-card { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 260px; }
  .team-role-card { min-height: 250px; }
  .questions-layout { gap: 60px; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .contact-main { min-height: auto; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --pad: 22px; }
  .section-pad { padding: 100px 0; }
  .display { font-size: clamp(40px, 10vw, 54px); }
  .site-header { padding-top: 12px; padding-bottom: 12px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-header nav { position: fixed; inset: 0; padding: 120px var(--pad) 50px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; color: white; background: var(--ink); transform: translateX(100%); transition: transform .35s ease; }
  .site-header nav a { font-size: 28px; letter-spacing: 0; font-weight: 800; }
  .site-header nav .nav-cta { margin-top: auto; width: 100%; text-align: center; font-size: 14px; }
  .menu-open .site-header nav { transform: translateX(0); }
  .menu-open .menu-toggle { color: white; }
  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero::after { background: linear-gradient(180deg, rgba(8,8,8,.7), #080808 52%); }
  .hero-network { width: 100vw; right: -28vw; top: 0; opacity: .5; }
  .hero-copy h1 { font-size: clamp(38px, 11vw, 48px); line-height: .96; }
  .hero-lede { font-size: 17px; }
  .hero-proof { grid-template-columns: 1fr; gap: 0; }
  .hero-bottom { display: none; }
  .button { width: 100%; }
  .problem-grid, .solution-grid, .moat-layout, .traction-strip, .market-bottom, .revenue-grid, .team-grid, .questions-layout, .cta-row, .status-grid, .whywin-grid, .deploy-grid { grid-template-columns: 1fr; }
  .whywin-grid { gap: 48px; }
  .status-card, .status-card + .status-card { padding: 24px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .ask-line { padding: 24px 22px; }
  .deploy-card, .deploy-card:last-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .deploy-index { margin-bottom: 22px; }
  .problem-card, .problem-card + .problem-card { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .problem-card > span { margin-bottom: 24px; }
  .solution-card { min-height: 390px; padding: 30px 24px; }
  .agent-orbit { display: grid; gap: 10px; aspect-ratio: auto; }
  .orbit-ring { display: none; }
  .orbit-core { position: static; transform: none; width: 100%; aspect-ratio: auto; border-radius: 0; padding: 30px; }
  .agent { position: static; width: 100%; box-shadow: none; }
  .agent:hover { transform: none; }
  .pipeline { margin-top: 60px; }
  .proof-delivery { grid-template-columns: 1fr; }
  .flywheel-ring { max-width: 300px; }
  .market-stats { grid-template-columns: 1fr; margin-top: 60px; }
  .market-stat, .market-stat + .market-stat { min-height: 220px; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .market-stat.featured { grid-column: auto; border-top: 0; }
  .revenue-card { min-height: 370px; margin: -1px 0 0; }
  .person-card { padding: 22px; }
  .portrait-wrap { max-width: 220px; }
  .questions { padding: 100px 0; }
  .final-cta { min-height: 80vh; }
  .final-cta h2 { font-size: clamp(52px, 14vw, 68px); line-height: .94; }
  .cta-row { gap: 28px; }
  .contact-main { min-height: 100svh; align-items: flex-start; }
  .contact-main::before { background: linear-gradient(180deg, rgba(9,9,9,.56), #090909 54%); }
  .contact-network { width: 118vw; right: -32vw; top: -2vh; opacity: .32; }
  .contact-layout { gap: 36px; padding: 132px 0 72px; }
  .contact-copy h1 { font-size: clamp(48px, 13vw, 60px); line-height: .94; }
  .contact-copy > p:last-child { margin-top: 24px; font-size: 18px; }
  .contact-card { padding: 26px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr auto; padding: 30px 0; }
  .footer-grid p { grid-column: 1 / -1; grid-row: 2; }
}

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