:root {
  --bg: #05030a;
  --bg-soft: #0b0711;
  --panel: rgba(14, 9, 22, .68);
  --panel-strong: rgba(12, 8, 19, .90);
  --white: #f9f7ff;
  --muted: #b8b0c4;
  --muted-2: #7e758a;
  --line: rgba(255, 255, 255, .12);
  --pink: #ff35b8;
  --violet: #9a63ff;
  --cyan: #50e7ff;
  --lime: #ddff4f;
  --max: 1320px;
  --radius: 30px;
  --shadow: 0 28px 100px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: #05030a; background: var(--lime); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; color: #05030a; background: var(--lime); border-radius: 99px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.ambient-video { position: fixed; inset: 0; z-index: -3; overflow: hidden; background: #05030a; }
.ambient-video video { width: 100%; height: 100%; object-fit: cover; opacity: .76; filter: saturate(1.18) contrast(1.08); transform: scale(1.04); }
.video-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,3,10,.05) 0%, rgba(5,3,10,.30) 42%, rgba(5,3,10,.80) 100%), radial-gradient(circle at 50% 20%, transparent 0, rgba(5,3,10,.13) 42%, rgba(5,3,10,.70) 100%); }
.video-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.video-noise { position: absolute; inset: -100%; opacity: .075; 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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); animation: noiseShift .28s steps(2) infinite; pointer-events: none; }
.cursor-aura { position: fixed; z-index: -1; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,53,184,.10), rgba(154,99,255,.04) 42%, transparent 70%); filter: blur(14px); transition: opacity .2s; }

@keyframes noiseShift { 0% { transform: translate3d(-2%,1%,0); } 25% { transform: translate3d(2%,-1%,0); } 50% { transform: translate3d(1%,2%,0); } 75% { transform: translate3d(-1%,-2%,0); } 100% { transform: translate3d(-2%,1%,0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
@keyframes pulseCore { 0%,100% { box-shadow: 0 0 0 0 rgba(255,53,184,.25), 0 0 90px rgba(255,53,184,.30); } 50% { box-shadow: 0 0 0 34px rgba(255,53,184,0), 0 0 130px rgba(80,231,255,.32); } }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0) rotate(-8deg); } 50% { transform: translate3d(0,-14px,0) rotate(-4deg); } }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(5,3,10,.72); border-color: var(--line); backdrop-filter: blur(24px); }
.nav-shell { height: 92px; display: flex; align-items: center; gap: 44px; }
.brand { width: 204px; flex: 0 0 auto; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.primary-nav a { position: relative; color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: color .2s; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: linear-gradient(90deg, var(--pink), var(--cyan)); transition: right .25s; }
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; padding: 12px 12px 12px 20px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.07); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(16px); transition: border-color .2s, background .2s, transform .2s; }
.nav-cta i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #05030a; background: var(--lime); font-style: normal; }
.nav-cta:hover { border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.12); }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.06); }
.nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 1px; margin: 5px auto; background: #fff; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 130px 0 30px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,3,10,.48) 0%, rgba(5,3,10,.10) 48%, rgba(5,3,10,.25) 100%); pointer-events: none; }
.hero-shell { position: relative; min-height: calc(100svh - 160px); display: grid; grid-template-columns: minmax(0,1.1fr) minmax(330px,.62fr); grid-template-rows: auto 1fr auto; gap: 20px 50px; align-items: center; }
.hero-meta { grid-column: 1 / -1; align-self: start; display: flex; justify-content: space-between; align-items: center; }
.live-status { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; color: rgba(255,255,255,.78); background: rgba(7,4,12,.38); font-size: .67rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(14px); }
.live-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 16px var(--pink); animation: pulseCore 2s infinite; }
.video-toggle { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 99px; background: rgba(7,4,12,.35); cursor: pointer; backdrop-filter: blur(14px); }
.video-toggle span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.10); font-size: .62rem; }
.video-toggle .play-icon { display: none; }
.video-toggle.paused .pause-icon { display: none; }
.video-toggle.paused .play-icon { display: grid; }
.video-toggle em { color: var(--muted); font-style: normal; font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-copy { position: relative; z-index: 2; max-width: 940px; }
.hero-eyebrow { margin: 0 0 20px; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 900; letter-spacing: .22em; }
.hero h1 { margin: 0; max-width: 950px; font-size: clamp(4.4rem, 8.6vw, 9rem); line-height: .86; letter-spacing: -.075em; text-transform: uppercase; text-wrap: balance; }
.gradient-word { display: block; color: transparent; background: linear-gradient(90deg, #fff 0%, var(--pink) 35%, var(--violet) 64%, var(--cyan) 100%); background-clip: text; -webkit-background-clip: text; filter: drop-shadow(0 12px 40px rgba(255,53,184,.18)); }
.hero-lead { max-width: 700px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.55vw, 1.28rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 17px 0 25px; border: 1px solid transparent; border-radius: 99px; cursor: pointer; font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; transition: transform .22s, border-color .22s, background .22s, box-shadow .22s; }
.button i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; font-style: normal; }
.button-primary { color: #09050e; background: var(--lime); box-shadow: 0 18px 42px rgba(221,255,79,.15); }
.button-primary i { background: #09050e; color: var(--lime); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(221,255,79,.23); }
.button-secondary { color: #fff; border-color: var(--line); background: rgba(255,255,255,.06); backdrop-filter: blur(18px); }
.button-secondary i { background: rgba(255,255,255,.10); }
.button-secondary:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.10); }
.button-bright { color: #05030a; background: var(--lime); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.06); }
.button-small { min-height: 44px; padding: 0 18px; }

.hero-orbit { justify-self: end; position: relative; width: min(34vw, 440px); aspect-ratio: 1; border-radius: 50%; filter: drop-shadow(0 30px 70px rgba(0,0,0,.30)); }
.orbit { position: absolute; inset: 3%; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; top: 50%; width: 14px; height: 14px; margin-top: -7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 22px var(--pink); }
.orbit::before { left: -7px; }
.orbit::after { right: -7px; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.orbit-one { animation: orbit 12s linear infinite; }
.orbit-two { inset: 19%; border-style: dashed; border-color: rgba(255,255,255,.18); animation: orbitReverse 18s linear infinite; }
.orbit-two::before { background: var(--lime); box-shadow: 0 0 20px var(--lime); }
.orbit-two::after { display: none; }
.orbit-center { position: absolute; inset: 31%; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(5,3,10,.48); backdrop-filter: blur(20px); box-shadow: inset 0 0 50px rgba(255,255,255,.05), 0 0 80px rgba(154,99,255,.18); animation: pulseCore 3.4s ease-in-out infinite; }
.orbit-center strong { font-size: clamp(3rem, 5vw, 5.4rem); line-height: .8; letter-spacing: -.08em; }
.orbit-center span { margin-top: 14px; color: var(--muted); font-size: .58rem; line-height: 1.25; font-weight: 900; letter-spacing: .22em; text-align: center; }
.orbit-label { position: absolute; padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; background: rgba(7,4,12,.58); font-size: .57rem; font-weight: 900; letter-spacing: .16em; backdrop-filter: blur(14px); }
.label-a { top: 6%; left: 10%; }
.label-b { right: -4%; top: 53%; }
.label-c { left: 7%; bottom: 5%; }
.hero-bottom { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; align-self: end; padding-top: 20px; }
.scroll-hint { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-size: .61rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.scroll-hint span { width: 1px; height: 38px; background: linear-gradient(to bottom, #fff, transparent); }
.hero-statement { color: rgba(255,255,255,.58); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-statement i { margin: 0 11px; color: var(--pink); font-style: normal; }

.signal-marquee { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(5,3,10,.72); backdrop-filter: blur(18px); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 16px 0; animation: marquee 28s linear infinite; }
.marquee-track span { color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 900; letter-spacing: .18em; white-space: nowrap; }
.marquee-track i { color: var(--pink); font-style: normal; }

.section { position: relative; padding: 145px 0; }
.section-index, .section-kicker { color: var(--lime); font-size: .68rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.intro-section { background: linear-gradient(180deg, rgba(5,3,10,.82), rgba(7,4,12,.93)); }
.intro-grid { display: grid; grid-template-columns: .26fr 1.24fr .72fr; gap: 60px; align-items: start; }
.intro-copy h2, .section-bar h2, .process-heading h2, .contact-copy h2, .pulse-copy h2 { margin: 17px 0 0; font-size: clamp(3rem, 5.7vw, 6.4rem); line-height: .96; letter-spacing: -.06em; text-wrap: balance; }
.intro-copy h2 em, .process-heading h2 em { color: var(--pink); font-style: italic; font-weight: 400; }
.intro-side > p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.78; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 40px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { min-height: 108px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.stat strong { display: block; font-size: 1.85rem; letter-spacing: -.04em; }
.stat span { display: block; margin-top: 6px; color: var(--muted-2); font-size: .66rem; line-height: 1.4; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }

.services-section { background: rgba(5,3,10,.94); }
.section-bar { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-bar h2 { font-size: clamp(3.4rem, 6vw, 7rem); }
.section-bar > p { margin: 0 0 8px; color: var(--muted); line-height: 1.8; }
.service-worlds { display: grid; gap: 18px; }
.service-card { position: relative; min-height: 320px; display: grid; grid-template-columns: 140px 1fr .8fr; gap: 34px; align-items: center; padding: 38px 44px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(110deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: inset 0 1px rgba(255,255,255,.05); transition: transform .35s ease, border-color .35s ease, background .35s ease; isolation: isolate; }
.service-card::before { content: ""; position: absolute; width: 430px; height: 430px; right: -160px; top: 50%; border-radius: 50%; background: radial-gradient(circle, var(--service-accent, rgba(255,53,184,.48)), transparent 66%); filter: blur(8px); transform: translateY(-50%); opacity: .35; z-index: -1; transition: transform .45s, opacity .45s; }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, transparent, rgba(255,255,255,.025)); opacity: 0; transition: opacity .35s; }
.service-card:nth-child(1) { --service-accent: rgba(255,53,184,.72); }
.service-card:nth-child(2) { --service-accent: rgba(154,99,255,.72); }
.service-card:nth-child(3) { --service-accent: rgba(80,231,255,.66); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.30); background: linear-gradient(110deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); }
.service-card:hover::before { transform: translate(-45px,-50%) scale(1.15); opacity: .55; }
.service-card:hover::after { opacity: 1; }
.service-top { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding-right: 25px; border-right: 1px solid var(--line); }
.service-top > span:first-child { font-size: 3.6rem; line-height: 1; font-weight: 900; letter-spacing: -.07em; color: rgba(255,255,255,.12); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); font-size: 1.3rem; }
.service-card h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.service-card p { margin: 20px 0 0; max-width: 680px; color: var(--muted); line-height: 1.72; }
.tag-list { align-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.tag { padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; color: rgba(255,255,255,.70); background: rgba(5,3,10,.30); font-size: .60rem; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; }

.pulse-section { padding-top: 0; background: rgba(5,3,10,.94); }
.pulse-card { min-height: 620px; display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; padding: clamp(38px, 6vw, 88px); border: 1px solid var(--line); border-radius: 44px; overflow: hidden; background: radial-gradient(circle at 75% 45%, rgba(154,99,255,.18), transparent 45%), linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.pulse-copy h2 strong { color: transparent; background: linear-gradient(90deg, var(--pink), var(--cyan)); background-clip: text; -webkit-background-clip: text; }
.pulse-copy > p { max-width: 650px; margin: 30px 0; color: var(--muted); font-size: 1.05rem; line-height: 1.78; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.40); font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { color: var(--lime); }
.pulse-visual { position: relative; min-height: 420px; }
.pulse-line { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translate(-50%,-50%); }
.line-one { width: 360px; height: 360px; animation: orbit 16s linear infinite; }
.line-two { width: 270px; height: 270px; border-style: dashed; animation: orbitReverse 12s linear infinite; }
.line-three { width: 430px; height: 250px; transform: translate(-50%,-50%) rotate(-20deg); border-color: rgba(255,53,184,.35); }
.pulse-line::after { content: ""; position: absolute; width: 12px; height: 12px; top: 50%; right: -6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.pulse-core { position: absolute; left: 50%; top: 50%; width: 160px; height: 160px; display: grid; place-items: center; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,53,184,.92), rgba(154,99,255,.65) 55%, rgba(5,3,10,.85)); animation: pulseCore 3s ease-in-out infinite; }
.pulse-core span { font-size: 2.2rem; font-weight: 900; letter-spacing: -.04em; }

.projects-section { background: linear-gradient(180deg, rgba(5,3,10,.94), rgba(8,5,14,.91)); }
.project-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-auto-rows: minmax(290px, auto); gap: 18px; }
.project-card { position: relative; min-height: 330px; display: flex; align-items: flex-end; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 80% 25%, rgba(255,53,184,.20), transparent 37%), linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); transition: transform .35s, border-color .35s; }
.project-card:nth-child(1) { grid-row: span 2; min-height: 680px; background: radial-gradient(circle at 74% 24%, rgba(255,53,184,.30), transparent 34%), radial-gradient(circle at 25% 72%, rgba(80,231,255,.12), transparent 35%), linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); }
.project-card:nth-child(2) { background: radial-gradient(circle at 80% 22%, rgba(154,99,255,.32), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); }
.project-card:nth-child(3) { background: radial-gradient(circle at 78% 20%, rgba(80,231,255,.24), transparent 37%), linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); }
.project-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -40px; top: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 70px rgba(154,99,255,.16), inset 0 0 50px rgba(255,255,255,.03); transition: transform .5s; }
.project-card::after { content: "PROACT"; position: absolute; right: 18px; top: 42%; color: rgba(255,255,255,.045); font-size: 5.7rem; font-weight: 900; letter-spacing: -.06em; transform: rotate(90deg); }
.project-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.30); }
.project-card:hover::before { transform: scale(1.18) rotate(20deg); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,3,10,.82), transparent 65%); }
.project-copy { position: relative; z-index: 2; max-width: 620px; }
.project-type { color: var(--lime); font-size: .62rem; font-weight: 900; letter-spacing: .16em; }
.project-card h3 { margin: 12px 0; font-size: clamp(2.1rem, 4vw, 4.6rem); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.project-card p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.65; }
.project-meta { margin-top: 22px; color: rgba(255,255,255,.55); font-size: .63rem; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }

.process-section { background: rgba(7,4,12,.94); }
.process-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.process-heading { position: sticky; top: 140px; align-self: start; }
.process-heading > p { max-width: 560px; margin: 28px 0 0; color: var(--muted); line-height: 1.8; }
.process-list { border-top: 1px solid var(--line); }
.process-step { position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s, background .25s; }
.process-step:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(255,255,255,.035), transparent); }
.step-number { color: var(--pink); font-size: .62rem; font-weight: 900; letter-spacing: .15em; }
.process-step h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 3rem); letter-spacing: -.045em; }
.process-step p { grid-column: 2; margin: -10px 0 0; max-width: 620px; color: var(--muted); line-height: 1.7; }

.contact-section { position: relative; padding: 150px 0; overflow: hidden; background: rgba(5,3,10,.90); border-top: 1px solid var(--line); }
.contact-light { position: absolute; width: 900px; height: 900px; left: -250px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,53,184,.22), rgba(154,99,255,.08) 42%, transparent 69%); filter: blur(20px); }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 140px; }
.contact-copy h2 { font-size: clamp(3.7rem, 6.5vw, 7rem); }
.contact-copy > p { max-width: 560px; margin: 28px 0 40px; color: var(--muted); font-size: 1.05rem; line-height: 1.78; }
.direct-mail { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 18px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.direct-mail small { grid-column: 1; color: var(--muted-2); font-size: .59rem; font-weight: 900; letter-spacing: .15em; }
.direct-mail span { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -.03em; overflow-wrap: anywhere; }
.direct-mail i { grid-row: 1 / 3; grid-column: 2; align-self: center; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #05030a; background: var(--lime); font-style: normal; }
.location-line { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.location-line strong { color: #fff; }
.contact-panel { padding: 32px; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; background: rgba(14,9,22,.72); box-shadow: var(--shadow); backdrop-filter: blur(28px); }
.panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .63rem; font-weight: 900; letter-spacing: .16em; }
.panel-head i { color: var(--pink); font-style: normal; text-shadow: 0 0 12px var(--pink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field > span { color: rgba(255,255,255,.60); font-size: .62rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; color: #fff; background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 14px; outline: 0; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input, .field select { height: 54px; padding: 0 15px; }
.field textarea { min-height: 150px; resize: vertical; padding: 15px; }
.field select { color-scheme: dark; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.27); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(221,255,79,.55); background: rgba(255,255,255,.075); box-shadow: 0 0 0 4px rgba(221,255,79,.07); }
.check-field { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0 22px; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.check-field input { margin-top: 5px; accent-color: var(--lime); }
.check-field a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.submit-button { width: 100%; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: .82rem; }
.form-status.success { color: var(--lime); }
.form-status.error { color: #ff7aa8; }

.site-footer { position: relative; background: #05030a; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.25fr .55fr .45fr .8fr; gap: 55px; padding: 80px 0 60px; }
.footer-brand img { width: 210px; }
.footer-brand p { margin: 26px 0 0; color: var(--muted); font-size: 1.15rem; line-height: 1.5; }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-nav > span, .footer-contact > span { margin-bottom: 8px; color: var(--muted-2); font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,.78); font-size: .88rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--lime); }
.footer-contact p { margin: 12px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.6; }
.footer-bottom { min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .60rem; font-weight: 900; letter-spacing: .13em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* Legal pages */
.legal-page { background: #08050d; }
.legal-page .ambient-video video { opacity: .18; }
.legal-page .video-wash { background: rgba(5,3,10,.78); }
.legal-hero { padding: 175px 0 70px; border-bottom: 1px solid var(--line); background: rgba(5,3,10,.76); }
.legal-hero h1 { margin: 16px 0 0; font-size: clamp(4rem, 8vw, 7rem); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 820px); gap: 90px; align-items: start; padding: 80px 0 120px; }
.legal-nav { position: sticky; top: 130px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.legal-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .07em; }
.legal-nav a:hover { color: var(--lime); }
.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 16px; font-size: clamp(1.6rem, 2.8vw, 2.4rem); letter-spacing: -.04em; }
.legal-content h3 { margin: 26px 0 10px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.78; }
.legal-content a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.32); }
.legal-note { margin-bottom: 34px; padding: 20px; border: 1px solid rgba(221,255,79,.25); border-radius: 16px; background: rgba(221,255,79,.055); color: #eaf9ad; }
.placeholder { background: rgba(255,203,62,.13); color: #ffd96e; }
.legal-value:empty, [data-hide-empty]:empty { display: none; }

.not-found { min-height: 100svh; display: grid; place-items: center; padding: 30px; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(255,53,184,.22), transparent 42%), #05030a; }
.not-found h1 { margin: 0; font-size: clamp(8rem, 28vw, 18rem); line-height: .8; color: transparent; background: linear-gradient(90deg, var(--pink), var(--cyan)); background-clip: text; -webkit-background-clip: text; }
.not-found h2 { margin: 30px 0 10px; font-size: 2rem; }
.not-found p { color: var(--muted); }
.not-found .button { margin-top: 18px; }

@media (max-width: 1120px) {
  .hero-shell { grid-template-columns: 1fr .52fr; gap: 20px; }
  .hero h1 { font-size: clamp(4.1rem, 9vw, 7.6rem); }
  .hero-orbit { width: min(36vw, 370px); }
  .intro-grid { grid-template-columns: .2fr 1fr; }
  .intro-side { grid-column: 2; }
  .service-card { grid-template-columns: 105px 1fr; }
  .tag-list { grid-column: 2; justify-content: flex-start; }
  .pulse-card { grid-template-columns: 1fr .62fr; }
  .process-shell, .contact-grid { gap: 60px; }
  .footer-top { grid-template-columns: 1.2fr .6fr .6fr; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 880px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .nav-shell { height: 76px; }
  .brand { width: 170px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .primary-nav { position: fixed; inset: 84px 16px auto; display: grid; gap: 0; padding: 12px; margin: 0; opacity: 0; transform: translateY(-10px); pointer-events: none; border: 1px solid var(--line); border-radius: 20px; background: rgba(7,4,12,.96); backdrop-filter: blur(24px); transition: opacity .25s, transform .25s; }
  .primary-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border: 0; }
  .primary-nav a::after { display: none; }
  .hero { padding-top: 105px; }
  .hero-shell { min-height: calc(100svh - 120px); grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; }
  .hero-copy { align-self: center; }
  .hero h1 { font-size: clamp(3.7rem, 14vw, 7rem); }
  .hero-orbit { position: absolute; right: -125px; top: 29%; width: 330px; opacity: .55; }
  .hero-bottom { padding-top: 45px; }
  .hero-statement { display: none; }
  .section { padding: 105px 0; }
  .intro-grid, .section-bar, .pulse-card, .process-shell, .contact-grid, .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-side { grid-column: auto; }
  .section-bar { margin-bottom: 45px; }
  .section-bar h2, .intro-copy h2, .process-heading h2, .contact-copy h2 { font-size: clamp(3rem, 10vw, 5rem); }
  .service-card { min-height: 360px; grid-template-columns: 82px 1fr; padding: 28px; }
  .service-card h3 { font-size: clamp(2.3rem, 7vw, 4rem); }
  .pulse-card { padding: 40px 28px; }
  .pulse-visual { min-height: 330px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(1) { grid-row: auto; min-height: 540px; }
  .process-heading, .contact-copy { position: static; }
  .contact-section { padding: 105px 0; }
  .legal-nav { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 600px) {
  .ambient-video video { opacity: .64; }
  .video-grid { background-size: 52px 52px; }
  .cursor-aura { display: none; }
  .hero { min-height: auto; padding: 102px 0 34px; }
  .hero-shell { min-height: calc(100svh - 136px); }
  .hero-meta { align-items: flex-start; }
  .live-status { max-width: 230px; line-height: 1.35; }
  .video-toggle em { display: none; }
  .hero-eyebrow { margin-bottom: 16px; font-size: .61rem; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.3rem); line-height: .89; }
  .hero-lead { margin-top: 22px; font-size: .96rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-orbit { width: 250px; right: -115px; top: 33%; opacity: .36; }
  .orbit-label { display: none; }
  .scroll-hint { display: none; }
  .marquee-track { gap: 24px; }
  .section { padding: 88px 0; }
  .intro-grid { gap: 28px; }
  .stats-grid { margin-top: 28px; }
  .stat { min-height: 96px; padding: 15px; }
  .stat strong { font-size: 1.45rem; }
  .section-bar h2, .intro-copy h2, .process-heading h2, .contact-copy h2, .pulse-copy h2 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .service-card { min-height: 420px; display: block; padding: 24px; }
  .service-top { min-height: 60px; flex-direction: row; align-items: flex-start; padding: 0 0 20px; margin-bottom: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-top > span:first-child { font-size: 2.5rem; }
  .service-card h3 { font-size: 2.6rem; }
  .tag-list { margin-top: 28px; justify-content: flex-start; }
  .pulse-card { border-radius: 28px; }
  .pulse-visual { min-height: 280px; transform: scale(.84); }
  .project-card, .project-card:nth-child(1) { min-height: 470px; padding: 24px; }
  .project-card h3 { font-size: 2.55rem; }
  .project-card::after { font-size: 4rem; }
  .process-step { grid-template-columns: 75px 1fr; gap: 14px; }
  .process-step p { grid-column: 1 / -1; margin-top: 2px; }
  .contact-panel { padding: 22px 18px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; padding-top: 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
  .legal-hero { padding: 130px 0 55px; }
  .legal-layout { padding-top: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ambient-video video { display: none; }
  .ambient-video { background: #08050d url('/assets/img/proact-video-poster.jpg') center / cover no-repeat; }
}

.service-copy { min-width: 0; }
.service-side { align-self: stretch; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 26px; }
.service-arrow { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: #05030a; background: var(--lime); font-size: 1.2rem; transition: transform .3s; }
.service-card:hover .service-arrow { transform: rotate(45deg) scale(1.06); }
@media (max-width: 1120px) {
  .service-side { grid-column: 2; flex-direction: row; align-items: flex-end; }
}
@media (max-width: 600px) {
  .service-side { display: block; margin-top: 28px; }
  .service-arrow { position: absolute; right: 24px; top: 24px; width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  .hero-copy { min-width: 0; width: 100%; }
  .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 10.8vw, 3.5rem); line-height: .92; overflow-wrap: normal; hyphens: manual; }
  .hero-orbit { width: 190px; right: -84px; top: 46%; opacity: .18; }
}
@media (max-width: 600px) {
  .hero-orbit { top: auto; bottom: 8px; right: -92px; opacity: .16; }
}
@media (max-width: 600px) {
  .service-card h3 { max-width: calc(100% - 44px); font-size: clamp(1.95rem, 8.7vw, 2.3rem); line-height: 1; overflow-wrap: anywhere; hyphens: auto; }
}
@media (max-width: 600px) {
  .service-card h3 { font-size: 1.78rem; letter-spacing: -.055em; }
}
@media (max-width: 600px) {
  .service-card h3 { max-width: 100%; font-size: 1.62rem; overflow-wrap: normal; word-break: normal; hyphens: manual; }
}
