:root {
  --ink: #080808;
  --ink-soft: #0d0d0e;
  --panel: #111113;
  --panel-light: #18181b;
  --red-deep: #6d0d18;
  --red-dark: #8f1721;
  --red: #e11d2e;
  --red-hot: #ff2438;
  --coral: #ff4d5d;
  --pink: #ff7f8c;
  --paper: #fff4f5;
  --white: #fffefe;
  --gray: #a5a1a3;
  --gray-dark: #696668;
  --line: rgba(255, 255, 255, 0.11);
  --line-red: rgba(255, 36, 56, 0.35);
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
  --mono: "Space Mono", monospace;
  --shell: 1420px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--red-hot); color: var(--white); }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 5px; }
.shell { width: min(calc(100% - 5rem), var(--shell)); margin-inline: auto; }
.section { padding: clamp(6.5rem, 10vw, 10rem) 0; position: relative; }

/* Decorative flight sits above section surfaces and below their content. */
main > section > .shell, .site-footer > .shell { position: relative; z-index: 2; }
.site-voyager { position: fixed; inset: 0; z-index: 1; overflow: clip; pointer-events: none; contain: strict; }
.site-voyager__ship { position: absolute; top: 0; left: 0; width: clamp(126px, 13vw, 180px); height: auto; overflow: visible; opacity: .34; transform: translate(70vw, 65vh); user-select: none; }
.site-voyager.is-flying .site-voyager__ship { will-change: transform; }
@media (max-width: 620px) {
  .site-voyager__ship { width: 100px; opacity: .25; }
}
@media (prefers-reduced-motion: reduce) {
  .site-voyager.is-flying .site-voyager__ship { will-change: auto; }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 1100; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--red-hot); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 14px var(--red); }

.cursor-dot, .cursor-orbit {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0;
  border-radius: 50%;
  will-change: transform, width, height;
}
.cursor-dot { width: 6px; height: 6px; background: var(--white); margin: -3px 0 0 -3px; }
.cursor-orbit {
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  border: 1px solid rgba(255, 77, 93, 0.8);
  display: grid;
  place-items: center;
  transition: width .10s var(--ease), height .10s var(--ease), margin .10s var(--ease), background .10s, border-color .10s;
}
.cursor-orbit::after { content: ""; position: absolute; top: -2px; width: 3px; height: 3px; border-radius: 50%; background: var(--red-hot); }
.cursor-orbit span { font: 700 0/1 var(--mono); letter-spacing: .08em; opacity: 0; transition: opacity .2s, font-size .2s; }
.cursor-ready .cursor-dot, .cursor-ready .cursor-orbit { opacity: 1; }
.cursor-ready a, .cursor-ready button, .cursor-ready [data-cursor] { cursor: none; }
.cursor-orbit.is-active { width: 30px; height: 30px; margin: -15px 0 0 -15px; background: rgba(225, 29, 46, .84); border-color: transparent; backdrop-filter: blur(3px); }
.cursor-orbit.is-active::after { opacity: 0; }
.cursor-orbit.is-active span { font-size: 5px; opacity: 1; }
.cursor-orbit.is-cta { width: 24px; height: 24px; margin: -12px 0 0 -12px; background: var(--paper); border-color: var(--paper); color: var(--ink); mix-blend-mode: difference; }

.kicker { color: var(--coral); font: 700 .69rem/1.3 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 225px;
  min-height: 58px;
  padding: .85rem 1.1rem .85rem 1.35rem;
  overflow: hidden;
  border: 1px solid var(--red-hot);
  background: var(--red-hot);
  color: var(--white);
  font: 600 .85rem/1 var(--display);
  letter-spacing: .01em;
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease);
}
.button::before { content: ""; position: absolute; inset: 0; background: var(--paper); transform: translateY(102%); transition: transform .45s var(--ease); }
.button span, .button i { position: relative; z-index: 1; font-style: normal; }
.button i { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transition: transform .4s var(--ease), border-color .35s; }
.button:hover { color: var(--ink); border-color: var(--paper); }
.button:hover::before { transform: translateY(0); }
.button:hover i { transform: rotate(45deg); border-color: rgba(0,0,0,.25); }
.button--compact { min-width: 158px; min-height: 44px; padding: .55rem .7rem .55rem 1rem; gap: .8rem; font-size: .77rem; }
.button--compact i { width: 27px; height: 27px; }
.text-link { display: inline-flex; align-items: center; gap: 1rem; padding: .8rem 0; color: var(--gray); font: 500 .84rem var(--display); border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.text-link i { font-style: normal; color: var(--coral); }
.text-link:hover { color: var(--white); border-color: var(--red); }

.site-header { position: fixed; z-index: 1000; top: 0; inset-inline: 0; height: 86px; border-bottom: 1px solid transparent; transition: height .4s var(--ease), background .4s, border-color .4s; }
.site-header.is-scrolled { height: 68px; background: rgba(8,8,8,.8); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.brand { width: fit-content; display: inline-flex; align-items: center; }
.brand img { width: 142px; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(1.6rem, 2.6vw, 3.25rem); }
.nav a { position: relative; color: #b8b4b6; font-size: .82rem; transition: color .25s; }
.nav a::before { content: ""; position: absolute; left: 0; bottom: -.6rem; width: 100%; height: 1px; background: var(--red-hot); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav a:hover { color: var(--white); }
.nav a:hover::before { transform: scaleX(1); transform-origin: left; }
.nav-contact-mobile { display: none; }
.header-cta { justify-self: end; }
.nav-toggle { display: none; width: 42px; height: 42px; place-items: center; position: relative; }
.nav-toggle span { position: absolute; width: 24px; height: 1px; background: var(--white); transition: transform .35s var(--ease); }
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child { transform: translateY(4px); }
.nav-toggle.is-active span:first-child { transform: rotate(45deg); }
.nav-toggle.is-active span:last-child { transform: rotate(-45deg); }

.hero { min-height: 100svh; padding: 9rem 0 4.5rem; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ""; position: absolute; top: 0; bottom: 0; left: 8.5%; width: 1px; background: linear-gradient(transparent, var(--line) 13%, var(--line) 87%, transparent); }
.hero::after { content: ""; position: absolute; width: 38vw; height: 38vw; min-width: 420px; min-height: 420px; right: -11vw; top: -10vw; border-radius: 50%; background: rgba(143,23,33,.15); filter: blur(100px); pointer-events: none; }
.particle-network,
.particle-cursor-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle-network {
  opacity: .72;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.52) 33%, #000 57%, rgba(0,0,0,.82) 100%);
}
.particle-cursor-glow {
  --cursor-x: 50%;
  --cursor-y: 50%;
  opacity: 0;
  background: radial-gradient(circle 310px at var(--cursor-x) var(--cursor-y), rgba(255,36,56,.055), transparent 66%);
  transition: opacity .28s var(--ease);
}
.particle-cursor-glow.is-visible { opacity: 1; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(390px, .87fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
.hero-copy { position: relative; z-index: 3; min-width: 0; padding-left: clamp(0rem, 3vw, 2rem); }
.hero-kicker { display: flex; align-items: center; gap: .75rem; margin-bottom: clamp(2rem, 4.2vh, 3.5rem); }
.hero-kicker span { width: 6px; height: 6px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 0 5px rgba(255,36,56,.12), 0 0 18px var(--red); animation: pulse 2s ease-in-out infinite; }
.hero-copy h1 { font: 500 clamp(3.6rem, 5.7vw, 5.55rem)/.88 var(--display); letter-spacing: -.07em; white-space: nowrap; }
.hero-line { display: block; overflow: hidden; padding: .06em .08em .1em 0; }
.hero-line > span { display: block; }
.hero-line--muted { color: #777274; }
.hero-line--accent { color: var(--red-hot); }
.hero-bottom { margin-top: clamp(2rem, 4.5vh, 3.6rem); display: grid; grid-template-columns: minmax(260px, 380px) auto; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.hero-bottom > p { color: var(--gray); font-size: clamp(.96rem, 1.2vw, 1.1rem); line-height: 1.7; }
.hero-bottom strong { color: var(--paper); font-weight: 500; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.hero-index { position: absolute; left: 1.4rem; bottom: 2rem; display: flex; flex-direction: column; gap: .25rem; color: var(--gray-dark); font: 700 .55rem var(--mono); letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }

.launch-lab {
  --mx: 0;
  --my: 0;
  width: 100%;
  max-width: 590px;
  aspect-ratio: .88;
  justify-self: end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at calc(50% + var(--mx) * 15%), calc(43% + var(--my) * 12%), rgba(225,29,46,.22), transparent 28%), linear-gradient(150deg, #151516 0%, #09090a 62%);
  box-shadow: inset 0 0 80px rgba(0,0,0,.7), 0 35px 90px rgba(0,0,0,.35);
  perspective: 900px;
  transform-style: preserve-3d;
}
.launch-lab::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at calc(50% + var(--mx) * 20%), calc(50% + var(--my) * 20%), transparent 5%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.58)); pointer-events: none; }
.lab-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; transform: perspective(500px) rotateX(calc(var(--my) * -2deg)) rotateY(calc(var(--mx) * 2deg)) scale(1.1); }
.lab-corner { position: absolute; width: 58px; height: 58px; z-index: 5; }
.lab-corner--tl { top: 20px; left: 20px; border-top: 1px solid var(--red-hot); border-left: 1px solid var(--red-hot); }
.lab-corner--br { right: 20px; bottom: 20px; border-right: 1px solid var(--red-hot); border-bottom: 1px solid var(--red-hot); }
.lab-label { position: absolute; z-index: 4; color: rgba(255,255,255,.42); font: 700 .54rem var(--mono); letter-spacing: .18em; }
.lab-label--top { top: 31px; left: 94px; }
.lab-label--side { right: -16px; top: 50%; transform: rotate(90deg); }
.orbit { position: absolute; left: 50%; top: 47%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; transform: translate(-50%, -50%) rotate(calc(var(--mx) * 7deg)); }
.orbit--outer { width: 76%; aspect-ratio: 1; border-color: rgba(255,36,56,.2); animation: orbit-breathe 5s ease-in-out infinite; }
.orbit--inner { width: 52%; aspect-ratio: 1; border-style: dashed; animation: spin 25s linear infinite; }
.orbit-node { position: absolute; left: 12%; top: 43%; width: 8px; height: 8px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 18px var(--red-hot); animation: node-float 4s ease-in-out infinite; }
.rocket-wrap { position: absolute; z-index: 3; width: 64%; left: 10%; top: 19%; pointer-events: none; }
.rocket-scroll, .rocket-flight, .rocket-depth, .rocket-float { position: relative; width: 100%; transform-style: preserve-3d; }
.rocket-scroll, .rocket-flight, .rocket-depth { will-change: transform, opacity; }
.rocket-float { transform-origin: 50% 44%; will-change: transform; }
.rocket { display: block; position: relative; width: 100%; height: auto; aspect-ratio: 850 / 926; overflow: visible; }
.rocket-exhaust, .rocket-flame, .flame, .rocket-glow { transform-box: view-box; }
.rocket-sparks circle { opacity: 0; }
.rocket-smoke { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.rocket-smoke span { position: absolute; width: 38px; height: 32px; left: 0; top: 0; opacity: 0; border-radius: 46% 54% 42% 58%; background: #b6aaa3; }
.rocket-smoke span:nth-child(3n) { background: #ead8c7; }
.rocket-smoke span:nth-child(2n) { border-radius: 60% 40% 58% 42%; background: #706c70; }
.rocket-status { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.lab-metric { position: absolute; z-index: 6; display: grid; padding: .8rem; min-width: 105px; background: rgba(8,8,8,.68); border: 1px solid var(--line); backdrop-filter: blur(10px); font-family: var(--mono); }
.lab-metric span { color: var(--gray-dark); font-size: .48rem; letter-spacing: .1em; }
.lab-metric strong { margin-top: .2rem; color: var(--white); font-size: 1.45rem; line-height: 1; }
.lab-metric small { color: var(--coral); font-size: .48rem; }
.lab-metric--left { left: 6%; bottom: 10%; transform: translate(calc(var(--mx) * -7px), calc(var(--my) * -7px)); }
.lab-metric--right { right: 6%; top: 15%; transform: translate(calc(var(--mx) * 9px), calc(var(--my) * 9px)); }
.lab-metric--right strong { font-size: .8rem; margin: .5rem 0 .2rem; }
.launch-pad { position: absolute; z-index: 2; left: 28%; right: 28%; bottom: 8%; height: 8%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transform: rotateX(67deg); box-shadow: 0 0 30px rgba(225,29,46,.4), inset 0 0 25px rgba(225,29,46,.5); }
.launch-pad span { position: absolute; inset: 20%; border: 1px solid rgba(255,36,56,.6); border-radius: inherit; }
.launch-pad span:nth-child(2) { inset: 38%; }
.launch-control { position: absolute; z-index: 7; right: 6%; bottom: 5%; display: flex; align-items: center; gap: .65rem; min-height: 34px; padding: .55rem .65rem .55rem .8rem; border: 1px solid rgba(255,255,255,.16); background: rgba(8,8,8,.74); color: rgba(255,255,255,.68); backdrop-filter: blur(10px); font: 700 .48rem var(--mono); letter-spacing: .1em; transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease); }
.launch-control i { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid rgba(255,36,56,.52); color: var(--coral); font-style: normal; font-size: .75rem; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.launch-control:hover, .launch-control:focus-visible { border-color: rgba(255,36,56,.58); background: rgba(20,9,10,.88); color: var(--white); outline: none; }
.launch-control:hover i, .launch-control:focus-visible i { transform: translateY(-2px); background: var(--red-hot); color: var(--white); }
.launch-control { min-height: 44px; min-width: 145px; justify-content: space-between; font-size: .6rem; }
.launch-control:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.launch-control:disabled { cursor: wait; opacity: .7; }
.launch-lab.is-launching .launch-control i { background: var(--red-hot); color: var(--white); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); padding: 1rem 0; background: #0b0b0c; }
.ticker-track { display: flex; width: max-content; will-change: transform; animation: ticker 32s linear infinite; }
.ticker-group { display: flex; flex: none; align-items: center; justify-content: space-around; min-width: 100vw; white-space: nowrap; }
.ticker span { margin-inline: 2rem; color: #b6b0b2; font: 500 .72rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.ticker i { color: var(--red-hot); font-style: normal; font-size: .55rem; }

.section-intro { display: grid; grid-template-columns: .6fr 1.35fr .85fr; gap: 2.5rem; align-items: end; margin-bottom: clamp(4rem, 8vw, 7rem); }
.section-intro h2 { font: 500 clamp(3rem, 5.4vw, 6rem)/.94 var(--display); letter-spacing: -.065em; }
.section-summary { color: var(--gray); font-size: 1rem; line-height: 1.75; max-width: 35ch; justify-self: end; }
.service-list { border-top: 1px solid var(--line); }
.service-card {
  --card-x: 50%; --card-y: 50%;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: transparent;
  isolation: isolate;
  overflow: hidden;
  transition: border-color .3s, background-color .3s;
}
.service-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(450px circle at var(--card-x) var(--card-y), rgba(225,29,46,.16), transparent 50%); opacity: 0; transition: opacity .4s; }
.service-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--red-hot); transform: scaleY(0); transition: transform .45s var(--ease); }
.service-card.is-open { background: linear-gradient(90deg, rgba(109,13,24,.15), rgba(109,13,24,.035) 48%, transparent 78%); }
.service-card:hover, .service-card:focus-within, .service-card.is-open { border-color: var(--line-red); }
.service-card:hover::before, .service-card:focus-within:not(.is-open)::before { opacity: 1; }
.service-card:hover::after, .service-card:focus-within::after, .service-card.is-open::after { transform: scaleY(1); }
.service-trigger { width: 100%; min-height: 175px; display: grid; grid-template-columns: 70px 80px 1fr 50px; align-items: center; gap: 2rem; padding: 2.3rem 0; text-align: left; transition: padding .45s var(--ease); }
.service-number { color: var(--gray-dark); font: 700 .58rem var(--mono); }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid var(--line-red); color: var(--coral); font: 400 1.15rem var(--mono); transition: background .4s, color .4s, transform .4s var(--ease); }
.service-card.is-open .service-icon { background: var(--red); color: var(--white); transform: none; }
.service-card:hover .service-icon, .service-card:focus-within:not(.is-open) .service-icon { background: var(--red); color: var(--white); transform: rotate(-4deg); }
.service-heading { display: block; }
.service-title { display: block; color: var(--paper); font: 500 clamp(1.65rem, 2.7vw, 2.75rem) var(--display); letter-spacing: -.04em; }
.service-summary { display: block; max-width: 55ch; margin-top: .55rem; color: var(--gray); font-size: .93rem; line-height: 1.5; }
.service-arrow { position: relative; justify-self: end; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; transition: border-color .3s, transform .4s var(--ease); }
.service-arrow::before, .service-arrow::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--gray); transform: translate(-50%, -50%); transition: background .3s, opacity .3s, transform .4s var(--ease); }
.service-arrow::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-card:hover .service-arrow, .service-card:focus-within .service-arrow, .service-card.is-open .service-arrow { border-color: var(--red-hot); transform: rotate(90deg); }
.service-card:hover .service-arrow::before, .service-card:hover .service-arrow::after, .service-card:focus-within .service-arrow::before, .service-card:focus-within .service-arrow::after, .service-card.is-open .service-arrow::before, .service-card.is-open .service-arrow::after { background: var(--red-hot); }
.service-card.is-open .service-arrow { transform: rotate(180deg); }
.service-card.is-open .service-arrow::after { opacity: 0; }
.service-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.service-panel[hidden] { display: none; }
.service-panel__inner { padding: 0 0 2.5rem 184px; }
.service-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-options--support { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-option { min-width: 0; min-height: 170px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-option h3 { color: var(--paper); font: 500 clamp(1.15rem, 1.8vw, 1.55rem) var(--display); letter-spacing: -.03em; }
.service-option h3 span { color: var(--gray); font-size: .75em; }
.service-option > p:not(.service-option__placeholder) { max-width: 52ch; margin-top: .8rem; color: var(--gray); font-size: .82rem; line-height: 1.6; }
.service-option .service-option__placeholder { margin-top: 1.25rem; color: var(--coral); font: 700 .55rem/1.5 var(--mono); letter-spacing: .07em; text-transform: uppercase; }

@media (hover: hover) and (min-width: 621px) {
  .service-card:hover .service-trigger, .service-card:focus-within .service-trigger, .service-card.is-open .service-trigger { padding-inline: 1.5rem; }
}

.manifesto { z-index: 1; background: var(--paper); color: var(--ink); overflow: visible; }
.manifesto::before { content: "W0Q"; position: absolute; z-index: 0; right: -4vw; bottom: -10vw; color: transparent; background: linear-gradient(to bottom, rgba(109,13,24,.04) 0, rgba(109,13,24,.04) calc(100% - 10vw), rgba(255,244,245,.055) calc(100% - 10vw), rgba(255,244,245,.025) calc(100% - 4vw), transparent 100%); background-clip: text; -webkit-background-clip: text; font: 700 34vw/.7 var(--display); letter-spacing: -.1em; pointer-events: none; }
.manifesto::after { content: ""; position: absolute; z-index: 0; right: -2vw; bottom: -9.2vw; width: 7.8vw; height: 3.2vw; border-radius: 5px; background: linear-gradient(90deg, rgba(255,244,245,.043), rgba(255,244,245,.02) 50%, rgba(255,244,245,.006)); clip-path: inset(0 40% 0 0 2px); transform: rotate(55deg); transform-origin: right center; pointer-events: none; }
.manifesto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.manifesto .kicker { color: var(--red); }
.manifesto-sticky { position: sticky; top: 8rem; }
.formula { display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.25rem); margin-top: 3rem; }
.formula span { width: clamp(52px, 6vw, 82px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(8,8,8,.22); font: 600 clamp(1.5rem, 2.8vw, 2.7rem) var(--display); }
.formula i { color: #8b8587; font: 400 1rem var(--mono); font-style: normal; }
.formula strong { color: var(--red); font: 500 clamp(3rem, 6vw, 5.5rem) var(--display); }
.manifesto-copy > p { color: #7b7476; font: 500 .8rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.manifesto-copy h2 { margin-top: 2rem; font: 500 clamp(2.35rem, 4.5vw, 5.1rem)/1.07 var(--display); letter-spacing: -.06em; }
.manifesto-copy h2 em { color: var(--red); font-style: normal; }
.manifesto-note { display: grid; grid-template-columns: 50px 1fr; gap: 1.5rem; max-width: 560px; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(8,8,8,.18); }
.manifesto-note span { display: block; height: 1px; background: var(--red); margin-top: .75rem; }
.manifesto-note p { color: #595456; line-height: 1.75; }

/* Portfolio covers share one frame; the lead project spans both rows. */
.cases { background: var(--ink); }
.cases-preview__head { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: clamp(3rem, 5vw, 5rem); }
.cases-preview__head .kicker { margin-bottom: 1.8rem; }
.cases-preview__head h2 { font: 500 clamp(4rem, 8.5vw, 8.5rem)/.9 var(--display); letter-spacing: -.065em; }
.cases-preview__head h2 em { color: var(--coral); font-style: normal; }
.cases-preview__head .section-summary { max-width: 29ch; margin-bottom: .4rem; }
.cases-preview__list { display: grid; grid-template-columns: 1.1fr 1fr; border-top: 1px solid var(--line); }
.case-preview { position: relative; display: grid; grid-template-rows: auto 1fr auto auto; min-width: 0; padding: 1.8rem 2.3rem; border-bottom: 1px solid var(--line); background: var(--ink-soft); transition: background .35s, border-color .35s; }
.case-preview--featured { grid-row: span 2; border-right: 1px solid var(--line); }
.case-preview__meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--gray); font: 400 .61rem/1.6 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.case-preview__meta > span:first-child { color: var(--coral); }
.case-preview__art { display: flex; align-items: center; justify-content: center; min-width: 0; min-height: 115px; margin: .8rem 0; overflow: hidden; }
.case-preview__art img { width: 48%; height: 115px; object-fit: contain; object-position: center; opacity: .8; transition: opacity .4s; }
.case-preview--featured .case-preview__art { min-height: 310px; margin: 2rem 0 1.5rem; }
.case-preview--featured .case-preview__art img { width: 96%; height: auto; max-height: 355px; }
.case-preview--new-style .case-preview__art img { width: 65%; }
.case-preview--mundo .case-preview__art img { width: 55%; height: 145px; }
.case-preview__copy { display: grid; grid-template-columns: 1.1fr 1fr; align-items: end; gap: 1.5rem; }
.case-preview h3 { font: 500 clamp(2rem, 3.1vw, 3.2rem)/.98 var(--display); letter-spacing: -.055em; }
.case-preview__copy p { max-width: 28ch; color: var(--gray); font-size: .85rem; line-height: 1.6; }
.case-preview--featured .case-preview__copy { grid-template-columns: 1fr; gap: 1.4rem; }
.case-preview--featured h3 { font-size: clamp(3.5rem, 6.5vw, 6.5rem); }
.case-preview--featured .case-preview__copy p { max-width: 33ch; font-size: .95rem; }
.case-preview__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; padding-top: 1rem; border-top: 1px solid var(--line); font: 700 .62rem var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.case-preview__footer i { color: var(--coral); font: normal 1.5rem var(--display); transition: transform .4s var(--ease); }
.case-preview:focus-visible { z-index: 1; outline-offset: -3px; background: var(--panel); }
.case-preview:focus-visible .case-preview__footer i { transform: translate(3px, -3px); }
.cases-preview__foot { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-top: 2rem; }
.cases-preview__foot > span { color: var(--gray); font-size: .85rem; }

/* Method is a quiet, scannable supporting list. */
.process.section { padding: clamp(3.5rem, 5vw, 5rem) 0; border-top: 1px solid var(--line); background: var(--ink-soft); }
.process-layout { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(3rem, 7vw, 7rem); }
.process-intro h2 { margin: 1.5rem 0 1rem; font: 500 clamp(1.8rem, 2.8vw, 2.75rem)/1.1 var(--display); letter-spacing: -.05em; }
.process-intro > p:last-child { max-width: 31ch; color: var(--gray); font-size: .9rem; line-height: 1.7; }
.process-list { list-style: none; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 2rem .9fr 1.3fr; align-items: baseline; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); transition: border-color .3s; }
.process-step__number { color: var(--gray); font: 400 .65rem var(--mono); }
.process-step h3 { font: 500 clamp(1.1rem, 1.5vw, 1.45rem)/1.2 var(--display); letter-spacing: -.03em; transition: color .3s; }
.process-step p { color: var(--gray); font-size: .82rem; line-height: 1.6; }
@media (hover: hover) and (pointer: fine) {
  .case-preview:hover .case-preview__art img { opacity: 1; }
  .case-preview:hover .case-preview__footer i { transform: translate(3px, -3px); }
  .process-step:hover { border-color: var(--line-red); }
  .process-step:hover h3 { color: var(--coral); }
}

.contact { padding-bottom: 7rem; background: var(--red-dark); overflow: hidden; }
.contact::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 50%, rgba(255,77,93,.25), transparent 24%), linear-gradient(110deg, transparent 55%, rgba(81,4,12,.35)); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.contact-mark { min-height: 560px; display: grid; place-items: center; padding-right: clamp(1.5rem, 4vw, 4rem); border-right: 1px solid rgba(255,255,255,.18); }
.contact-orbit-visual { --mx: 0; --my: 0; position: relative; width: min(100%, 510px); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: radial-gradient(circle at 50% 48%, rgba(225,29,46,.25), transparent 30%), linear-gradient(145deg, #151516, #09090a 68%); box-shadow: inset 0 0 70px rgba(0,0,0,.65), 0 35px 70px rgba(55,3,9,.35); }
.contact-orbit-visual::after { content: ""; position: absolute; z-index: 4; inset: 0; background: radial-gradient(circle, transparent 35%, rgba(0,0,0,.42)); pointer-events: none; }
.contact-orbit-visual .lab-grid { opacity: .18; }
.contact-orbit-visual .orbit { top: 50%; }
.contact-orbit-visual .orbit--outer { width: 78%; }
.contact-orbit-visual .orbit--inner { width: 54%; }
.contact-mark img { position: relative; z-index: 3; width: 42%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.65)) drop-shadow(0 0 25px rgba(225,29,46,.35)); opacity: 1; }
.contact-orbit-label, .contact-orbit-status { position: absolute; z-index: 5; color: rgba(255,255,255,.5); font: 700 .5rem var(--mono); letter-spacing: .14em; }
.contact-orbit-label { top: 29px; left: 92px; }
.contact-orbit-status { right: 28px; bottom: 25px; display: flex; align-items: center; gap: .5rem; }
.contact-orbit-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 10px var(--red-hot); animation: pulse 1.8s infinite; }
.contact .kicker { color: var(--white); opacity: .65; }
.contact-copy h2 { margin-top: 1.8rem; font: 500 clamp(3.4rem, 5.9vw, 6.5rem)/.9 var(--display); letter-spacing: -.075em; }
.contact-copy h2 em { color: var(--pink); font-style: normal; }
.contact-copy > p:not(.kicker) { max-width: 42ch; margin-top: 2rem; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.contact-email { display: flex; justify-content: space-between; align-items: center; max-width: 680px; margin-top: 4rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.4); font: 500 clamp(1.15rem, 2.3vw, 2.25rem) var(--display); }
.contact-email i { font-style: normal; transition: transform .4s var(--ease); }
.contact-email:hover i { transform: rotate(45deg); }
.contact-meta { display: flex; justify-content: space-between; max-width: 680px; margin-top: 1.5rem; color: rgba(255,255,255,.55); font: 700 .6rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.contact-meta a { color: var(--white); }

.site-footer { padding: 4.5rem 0 2rem; background: #070708; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
.footer-grid > p { justify-self: end; font: 500 clamp(1.2rem, 2vw, 1.9rem) var(--display); letter-spacing: -.03em; }
.footer-grid > p span { color: var(--red-hot); }
.footer-links { display: flex; gap: 2rem; color: var(--gray); font-size: .78rem; }
.footer-links a { transition: color .25s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: flex-end; gap: 3rem; color: var(--gray-dark); font: 700 .55rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }

@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(255,36,56,0), 0 0 24px var(--red); } }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-breathe { 50% { width: 81%; opacity: .6; } }
@keyframes node-float { 50% { transform: translateY(-26px); opacity: .5; } }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 2.5rem; }
  .hero-copy h1 { font-size: clamp(3.4rem, 5.7vw, 5.2rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-actions { flex-direction: row; align-items: center; }
  .section-intro { grid-template-columns: .45fr 1.25fr .8fr; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 2.5rem), var(--shell)); }
  .site-header { height: 72px; }
  body.menu-open .site-header { background: transparent; border-color: transparent; backdrop-filter: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-inner > .brand { position: relative; z-index: 3; }
  .header-cta { display: none; }
  .nav-toggle { display: grid; position: relative; z-index: 3; justify-self: end; }
  .nav { position: fixed; inset: auto; top: 0; left: 0; width: 100vw; height: 100dvh; min-height: 100svh; z-index: 2; padding: max(6.5rem, calc(env(safe-area-inset-top) + 5.5rem)) 1.25rem max(2rem, env(safe-area-inset-bottom)); background: rgba(8,8,8,.99); flex-direction: column; align-items: flex-start; justify-content: center; gap: .65rem; visibility: hidden; opacity: 0; overflow-y: auto; overscroll-behavior: contain; transition: opacity .35s, visibility .35s; }
  .nav.is-open { visibility: visible; opacity: 1; }
  .nav a { width: 100%; padding: .7rem 0; color: var(--paper); font: 500 clamp(2.3rem, 9vw, 4rem) var(--display); letter-spacing: -.05em; border-bottom: 1px solid var(--line); }
  .nav .nav-contact-mobile { display: flex; align-items: center; justify-content: space-between; margin-top: .65rem; padding: .9rem 1rem; border: 1px solid var(--red-hot); background: var(--red-hot); color: var(--white); font-size: 1rem; letter-spacing: -.02em; }
  .nav .nav-contact-mobile::before { display: none; }
  .nav .nav-contact-mobile span { font-size: 1.2rem; }
  .hero { min-height: auto; padding: 8.5rem 0 5rem; }
  .particle-network { opacity: .52; mask-image: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.4) 34%, #000 64%, rgba(0,0,0,.76) 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { max-width: 100%; white-space: normal; font-size: clamp(3.4rem, 11vw, 6rem); }
  .launch-lab { justify-self: center; max-width: 610px; margin-top: 2rem; }
  .hero-index { display: none; }
  .section-intro { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .section-summary { justify-self: start; }
  .service-trigger { grid-template-columns: 45px 65px 1fr 40px; gap: 1.3rem; }
  .service-panel__inner { padding-left: 123px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-mark { min-height: 320px; padding: 0 0 3rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .contact-orbit-visual { width: min(100%, 430px); }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 1.5rem), var(--shell)); }
  .section { padding: 5.5rem 0; }
  .brand img { width: 124px; }
  .hero { padding-top: 7.5rem; }
  .particle-network { opacity: .36; }
  .particle-cursor-glow { display: none; }
  .hero-kicker { max-width: 32ch; align-items: flex-start; font-size: .57rem; }
  .hero-grid, .hero-copy, .hero-line, .hero-line > span { width: 100%; min-width: 0; max-width: calc(100vw - 1.5rem); }
  .hero-copy h1 { font-size: clamp(3rem, 13.6vw, 4.6rem); line-height: .9; }
  .hero-line > span { white-space: normal; }
  .hero-bottom, .hero-bottom > p { width: 100%; min-width: 0; }
  .hero-bottom { margin-top: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .launch-lab { aspect-ratio: .82; }
  .rocket-wrap { width: 61%; left: 15%; top: 23%; }
  .launch-control { right: 5%; bottom: 4%; }
  .lab-label--side { display: none; }
  .lab-metric--left { bottom: 5%; }
  .lab-metric--right { top: 11%; }
  .section-intro h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .service-trigger { min-height: 190px; grid-template-columns: 34px 1fr 36px; padding: 1.5rem 0; gap: .8rem; }
  .service-icon { display: none; }
  .service-title { font-size: 1.8rem; }
  .service-summary { font-size: .84rem; }
  .service-panel__inner { padding: 0 0 1.5rem 42px; }
  .service-options, .service-options--support { grid-template-columns: 1fr; }
  .service-option { min-height: 0; padding: 1.25rem; }
  .formula { gap: .35rem; }
  .formula span { width: 49px; }
  .manifesto-copy h2 { font-size: 2.55rem; }
  .manifesto-note { grid-template-columns: 32px 1fr; }
  .contact-mark { min-height: 240px; padding-bottom: 2rem; }
  .contact-orbit-visual { width: min(100%, 320px); }
  .contact-orbit-label { top: 24px; left: 72px; font-size: .44rem; }
  .contact-orbit-status { right: 22px; bottom: 21px; font-size: .43rem; }
  .contact-copy h2 { font-size: clamp(2.9rem, 13vw, 4rem); }
  .contact-email { font-size: 1.05rem; }
  .contact-meta { align-items: flex-start; gap: 1rem; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > p { justify-self: start; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; }
  .footer-bottom { justify-content: flex-start; flex-wrap: wrap; gap: 1rem 2rem; }
}

@media (max-width: 900px) {
  .cases-preview__head h2 { font-size: clamp(4rem, 10vw, 6rem); }
  .cases-preview__list { grid-template-columns: 1fr 1fr; }
  .case-preview--featured { grid-column: 1 / -1; grid-row: auto; border-right: 0; }
  .case-preview { padding: 1.5rem; }
  .case-preview--featured { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .case-preview--featured .case-preview__meta, .case-preview--featured .case-preview__footer { grid-column: 1 / -1; }
  .case-preview--featured .case-preview__art { grid-column: 2; grid-row: 2; min-height: 250px; margin: 1.5rem 0; }
  .case-preview--featured .case-preview__copy { grid-column: 1; grid-row: 2; align-content: end; padding-top: 2rem; }
  .case-preview--new-style { border-right: 1px solid var(--line); }
  .case-preview__meta { flex-wrap: wrap; gap: .3rem 1rem; }
  .case-preview__copy { grid-template-columns: 1fr; gap: 1rem; }
  .case-preview__art { min-height: 140px; }
  .case-preview--new-style .case-preview__art img { width: 90%; }
  .case-preview--mundo .case-preview__art img { width: 65%; }
  .process-layout { grid-template-columns: 1fr; gap: 2rem; }
  .process-intro > p:last-child { max-width: 48ch; }
}

@media (max-width: 620px) {
  .cases-preview__head { align-items: start; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
  .cases-preview__head h2 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .cases-preview__head .section-summary { max-width: 33ch; }
  .cases-preview__list { grid-template-columns: 1fr; }
  .case-preview, .case-preview--featured { grid-template-columns: 1fr; grid-column: auto; padding: 1.5rem 1rem; border-right: 0; }
  .case-preview--featured .case-preview__meta, .case-preview--featured .case-preview__footer, .case-preview--featured .case-preview__art, .case-preview--featured .case-preview__copy { grid-column: auto; grid-row: auto; }
  .case-preview--featured .case-preview__art { min-height: 210px; margin: 1.5rem 0 1rem; }
  .case-preview--featured .case-preview__art img { max-height: 260px; }
  .case-preview--featured .case-preview__copy { padding-top: 0; }
  .case-preview h3, .case-preview--featured h3 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .case-preview__art { min-height: 170px; margin: 1.25rem 0; }
  .case-preview__art img { height: 170px; }
  .case-preview--new-style .case-preview__art img { width: 85%; }
  .case-preview--mundo .case-preview__art img { width: 75%; height: 170px; }
  .case-preview__copy p, .case-preview--featured .case-preview__copy p { font-size: .9rem; max-width: 33ch; }
  .cases-preview__foot { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .process-step { grid-template-columns: 1.5rem 1fr; gap: .5rem 1rem; padding: 1.2rem 0; }
  .process-step p { grid-column: 2; }
}

@media (max-width: 390px) {
  .shell { width: min(calc(100% - 1.25rem), var(--shell)); }
  .brand img { width: 112px; }
  .nav { padding-inline: .75rem; }
  .nav a { font-size: clamp(2rem, 10.5vw, 2.6rem); }
  .hero { padding-top: 6.75rem; }
  .hero-copy h1 { font-size: clamp(2.7rem, 13.5vw, 3.3rem); }
  .hero-bottom > p { font-size: .92rem; }
  .button { min-width: 0; }
  .lab-metric { min-width: 88px; padding: .65rem; }
  .lab-metric strong { font-size: 1.2rem; }
  .lab-label--top { left: 72px; font-size: .46rem; }
  .launch-control { min-height: 44px; min-width: 136px; padding: .45rem .5rem .45rem .6rem; font-size: .56rem; }
  .launch-control i { width: 18px; height: 18px; }
  .service-title { font-size: 1.65rem; }
  .manifesto-copy h2 { font-size: 2.2rem; }
  .formula span { width: 43px; }
  .contact-orbit-visual { width: min(100%, 290px); }
  .contact-copy h2 { font-size: clamp(2.75rem, 12.6vw, 3.5rem); }
  .contact-email { gap: .75rem; font-size: .92rem; }
  .footer-grid > p { font-size: 1.15rem; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-orbit { display: none; }
}

@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; }
  .cursor-dot, .cursor-orbit { display: none; }
  .particle-network { opacity: .38; }
  .particle-cursor-glow { display: none; }
  .rocket-scroll, .rocket-flight, .rocket-depth, .rocket-float, .rocket, .rocket-exhaust, .rocket-glow, .flame { will-change: auto; }
}
