:root {
  --ink: #080808;
  --ink-2: #121212;
  --paper: #f2efe9;
  --white: #ffffff;
  --muted: #a5a5a5;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(8,8,8,.14);
  --magenta: #b20d5d;
  --violet: #4a0ab4;
  --acid: #d7ff47;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 24px;
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }

.logo-crop { position: relative; display: block; overflow: visible; background: transparent; }
.logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity .7s var(--ease), visibility .7s;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { width: 116px; aspect-ratio: 1; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-line { position: absolute; bottom: 10vh; width: min(320px, 62vw); height: 2px; background: rgba(255,255,255,.18); overflow: hidden; }
.loader-line span { display: block; width: 45%; height: 100%; background: var(--acid); animation: loaderLine 1s ease-in-out infinite; }
@keyframes loaderPulse { 50% { transform: scale(.94); opacity: .72; } }
@keyframes loaderLine { from { transform: translateX(-110%); } to { transform: translateX(250%); } }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--magenta), var(--violet), var(--acid)); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1240px)/2));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: height .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
}
.site-header.is-scrolled { height: 76px; color: var(--ink); background: rgba(255,255,255,.92); border-color: rgba(8,8,8,.1); box-shadow: 0 14px 40px rgba(0,0,0,.08); backdrop-filter: blur(18px); }
.brand { justify-self: start; }
.brand-mark { width: 66px; height: 66px; transition: width .35s, height .35s; }
.site-header.is-scrolled .brand-mark { width: 55px; height: 55px; }
.site-header.is-scrolled .brand-mark img { filter: invert(1); }
.desktop-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 18px; padding: 13px 18px 13px 22px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: background .25s, color .25s, border-color .25s; }
.header-cta:hover { background: #fff; color: var(--ink); }
.site-header.is-scrolled .header-cta { border-color: rgba(8,8,8,.25); }
.site-header.is-scrolled .header-cta:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px 0 10px 18px; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 2px; margin: 6px 0; background: currentColor; transition: transform .3s, opacity .3s; }
.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 { position: fixed; inset: 76px 0 0; display: none; padding: 48px 24px; color: #fff; background: rgba(8,8,8,.98); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .35s var(--ease); }
.mobile-menu.is-open { transform: none; opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu a { padding: 16px 0; font-size: clamp(30px, 10vw, 54px); font-weight: 800; line-height: 1; border-bottom: 1px solid rgba(255,255,255,.14); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--ink); padding: 150px 0 94px; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 20%; background: linear-gradient(transparent, rgba(0,0,0,.42)); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 75% 45%, #000 0, transparent 68%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .55; }
.hero-orb--one { width: 48vw; height: 48vw; right: -16vw; top: -16vw; background: radial-gradient(circle at 30% 60%, rgba(178,13,93,.9), rgba(74,10,180,.12) 48%, transparent 70%); animation: orbFloat 12s ease-in-out infinite alternate; }
.hero-orb--two { width: 33vw; height: 33vw; left: 34%; bottom: -22vw; background: radial-gradient(circle, rgba(74,10,180,.74), transparent 68%); animation: orbFloat 15s ease-in-out infinite alternate-reverse; }
@keyframes orbFloat { to { transform: translate3d(3vw, 2vw, 0) scale(1.1); } }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr); gap: 56px; align-items: center; }
.hero-copy { padding-top: 30px; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .19em; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow--dark { color: rgba(8,8,8,.58); }
.hero h1, .section-heading h2, .tech-copy h2, .process-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(60px, 7.3vw, 112px); font-weight: 800; line-height: .88; letter-spacing: -.065em; }
h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.hero h1 em { color: var(--acid); }
.hero-intro { max-width: 650px; margin: 32px 0 0; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 58px; padding: 0 24px 0 29px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s; }
.button:hover { transform: translateY(-3px); }
.button--light { color: var(--ink); background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.button--light:hover { background: var(--acid); }
.button--dark { color: #fff; background: var(--ink); }
.button--dark:hover { background: var(--magenta); box-shadow: 0 15px 36px rgba(178,13,93,.2); }
.text-link { display: inline-flex; gap: 14px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateY(4px); }
.hero-pillars { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 56px; }
.hero-pillars span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.74); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

.hero-visual { position: relative; width: min(520px, 42vw); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; perspective: 1000px; }
.hero-stage { position: relative; width: 74%; aspect-ratio: 1; display: grid; place-items: center; transition: transform .3s ease-out; transform-style: preserve-3d; }
.logo-stage { position: relative; width: 77%; aspect-ratio: 1; padding: 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); box-shadow: 0 32px 90px rgba(0,0,0,.44); backdrop-filter: blur(7px); animation: logoFloat 5s ease-in-out infinite; }
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; width: 24px; height: 24px; border-color: var(--acid); border-style: solid; }
.logo-stage::before { left: -6px; top: -6px; border-width: 2px 0 0 2px; }
.logo-stage::after { right: -6px; bottom: -6px; border-width: 0 2px 2px 0; }
.hero-logo { width: 100%; height: 100%; padding: 8%; filter: drop-shadow(0 10px 24px rgba(0,0,0,.32)); }
@keyframes logoFloat { 50% { transform: translateY(-12px) rotate(.35deg); } }
.stage-ring { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.stage-ring::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.stage-ring--outer { inset: 1%; animation: rotate 22s linear infinite; }
.stage-ring--outer::before { left: 12%; top: 12%; }
.stage-ring--inner { inset: 12%; border-style: dashed; animation: rotateReverse 16s linear infinite; }
.stage-ring--inner::before { right: 7%; bottom: 24%; background: var(--magenta); box-shadow: 0 0 18px var(--magenta); }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotateReverse { to { transform: rotate(-360deg); } }
.stage-label { position: absolute; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; }
.stage-label--one { top: 0; left: 50%; transform: translateX(-50%); }
.stage-label--two { right: -7%; top: 50%; transform: rotate(90deg); }
.stage-label--three { bottom: 0; left: 50%; transform: translateX(-50%); }
.visual-note { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 13px; color: #fff; background: rgba(8,8,8,.64); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(9px); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.visual-note b { color: var(--acid); font-size: 18px; letter-spacing: -.03em; }
.visual-note--top { top: 16%; left: -2%; }
.visual-note--bottom { right: -2%; bottom: 18%; }
.hero-footer { position: absolute; z-index: 2; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.hero-footer-line { flex: 1; height: 1px; background: rgba(255,255,255,.18); }

.marquee { overflow: hidden; color: var(--ink); background: var(--acid); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: marquee 30s linear infinite; }
.marquee span { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.marquee i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading--split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; }
.section-heading h2 { max-width: 860px; font-size: clamp(48px, 5.5vw, 82px); line-height: .98; }
.section-heading h2 em { color: var(--magenta); }
.heading-copy { color: #555; font-size: 18px; line-height: 1.8; }
.heading-copy p { margin: 0 0 18px; }

.about { background: var(--paper); }
.principles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 84px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.principle { position: relative; min-height: 330px; padding: 44px; background: var(--paper); transition: background .35s, color .35s; }
.principle:not(.principle--visual):hover { color: #fff; background: var(--ink); }
.principle-number { display: inline-flex; margin-bottom: 72px; color: var(--magenta); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.principle h3 { max-width: 350px; margin: 0 0 15px; font-size: 32px; line-height: 1.05; letter-spacing: -.04em; }
.principle p { max-width: 480px; margin: 0; color: #666; }
.principle:hover p { color: rgba(255,255,255,.64); }
.principle--visual { display: grid; place-items: center; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--violet), var(--magenta)); }
.blueprint { position: relative; width: 260px; aspect-ratio: 1; display: grid; place-items: center; text-align: center; }
.blueprint strong { position: relative; z-index: 2; font-size: 52px; letter-spacing: -.07em; }
.blueprint small { position: absolute; z-index: 2; bottom: 70px; width: max-content; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.blueprint-ring { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.blueprint-ring--1 { animation: rotate 16s linear infinite; border-style: dashed; }
.blueprint-ring--2 { inset: 17%; animation: rotateReverse 12s linear infinite; }
.blueprint-ring--3 { inset: 33%; background: rgba(255,255,255,.09); }

.services { color: #fff; background: var(--ink); }
.services-heading { align-items: start; }
.services .section-heading h2 em { color: var(--acid); }
.services .heading-copy { color: rgba(255,255,255,.58); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 76px; }
.service-card { position: relative; min-height: 520px; padding: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #101010; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.service-card::before { content: ""; position: absolute; width: 230px; height: 230px; right: -120px; bottom: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(178,13,93,.48), transparent 68%); opacity: 0; transition: opacity .35s, transform .35s; }
.service-card:hover { z-index: 2; transform: translateY(-8px); border-color: rgba(215,255,71,.5); background: #151515; }
.service-card:hover::before { opacity: 1; transform: scale(1.35); }
.service-card--feature { min-height: 580px; background: linear-gradient(150deg, #171717, #0c0c0c); }
.service-card--feature:nth-child(2) { background: linear-gradient(150deg, rgba(74,10,180,.86), #111 72%); }
.service-card--feature:nth-child(3) { background: linear-gradient(150deg, rgba(178,13,93,.8), #111 72%); }
.service-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; }
.service-number { color: rgba(255,255,255,.44); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.service-top svg { width: 43px; height: 43px; fill: none; stroke: var(--acid); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; margin: 88px 0 20px; font-size: 32px; line-height: 1.02; letter-spacing: -.04em; }
.service-card p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.6); line-height: 1.72; }
.service-card ul { position: relative; z-index: 1; display: grid; gap: 9px; margin: 28px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.service-card li { position: relative; padding-left: 17px; color: rgba(255,255,255,.74); font-size: 13px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--acid); }

.tech-section { overflow: hidden; color: #fff; background: #121212; border-top: 1px solid rgba(255,255,255,.1); }
.tech-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: center; }
.tech-copy h2 { font-size: clamp(48px, 5vw, 78px); line-height: .96; }
.tech-copy h2 em { color: #d9a7ff; }
.tech-copy > p:not(.eyebrow) { margin: 30px 0 0; color: rgba(255,255,255,.6); font-size: 18px; line-height: 1.8; }
.tech-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.tech-points span { padding: 10px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.event-console { padding: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.04); box-shadow: 0 44px 120px rgba(0,0,0,.45); transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }
.console-bar { height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 9px; letter-spacing: .12em; }
.console-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--magenta); box-shadow: 16px 0 #f3b332, 32px 0 var(--acid); margin-right: 33px; }
.console-bar b { color: rgba(255,255,255,.72); }
.console-bar small { margin-left: auto; color: var(--acid); }
.console-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px 0 0; }
.console-panel { position: relative; min-height: 140px; padding: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #0d0d0d; }
.console-panel--wide { grid-column: span 2; min-height: 210px; }
.panel-label { color: rgba(255,255,255,.43); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.console-panel strong { display: block; margin-top: 28px; color: var(--acid); font-size: 42px; line-height: 1; }
.console-panel small { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .11em; }
.chart-bars { position: absolute; inset: 55px 22px 18px; display: flex; align-items: end; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.16); }
.chart-bars i { flex: 1; height: var(--h); background: linear-gradient(var(--acid), var(--violet)); border-radius: 4px 4px 0 0; animation: bars 2.2s var(--ease) infinite alternate; transform-origin: bottom; }
.chart-bars i:nth-child(2n) { animation-delay: -.6s; }
@keyframes bars { to { transform: scaleY(.72); opacity: .74; } }
.console-panel--map { min-height: 210px; background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px); background-size: 16px 16px; }
.map-dot { position: absolute; width: 12px; height: 12px; border: 2px solid #fff; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 18px var(--magenta); }
.map-dot--1 { left: 23%; top: 44%; }.map-dot--2 { right: 24%; top: 32%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }.map-dot--3 { right: 38%; bottom: 20%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.map-line { position: absolute; height: 1px; background: rgba(255,255,255,.45); transform-origin: left; }
.map-line--1 { width: 46%; left: 25%; top: 47%; transform: rotate(-14deg); }.map-line--2 { width: 30%; left: 50%; top: 58%; transform: rotate(48deg); }

.work { background: var(--paper); }
.work-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 440px); gap: 14px; margin-top: 76px; }
.work-card { position: relative; overflow: hidden; color: #fff; background: #111; }
.work-card--a { grid-row: span 2; }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.84)); }
.work-art { position: absolute; inset: 0; overflow: hidden; transition: transform .7s var(--ease); }
.work-card:hover .work-art { transform: scale(1.035); }
.work-art::before, .work-art::after, .work-art span, .work-art i, .work-art b { content: ""; position: absolute; display: block; }
.work-card--a .work-art { background: radial-gradient(circle at 60% 26%, rgba(215,255,71,.92), transparent 16%), linear-gradient(135deg, #4a0ab4 0 42%, #090909 42% 100%); }
.work-card--a .work-art::before { width: 58%; height: 58%; right: 8%; top: 12%; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.07), 0 0 0 110px rgba(255,255,255,.04); }
.work-card--a .work-art span { left: 9%; top: 8%; width: 38%; height: 76%; border-left: 1px solid rgba(255,255,255,.5); border-right: 1px solid rgba(255,255,255,.15); transform: skewX(-16deg); }
.work-card--b .work-art { background: linear-gradient(145deg, #b20d5d, #250412 70%); }
.work-card--b .work-art::before { width: 300px; height: 300px; right: -30px; top: -40px; border: 46px solid rgba(255,255,255,.1); border-radius: 50%; }
.work-card--b .work-art span { width: 120px; height: 120px; right: 70px; top: 90px; background: rgba(255,255,255,.9); transform: rotate(45deg); box-shadow: 0 0 80px rgba(255,255,255,.45); }
.work-card--c .work-art { background: linear-gradient(125deg, #e7dfd3, #9b8f80); }
.work-card--c .work-art::before { inset: 18% 10%; border: 1px solid rgba(8,8,8,.45); background-image: linear-gradient(rgba(8,8,8,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(8,8,8,.15) 1px, transparent 1px); background-size: 28px 28px; }
.work-card--c .work-art span { width: 52%; height: 60%; left: 23%; top: 20%; border: 16px solid var(--ink); border-top-width: 50px; }
.work-card--d .work-art { background: radial-gradient(circle at 30% 35%, #d7ff47 0 2%, transparent 3%), radial-gradient(circle at 70% 48%, #b20d5d 0 3%, transparent 4%), conic-gradient(from 220deg at 50% 100%, #4a0ab4, #060606, #b20d5d, #060606, #4a0ab4); }
.work-card--d .work-art::before { width: 105%; height: 60%; left: -3%; bottom: -32%; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.06), 0 0 0 60px rgba(255,255,255,.04); }
.work-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 34px; }
.work-content p { margin: 0 0 9px; color: var(--acid); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; }
.work-content h3 { max-width: 520px; margin: 0 0 12px; font-size: clamp(25px, 2.6vw, 43px); line-height: 1; letter-spacing: -.045em; }
.work-content span { color: rgba(255,255,255,.62); font-size: 12px; }

.process { color: #fff; background: var(--magenta); }
.process-heading { max-width: 820px; }
.process-heading h2 { font-size: clamp(50px, 6vw, 88px); }
.process-heading h2 em { color: var(--acid); }
.process-list { margin: 76px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 34px; align-items: start; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.28); transition: padding .35s var(--ease), background .35s; }
.process-list li:hover { padding-left: 24px; padding-right: 24px; background: rgba(0,0,0,.1); }
.process-list > li > span { padding-top: 5px; color: var(--acid); font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.process-list div { display: grid; grid-template-columns: .55fr 1fr; gap: 44px; align-items: baseline; }
.process-list h3 { margin: 0; font-size: 38px; line-height: 1; letter-spacing: -.04em; }
.process-list p { max-width: 630px; margin: 0; color: rgba(255,255,255,.7); }

.contact { overflow: hidden; color: var(--ink); background: #fff; }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.contact-orb--one { width: 500px; height: 500px; left: -280px; top: -180px; background: radial-gradient(circle, rgba(178,13,93,.18), transparent 70%); }
.contact-orb--two { width: 600px; height: 600px; right: -350px; bottom: -300px; background: radial-gradient(circle, rgba(74,10,180,.14), transparent 70%); }
.contact-layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy .eyebrow { color: rgba(8,8,8,.56); }
.contact-copy h2 { font-size: clamp(50px, 5.5vw, 82px); line-height: .96; }
.contact-copy h2 em { color: var(--magenta); }
.contact-copy > p:not(.eyebrow) { margin: 30px 0 0; color: #5d5d5d; font-size: 18px; line-height: 1.8; }
.contact-checks { display: grid; gap: 14px; margin-top: 36px; }
.contact-checks span { position: relative; padding-left: 28px; color: #333; font-size: 14px; font-weight: 700; }
.contact-checks span::before { content: "✓"; position: absolute; left: 0; color: var(--magenta); }
.project-form { display: grid; gap: 22px; padding: 42px; border: 1px solid var(--dark-line); background: rgba(242,239,233,.46); box-shadow: 0 28px 80px rgba(0,0,0,.07); }
.form-row { display: grid; gap: 18px; }
.form-row--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-row--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.project-form label { display: grid; gap: 8px; }
.project-form label > span, .project-form legend { color: #535353; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.project-form input:not([type="checkbox"]), .project-form select, .project-form textarea { width: 100%; border: 0; border-bottom: 1px solid #bcbcbc; border-radius: 0; outline: 0; color: var(--ink); background: transparent; padding: 10px 0 12px; transition: border-color .25s, box-shadow .25s; }
.project-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--magenta); box-shadow: 0 2px 0 var(--magenta); }
.project-form input[aria-invalid="true"], .project-form select[aria-invalid="true"], .project-form textarea[aria-invalid="true"] { border-color: #c91f28; }
.project-form textarea { resize: vertical; min-height: 110px; }
.project-form fieldset { margin: 2px 0; padding: 0; border: 0; }
.project-form legend { margin-bottom: 13px; }
.service-options { display: flex; flex-wrap: wrap; gap: 9px; }
.service-options label { display: block; cursor: pointer; }
.service-options input { position: absolute; opacity: 0; }
.service-options span { display: block; padding: 9px 12px; border: 1px solid #c9c9c9; border-radius: 999px; color: #555; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; transition: .25s; }
.service-options input:checked + span { color: #fff; background: var(--ink); border-color: var(--ink); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 8px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 10px !important; cursor: pointer; }
.consent input { accent-color: var(--magenta); }
.consent span { color: #666 !important; font-size: 11px !important; font-weight: 600 !important; text-transform: none !important; letter-spacing: 0 !important; }
.form-status { min-height: 22px; margin: -4px 0 0; color: var(--magenta); font-size: 13px; font-weight: 700; }

.site-footer { color: #fff; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 40px; padding: 76px 0; }
.footer-logo { width: 118px; aspect-ratio: 1; }
.footer-top p { margin: 0; color: rgba(255,255,255,.74); font-size: 25px; line-height: 1.3; }
.footer-links { justify-self: end; display: grid; gap: 9px; text-align: right; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.13); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

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

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 920px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { width: min(560px, 90vw); justify-self: center; margin-top: 34px; }
  .hero { padding-top: 145px; }
  .section-heading--split, .tech-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-copy { position: static; max-width: 720px; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 420px); }
  .work-card--a { grid-row: auto; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 28px); --radius: 18px; }
  .section { padding: 92px 0; }
  .site-header { height: 76px; }
  .brand-mark, .site-header.is-scrolled .brand-mark { width: 54px; height: 54px; }
  .hero { min-height: auto; padding: 124px 0 82px; }
  .hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-pillars { margin-top: 36px; }
  .hero-visual { width: 100%; }
  .visual-note { display: none; }
  .hero-footer { display: none; }
  .section-heading h2, .tech-copy h2, .process-heading h2, .contact-copy h2 { font-size: clamp(44px, 13vw, 64px); }
  .section-heading--split { gap: 30px; }
  .heading-copy, .tech-copy > p:not(.eyebrow), .contact-copy > p:not(.eyebrow) { font-size: 16px; }
  .principles-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .principle { min-height: 290px; padding: 30px; }
  .principle-number { margin-bottom: 52px; }
  .services-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .service-card, .service-card--feature { min-height: 0; padding: 28px; }
  .service-card h3 { margin-top: 65px; }
  .event-console { transform: none; padding: 9px; }
  .console-grid { grid-template-columns: 1fr 1fr; }
  .console-panel { min-height: 120px; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .work-card { min-height: 420px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 16px; }
  .process-list div { grid-template-columns: 1fr; gap: 10px; }
  .process-list h3 { font-size: 31px; }
  .project-form { padding: 24px 18px; }
  .form-row--2, .form-row--3 { grid-template-columns: 1fr; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .button--dark { width: 100%; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-self: start; text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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

/* Expanded DEZ10 site content */
.stats-band { position: relative; z-index: 3; color: #fff; background: #111; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.stat strong { color: var(--acid); font-size: clamp(38px, 4vw, 62px); line-height: .9; letter-spacing: -.055em; }
.stat span { max-width: 205px; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; line-height: 1.6; }

.mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.mission-card { min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; color: var(--ink); border: 1px solid var(--dark-line); background: #fff; }
.mission-card--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.mission-card > span { margin-bottom: auto; color: var(--magenta); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; }
.mission-card--dark > span { color: var(--acid); }
.mission-card h3 { max-width: 520px; margin: 68px 0 18px; font-size: clamp(32px, 3.7vw, 56px); line-height: .96; letter-spacing: -.05em; }
.mission-card p { max-width: 620px; margin: 0; color: #5d5d5d; font-size: 16px; line-height: 1.8; }
.mission-card--dark p { color: rgba(255,255,255,.64); }

.signature-services { color: #fff; background: var(--ink); }
.signature-services .section-heading h2 em { color: var(--acid); }
.signature-services .heading-copy { color: rgba(255,255,255,.62); }
.signature-grid { margin-top: 76px; border-top: 1px solid rgba(255,255,255,.16); }
.signature-card { display: grid; grid-template-columns: 140px 1fr; gap: 38px; padding: 46px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.signature-number { color: var(--acid); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.signature-kicker { margin: 0 0 9px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.signature-card h3 { margin: 0; font-size: clamp(32px, 4.4vw, 64px); line-height: .98; letter-spacing: -.05em; }
.signature-card > div:last-child > p:not(.signature-kicker) { max-width: 760px; margin: 22px 0 0; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; }
.signature-card ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 30px; max-width: 820px; margin: 30px 0 0; padding: 0; list-style: none; }
.signature-card li { position: relative; padding-left: 18px; color: rgba(255,255,255,.74); font-size: 13px; }
.signature-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }

.events-section { color: #fff; overflow: hidden; background: #0b0b0b; }
.events-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -340px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(178,13,93,.35), transparent 68%); }
.events-section .section-heading { position: relative; z-index: 1; }
.events-section .section-heading h2 em { color: var(--acid); }
.events-section .heading-copy { color: rgba(255,255,255,.62); }
.events-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 74px; }
.event-card { min-height: 540px; display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.045); transition: transform .35s var(--ease), background .35s, border-color .35s; }
.event-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.075); border-color: rgba(215,255,71,.42); }
.event-card--featured { grid-column: span 2; min-height: 590px; background: linear-gradient(135deg, rgba(74,10,180,.64), rgba(178,13,93,.32) 60%, rgba(255,255,255,.04)); }
.event-card--past { opacity: .86; }
.event-card-top { display: flex; justify-content: space-between; gap: 22px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.event-card-top time { color: var(--acid); white-space: nowrap; }
.event-index { margin: auto 0 20px; color: rgba(255,255,255,.15); font-size: clamp(58px, 9vw, 130px); font-weight: 900; line-height: .8; letter-spacing: -.07em; }
.event-card--featured .event-index { color: rgba(255,255,255,.17); }
.event-card h3 { max-width: 900px; margin: 0; font-size: clamp(34px, 4.5vw, 72px); line-height: .94; letter-spacing: -.055em; }
.event-card > p { max-width: 820px; margin: 22px 0 0; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.75; }
.event-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.event-meta span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.event-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.event-link span { color: var(--acid); font-size: 20px; transition: transform .25s; }
.event-link:hover span { transform: translate(4px,-4px); }

.testimonial-section { background: var(--paper); }
.testimonial-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: start; }
.testimonial-title { margin: 0; font-size: clamp(46px, 5.6vw, 82px); line-height: .94; letter-spacing: -.06em; }
.testimonial-title em { color: var(--magenta); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.testimonial-card { position: relative; margin: 0; padding: 56px; color: #fff; background: var(--violet); box-shadow: 0 30px 80px rgba(74,10,180,.18); }
.quote-mark { position: absolute; right: 30px; top: 14px; color: rgba(255,255,255,.15); font-family: Georgia, serif; font-size: 160px; line-height: 1; }
.testimonial-card > p { position: relative; margin: 0; font-size: clamp(25px, 3.1vw, 43px); line-height: 1.28; letter-spacing: -.035em; }
.testimonial-card footer { display: grid; gap: 2px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.24); }
.testimonial-card footer strong { color: var(--acid); font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.testimonial-card footer span { color: rgba(255,255,255,.62); font-size: 12px; }

.faq-section { color: #fff; background: var(--ink); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; align-items: start; }
.faq-intro { position: sticky; top: 124px; }
.faq-intro h2 { margin: 0; font-size: clamp(48px, 5.7vw, 82px); line-height: .94; letter-spacing: -.06em; }
.faq-intro h2 em { color: var(--acid); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.faq-intro > p:not(.eyebrow) { max-width: 430px; margin: 25px 0 0; color: rgba(255,255,255,.58); font-size: 17px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.18); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 27px 0; cursor: pointer; list-style: none; font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; line-height: 1.25; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--acid); font-size: 20px; transition: transform .3s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 780px; margin: -4px 0 28px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.8; }

.contact-details { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--dark-line); }
.contact-details > * { display: grid; gap: 3px; padding: 18px 0; border-bottom: 1px solid var(--dark-line); }
.contact-details span { color: #777; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.contact-details strong { color: var(--ink); font-size: 15px; line-height: 1.45; }
.contact-details a:hover strong { color: var(--magenta); }
.contact-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-social a { padding: 9px 12px; border: 1px solid #bbb; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.contact-social a:hover { color: #fff; background: var(--ink); border-color: var(--ink); }

.footer-top--expanded { grid-template-columns: 1.35fr repeat(3, minmax(0,1fr)); align-items: start; }
.footer-brand-block p { margin-top: 25px; }
.footer-column { display: grid; gap: 10px; }
.footer-column strong { margin-bottom: 9px; color: var(--acid); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.footer-column a { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.45; }
.footer-column a:hover { color: #fff; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 22px; font-size: 11px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .footer-top--expanded { grid-template-columns: 1.2fr repeat(3, minmax(0,1fr)); gap: 26px; }
}

@media (max-width: 1050px) {
  .mission-grid, .testimonial-layout, .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; max-width: 700px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--featured { grid-column: auto; }
  .footer-top--expanded { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat, .stat:first-child, .stat:nth-child(2), .stat:nth-child(3), .stat:nth-child(4) { min-height: 150px; border-left: 1px solid rgba(255,255,255,.12); border-right: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: 330px; padding: 28px; }
  .signature-card { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .signature-card ul { grid-template-columns: 1fr; }
  .event-card, .event-card--featured { min-height: 500px; padding: 26px; }
  .event-card-top { align-items: flex-start; flex-direction: column; gap: 7px; }
  .event-index { font-size: 64px; }
  .testimonial-card { padding: 34px 26px; }
  .quote-mark { font-size: 100px; }
  .faq-list summary { font-size: 20px; }
  .footer-top--expanded { grid-template-columns: 1fr; }
}
