:root {
  --ink: #090909;
  --ink-2: #101010;
  --ink-3: #181818;
  --paper: #f1eee9;
  --paper-2: #e8e3dc;
  --ruby: #d9003d;
  --ruby-bright: #ff174f;
  --white: #f7f5f2;
  --muted: rgba(247, 245, 242, .58);
  --muted-dark: rgba(9, 9, 9, .62);
  --line: rgba(247, 245, 242, .13);
  --line-dark: rgba(9, 9, 9, .15);
  --spot-x: 62vw;
  --spot-y: 28vh;
  --header-height: 84px;
  --shell: 1440px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg, canvas { display: block; max-width: 100%; }
::selection { background: var(--ruby); color: var(--white); }
:focus-visible { outline: 2px solid var(--ruby-bright); outline-offset: 4px; }

.skip-link {
  left: 16px;
  position: fixed;
  top: -100px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
}
.skip-link:focus { top: 16px; }

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.section { position: relative; padding-block: clamp(96px, 11vw, 176px); }
.section-dark { background: var(--ink); color: var(--white); }
.section-warm { background: var(--paper); color: var(--ink); }
.mono, .eyebrow, .brand, .desktop-nav, .footer-label, .field > span {
  font-family: "DM Mono", monospace;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--ruby-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
h3 { font-size: clamp(21px, 2vw, 30px); font-weight: 600; letter-spacing: -.035em; line-height: 1.12; }
.ruby-mark { color: var(--ruby-bright); display: inline-block; }
.ruby-mark svg { height: 100%; overflow: visible; width: 100%; }
.ruby-mark path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6; }
.ruby-mark path:first-child { stroke-width: 7; }
.ruby-pip {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--ruby);
  box-shadow: 0 0 18px rgba(217, 0, 61, .5);
  transform: rotate(45deg);
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent calc(25% - .5px), rgba(255,255,255,.035) 25%, transparent calc(25% + .5px), transparent calc(50% - .5px), rgba(255,255,255,.035) 50%, transparent calc(50% + .5px), transparent calc(75% - .5px), rgba(255,255,255,.035) 75%, transparent calc(75% + .5px));
  opacity: .45;
}
.ambient-light {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--spot-x) var(--spot-y), rgba(217, 0, 61, .17), rgba(217, 0, 61, .06) 34%, transparent 72%);
  mix-blend-mode: screen;
  opacity: .9;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, background .25s ease, opacity .25s ease;
  mix-blend-mode: difference;
}
.cursor span { position: absolute; inset: 48%; background: var(--white); border-radius: 50%; }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { width: 68px; height: 68px; border-color: var(--white); background: rgba(255,255,255,.08); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(9,9,9,.76); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 500; letter-spacing: .18em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.brand__mark { width: 23px; height: 23px; filter: drop-shadow(0 0 8px rgba(217,0,61,.45)); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav > a:not(.button) { position: relative; color: rgba(255,255,255,.72); transition: color .25s ease; }
.desktop-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ruby-bright); transition: right .3s var(--ease); }
.desktop-nav > a:not(.button):hover { color: var(--white); }
.desktop-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; position: relative; width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 13px; width: 20px; height: 1px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  gap: 42px;
  padding: calc(var(--header-height) + 50px) clamp(24px, 8vw, 64px) 42px;
  background: rgba(9,9,9,.98);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .45s var(--ease), visibility .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu__glow { position: absolute; inset: 20% -20% auto 30%; height: 50%; background: radial-gradient(circle, rgba(217,0,61,.24), transparent 65%); filter: blur(30px); pointer-events: none; }
.mobile-menu nav { display: grid; position: relative; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 18px; padding-block: 15px; border-bottom: 1px solid var(--line); font-size: clamp(34px, 9vw, 64px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.mobile-menu nav span, .mobile-menu__meta { color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.mobile-menu > .button { justify-self: start; }
.mobile-menu__meta { align-self: end; }

.button {
  --button-bg: transparent;
  --button-color: var(--white);
  --button-border: var(--line);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 16px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-color);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .25s var(--ease);
}
.button::before { content: ""; position: absolute; inset: 100% 0 0; z-index: -1; background: var(--white); transition: inset .35s var(--ease); }
.button:hover::before { inset: 0; }
.button:hover { color: var(--ink); border-color: var(--white); }
.button--ruby { --button-bg: var(--ruby); --button-border: var(--ruby); --button-color: var(--white); }
.button--light { --button-bg: var(--white); --button-border: var(--white); --button-color: var(--ink); }
.button--light::before { background: var(--ruby); }
.button--light:hover { color: var(--white); border-color: var(--ruby); }
.text-link { display: inline-flex; gap: 14px; align-items: center; color: var(--muted); font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease; }
.text-link:hover { color: var(--white); }
.button-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.icon-button { width: 52px; height: 52px; border: 1px solid var(--line); background: transparent; font-size: 20px; cursor: pointer; transition: background .25s, color .25s, border-color .25s; }
.icon-button:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .42; }
.hero__vignette { position: absolute; inset: 0; background: radial-gradient(circle at 68% 45%, transparent 0 18%, rgba(9,9,9,.26) 48%, var(--ink) 92%), linear-gradient(90deg, rgba(9,9,9,.3), transparent 55%); pointer-events: none; }
.hero__inner { position: relative; min-height: max(720px, 100svh); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr); align-items: center; gap: clamp(30px, 7vw, 110px); padding-top: calc(var(--header-height) + 48px); padding-bottom: 70px; }
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: clamp(28px, 4vh, 48px); }
.hero__title { margin: 0 0 34px; font-size: clamp(82px, 11.2vw, 174px); font-weight: 500; letter-spacing: -.09em; line-height: .72; text-transform: uppercase; }
.hero__title span { display: block; }
.hero__ruby { color: #e7a996; transform: translateX(clamp(18px, 5vw, 80px)); text-shadow: 0 0 40px rgba(217,0,61,.18); }
.hero__lede { max-width: 480px; margin-bottom: 32px; color: var(--muted); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65; }
.hero__core { position: relative; aspect-ratio: 1; width: min(100%, 430px); justify-self: center; perspective: 900px; }
.hero__halo { position: absolute; inset: -12%; border-radius: 50%; background: radial-gradient(circle, rgba(217,0,61,.26), rgba(217,0,61,.08) 38%, transparent 68%); filter: blur(20px); animation: halo-pulse 5s ease-in-out infinite; }
.hero__gem { position: absolute; inset: 16%; clip-path: polygon(50% 0, 84% 14%, 100% 50%, 78% 88%, 50% 100%, 16% 84%, 0 50%, 22% 14%); background: conic-gradient(from 20deg, #22010c, #070707, #bd0034, #180007, #e40b48, #0a0a0a, #4e0017); box-shadow: inset 0 0 80px rgba(255,255,255,.12), 0 0 70px rgba(217,0,61,.22); transform: rotateX(-7deg) rotateY(14deg) rotateZ(-8deg); will-change: transform; }
.hero__gem::before, .hero__gem::after, .hero__gem i { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 55%); clip-path: polygon(50% 0, 50% 50%, 100% 50%, 78% 88%); }
.hero__gem::after { background: linear-gradient(315deg, rgba(217,0,61,.8), transparent 64%); clip-path: polygon(0 50%, 50% 50%, 50% 100%, 16% 84%); }
.hero__gem i:nth-child(1) { background: rgba(255,255,255,.08); clip-path: polygon(22% 14%, 50% 50%, 0 50%); }
.hero__gem i:nth-child(2) { background: rgba(255,255,255,.14); clip-path: polygon(84% 14%, 50% 50%, 100% 50%); }
.hero__gem i:nth-child(3) { background: rgba(0,0,0,.32); clip-path: polygon(50% 50%, 78% 88%, 50% 100%); }
.hero__orbit { position: absolute; inset: 6%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.hero__orbit--one { transform: rotateX(68deg) rotateZ(15deg); }
.hero__orbit--two { inset: 0; border-color: rgba(217,0,61,.24); transform: rotateY(66deg) rotateZ(-28deg); }
.scroll-cue { position: absolute; bottom: 38px; left: clamp(24px, 5vw, 80px); display: inline-flex; align-items: center; gap: 14px; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 38px; height: 1px; background: var(--line); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--ruby); animation: scroll-line 2s ease-in-out infinite; }
.hero__side-label { position: absolute; right: 20px; top: 50%; color: rgba(255,255,255,.25); font-size: 8px; letter-spacing: .18em; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
@keyframes halo-pulse { 50% { transform: scale(1.12); opacity: .7; } }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%,100% { transform: translateX(100%); } }

.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: clamp(52px, 7vw, 94px); }
.section-heading > div { max-width: 900px; }
.section-heading__note { max-width: 420px; margin-bottom: 2px; color: var(--muted); line-height: 1.65; }
.section-heading--dark .section-heading__note { color: var(--muted-dark); }
.section-heading--center { justify-content: center; text-align: center; }

.services { overflow: hidden; }
.service-explorer { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.35fr); border-block: 1px solid var(--line); }
.service-list { margin: 0; padding: 0; list-style: none; border-right: 1px solid var(--line); }
.service-list li + li { border-top: 1px solid var(--line); }
.service-tab { position: relative; width: 100%; min-height: 66px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 16px; padding: 15px 24px 15px 0; border: 0; background: transparent; color: var(--muted); text-align: left; cursor: pointer; transition: color .3s ease, padding-left .4s var(--ease), background .3s ease; }
.service-tab::before { content: ""; position: absolute; inset: 0 100% 0 0; background: rgba(255,255,255,.045); transition: right .4s var(--ease); }
.service-tab span { position: relative; color: rgba(255,255,255,.3); font-family: "DM Mono", monospace; font-size: 10px; }
.service-tab.is-active, .service-tab:hover { color: var(--white); padding-left: 16px; }
.service-tab.is-active::before, .service-tab:hover::before { right: 0; }
.service-tab.is-active span { color: var(--ruby-bright); }
.service-display { position: relative; display: grid; grid-template-rows: auto minmax(270px, 1fr) auto; min-height: 610px; padding: 26px clamp(28px, 5vw, 72px) 34px; overflow: hidden; }
.service-display__top { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.service-display__visual { position: relative; min-height: 300px; display: grid; place-items: center; }
.service-display__number { position: relative; z-index: 1; color: rgba(255,255,255,.04); font-size: clamp(150px, 22vw, 330px); font-weight: 600; letter-spacing: -.1em; line-height: 1; }
.service-shape { position: absolute; width: min(260px, 55%); aspect-ratio: 1; border: 1px solid rgba(217,0,61,.55); transform: rotate(22deg); transition: transform .8s var(--ease), border-radius .8s var(--ease); }
.service-shape--two { width: min(150px, 34%); border-color: rgba(255,255,255,.25); transform: rotate(-18deg); }
.service-display.is-changing .service-shape--one { border-radius: 50%; transform: rotate(110deg) scale(.8); }
.service-display.is-changing .service-shape--two { transform: rotate(-95deg) scale(1.15); }
.service-display__content { position: relative; z-index: 2; max-width: 660px; }
.service-display__content h3 { margin-bottom: 15px; font-size: clamp(31px, 4vw, 58px); font-weight: 500; }
.service-display__content p:last-child { max-width: 550px; margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.service-display__controls { position: absolute; right: clamp(28px, 5vw, 72px); bottom: 34px; display: flex; gap: 8px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line-dark); }
.process-card { min-height: 330px; padding: 28px 26px 32px; transition: background .35s ease, color .35s ease, transform .45s var(--ease); }
.process-card + .process-card { border-left: 1px solid var(--line-dark); }
.process-card:hover { background: var(--ink); color: var(--white); transform: translateY(-12px); }
.process-card__top { display: flex; align-items: center; gap: 16px; color: var(--ruby); font-size: 11px; }
.process-card__line { flex: 1; height: 1px; background: currentColor; transform-origin: left; transform: scaleX(.15); transition: transform .5s var(--ease); }
.process-card:hover .process-card__line { transform: scaleX(1); }
.process-card h3 { margin: 90px 0 18px; font-size: clamp(25px, 2.4vw, 38px); }
.process-card p { margin: 0; color: var(--muted-dark); line-height: 1.65; }
.process-card:hover p { color: var(--muted); }

.feature-grid, .value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(26px, 4vw, 62px); }
.feature-card, .value-card { padding-top: 24px; border-top: 1px solid var(--line); }
.feature-card h3, .value-card h3 { margin: 30px 0 14px; font-size: 20px; }
.feature-card p, .value-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.value-card { border-color: var(--line-dark); }
.value-card p { color: var(--muted-dark); }

.about { border-top: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr); align-items: center; gap: clamp(60px, 9vw, 150px); }
.about__copy h2 { margin-bottom: 36px; }
.about__copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); line-height: 1.78; }
.orbit-scene { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; background: rgba(255,255,255,.025); border: 1px solid var(--line); perspective: 850px; }
.orbit-scene__grid { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.8%, var(--line) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, var(--line) 50%, transparent 50.2%), radial-gradient(circle, rgba(217,0,61,.12), transparent 50%); }
.orbit { position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.orbit--a { transform: rotateX(68deg) rotateZ(18deg); animation: orbit-a 12s linear infinite; }
.orbit--b { width: 46%; border-color: rgba(217,0,61,.45); transform: rotateY(68deg) rotateZ(-24deg); animation: orbit-b 14s linear infinite reverse; }
.orbit--c { width: 72%; border-color: rgba(255,255,255,.09); transform: rotateX(55deg) rotateY(24deg); animation: orbit-c 18s linear infinite; }
.orbit-core { position: relative; width: 24%; aspect-ratio: 1; clip-path: polygon(50% 0, 88% 22%, 100% 66%, 62% 100%, 18% 84%, 0 38%); background: conic-gradient(from 20deg, #120006, #dc003e, #090909, #65001d, #f31451, #090909); filter: drop-shadow(0 0 32px rgba(217,0,61,.5)); animation: orbit-core 4s ease-in-out infinite; }
.orbit-core::before, .orbit-core i { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 50%); clip-path: polygon(50% 0, 50% 50%, 100% 66%); }
.orbit-core i:nth-child(1) { background: rgba(0,0,0,.45); clip-path: polygon(0 38%, 50% 50%, 18% 84%); }
.orbit-core i:nth-child(2) { background: rgba(255,255,255,.11); clip-path: polygon(50% 50%, 100% 66%, 62% 100%); }
.orbit-node { position: absolute; width: 9px; height: 9px; background: var(--ruby-bright); box-shadow: 0 0 18px rgba(217,0,61,.8); transform: rotate(45deg); }
.orbit-node--a { top: 23%; right: 19%; }
.orbit-node--b { bottom: 20%; left: 25%; }
.orbit-node--c { top: 54%; left: 13%; }
.orbit-label { position: absolute; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.orbit-label--a { top: 10%; left: 10%; }
.orbit-label--b { top: 14%; right: 9%; }
.orbit-label--c { bottom: 9%; right: 12%; }
@keyframes orbit-a { to { transform: rotateX(68deg) rotateZ(378deg); } }
@keyframes orbit-b { to { transform: rotateY(68deg) rotateZ(336deg); } }
@keyframes orbit-c { to { transform: rotateX(55deg) rotateY(24deg) rotateZ(360deg); } }
@keyframes orbit-core { 50% { transform: rotate(14deg) scale(1.09); } }

.partner { padding-top: 0; }
.partner-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 140px); padding: clamp(42px, 6vw, 88px); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); }
.partner-panel h2 { margin-bottom: 30px; }
.partner-panel p { max-width: 590px; margin: 0; color: var(--muted); line-height: 1.75; }
.partner-panel ul { align-self: center; margin: 0; padding: 0; list-style: none; }
.partner-panel li { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); color: rgba(255,255,255,.78); }
.partner-panel li:first-child { border-top: 1px solid var(--line); }
.partner-panel li span { color: var(--ruby-bright); font-family: "DM Mono", monospace; font-size: 10px; }

.team { padding-top: 0; }
.founder-profile { display: grid; grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr); gap: clamp(54px, 8vw, 132px); align-items: center; }
.founder-profile__scene { min-height: 540px; }
.founder-map { position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(90deg, transparent 49.8%, var(--line) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, var(--line) 50%, transparent 50.2%), radial-gradient(circle at 18% 72%, rgba(217,0,61,.12), transparent 38%); }
.founder-map::after { content: ""; position: absolute; right: -18%; bottom: -28%; width: 48%; aspect-ratio: 1; border: 1px solid var(--line); transform: rotate(45deg); }
.founder-map__system { position: absolute; inset: 8% 7% 9%; z-index: 1; width: 86%; height: 83%; overflow: visible; }
.founder-map__structure { fill: none; stroke: var(--line); stroke-width: 1; vector-effect: non-scaling-stroke; }
.founder-map__route { fill: none; stroke: var(--ruby-bright); stroke-width: 1.5; stroke-linecap: square; stroke-linejoin: miter; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 7px var(--ruby)); animation: founder-route-draw 5.6s cubic-bezier(.55,.04,.34,.98) infinite; vector-effect: non-scaling-stroke; }
.founder-map__node-ring { fill: rgba(9,9,9,.92); stroke: var(--line); stroke-width: 1; vector-effect: non-scaling-stroke; }
.founder-map__node-core { fill: var(--ruby-bright); filter: drop-shadow(0 0 8px var(--ruby)); transform-box: fill-box; transform-origin: center; animation: founder-node-pulse 5.6s ease-in-out infinite; }
.founder-map__node--2 .founder-map__node-core { animation-delay: 1.38s; }
.founder-map__node--3 .founder-map__node-core { animation-delay: 2.78s; }
.founder-map__node--4 .founder-map__node-core { animation-delay: 4.16s; }
.founder-map__signal { fill: var(--ruby-bright); filter: drop-shadow(0 0 10px var(--ruby)); }
.founder-map__signal-halo { fill: none; stroke: var(--ruby-bright); stroke-width: 1; opacity: .5; vector-effect: non-scaling-stroke; }
.founder-map__label { position: absolute; z-index: 2; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.founder-map__label--idea { top: 10%; left: 10%; }
.founder-map__label--strategy { top: 19%; right: 8%; }
.founder-map__label--build { bottom: 22%; left: 9%; }
.founder-map__label--launch { right: 9%; bottom: 10%; }
.founder-profile__signature { position: absolute; bottom: 9%; left: 10%; z-index: 2; color: var(--white); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.founder-profile__copy { max-width: 680px; }
.founder-profile__copy h3 { margin: 0 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); font-size: clamp(34px, 4vw, 54px); font-weight: 500; }
.founder-profile__copy > p:not(.eyebrow):not(.founder-profile__education) { margin-bottom: 20px; color: var(--muted); font-size: 15px; line-height: 1.78; }
.founder-profile__expertise { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 20px; padding: 0; list-style: none; }
.founder-profile__expertise li { padding: 10px 13px; border: 1px solid rgba(217,0,61,.42); background: rgba(217,0,61,.08); color: var(--white); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.founder-profile__education { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
@keyframes founder-route-draw { 0%, 8% { stroke-dashoffset: 1; opacity: .18; } 70%, 88% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: .18; } }
@keyframes founder-node-pulse { 0%, 12%, 100% { transform: scale(.65) rotate(45deg); opacity: .45; } 5% { transform: scale(1.4) rotate(45deg); opacity: 1; } }

.contact { border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(60px, 10vw, 160px); }
.contact__intro { align-self: start; position: sticky; top: calc(var(--header-height) + 40px); }
.contact__intro h2 { margin-bottom: 28px; }
.contact__intro p:not(.eyebrow) { max-width: 500px; margin-bottom: 34px; color: var(--muted); line-height: 1.75; }
.contact-form { display: grid; gap: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 9px; }
.field > span { color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  transition: border-color .25s ease, background .25s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ruby-bright); }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--ruby-bright); }
.field-error { color: #ff7898; font-family: "DM Mono", monospace; font-size: 10px; }
.form-submit-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.form-status { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .08em; }

.site-footer { position: relative; z-index: 4; padding: 72px 0 26px; background: var(--ink-3); border-top: 1px solid var(--line); }
.site-footer__top { display: grid; grid-template-columns: 1.45fr 1.35fr repeat(3, .72fr); gap: clamp(28px, 4vw, 65px); }
.site-footer__brand p { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.65); font-size: 13px; }
.footer-column, .intake-footer__contact { font-style: normal; }
.footer-column a { transition: color .25s ease; }
.footer-column a:hover { color: var(--white); }
.footer-label { margin-bottom: 6px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(255,255,255,.34); font-size: 11px; }
.site-footer__bottom a:hover { color: var(--white); }

.success-dialog[hidden] { display: none; }
.success-dialog { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; }
.success-dialog__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(14px); }
.success-dialog__panel { position: relative; z-index: 1; width: min(100%, 520px); padding: clamp(42px, 7vw, 72px); border: 1px solid var(--line); border-top: 2px solid var(--ruby); background: var(--ink-2); text-align: center; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.success-dialog__close { position: absolute; top: 14px; right: 16px; width: 42px; height: 42px; border: 0; background: transparent; color: var(--muted); font-size: 28px; cursor: pointer; }
.success-dialog__mark { width: 48px; height: 48px; margin-bottom: 24px; }
.success-dialog h2 { margin-bottom: 20px; font-size: clamp(40px, 7vw, 68px); }
.success-dialog p:not(.eyebrow) { margin-bottom: 30px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(42px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }

/* Intake page */
.page-intake { background: var(--ink); }
.intake-header { position: relative; height: var(--header-height); border-bottom: 1px solid var(--line); background: rgba(9,9,9,.76); backdrop-filter: blur(18px); }
.intake-header__inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.intake-header__back { justify-self: start; color: var(--muted); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.intake-header__back b { display: none; font-weight: 400; }
.intake-header__back:hover { color: var(--white); }
.intake-header .brand { justify-self: center; }
.intake-header__step { justify-self: end; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.intake-main { position: relative; min-height: calc(100vh - var(--header-height)); overflow: hidden; }
.intake-main::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 12%, rgba(217,0,61,.16), transparent 34%); pointer-events: none; }
.intake-hero { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); align-items: end; gap: 70px; padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(54px, 6vw, 90px); border-bottom: 1px solid var(--line); }
.intake-hero h1 { max-width: 880px; margin: 0; font-size: clamp(58px, 8vw, 122px); font-weight: 500; letter-spacing: -.08em; line-height: .86; text-transform: uppercase; }
.intake-hero__side { align-self: end; }
.intake-hero__side p { margin: 0; color: var(--muted); line-height: 1.75; }
.intake-progress { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 38px; }
.progress-step { position: relative; padding: 18px 10px 18px 0; border-top: 1px solid var(--line); color: rgba(255,255,255,.3); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; transition: color .3s ease, border-color .3s ease; }
.progress-step::before { content: ""; position: absolute; left: 0; top: -1px; width: 0; height: 2px; background: var(--ruby); transition: width .45s var(--ease); }
.progress-step.is-active { color: var(--white); }
.progress-step.is-active::before, .progress-step.is-complete::before { width: 100%; }
.progress-step.is-complete { color: var(--muted); }
.intake-form { position: relative; z-index: 1; padding-block: 48px 120px; }
.form-step[hidden] { display: none !important; }
.form-step { animation: step-in .5s var(--ease); }
@keyframes step-in { from { opacity: 0; transform: translateY(18px); } }
.form-step__heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 50px; }
.form-step__heading h2 { font-size: clamp(36px, 5vw, 68px); }
.form-step__heading .mono { color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.intake-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 28px; }
.intake-fields .field--wide { grid-column: 1 / -1; }
.intake-form .field > span { color: rgba(255,255,255,.6); }
.intake-form .field input, .intake-form .field textarea, .intake-form .field select { min-height: 62px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.intake-form .field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.55) 50%), linear-gradient(135deg, rgba(255,255,255,.55) 50%, transparent 50%); background-position: calc(100% - 21px) 27px, calc(100% - 15px) 27px; background-size: 6px 6px; background-repeat: no-repeat; }
.intake-form .field select option { background: var(--ink-2); }
.service-choices { margin: 0; padding: 0; border: 0; }
.service-choices legend { margin-bottom: 22px; font-size: 17px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.16); color: var(--muted); transition: background .25s ease, border-color .25s ease, color .25s ease; }
.choice span::after { content: "+"; color: rgba(255,255,255,.35); font-size: 22px; font-weight: 300; }
.choice input:checked + span { border-color: var(--ruby); background: rgba(217,0,61,.12); color: var(--white); }
.choice input:checked + span::after { content: "×"; color: var(--ruby-bright); }
.choice input:focus-visible + span { outline: 2px solid var(--ruby-bright); outline-offset: 3px; }
.intake-note { margin: 28px 0 0; color: var(--muted); font-size: 13px; }
.step-actions { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line); }
.step-actions [data-step-back] { justify-self: start; }
.step-actions [data-step-next] { grid-column: 3; justify-self: end; }
.step-actions [data-step-submit] { grid-column: 3; justify-self: end; }
.step-actions [hidden] { display: none !important; }
.intake-status { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.intake-footer { padding: 54px 0 26px; border-top: 1px solid var(--line); background: var(--ink-3); }
.intake-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; }
.intake-footer__contact { display: grid; grid-template-columns: repeat(3, max-content); justify-content: end; gap: 18px 42px; color: var(--muted); font-size: 13px; }
.intake-footer__contact .footer-label { grid-column: 1 / -1; }
.intake-footer__bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(255,255,255,.34); font-size: 11px; }
.intake-confirmation { min-height: 64vh; display: grid; place-content: center; justify-items: center; padding-block: 100px; text-align: center; }
.intake-confirmation[hidden] { display: none; }
.intake-confirmation .ruby-mark { width: 68px; height: 68px; margin-bottom: 28px; }
.intake-confirmation h1 { margin-bottom: 24px; font-size: clamp(52px, 8vw, 104px); font-weight: 500; letter-spacing: -.07em; line-height: .9; text-transform: uppercase; }
.intake-confirmation p:not(.eyebrow) { max-width: 580px; margin-bottom: 34px; color: var(--muted); line-height: 1.75; }

@media (max-width: 1180px) {
  :root { --header-height: 78px; }
  .shell { padding-inline: clamp(28px, 4vw, 52px); }
  .desktop-nav { gap: 20px; }
  .hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .6fr); }
  .hero__title { font-size: clamp(78px, 12vw, 132px); }
  .service-explorer { grid-template-columns: minmax(260px, .7fr) 1.3fr; }
  .site-footer__top { grid-template-columns: 1.3fr 1.2fr repeat(3, .7fr); gap: 26px; }
}

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(230px, .5fr); gap: 20px; }
  .hero__core { opacity: .76; transform: translateX(8%); }
  .hero__title { font-size: clamp(76px, 14vw, 126px); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .process-grid, .feature-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(3) { border-left: 0; }
  .process-card:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .about__grid { grid-template-columns: 1fr; }
  .about__copy { max-width: 760px; }
  .orbit-scene { min-height: 500px; }
  .founder-profile { grid-template-columns: 1fr; }
  .founder-profile__copy { max-width: 760px; }
  .partner-panel { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__intro { position: static; }
  .contact__intro > p:not(.eyebrow) { max-width: 650px; }
  .site-footer__top { grid-template-columns: 1.4fr 1.2fr 1fr; row-gap: 46px; }
  .site-footer__brand { grid-row: span 2; }
  .service-display__controls { position: static; margin-top: 28px; }
  .intake-hero { grid-template-columns: 1fr; gap: 30px; }
  .intake-hero__side { max-width: 650px; }
  .intake-footer__grid { grid-template-columns: 1fr; }
  .intake-footer__contact { justify-content: start; }
}

@media (max-width: 767px) {
  :root { --header-height: 70px; }
  body { font-size: 15px; }
  .shell { padding-inline: 20px; }
  .page-grid { background-image: linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.04) 50%, transparent calc(50% + .5px)); }
  .ambient-light { background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(217,0,61,.13), rgba(217,0,61,.04) 38%, transparent 72%); }
  .brand { font-size: 10px; letter-spacing: .13em; }
  .brand__mark { width: 21px; height: 21px; }
  .menu-toggle { width: 44px; height: 44px; }
  .section { padding-block: 88px; }
  h2 { font-size: clamp(42px, 13vw, 64px); }
  .hero, .hero__inner { min-height: 760px; min-height: 100svh; }
  .hero__inner { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding-top: calc(var(--header-height) + 44px); padding-bottom: 80px; }
  .hero__copy { z-index: 3; }
  .hero__eyebrow { margin-bottom: 26px; }
  .hero__title { font-size: clamp(69px, 22.5vw, 104px); line-height: .76; margin-bottom: 26px; }
  .hero__ruby { transform: translateX(7%); }
  .hero__lede { max-width: 330px; margin-bottom: 26px; font-size: 14px; }
  .hero__core { position: absolute; right: -55px; bottom: 78px; z-index: 1; width: 250px; opacity: .56; transform: none; }
  .hero__canvas { opacity: .25; }
  .scroll-cue { left: 20px; bottom: 25px; }
  .hero__side-label { display: none; }
  .button-row { gap: 18px; }
  .button { min-height: 50px; }
  .section-heading { gap: 22px; margin-bottom: 48px; }
  .section-heading__note { font-size: 14px; }
  .service-explorer { display: block; border: 0; }
  .service-list { display: flex; gap: 8px; margin: 0 -20px 24px; padding: 0 20px 8px; overflow-x: auto; border: 0; scrollbar-width: none; scroll-snap-type: x proximity; }
  .service-list::-webkit-scrollbar { display: none; }
  .service-list li { flex: 0 0 auto; border: 0 !important; scroll-snap-align: start; }
  .service-tab { min-height: 48px; display: flex; width: auto; padding: 12px 16px; border: 1px solid var(--line); white-space: nowrap; }
  .service-tab::before { display: none; }
  .service-tab.is-active, .service-tab:hover { padding-left: 16px; border-color: var(--ruby); background: rgba(217,0,61,.1); }
  .service-display { min-height: 570px; grid-template-rows: auto 240px auto; padding: 20px 18px 24px; border: 1px solid var(--line); }
  .service-display__number { font-size: 145px; }
  .service-display__visual { min-height: 230px; }
  .service-display__content h3 { font-size: 33px; }
  .process-grid, .feature-grid, .value-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 260px; padding-inline: 0; }
  .process-card + .process-card, .process-card:nth-child(n+3) { border-left: 0; border-top: 1px solid var(--line-dark); }
  .process-card h3 { margin-top: 60px; }
  .feature-grid, .value-grid { gap: 38px; }
  .about__grid { gap: 54px; }
  .about__copy h2 { margin-bottom: 28px; }
  .orbit-scene { min-height: 360px; }
  .orbit { width: 72%; }
  .orbit--b { width: 58%; }
  .orbit--c { width: 84%; }
  .partner-panel { padding: 30px 22px; gap: 42px; }
  .partner-panel li { grid-template-columns: 30px 1fr; }
  .founder-profile { gap: 46px; }
  .founder-profile__scene { min-height: 360px; }
  .founder-profile__copy h3 { font-size: 34px; }
  .founder-profile__copy > p:not(.eyebrow):not(.founder-profile__education) { font-size: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .field input, .field textarea, .field select { font-size: 16px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand, .footer-column--contact { grid-column: 1 / -1; grid-row: auto; }
  .social-arrow { display: none; }
  .site-footer__bottom { flex-direction: column; }
  .intake-header__inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .intake-header .brand span:last-child { display: none; }
  .intake-header .brand { justify-self: center; }
  .intake-header__back span { display: none; }
  .intake-header__back b { display: inline; }
  .intake-hero { padding-top: 70px; padding-bottom: 50px; }
  .intake-hero h1 { font-size: clamp(52px, 17vw, 78px); }
  .intake-progress { padding-top: 25px; }
  .progress-step { padding-right: 6px; font-size: 8px; letter-spacing: .07em; }
  .progress-step span { display: none; }
  .intake-form { padding-block: 38px 88px; }
  .form-step__heading { margin-bottom: 38px; }
  .form-step__heading h2 { font-size: 40px; }
  .intake-fields, .choice-grid { grid-template-columns: 1fr; }
  .intake-fields { gap: 24px; }
  .step-actions { grid-template-columns: 1fr 1fr; }
  .step-actions [data-step-next], .step-actions [data-step-submit] { grid-column: 2; }
  .intake-footer__contact { grid-template-columns: 1fr; gap: 13px; }
}

@media (max-width: 420px) {
  .brand { max-width: 235px; white-space: normal; line-height: 1.2; }
  .hero__title { font-size: 21.5vw; }
  .hero__core { right: -80px; width: 230px; }
  .button-row .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__brand, .footer-column--contact { grid-column: auto; }
  .step-actions .button { padding-inline: 15px; }
}

@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
  html.performance-mode body, html.performance-mode a, html.performance-mode button { cursor: auto; }
}

html.performance-mode .cursor, html.performance-mode .hero__canvas { display: none; }
html.performance-mode .hero__halo, html.performance-mode .orbit, html.performance-mode .orbit-core { animation: none; }
html.performance-mode .founder-map__route, html.performance-mode .founder-map__node-core { animation: none; }
html.performance-mode .founder-map__route { stroke-dashoffset: 0; opacity: 1; }
html.performance-mode .founder-map__signal, html.performance-mode .founder-map__signal-halo { display: none; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  .process-card:hover { background: transparent; color: var(--ink); transform: none; }
  .process-card:hover p { color: var(--muted-dark); }
}

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