
:root {
  --black: #050505;
  --ink: #111111;
  --grey-900: #1b1b1b;
  --grey-700: #4b4b4b;
  --grey-500: #777772;
  --grey-300: #c9c9c3;
  --grey-200: #deded8;
  --off-white: #f1f1ed;
  --paper: #fafaf7;
  --white: #ffffff;
  --border: rgba(5,5,5,.16);
  --border-light: rgba(255,255,255,.2);
  --container: 1240px;
  --header-height: 82px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(0,0,0,.12);
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; line-height: 1.55; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--black); color: var(--white); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; background: var(--white); color: var(--black); padding: 12px 16px; border: 2px solid var(--black); }
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1200; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--black); }
.section-dark + .scroll-progress span, .product-hero-dark + .scroll-progress span { background: var(--white); }
.eyebrow { margin: 0 0 18px; font-size: .73rem; font-weight: 750; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 1px; margin-right: 10px; vertical-align: middle; background: currentColor; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 7vw, 7.6rem); font-weight: 650; }
h2 { font-size: clamp(2.15rem, 4.2vw, 4.75rem); font-weight: 620; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { font-size: 1rem; }
.lead-text { font-size: clamp(1.35rem, 2.2vw, 2.05rem); line-height: 1.35; letter-spacing: -.02em; }
.fine-print { margin-top: 24px; color: rgba(255,255,255,.65); font-size: .82rem; line-height: 1.6; }
.dark-fine-print { color: var(--grey-700); }
.section { padding: 120px 0; }
.section-dark { color: var(--white); background: var(--black); }
.section-offwhite { background: var(--off-white); }
.section-heading { margin-bottom: 54px; }
.horizontal-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: 80px; align-items: end; }
.horizontal-heading h2, .centered-heading h2 { margin-bottom: 0; }
.horizontal-heading > p { margin-bottom: 8px; color: var(--grey-700); font-size: 1.05rem; }
.section-dark .horizontal-heading > p { color: rgba(255,255,255,.62); }
.centered-heading { max-width: 850px; margin-inline: auto; text-align: center; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 28px; padding: 0 22px; border: 1px solid var(--black); border-radius: 999px; color: var(--white); background: var(--black); font-size: .87rem; font-weight: 700; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible { outline: 3px solid #7a7a7a; outline-offset: 3px; }
.button-sm { min-height: 42px; padding: 0 18px; font-size: .8rem; }
.button-ghost { color: var(--black); background: transparent; }
.button-light { color: var(--black); background: var(--white); border-color: var(--white); }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.text-link { display: inline-flex; gap: 22px; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: 6px; font-weight: 700; font-size: .92rem; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px,-3px); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, transform .25s; }
.site-header.is-scrolled { background: rgba(250,250,247,.92); border-color: var(--border); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.home-page .site-header:not(.is-scrolled) { color: var(--white); }
.home-page .site-header:not(.is-scrolled) .brand img { filter: invert(1); }
.home-page .site-header:not(.is-scrolled) .header-cta { color: var(--black); background: var(--white); border-color: var(--white); }
.home-page .site-header:not(.is-scrolled) .menu-toggle span { background: var(--white); }
.dark-header-page .site-header:not(.is-scrolled) { color: var(--white); }
.dark-header-page .site-header:not(.is-scrolled) .brand img { filter: invert(1); }
.dark-header-page .site-header:not(.is-scrolled) .header-cta { color: var(--black); background: var(--white); border-color: var(--white); }
.dark-header-page .site-header:not(.is-scrolled) .menu-toggle span { background: var(--white); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .86rem; letter-spacing: -.01em; }
.brand-copy small { font-size: .75rem; opacity: .65; }
.desktop-nav { margin-left: auto; }
.desktop-nav ul, .mobile-menu ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.desktop-nav a { position: relative; font-size: .78rem; font-weight: 650; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-cta { margin-left: 2px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--black); transition: transform .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; color: var(--black); top: var(--header-height); inset-inline: 0; bottom: 0; padding: 28px 24px 48px; background: var(--paper); overflow: auto; }
.mobile-menu ul { flex-direction: column; gap: 0; }
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.4rem; font-weight: 600; }
.mobile-menu.is-open { display: block; }

/* Hero */
.hero-home { position: relative; min-height: 930px; padding: calc(var(--header-height) + 88px) 0 88px; overflow: hidden; color: var(--white); background: var(--black); }
.hero-noise { position: absolute; inset: 0; pointer-events: none; opacity: .08; background-image: radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px), radial-gradient(circle at 70% 50%, #fff 0 1px, transparent 1px); background-size: 31px 31px, 43px 43px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); gap: 64px; align-items: center; }
.hero-copy h1 { max-width: 850px; margin-bottom: 34px; }
.hero-copy h1 em { display: block; color: transparent; -webkit-text-stroke: 1px var(--white); font-style: normal; }
.hero-lede { max-width: 670px; margin-bottom: 36px; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-home .button { color: var(--black); background: var(--white); border-color: var(--white); }
.hero-home .button-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); }
.hero-proof { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 24px; margin-top: 48px; max-width: 600px; }
.hero-proof span { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.58); font-size: .78rem; }
.hero-media { position: relative; align-self: stretch; min-height: 690px; display: flex; align-items: center; }
.media-card-main { width: 100%; margin: 0; transform: rotate(1.5deg); box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.media-card { overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-md); cursor: zoom-in; }
.media-card img { aspect-ratio: 1.28; object-fit: cover; }
.media-card figcaption, .feature-media figcaption, .editorial-media figcaption, .gallery-grid figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 12px 14px; color: var(--white); background: var(--black); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.floating-note { position: absolute; z-index: 2; padding: 16px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(5,5,5,.78); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.floating-note strong, .floating-note span { display: block; }
.floating-note span { color: rgba(255,255,255,.65); font-size: .76rem; }
.note-one { left: -40px; bottom: 72px; }
.note-two { right: -18px; top: 95px; display: flex; gap: 10px; align-items: center; }
.note-two strong { font-size: .78rem; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,.4)} 50%{box-shadow:0 0 0 8px rgba(255,255,255,0)} }
.ticker { overflow: hidden; border-bottom: 1px solid var(--border); background: var(--white); }
.ticker-track { display: flex; width: max-content; gap: 30px; align-items: center; padding: 18px 0; animation: ticker 24s linear infinite; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 750; }
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Common layouts */
.split-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 110px; }
.sticky-heading { align-self: start; position: sticky; top: 130px; }
.story-stack { max-width: 690px; }
.story-stack > p:not(.lead-text) { color: var(--grey-700); font-size: 1.05rem; }
.word-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 48px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.word-grid span { min-height: 112px; display: flex; align-items: flex-end; padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); font-size: clamp(1.5rem,3vw,2.7rem); font-weight: 650; letter-spacing: -.04em; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.platform-card { position: relative; min-height: 530px; overflow: hidden; padding: 28px; border-radius: var(--radius-md); display: flex; flex-direction: column; isolation: isolate; }
.platform-card > * { position: relative; z-index: 2; }
.platform-card h3 { margin: auto 0 22px; font-size: clamp(2.2rem,3.3vw,3.8rem); }
.platform-card p:not(.card-kicker) { min-height: 110px; opacity: .74; }
.platform-card a { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid currentColor; font-size: .85rem; font-weight: 750; }
.card-index { font-size: .74rem; opacity: .65; }
.card-kicker { margin-top: 12px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.platform-card-dark { background: #191919; border: 1px solid rgba(255,255,255,.18); }
.platform-card-mid { color: var(--black); background: #bdbdb8; }
.platform-card-light { color: var(--black); background: var(--white); }
.card-orbit { position: absolute; inset: 85px auto auto 50%; width: 260px; height: 260px; transform: translateX(-50%); z-index: 0; }
.card-orbit::before, .card-orbit::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.2); border-radius:50%; }
.card-orbit::after { inset: 55px; }
.card-orbit i { position:absolute; width:12px; height:12px; border-radius:50%; background:#fff; animation: orbit 9s linear infinite; transform-origin: 130px 130px; }
.card-orbit i:nth-child(2){animation-delay:-3s}.card-orbit i:nth-child(3){animation-delay:-6s}
@keyframes orbit{from{transform:rotate(0) translateX(130px)}to{transform:rotate(360deg) translateX(130px)}}
.card-lines { position:absolute; inset:75px 25px auto; height:220px; z-index:0; background: repeating-linear-gradient(90deg, transparent 0 31px, rgba(0,0,0,.16) 32px 33px), repeating-linear-gradient(0deg, transparent 0 31px, rgba(0,0,0,.16) 32px 33px); }
.card-nodes { position:absolute; inset:90px 40px auto; height:170px; z-index:0; border:1px solid rgba(0,0,0,.15); border-radius:50%; }
.card-nodes i { position:absolute; width:14px; height:14px; border-radius:50%; background:#111; }
.card-nodes i:nth-child(1){left:5%;top:48%}.card-nodes i:nth-child(2){left:42%;top:5%}.card-nodes i:nth-child(3){right:5%;top:52%}.card-nodes i:nth-child(4){left:48%;bottom:5%}
.journey-list { list-style:none; padding:0; margin:0; border-top:1px solid var(--border); }
.journey-list li { display:grid; grid-template-columns:90px 1fr auto; gap:30px; align-items:center; min-height:155px; padding:22px 0; border-bottom:1px solid var(--border); }
.journey-list h3 { margin:0 0 8px; }
.journey-list p { margin:0; color:var(--grey-700); }
.step-number { align-self:start; padding-top:10px; font-size:.75rem; }
.step-icon { font-size:3rem; transition:transform .4s var(--ease); }
.journey-list li:hover .step-icon { transform:rotate(45deg) scale(1.1); }
.feature-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:85px; align-items:center; }
.feature-reverse .feature-copy { order:1; }
.feature-reverse .feature-media { order:2; }
.feature-media, .editorial-media { margin:0; overflow:hidden; border-radius:var(--radius-md); box-shadow:var(--shadow); cursor:zoom-in; }
.feature-media img, .editorial-media img { width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .7s var(--ease); }
.feature-media:hover img, .editorial-media:hover img { transform:scale(1.025); }
.feature-copy h2 { font-size:clamp(2.25rem,3.6vw,4.2rem); }
.feature-copy p { color:var(--grey-700); font-size:1.05rem; }
.section-dark .feature-copy p { color:rgba(255,255,255,.66); }
.feature-copy .text-link, .feature-copy .button { margin-top:12px; }
.seed-grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:80px; align-items:center; }
.seed-copy h2 { font-size:clamp(2.6rem,5vw,5.8rem); }
.seed-copy > p:not(.eyebrow,.fine-print) { color:rgba(255,255,255,.66); font-size:1.08rem; }
.seed-media { margin:0; overflow:hidden; border-radius:var(--radius-md); border:1px solid rgba(255,255,255,.2); box-shadow:0 40px 100px rgba(0,0,0,.5); cursor:zoom-in; }
.seed-media img { aspect-ratio:1.4; object-fit:cover; }
.audience-cloud { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; max-width:1050px; margin:auto; }
.audience-cloud span, .partner-types span { padding:16px 22px; border:1px solid var(--border); border-radius:999px; background:var(--white); font-weight:650; }
.mission-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:100px; align-items:start; }
.mission-grid blockquote { margin:0; font-size:clamp(1.5rem,2.8vw,2.8rem); line-height:1.28; letter-spacing:-.035em; }
.cta-panel { padding:56px; border-radius:var(--radius-lg); color:var(--white); background:var(--black); display:flex; justify-content:space-between; gap:60px; align-items:flex-end; }
.cta-panel h2 { max-width:850px; margin-bottom:18px; font-size:clamp(2.4rem,4.4vw,5rem); }
.cta-panel p:not(.eyebrow) { max-width:720px; margin-bottom:0; color:rgba(255,255,255,.65); }
.closing-section { padding:130px 0 150px; text-align:center; overflow:hidden; }
.closing-inner > p { text-transform:uppercase; letter-spacing:.2em; font-size:.75rem; }
.closing-inner h2 { max-width:1100px; margin:0 auto 42px; font-size:clamp(3.4rem,8vw,8.6rem); }
.closing-inner .button-row { justify-content:center; }

/* Inner pages */
.inner-hero { padding:calc(var(--header-height) + 95px) 0 85px; border-bottom:1px solid var(--border); background:var(--paper); }
.inner-hero-grid { display:grid; grid-template-columns:1.25fr .55fr; gap:100px; align-items:end; }
.inner-hero h1 { max-width:950px; margin-bottom:0; font-size:clamp(3rem,5vw,5.4rem); }
.inner-hero-grid > p { margin-bottom:10px; color:var(--grey-700); font-size:1.08rem; }
.product-hero { padding:calc(var(--header-height) + 80px) 0 85px; background:var(--off-white); }
.product-hero-dark { color:var(--white); background:var(--black); }
.product-hero-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:center; }
.product-hero h1 { margin-bottom:20px; font-size:clamp(4.2rem,9vw,9rem); }
.product-tagline { max-width:620px; margin-bottom:34px; font-size:clamp(1.4rem,2.3vw,2.1rem); line-height:1.2; letter-spacing:-.025em; }
.product-hero figure { margin:0; overflow:hidden; border-radius:var(--radius-md); box-shadow:var(--shadow); cursor:zoom-in; }
.product-hero figure img { aspect-ratio:4/3; object-fit:cover; }
.editorial-grid { display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); gap:95px; align-items:start; }
.editorial-copy h2 { font-size:clamp(2.4rem,4vw,4.6rem); }
.editorial-copy p:not(.eyebrow) { color:var(--grey-700); font-size:1.05rem; }
.section-dark .editorial-copy p:not(.eyebrow) { color:rgba(255,255,255,.65); }
.three-up { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.statement-grid article { padding:32px; border:1px solid var(--border-light); border-radius:var(--radius-md); }
.statement-grid h2 { font-size:clamp(2rem,3vw,3.4rem); }
.statement-grid p:not(.eyebrow) { color:rgba(255,255,255,.63); }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); border-left:1px solid var(--border); }
.values-grid article { min-height:260px; padding:24px; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.values-grid article > span, .role-grid article > span, .format-grid article > span, .opportunity-grid article > span { display:block; margin-bottom:65px; font-size:.73rem; opacity:.55; }
.values-grid h3 { font-size:1.5rem; }
.values-grid p { color:var(--grey-700); font-size:.9rem; }
.serve-list { border-top:1px solid var(--border); }
.serve-list article { display:grid; grid-template-columns:.7fr 1.3fr; gap:70px; padding:28px 0; border-bottom:1px solid var(--border); }
.serve-list h3, .serve-list p { margin:0; }
.serve-list p { color:var(--grey-700); }
.legal-profile { display:grid; grid-template-columns:1fr 1fr; gap:100px; padding:55px; border:1px solid var(--border); border-radius:var(--radius-lg); }
.legal-profile h2 { margin-bottom:0; }
.mini-cta { padding-top:40px; }
.ecosystem-intro { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:start; }
.ecosystem-intro h2 { margin-bottom:0; }
.ecosystem-intro p:not(.lead-text) { color:var(--grey-700); }
.ecosystem-map { position:relative; min-height:720px; display:grid; place-items:center; overflow:hidden; }
.map-center, .map-node { position:absolute; z-index:3; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; border-radius:50%; }
.map-center { width:230px; height:230px; color:var(--black); background:var(--white); }
.map-center span { font-size:2.8rem; font-weight:800; letter-spacing:-.08em; }
.map-center strong { max-width:135px; font-size:.75rem; }
.map-node { width:210px; height:210px; border:1px solid rgba(255,255,255,.28); background:#131313; transition:transform .3s var(--ease), background .3s; }
.map-node:hover { transform:scale(1.05); background:#222; }
.map-node span { margin-bottom:10px; opacity:.55; font-size:.7rem; }
.map-node strong { font-size:1.05rem; }
.map-node small { max-width:130px; margin-top:8px; color:rgba(255,255,255,.55); }
.node-one { left:6%; top:10%; }.node-two { right:6%; top:10%; }.node-three { bottom:2%; left:50%; transform:translateX(-50%); }.node-three:hover { transform:translateX(-50%) scale(1.05); }
.map-ring { position:absolute; border:1px solid rgba(255,255,255,.14); border-radius:50%; animation:slow-spin 22s linear infinite; }
.map-ring::before, .map-ring::after { content:""; position:absolute; width:10px; height:10px; border-radius:50%; background:#fff; }
.ring-one { width:520px; height:520px; }.ring-one::before { left:10%; top:17%; }.ring-one::after { right:10%; bottom:17%; }
.ring-two { width:700px; height:700px; animation-direction:reverse; }.ring-two::before { right:17%; top:7%; }.ring-two::after { left:8%; bottom:25%; }
@keyframes slow-spin{to{transform:rotate(360deg)}}
.timeline { border-top:1px solid var(--border); }
.timeline article { display:grid; grid-template-columns:90px .45fr 1fr; gap:35px; align-items:start; padding:35px 0; border-bottom:1px solid var(--border); }
.timeline article > span { font-size:.73rem; }
.timeline h3 { margin:0; }
.timeline p { margin:0; color:var(--grey-700); }
.flywheel-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.flywheel-grid article { min-height:250px; padding:24px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); display:flex; flex-direction:column; }
.flywheel-grid span { font-size:1.4rem; font-weight:700; }
.flywheel-grid p { margin:auto 0 0; color:var(--grey-700); font-size:.88rem; }
.comparison-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.comparison-grid article { padding:34px; border:1px solid var(--border); border-radius:var(--radius-md); }
.comparison-grid p { color:var(--grey-700); }
.topic-list { display:grid; border-top:1px solid var(--border); }
.topic-list span { padding:16px 0; border-bottom:1px solid var(--border); font-weight:650; }
.light-list { border-color:var(--border-light); }
.light-list span { border-color:var(--border-light); }
.clean-list { margin:26px 0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:8px 22px; }
.clean-list li { position:relative; padding-left:18px; color:var(--grey-700); font-size:.92rem; }
.clean-list li::before { content:"•"; position:absolute; left:0; }
.role-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.role-grid article { min-height:320px; padding:26px; border:1px solid var(--border-light); border-radius:var(--radius-md); }
.role-grid h3 { font-size:1.65rem; }
.role-grid p { color:rgba(255,255,255,.62); font-size:.9rem; }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.article-grid article { min-width:0; }
.article-grid img { width:100%; aspect-ratio:1.55; object-fit:cover; border-radius:var(--radius-sm); transition:transform .35s var(--ease); }
.article-grid a:hover img { transform:translateY(-5px); }
.article-meta { margin:16px 0 8px; color:var(--grey-500); font-size:.7rem; letter-spacing:.13em; text-transform:uppercase; }
.article-grid h3 { margin-bottom:0; font-size:clamp(1.35rem,2vw,2rem); }
.format-grid, .opportunity-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.format-grid article, .opportunity-grid article { min-height:300px; padding:28px; border:1px solid var(--border); border-radius:var(--radius-md); }
.format-grid h3, .opportunity-grid h3 { font-size:1.55rem; }
.format-grid p, .opportunity-grid p { color:var(--grey-700); }
.opportunity-grid article { border-color:var(--border-light); }
.opportunity-grid p { color:rgba(255,255,255,.62); }
.gallery-grid { display:grid; grid-template-columns:1.2fr .8fr; grid-template-rows:auto auto; gap:18px; }
.gallery-grid figure { margin:0; overflow:hidden; border-radius:var(--radius-md); cursor:zoom-in; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; }
.gallery-large { grid-row:span 2; }
.gallery-quote { padding:34px; border-radius:var(--radius-md); color:var(--white); background:var(--black); display:flex; flex-direction:column; justify-content:space-between; }
.gallery-quote p { font-size:clamp(1.5rem,2.5vw,2.6rem); line-height:1.2; letter-spacing:-.035em; }
.gallery-quote span { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; opacity:.6; }
.data-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); border-left:1px solid var(--border); }
.data-grid span { min-height:120px; display:flex; align-items:flex-end; padding:18px; border-right:1px solid var(--border); border-bottom:1px solid var(--border); font-weight:650; }
.disclaimer-panel { display:grid; grid-template-columns:1fr 1fr; gap:100px; padding:55px; border:2px solid var(--black); border-radius:var(--radius-lg); }
.disclaimer-panel h2 { margin-bottom:0; }
.disclaimer-panel > div:last-child p { color:var(--grey-700); }
.partner-types { display:flex; flex-wrap:wrap; gap:12px; }
.process-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; }
.process-grid ol { list-style:none; margin:0; padding:0; border-top:1px solid var(--border); }
.process-grid li { display:grid; grid-template-columns:70px 1fr; gap:25px; padding:24px 0; border-bottom:1px solid var(--border); }
.process-grid h3 { margin-bottom:8px; }
.process-grid p { margin-bottom:0; color:var(--grey-700); }
.process-grid li > span { font-size:.72rem; }
.insights-notice { display:flex; gap:24px; align-items:center; padding:18px 22px; margin-bottom:45px; border:1px solid var(--border); border-radius:var(--radius-sm); }
.insights-notice span { flex:0 0 auto; padding:7px 10px; border-radius:999px; color:var(--white); background:var(--black); font-size:.67rem; text-transform:uppercase; letter-spacing:.12em; }
.insights-notice p { margin:0; color:var(--grey-700); font-size:.9rem; }
.featured-story { display:grid; grid-template-columns:1.25fr .75fr; gap:60px; align-items:center; margin-bottom:80px; }
.featured-story img { border-radius:var(--radius-md); }
.featured-story h2 { font-size:clamp(2.3rem,4vw,4.5rem); }
.featured-story p:not(.article-meta) { color:var(--grey-700); }
.article-grid-large { row-gap:60px; }
.article-grid-large article p:last-child { color:var(--grey-700); font-size:.9rem; }
.contact-grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:100px; align-items:start; }
.contact-aside { position:sticky; top:125px; }
.contact-reasons { display:flex; flex-wrap:wrap; gap:8px; margin:28px 0 50px; }
.contact-reasons span { padding:9px 12px; border:1px solid var(--border); border-radius:999px; font-size:.75rem; }
.direct-contact { padding-top:25px; border-top:1px solid var(--border); }
.direct-contact p { margin-bottom:6px; color:var(--grey-700); }
.direct-contact a { font-size:1.25rem; font-weight:700; border-bottom:1px solid; }
.direct-contact small { display:block; margin-top:12px; color:var(--grey-500); max-width:390px; }
.contact-form { padding:36px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); }
.form-row { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.contact-form label { display:grid; gap:8px; margin-bottom:20px; font-size:.78rem; font-weight:700; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; border:1px solid var(--border); border-radius:8px; padding:14px 15px; color:var(--ink); background:var(--paper); outline:none; }
.contact-form textarea { resize:vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color:var(--black); box-shadow:0 0 0 3px rgba(0,0,0,.08); }
.contact-form [aria-invalid="true"] { border-color:#8d1f1f; }
.form-footer { display:flex; justify-content:space-between; gap:30px; align-items:flex-end; }
.form-footer p { max-width:430px; margin:0; color:var(--grey-500); font-size:.78rem; }
.form-status { margin:18px 0 0; font-size:.85rem; }
.social-links { display:flex; gap:18px; flex-wrap:wrap; }
.social-links a { border-bottom:1px solid currentColor; font-size:.82rem; }
.social-links-large a { font-size:1.05rem; }
.legal-layout { display:grid; grid-template-columns:260px 1fr; gap:90px; }
.legal-layout aside { position:sticky; top:120px; align-self:start; display:grid; }
.legal-layout aside a { padding:13px 0; border-bottom:1px solid var(--border); font-size:.87rem; }
.legal-copy { max-width:850px; }
.legal-copy section { padding:0 0 65px; margin-bottom:65px; border-bottom:1px solid var(--border); scroll-margin-top:120px; }
.legal-copy h2 { font-size:clamp(2rem,3.7vw,4rem); }
.legal-copy p:not(.eyebrow) { color:var(--grey-700); font-size:1.03rem; }

/* Footer */
.site-footer { padding:80px 0 24px; color:var(--white); background:var(--black); }
.footer-top { display:grid; grid-template-columns:1.4fr repeat(3,.7fr); gap:60px; padding-bottom:70px; }
.brand-footer img { filter:none; }
.footer-intro > p { max-width:330px; margin:24px 0; color:rgba(255,255,255,.58); }
.footer-nav-group { display:grid; align-content:start; gap:10px; }
.footer-nav-group h2 { margin-bottom:10px; font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; opacity:.5; }
.footer-nav-group a { color:rgba(255,255,255,.76); font-size:.85rem; }
.footer-nav-group a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; gap:40px; padding-top:22px; border-top:1px solid var(--border-light); color:rgba(255,255,255,.48); }
.footer-bottom p { margin:0; font-size:.73rem; }
.cookie-banner { position:fixed; z-index:1500; left:24px; right:24px; bottom:20px; max-width:760px; margin-left:auto; display:flex; justify-content:space-between; gap:30px; align-items:center; padding:18px 20px; border:1px solid var(--border-light); border-radius:var(--radius-sm); color:var(--white); background:rgba(5,5,5,.96); box-shadow:var(--shadow); }
.cookie-banner[hidden] { display:none; }
.cookie-banner p { margin:0; color:rgba(255,255,255,.68); font-size:.8rem; }
.cookie-banner > div { display:flex; gap:15px; align-items:center; flex:0 0 auto; }
.cookie-banner a { font-size:.78rem; text-decoration:underline; }
.lightbox { position:fixed; inset:0; z-index:2000; display:grid; place-items:center; padding:55px; background:rgba(0,0,0,.9); }
.lightbox[hidden] { display:none; }
.lightbox img { max-width:min(1200px,92vw); max-height:82vh; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox button { position:absolute; top:20px; right:25px; width:46px; height:46px; border:1px solid rgba(255,255,255,.4); border-radius:50%; color:var(--white); background:transparent; font-size:2rem; line-height:1; cursor:pointer; }

/* Reveal animation */
[data-reveal] { opacity:0; transform:translateY(28px); transition:opacity .75s var(--ease), transform .75s var(--ease); transition-delay:var(--delay,0ms); }
[data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 1120px) {
  :root { --header-height: 74px; }
  .desktop-nav { display:none; }
  .menu-toggle { display:flex; margin-left:auto; }
  .header-cta { display:none; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-home { min-height:auto; }
  .hero-media { min-height:600px; max-width:780px; }
  .ecosystem-grid { grid-template-columns:1fr; }
  .platform-card { min-height:420px; }
  .platform-card p:not(.card-kicker) { min-height:auto; max-width:650px; }
  .horizontal-heading { grid-template-columns:1fr; gap:22px; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .flywheel-grid { grid-template-columns:repeat(3,1fr); }
  .role-grid { grid-template-columns:repeat(2,1fr); }
  .format-grid, .opportunity-grid { grid-template-columns:repeat(2,1fr); }
  .data-grid { grid-template-columns:repeat(3,1fr); }
  .footer-top { grid-template-columns:1.4fr repeat(2,.8fr); }
  .footer-nav-group:last-child { grid-column:2; }
}
@media (max-width: 820px) {
  .container { width:min(100% - 32px,var(--container)); }
  .section { padding:85px 0; }
  h1 { font-size:clamp(3rem,12vw,5.6rem); }
  h2 { font-size:clamp(2.2rem,8.5vw,4rem); }
  .hero-home { padding-top:calc(var(--header-height) + 65px); }
  .hero-grid { gap:45px; }
  .hero-media { min-height:auto; }
  .note-one { left:8px; bottom:25px; }
  .note-two { right:8px; top:20px; }
  .split-layout, .feature-grid, .seed-grid, .mission-grid, .inner-hero-grid, .product-hero-grid, .editorial-grid, .ecosystem-intro, .legal-profile, .disclaimer-panel, .process-grid, .contact-grid, .legal-layout, .featured-story { grid-template-columns:1fr; gap:50px; }
  .sticky-heading, .contact-aside, .legal-layout aside { position:static; }
  .feature-reverse .feature-copy, .feature-reverse .feature-media { order:initial; }
  .mission-grid { gap:45px; }
  .cta-panel { padding:38px; flex-direction:column; align-items:flex-start; }
  .product-hero h1 { font-size:clamp(4rem,18vw,7rem); }
  .product-hero-grid { gap:45px; }
  .three-up { grid-template-columns:1fr; }
  .serve-list article { grid-template-columns:1fr; gap:12px; }
  .ecosystem-map { min-height:920px; }
  .node-one { left:50%; top:20px; transform:translateX(-50%); }.node-one:hover { transform:translateX(-50%) scale(1.05); }
  .node-two { right:auto; left:50%; top:auto; bottom:20px; transform:translateX(-50%); }.node-two:hover { transform:translateX(-50%) scale(1.05); }
  .node-three { bottom:auto; top:50%; left:20px; transform:translateY(-50%); }.node-three:hover { transform:translateY(-50%) scale(1.05); }
  .map-center { right:20px; }
  .ring-one { width:500px; height:500px; }.ring-two { width:760px; height:760px; }
  .timeline article { grid-template-columns:55px 1fr; }
  .timeline article p { grid-column:2; }
  .flywheel-grid { grid-template-columns:repeat(2,1fr); }
  .comparison-grid { grid-template-columns:1fr; }
  .article-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .gallery-large { grid-row:auto; }
  .partner-types { gap:8px; }
  .form-footer { align-items:flex-start; flex-direction:column; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-intro { grid-column:1/-1; }
  .footer-nav-group:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
}
@media (max-width: 560px) {
  .container { width:min(100% - 24px,var(--container)); }
  .brand-copy strong { font-size:.78rem; }
  .brand-copy small { font-size:.68rem; }
  .hero-home { padding-bottom:60px; }
  .hero-copy h1 { margin-bottom:24px; }
  .hero-proof { grid-template-columns:1fr; }
  .floating-note { display:none; }
  .media-card-main { transform:none; }
  .word-grid { grid-template-columns:1fr; }
  .journey-list li { grid-template-columns:48px 1fr; gap:15px; }
  .step-icon { display:none; }
  .values-grid, .flywheel-grid, .article-grid, .format-grid, .opportunity-grid, .data-grid { grid-template-columns:1fr; }
  .role-grid { grid-template-columns:1fr; }
  .clean-list { grid-template-columns:1fr; }
  .legal-profile, .disclaimer-panel, .contact-form { padding:26px; }
  .map-node { width:175px; height:175px; }
  .map-center { width:175px; height:175px; }
  .map-center span { font-size:2.1rem; }
  .ecosystem-map { min-height:800px; }
  .map-center { right:4px; }.node-three { left:4px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .cookie-banner { left:12px; right:12px; bottom:12px; flex-direction:column; align-items:flex-start; }
  .lightbox { padding:18px; }
  .footer-top { grid-template-columns:1fr; }
  .footer-intro { grid-column:auto; }
  .closing-section { padding:95px 0 110px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  [data-reveal] { opacity:1; transform:none; }
}
