@property --page-progress {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

:root {
  --violet: #6b46c2;
  --blue: #5bbada;
  --teal: #308890;
  --pink: #ff4dcf;
  --night: #020307;
  --paper: #f7f4ff;
  --muted: rgba(247, 244, 255, 0.62);
  --line: rgba(247, 244, 255, 0.18);
  --page-progress: 0;
  --flight-energy: 0;
  --flight-scale: 1;
  --cursor-x: 50%;
  --cursor-y: 50%;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--paper);
  background: var(--night);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--night); }
body { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
em { font-family: "Playfair Display", Georgia, serif; font-weight: 500; }

#auroraCanvas,
#cosmicCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#auroraCanvas { z-index: 0; background: #020307; }
#cosmicCanvas { z-index: 1; opacity: 0.64; }

#terrainCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.terrain-status {
  position: fixed;
  z-index: 19;
  left: 24px;
  bottom: 20px;
  max-width: min(380px, calc(100vw - 48px));
  margin: 0;
  color: rgba(247, 244, 255, .7);
  font-size: .8rem;
  line-height: 1.4;
  pointer-events: none;
}
.terrain-status[hidden] { display: none; }
.terrain-status.is-error {
  padding: 12px 16px;
  background: rgba(2, 3, 7, .9);
  border: 1px solid rgba(91, 186, 218, .3);
  border-radius: 12px;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

main, .site-footer { position: relative; z-index: 4; }
main { perspective: 1400px; perspective-origin: 50% 50%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 96px;
  padding: 0 clamp(24px, 4.2vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, border-color 400ms ease, height 400ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(2, 3, 7, 0.68);
  border-color: rgba(247, 244, 255, 0.1);
  backdrop-filter: blur(18px);
}

.wordmark { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-weight: 700; letter-spacing: 0.16em; font-size: 0.86rem; }
.wordmark-orbit { position: relative; width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid rgba(91, 186, 218, 0.72); border-radius: 50%; }
.wordmark-orbit::after { content: ""; position: absolute; inset: -4px 9px; border: 1px solid rgba(255, 77, 207, 0.58); border-radius: 50%; transform: rotate(50deg); }
.wordmark-orbit span { font-size: 0.72rem; }
.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 52px); }
.site-nav a, .header-cta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav a { position: relative; color: rgba(247, 244, 255, 0.72); transition: color 220ms ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--pink); transition: right 250ms ease; }
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 14px; }
.header-cta span { color: var(--pink); }

.chapter-rail {
  position: fixed;
  left: clamp(14px, 2vw, 34px);
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(247, 244, 255, 0.45);
  font: 500 0.62rem/1 "DM Mono", monospace;
}

.rail-current { color: #fff; }
.rail-line { position: relative; width: 1px; height: 118px; overflow: hidden; background: rgba(247, 244, 255, 0.2); }
.rail-line span { position: absolute; inset: 0; transform-origin: top; transform: scaleY(var(--page-progress)); background: linear-gradient(var(--blue), var(--pink)); }

.chapter { position: relative; min-height: 100vh; transform-style: preserve-3d; }
.section-pad { padding: clamp(120px, 16vw, 240px) clamp(28px, 8vw, 150px); }
.section-label { position: absolute; top: clamp(110px, 10vw, 160px); left: clamp(28px, 4.2vw, 76px); display: flex; align-items: center; gap: 14px; color: var(--muted); font: 500 0.65rem/1 "DM Mono", monospace; letter-spacing: 0.13em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.section-label span { color: var(--pink); }
.eyebrow { margin: 0; display: flex; align-items: center; gap: 13px; color: rgba(247, 244, 255, 0.66); font: 500 0.66rem/1.3 "DM Mono", monospace; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--pink)); }
.button { min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; width: fit-content; border-radius: 999px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #08040d; background: linear-gradient(110deg, var(--blue), #d6f7ff 52%, var(--pink)); box-shadow: 0 14px 50px rgba(91, 186, 218, 0.18); }
.button-primary:hover { box-shadow: 0 18px 70px rgba(255, 77, 207, 0.28); }
.button-outline { border: 1px solid rgba(247, 244, 255, 0.32); background: rgba(247, 244, 255, 0.04); backdrop-filter: blur(8px); }
.button-outline:hover { background: rgba(247, 244, 255, 0.1); }
.text-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 7px; border-bottom: 1px solid rgba(247, 244, 255, 0.48); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.text-link span, .text-link b { color: var(--pink); }

.hero { min-height: max(820px, 100svh); padding: 132px clamp(28px, 8vw, 150px) 40px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(107, 70, 194, 0.11), transparent 30%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero h1 { margin: clamp(38px, 5vh, 58px) 0 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: .01em; color: #fff; font-size: clamp(6rem, 9.7vw, 13.2rem); font-weight: 500; line-height: 0.78; letter-spacing: -0.065em; white-space: nowrap; text-shadow: 0 0 75px rgba(91, 186, 218, 0.13); }
.hero-statement { margin-top: clamp(34px, 5vh, 58px); display: grid; grid-template-columns: 1fr minmax(280px, 390px); align-items: end; gap: 50px; }
.hero-statement-solo { display: flex; justify-content: flex-start; }
.hero-statement-solo > div { width: min(390px, 100%); }
.hero-statement h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 5.2rem); font-weight: 500; line-height: 0.96; letter-spacing: -0.055em; }
.hero-statement h2 em { color: var(--blue); }
.hero-statement > div { display: flex; flex-direction: column; align-items: flex-start; gap: 27px; }
.hero-statement p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.pillar-jump { position: absolute; z-index: 3; right: clamp(28px, 4.2vw, 76px); top: 123px; display: flex; gap: 34px; }
.pillar-jump a { display: grid; grid-template-columns: auto auto; gap: 7px 13px; color: rgba(247,244,255,.72); font-size: 0.67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.pillar-jump a span { color: var(--pink); font: 500 .58rem/1 "DM Mono", monospace; }
.pillar-jump a i { grid-column: 2; color: var(--blue); font-style: normal; opacity: 0; transform: translateX(-6px); transition: 200ms ease; }
.pillar-jump a:hover i { opacity: 1; transform: translateX(0); }
.scroll-cue { position: absolute; right: clamp(28px, 4.2vw, 76px); bottom: 38px; display: flex; align-items: center; gap: 15px; color: rgba(247,244,255,.5); font: 500 .58rem/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(247,244,255,.24); border-radius: 50%; color: var(--blue); font-style: normal; animation: pulseDown 2s ease-in-out infinite; }
.hero-orbit { position: absolute; border: 1px solid rgba(91,186,218,.14); border-radius: 50%; pointer-events: none; }
.orbit-one { width: min(72vw, 1050px); aspect-ratio: 1; top: 46%; left: 50%; transform: translate(-50%,-50%) rotate(22deg); }
.orbit-two { width: min(54vw, 800px); aspect-ratio: 1; top: 48%; left: 49%; transform: translate(-50%,-50%) rotate(-29deg); border-color: rgba(255,77,207,.12); }

.about { min-height: 130vh; display: flex; flex-direction: column; justify-content: center; }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: clamp(70px, 10vw, 180px); }
.about-copy h2, .services-heading h2, .clients-heading h2, .blogs-heading h2 { margin: 28px 0 0; max-width: 920px; font-size: clamp(3rem, 6.2vw, 7.3rem); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.about-copy h2 em, .services-heading h2 em, .clients-heading h2 em, .blogs-heading h2 em { color: var(--blue); }
.about-body { padding-bottom: 8px; }
.about-body p { margin: 0 0 20px; color: var(--muted); font-size: clamp(.95rem, 1.15vw, 1.12rem); line-height: 1.75; }
.about-body .text-link { margin-top: 25px; }
.system-map { position: relative; margin: clamp(100px, 14vw, 210px) auto 0; width: min(76vw, 900px); aspect-ratio: 1.9; }
.system-ring { position: absolute; top: 50%; width: 48%; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(247,244,255,.19); border-radius: 50%; transform: translateY(-50%); }
.system-ring::before { content: ""; position: absolute; inset: 7%; border-radius: inherit; border: 1px solid rgba(247,244,255,.07); }
.system-ring span { position: absolute; top: 9%; font: 500 .62rem/1 "DM Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.ring-engineering { left: 0; box-shadow: inset 0 0 90px rgba(91,186,218,.09); }
.ring-management { left: 26%; box-shadow: inset 0 0 90px rgba(107,70,194,.11); }
.ring-marketing { right: 0; box-shadow: inset 0 0 90px rgba(255,77,207,.09); }
.ring-engineering span { color: var(--blue); }
.ring-management span { color: #a990ed; }
.ring-marketing span { color: var(--pink); }
.system-core { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 118px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: rgba(7,7,18,.85); border: 1px solid rgba(247,244,255,.34); box-shadow: 0 0 60px rgba(91,186,218,.19); }
.system-core > span { font-size: 2.5rem; font-weight: 600; }
.system-core small { position: absolute; top: calc(100% + 18px); color: var(--muted); font: 500 .58rem/1.4 "DM Mono", monospace; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.services-intro { position: relative; min-height: 92vh; display: grid; place-items: center; }
.services-heading { width: min(1080px, 86vw); text-align: center; }
.services-heading .eyebrow { justify-content: center; }
.services-heading > p:last-child { width: min(560px, 100%); margin: 40px auto 0; color: var(--muted); line-height: 1.75; }

.pillar { min-height: 125vh; padding: 14vh clamp(28px, 8vw, 150px); display: flex; align-items: center; overflow: hidden; }
.pillar-halo { position: absolute; left: 3%; top: 50%; width: 56vw; height: 56vw; transform: translateY(-50%); border-radius: 50%; filter: blur(16px); opacity: .3; }
.pillar-engineering .pillar-halo { background: radial-gradient(circle, rgba(91,186,218,.5), rgba(48,136,144,.14) 42%, transparent 70%); }
.pillar-management .pillar-halo { left: auto; right: 1%; background: radial-gradient(circle, rgba(107,70,194,.55), rgba(91,186,218,.1) 42%, transparent 70%); }
.pillar-marketing .pillar-halo { background: radial-gradient(circle, rgba(255,77,207,.46), rgba(107,70,194,.12) 42%, transparent 70%); }
.pillar-visual { position: absolute; left: 7vw; top: 50%; width: min(44vw, 680px); aspect-ratio: 1; transform: translateY(-50%); display: grid; place-items: center; }
.pillar-management .pillar-visual { left: auto; right: 7vw; }
.pillar-visual span { position: absolute; border: 1px solid rgba(247,244,255,.16); border-radius: 45% 55% 51% 49% / 53% 45% 55% 47%; animation: orbitMorph 13s linear infinite; }
.pillar-visual span:nth-child(1) { inset: 0; }
.pillar-visual span:nth-child(2) { inset: 10%; animation-direction: reverse; animation-duration: 18s; }
.pillar-visual span:nth-child(3) { inset: 20%; animation-duration: 9s; border-color: rgba(91,186,218,.28); }
.pillar-visual span:nth-child(4) { inset: 30%; animation-direction: reverse; border-color: rgba(255,77,207,.2); }
.pillar-visual strong { position: relative; font: 400 clamp(5rem, 10vw, 10rem)/1 "DM Mono", monospace; color: transparent; -webkit-text-stroke: 1px rgba(247,244,255,.33); }
.pillar-card { position: relative; z-index: 2; margin-left: auto; width: min(50vw, 730px); padding: clamp(36px, 5vw, 76px); border: 1px solid rgba(247,244,255,.18); background: linear-gradient(145deg, rgba(15,16,31,.58), rgba(4,5,12,.34)); backdrop-filter: blur(18px); box-shadow: 0 38px 100px rgba(0,0,0,.32); }
.pillar-management .pillar-card { margin-left: 0; margin-right: auto; }
.pillar-meta { display: flex; justify-content: space-between; padding-bottom: 25px; border-bottom: 1px solid rgba(247,244,255,.14); color: var(--muted); font: 500 .6rem/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.pillar-meta span:first-child { color: var(--pink); }
.pillar-card h2 { margin: 44px 0 0; font-size: clamp(3.5rem, 7vw, 7.5rem); font-weight: 500; line-height: .82; letter-spacing: -.07em; }
.pillar-card h3 { margin: 25px 0 0; font-size: clamp(1.5rem, 2.5vw, 2.7rem); font-weight: 500; letter-spacing: -.035em; }
.pillar-card h3 em { color: var(--blue); }
.pillar-marketing .pillar-card h3 em { color: var(--pink); }
.pillar-card > p { margin: 28px 0 0; max-width: 540px; color: var(--muted); line-height: 1.75; }
.pillar-card ul { margin: 35px 0; padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(247,244,255,.12); list-style: none; }
.pillar-card li { padding: 9px 13px; border: 1px solid rgba(247,244,255,.18); border-radius: 99px; color: rgba(247,244,255,.72); font: 500 .58rem/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }

.clients { min-height: 120vh; }
.clients-heading { text-align: center; }
.clients-heading .eyebrow { justify-content: center; }
.clients-heading h2 { margin-left: auto; margin-right: auto; }
.client-constellation { position: relative; margin: clamp(90px, 12vw, 170px) auto 0; width: min(1050px, 88vw); min-height: 500px; }
.client-constellation::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(91,186,218,.13), transparent 60%); filter: blur(15px); }
.constellation-path { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(91,186,218,.35), rgba(255,77,207,.3), transparent); transform-origin: left; }
.path-one { left: 13%; top: 37%; width: 73%; transform: rotate(14deg); }
.path-two { left: 16%; top: 67%; width: 70%; transform: rotate(-17deg); }
.client-node { position: absolute; width: 150px; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; border: 1px solid rgba(247,244,255,.15); border-radius: 50%; background: rgba(5,6,14,.5); backdrop-filter: blur(10px); transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease; }
.client-node:hover { border-color: rgba(91,186,218,.56); transform: scale(1.06); box-shadow: 0 0 55px rgba(91,186,218,.12); }
.client-node i { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 16px var(--pink); }
.client-node strong { font-size: .85rem; letter-spacing: .14em; }
.client-node small { color: var(--muted); font: 400 .55rem/1 "DM Mono", monospace; text-transform: uppercase; }
.client-node:nth-of-type(3) { left: 2%; top: 14%; }
.client-node:nth-of-type(4) { left: 29%; top: 2%; }
.client-node:nth-of-type(5) { right: 22%; top: 20%; }
.client-node:nth-of-type(6) { right: 0; top: 2%; }
.client-node:nth-of-type(7) { left: 18%; bottom: 0; }
.client-node:nth-of-type(8) { right: 17%; bottom: 0; }

.blogs { min-height: 115vh; }
.blogs-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.blogs-heading h2 { font-size: clamp(3rem, 5.4vw, 6.5rem); }
.blog-grid { margin-top: clamp(75px, 9vw, 130px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 34px); }
.blog-card { border-top: 1px solid rgba(247,244,255,.2); }
.blog-card > a { display: block; padding-top: 18px; }
.blog-art { position: relative; aspect-ratio: 1.35; overflow: hidden; background: rgba(247,244,255,.03); border: 1px solid rgba(247,244,255,.08); }
.blog-art::before, .blog-art::after, .blog-art span { content: ""; position: absolute; border-radius: 50%; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.blog-art::before { width: 70%; aspect-ratio: 1; left: 15%; top: 15%; border: 1px solid rgba(247,244,255,.18); }
.blog-art::after { width: 38%; aspect-ratio: 1; right: 7%; bottom: -8%; filter: blur(7px); }
.art-engineering::after { background: rgba(91,186,218,.45); box-shadow: 0 0 70px rgba(91,186,218,.28); }
.art-management::after { background: rgba(107,70,194,.5); box-shadow: 0 0 70px rgba(107,70,194,.32); }
.art-marketing::after { background: rgba(255,77,207,.43); box-shadow: 0 0 70px rgba(255,77,207,.26); }
.blog-art span { width: 12px; aspect-ratio: 1; left: 26%; top: 22%; background: var(--blue); box-shadow: 0 0 20px var(--blue); }
.art-marketing span { background: var(--pink); box-shadow: 0 0 20px var(--pink); }
.blog-art i { position: absolute; right: 20px; top: 18px; color: rgba(247,244,255,.3); font: 400 3rem/1 "DM Mono", monospace; font-style: normal; }
.blog-card:hover .blog-art::before { transform: rotate(40deg) scale(1.05); }
.blog-card:hover .blog-art::after { transform: scale(1.22); }
.blog-card > a > p { margin: 22px 0 0; display: flex; justify-content: space-between; color: var(--muted); font: 500 .58rem/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.blog-card > a > p span { color: var(--blue); }
.blog-card h3 { min-height: 76px; margin: 18px 0 25px; font-size: clamp(1.15rem, 1.6vw, 1.55rem); font-weight: 500; line-height: 1.35; letter-spacing: -.025em; }

.contact { min-height: 110vh; display: grid; place-items: center; overflow: hidden; text-align: center; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 54%, rgba(107,70,194,.17), transparent 43%); }
.contact-content { position: relative; z-index: 2; width: min(1000px, calc(100% - 48px)); }
.contact-content .eyebrow { justify-content: center; }
.contact-content h2 { margin: 38px 0 0; font-size: clamp(4rem, 9vw, 10rem); font-weight: 500; line-height: .84; letter-spacing: -.065em; }
.contact-content h2 em { color: var(--pink); }
.contact-content > p { width: min(530px, 100%); margin: 42px auto 0; color: var(--muted); line-height: 1.7; }
.button-large { min-height: 66px; margin-top: 34px; padding: 0 34px; }
.portal { position: absolute; left: 50%; top: 52%; width: min(84vw, 1040px); aspect-ratio: 1; transform: translate(-50%,-50%); }
.portal span { position: absolute; border-radius: 50%; border: 1px solid rgba(247,244,255,.12); animation: portalPulse 6s ease-in-out infinite; }
.portal span:nth-child(1) { inset: 0; }
.portal span:nth-child(2) { inset: 12%; border-color: rgba(91,186,218,.18); animation-delay: -1.5s; }
.portal span:nth-child(3) { inset: 24%; border-color: rgba(107,70,194,.25); animation-delay: -3s; }
.portal span:nth-child(4) { inset: 36%; border-color: rgba(255,77,207,.24); animation-delay: -4.5s; box-shadow: inset 0 0 80px rgba(255,77,207,.07); }

.site-footer { padding: 85px clamp(28px, 8vw, 150px) 34px; background: rgba(2,3,7,.72); border-top: 1px solid rgba(247,244,255,.13); backdrop-filter: blur(18px); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr .55fr .55fr; gap: clamp(30px, 6vw, 100px); padding-bottom: 80px; }
.footer-wordmark { font-size: clamp(2.8rem, 5vw, 5.7rem); font-weight: 500; line-height: .8; letter-spacing: -.07em; }
.footer-top > p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.75; }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: rgba(247,244,255,.63); font-size: .72rem; transition: color 200ms ease; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; border-top: 1px solid rgba(247,244,255,.1); color: rgba(247,244,255,.38); font: 400 .56rem/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }

.motion-ready .reveal { opacity: 0; filter: blur(13px); transform: translate3d(0, 120px, -220px) scale(.9); transition: opacity 1050ms cubic-bezier(.18,.72,.2,1), transform 1050ms cubic-bezier(.18,.72,.2,1), filter 950ms ease; }
.motion-ready .reveal.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
.motion-ready .pillar-visual { transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.motion-ready .pillar:hover .pillar-visual { transform: translateY(-50%) scale(var(--flight-scale)); }
.motion-ready .blog-card:nth-child(2) { transition-delay: 100ms; }
.motion-ready .blog-card:nth-child(3) { transition-delay: 200ms; }

@keyframes pulseDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes orbitMorph { to { transform: rotate(360deg); } }
@keyframes portalPulse { 0%,100% { transform: scale(.98); opacity: .55; } 50% { transform: scale(1.035); opacity: 1; } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { padding-top: 120px; }
  .pillar-jump { display: none; }
  .hero-statement { grid-template-columns: 1fr .75fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-body { max-width: 620px; margin-left: auto; }
  .pillar { min-height: 110vh; }
  .pillar-visual { width: 58vw; left: -8vw; }
  .pillar-management .pillar-visual { right: -8vw; }
  .pillar-card { width: 62vw; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header { height: 74px; padding: 0 20px; }
  .header-cta { font-size: .62rem; }
  .wordmark { font-size: .74rem; }
  .chapter-rail, .section-label { display: none; }
  .section-pad { padding: 120px 24px; }
  .hero { min-height: max(760px, 100svh); padding: 112px 24px 32px; justify-content: flex-start; }
  .hero .eyebrow { max-width: 230px; }
  .hero h1 { margin-top: 14vh; gap: .04em; font-size: clamp(3.4rem, 15.5vw, 6.4rem); line-height: .84; white-space: normal; }
  .hero-statement { margin-top: 5vh; grid-template-columns: 1fr; gap: 28px; }
  .hero-statement-solo { justify-content: flex-start; }
  .hero-statement h2 { font-size: 2.7rem; }
  .hero-statement > div { gap: 22px; }
  .hero-statement p { max-width: 440px; }
  .scroll-cue { display: none; }
  .orbit-one { width: 130vw; }
  .orbit-two { width: 96vw; }
  .about { min-height: auto; }
  .about-copy h2, .services-heading h2, .clients-heading h2, .blogs-heading h2 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .about-body { margin-left: 0; }
  .system-map { width: 104vw; margin-left: -26vw; aspect-ratio: 1.1; }
  .system-ring { width: 62%; }
  .ring-engineering { left: 3%; top: 38%; }
  .ring-management { left: 35%; top: 38%; }
  .ring-marketing { left: 19%; right: auto; top: 69%; }
  .system-core { top: 53%; width: 94px; }
  .services-intro { min-height: 85vh; }
  .services-heading { width: 100%; }
  .pillar { min-height: 115vh; padding: 105px 24px; align-items: flex-end; }
  .pillar-halo { width: 110vw; height: 110vw; left: -24%; top: 31%; }
  .pillar-management .pillar-halo { right: -24%; }
  .pillar-visual, .pillar-management .pillar-visual { width: 90vw; left: 5vw; right: auto; top: 29%; }
  .pillar-card, .pillar-management .pillar-card { width: 100%; margin: 0; padding: 32px 24px; }
  .pillar-card h2 { margin-top: 35px; font-size: clamp(3.4rem, 16vw, 5.8rem); }
  .pillar-card h3 { font-size: 1.55rem; }
  .pillar-card ul { margin-bottom: 28px; }
  .clients { min-height: auto; }
  .client-constellation { width: 100%; min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .constellation-path { display: none; }
  .client-node, .client-node:nth-of-type(n) { position: relative; inset: auto; width: 100%; aspect-ratio: 1.45; border-radius: 22px; }
  .blogs { min-height: auto; }
  .blogs-heading { align-items: flex-start; flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { display: block; }
  .blog-card h3 { min-height: auto; }
  .contact { min-height: 100svh; }
  .contact-content h2 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .portal { width: 145vw; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-wordmark { grid-column: 1 / -1; }
  .footer-top > p { grid-column: 1 / -1; }
  .footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; }
}

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