:root {
  --ink: #061120;
  --ink-soft: #0a192c;
  --surface: #0d2036;
  --text: #f4f8ff;
  --muted: #98a9bc;
  --line: rgba(181, 212, 244, .14);
  --cyan: #10c8ff;
  --blue: #176eff;
  --blue-soft: #70a8ff;
  --white: #fff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  font-family: "DM Sans", system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle at 68% 5%, rgba(23,110,255,.16), transparent 34%);
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; transform: translateY(-140%); border-radius: 10px; color: var(--ink); background: white; }
.skip-link:focus { transform: none; }
.ambient { position: fixed; z-index: -2; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .24; }
.ambient-one { width: 34vw; height: 34vw; top: 12%; right: -12%; background: #064cf6; }
.ambient-two { width: 26vw; height: 26vw; bottom: 8%; left: -14%; background: #00a4d6; opacity: .12; }
.cursor-light { position: fixed; z-index: -1; width: 440px; height: 440px; border-radius: 50%; pointer-events: none; opacity: .35; background: radial-gradient(circle, rgba(16,200,255,.11), transparent 68%); transform: translate3d(-50%, -50%, 0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(var(--max), calc(100% - 40px));
  min-height: 66px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6,17,32,.76);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  transition: background .25s, border-color .25s;
}
.site-header.scrolled { background: rgba(6,17,32,.94); border-color: rgba(181,212,244,.2); }
.brand, .footer-brand { display: flex; align-items: center; gap: 11px; }
.brand-symbol { width: 38px; height: 38px; overflow: hidden; flex: 0 0 auto; border-radius: 11px; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 12px 30px rgba(0,0,0,.22); }
.brand-symbol img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.brand-name, .footer-brand strong { font: 700 14px "Manrope", sans-serif; letter-spacing: -.02em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; color: #b9c6d5; font-size: 13px; }
.desktop-nav a, .site-footer nav a { transition: color .2s; }
.desktop-nav a:hover, .site-footer nav a:hover { color: white; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 11px; color: var(--ink); background: #fff; font-weight: 700; font-size: 12px; transition: transform .25s, box-shadow .25s; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,200,255,.14); }

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 62px;
}
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #9eb1c6; font-weight: 700; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
.hero h1 {
  margin: 25px 0 28px;
  max-width: 840px;
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.065em;
}
.hero-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 14px; cursor: pointer; color: white; background: none; font-weight: 700; font-size: 13px; transition: transform .25s, box-shadow .25s, color .25s, border-color .25s; }
.button-primary { padding: 0 20px; color: #03101c; background: linear-gradient(135deg, #ebfbff, #8be7ff 42%, #4e93ff); box-shadow: 0 18px 40px rgba(23,110,255,.2); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 52px rgba(23,110,255,.28); }
.button-text { padding: 0 2px; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0; color: #d3deea; }
.button-text:hover { color: white; border-color: var(--cyan); }

.brand-stage { position: relative; min-height: 570px; display: grid; place-items: center; perspective: 1100px; isolation: isolate; }
.stage-halo { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(16,200,255,.22), rgba(23,110,255,.08) 44%, transparent 72%); filter: blur(18px); }
.orbit { position: absolute; border: 1px solid rgba(100,174,255,.24); border-radius: 50%; transform-style: preserve-3d; }
.orbit-a { width: 86%; height: 37%; transform: rotateX(67deg) rotateZ(-17deg); animation: orbitA 18s linear infinite; }
.orbit-b { width: 61%; aspect-ratio: 1; border-style: dashed; opacity: .55; transform: rotateY(74deg) rotateZ(20deg); animation: orbitB 23s linear infinite; }
.logo-plane { position: relative; z-index: 3; width: min(390px, 72%); aspect-ratio: 1; transform-style: preserve-3d; transform: rotateX(5deg) rotateY(-5deg); transition: transform .12s linear; }
.logo-face { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.75); border-radius: 38px; background: #fff; box-shadow: 0 50px 90px rgba(0,0,0,.36), 0 0 70px rgba(16,200,255,.1); transform: translateZ(28px); }
.logo-face::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.5), transparent 34%); }
.logo-face img { width: 100%; height: 100%; object-fit: cover; }
.logo-depth { position: absolute; inset: 15px -10px -10px 15px; z-index: -1; border-radius: 38px; border: 1px solid rgba(103,174,255,.18); background: #0b315a; }
.depth-one { transform: translateZ(10px); }
.depth-two { inset: 28px -20px -20px 28px; z-index: -2; background: #071a2d; transform: translateZ(-8px); }
.stage-point { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.point-a { top: 17%; right: 16%; }
.point-b { bottom: 20%; left: 13%; width: 4px; height: 4px; }
.stage-label { position: absolute; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #9fb3c9; background: rgba(6,17,32,.72); backdrop-filter: blur(14px); font: 700 9px "Manrope"; letter-spacing: .12em; text-transform: uppercase; }
.label-a { top: 24%; left: 7%; }
.label-b { right: 2%; bottom: 30%; }
.label-c { left: 18%; bottom: 9%; }
.hero-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 34px; padding-top: 28px; border-top: 1px solid var(--line); color: #8195aa; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.hero-foot small { margin-left: auto; color: #60778e; font-size: 9px; }

.section-space { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 150px 0; }
.section-intro { max-width: 800px; margin-bottom: 72px; }
.section-intro h2, .process-intro h2, .briefing-intro h2, .final-cta h2 { margin: 20px 0 0; font-size: clamp(46px, 5.8vw, 78px); font-weight: 600; line-height: 1.02; letter-spacing: -.055em; }
.service-list { border-top: 1px solid var(--line); }
.service-item { position: relative; min-height: 240px; display: grid; grid-template-columns: 80px 1fr 240px; align-items: center; gap: 36px; border-bottom: 1px solid var(--line); }
.service-number { align-self: start; padding-top: 48px; color: var(--cyan); font: 700 11px "Manrope"; letter-spacing: .13em; }
.service-item h3 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 68px); font-weight: 600; letter-spacing: -.05em; }
.service-item p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.7; }
.service-signal { justify-self: end; position: relative; width: 180px; height: 130px; transition: transform .5s ease; }
.service-item:hover .service-signal { transform: rotate(-4deg) translateY(-6px); }
.service-signal i { position: absolute; display: block; }
.signal-web i { left: 18px; right: 18px; height: 26px; border-radius: 8px; border: 1px solid rgba(130,199,255,.32); background: linear-gradient(90deg, rgba(16,200,255,.15), rgba(23,110,255,.05)); }
.signal-web i:nth-child(1) { top: 13px; }
.signal-web i:nth-child(2) { top: 52px; left: 38px; }
.signal-web i:nth-child(3) { top: 91px; left: 58px; }
.signal-system i { border: 1px solid rgba(130,199,255,.3); background: rgba(23,110,255,.1); transform: rotate(45deg); }
.signal-system i:nth-child(1) { width: 82px; height: 82px; top: 22px; left: 44px; }
.signal-system i:nth-child(2) { width: 46px; height: 46px; top: 40px; left: 62px; }
.signal-system i:nth-child(3) { width: 14px; height: 14px; top: 56px; left: 78px; background: var(--cyan); }
.signal-app i { width: 55px; height: 106px; top: 12px; border: 1px solid rgba(130,199,255,.35); border-radius: 15px; background: linear-gradient(150deg, rgba(16,200,255,.15), rgba(23,110,255,.04)); }
.signal-app i:first-child { left: 36px; transform: rotate(-9deg); }
.signal-app i:last-child { right: 33px; transform: rotate(9deg); }
.signal-ai i { width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 22px rgba(16,200,255,.75); }
.signal-ai i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 74px; height: 1px; background: linear-gradient(90deg, rgba(16,200,255,.45), transparent); transform-origin: left; }
.signal-ai i:nth-child(1) { top: 18px; left: 28px; }
.signal-ai i:nth-child(1)::after { transform: rotate(30deg); }
.signal-ai i:nth-child(2) { top: 48px; right: 42px; }
.signal-ai i:nth-child(2)::after { transform: rotate(142deg); }
.signal-ai i:nth-child(3) { bottom: 17px; left: 68px; }
.signal-ai i:nth-child(3)::after { transform: rotate(-38deg); }
.signal-ai i:nth-child(4) { bottom: 10px; right: 17px; }

.work { padding-top: 90px; }
.project-stack { display: grid; gap: 32px; }
.project-scene { position: sticky; top: 108px; isolation: isolate; min-height: 720px; display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(32px, 5vw, 76px); padding: clamp(42px, 5vw, 68px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #091827; box-shadow: 0 34px 100px rgba(0,0,0,.3); }
.project-scene::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 28%, rgba(23,110,255,.2), transparent 44%), linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%); }
.project-scene::after { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; opacity: .22; 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: 48px 48px; mask-image: linear-gradient(90deg, transparent 15%, #000 68%, transparent); }
.project-social::before { background: radial-gradient(circle at 78% 27%, rgba(82,100,255,.22), transparent 44%), linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%); }
.project-tv::before { background: radial-gradient(circle at 78% 26%, rgba(255,198,0,.15), transparent 45%), linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%); }
.project-jobs::before { background: radial-gradient(circle at 78% 26%, rgba(141,207,55,.15), transparent 45%), linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%); }
.project-sauber::before { background: radial-gradient(circle at 77% 25%, rgba(48,151,219,.21), transparent 46%), linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%); }
.project-copy { position: relative; z-index: 2; }
.project-copy > span { color: #7690aa; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { max-width: 530px; margin: 20px 0 18px; font-size: clamp(52px, 6vw, 86px); line-height: .95; letter-spacing: -.07em; text-wrap: balance; }
.project-copy p { max-width: 430px; margin: 0; color: #a8b8c9; line-height: 1.7; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.project-tags li { padding: 7px 10px; border: 1px solid rgba(150,190,225,.17); border-radius: 99px; color: #8fa5bb; background: rgba(255,255,255,.025); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.project-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: #d9f5ff; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.project-link span { color: var(--cyan); transition: transform .25s ease; }
.project-link:hover span, .project-link:focus-visible span { transform: translate(3px,-3px); }
.project-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: #b9c9d9 !important; letter-spacing: .08em !important; }
.project-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(16,200,255,.65); }
.project-media { --media-rx: 0deg; --media-ry: 0deg; position: relative; z-index: 2; min-width: 0; min-height: 540px; perspective: 1200px; transform-style: preserve-3d; transform: rotateX(var(--media-rx)) rotateY(var(--media-ry)); transition: transform .55s cubic-bezier(.2,.8,.2,1); will-change: auto; }
.project-media::before { content: ""; position: absolute; inset: 9% 7%; border: 1px solid rgba(106,176,238,.14); border-radius: 50%; transform: rotate(-7deg) translateZ(-70px); }
.project-media::after { content: ""; position: absolute; top: 8%; right: 8%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 30px rgba(16,200,255,.7); }
.project-shot { position: absolute; display: block; max-width: none; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: #eef2f2; object-fit: cover; box-shadow: 0 34px 76px rgba(0,0,0,.36); }
.media-chip { position: absolute; z-index: 7; right: 0; bottom: 3%; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; color: #b9cddd; background: rgba(5,18,31,.72); box-shadow: 0 14px 40px rgba(0,0,0,.25); backdrop-filter: blur(14px); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; transform: translateZ(72px); }
.social-media .shot-primary { z-index: 5; top: 18%; right: 1%; width: 78%; transform: translateZ(55px) rotate(2deg); }
.social-media .shot-secondary { z-index: 3; top: 1%; left: 0; width: 51%; opacity: .86; transform: translateZ(-32px) rotate(-7deg); }
.social-media .shot-tertiary { z-index: 4; bottom: 0; left: 8%; width: 48%; opacity: .92; transform: translateZ(20px) rotate(-3deg); }
.tv-media { display: grid; place-items: center; }
.tv-media .shot-primary { z-index: 3; top: 11%; left: 5%; width: 91%; aspect-ratio: 1280 / 879; transform: translateZ(40px) rotateY(-4deg); }
.screen-glow { position: absolute; inset: 14% 8% 12%; border-radius: 24px; background: rgba(255,198,0,.15); filter: blur(38px); transform: translateZ(-40px); }
.tv-edge { position: absolute; z-index: 4; right: 8%; bottom: 2%; width: 38%; height: 9px; border-radius: 99px; background: linear-gradient(90deg, transparent, #3c4856, transparent); transform: translateZ(60px); }
.jobs-media { display: grid; place-items: center; }
.jobs-media .shot-primary { z-index: 3; top: 8%; right: 2%; width: 92%; aspect-ratio: 1280 / 879; transform: translateZ(48px) rotateY(-5deg) rotateZ(1deg); }
.jobs-pulse { position: absolute; z-index: 4; top: 3%; left: 5%; width: 88px; height: 88px; border: 1px solid rgba(141,207,55,.3); border-radius: 50%; box-shadow: 0 0 0 18px rgba(141,207,55,.04), 0 0 50px rgba(141,207,55,.16); transform: translateZ(70px); }
.sauber-media .shot-primary { z-index: 4; top: 6%; right: 0; width: 82%; height: 73%; transform: translateZ(42px) rotate(2deg); }
.sauber-media .shot-secondary { z-index: 5; bottom: 1%; left: 0; width: 49%; height: 47%; transform: translateZ(78px) rotate(-5deg); }
.food-media { display: grid; place-items: center; }
.food-media::before { inset: 8%; border-color: rgba(16,200,255,.2); animation: productOrbit 18s linear infinite; }
.food-orbit { position: absolute; inset: 17%; border: 1px solid rgba(23,110,255,.2); border-radius: 50%; transform: rotateX(62deg) rotateZ(14deg) translateZ(-35px); }
.food-media .shot-mark { z-index: 4; top: 10%; right: 4%; width: 210px; height: 210px; padding: 18px; border-color: rgba(255,255,255,.1); border-radius: 38px; background: rgba(240,248,255,.96); object-fit: contain; transform: translateZ(84px) rotate(4deg); }
.food-console { position: absolute; z-index: 3; left: 3%; bottom: 10%; width: 76%; min-height: 310px; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; border: 1px solid rgba(118,186,247,.2); border-radius: 24px; background: linear-gradient(145deg, rgba(13,39,67,.96), rgba(5,18,31,.92)); box-shadow: 0 42px 86px rgba(0,0,0,.36); transform: translateZ(20px) rotateY(-5deg); }
.food-console span { color: var(--cyan); font-size: 9px; letter-spacing: .16em; }
.food-console strong { margin: 18px 0 26px; font: 600 clamp(28px,3vw,44px)/1.1 "Manrope"; letter-spacing: -.05em; }
.food-console i { display: block; width: 72%; height: 1px; margin-top: 13px; background: linear-gradient(90deg, rgba(137,189,231,.3), transparent); }
.food-console i:nth-of-type(2) { width: 54%; }
.food-console i:nth-of-type(3) { width: 34%; }
@keyframes productOrbit { to { transform: rotate(353deg); } }
@media (hover: hover) and (pointer: fine) { .project-media:hover { will-change: transform; } }

.clients { padding: 58px 0; overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.clients > p { margin: 0 0 34px; color: #607b95; text-align: center; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.client-window { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.client-track { width: max-content; display: flex; gap: 72px; animation: marquee 30s linear infinite; }
.client-track span { color: #b8c6d5; font: 600 20px "Manrope"; letter-spacing: -.03em; white-space: nowrap; }

.process { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p { max-width: 480px; color: var(--muted); line-height: 1.7; }
.process-list { border-top: 1px solid var(--line); }
.process-step { min-height: 164px; display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.process-step b { align-self: start; padding-top: 40px; color: var(--cyan); font: 700 10px "Manrope"; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.035em; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.6; }

.briefing { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.briefing-intro { position: sticky; top: 130px; }
.briefing-intro p { max-width: 510px; color: var(--muted); line-height: 1.7; }
.briefing-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.briefing-facts span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #aab9c9; font-size: 10px; }
.project-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(15,38,64,.84), rgba(7,20,34,.94)); box-shadow: 0 34px 90px rgba(0,0,0,.25); }
.form-top { display: flex; align-items: center; gap: 20px; margin-bottom: 42px; color: #7790a9; font: 700 9px "Manrope"; letter-spacing: .15em; }
.form-progress { flex: 1; height: 2px; overflow: hidden; background: rgba(255,255,255,.08); }
.form-progress i { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); transition: width .35s ease; }
.form-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step.active { display: block; animation: formIn .4s ease; }
.form-step legend { margin-bottom: 32px; padding: 0; color: white; font: 600 30px/1.15 "Manrope"; letter-spacing: -.035em; }
.project-form label { display: grid; gap: 9px; margin-bottom: 18px; color: #b8c6d5; font-size: 11px; }
.optional { margin-left: 6px; color: #607b95; font-size: 9px; text-transform: uppercase; }
.project-form input, .project-form textarea, .project-form select {
  width: 100%;
  padding: 15px 0;
  outline: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  color: white;
  background: transparent;
  transition: border-color .2s, box-shadow .2s;
}
.project-form textarea { min-height: 110px; resize: vertical; }
.project-form input:focus, .project-form textarea:focus, .project-form select:focus { border-color: var(--cyan); box-shadow: 0 1px 0 var(--cyan); }
.project-form input::placeholder, .project-form textarea::placeholder { color: #5d748b; }
.project-form select option { color: white; background: var(--ink-soft); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice { margin: 0 !important; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: 16px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; color: #b8c7d6; transition: border-color .2s, color .2s, background .2s; }
.choice input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.choice input:checked + span { border-color: rgba(16,200,255,.55); color: white; background: rgba(16,200,255,.08); }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { grid-template-columns: auto 1fr; align-items: start; gap: 11px !important; }
.consent input { width: 16px; margin-top: 2px; accent-color: var(--cyan); }
.upload-zone {
  min-height: 158px;
  margin-top: 26px;
  padding: 24px !important;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(124,189,255,.28);
  border-radius: 18px;
  text-align: center;
  cursor: pointer;
  background: rgba(16,200,255,.025);
  transition: border-color .2s, background .2s;
}
.upload-zone.dragging { border-color: var(--cyan); background: rgba(16,200,255,.08); }
.upload-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-zone:focus-within { outline: 2px solid var(--cyan); outline-offset: 3px; }
.upload-zone strong { color: #e8f5ff; font: 600 14px "Manrope"; }
.upload-zone small { color: #6f879e; line-height: 1.5; }
.upload-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 4px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font-size: 18px; }
.file-list { display: grid; gap: 7px; margin: -4px 0 18px; padding: 0; list-style: none; }
.file-list li { display: flex; justify-content: space-between; gap: 12px; color: #90a6bb; font-size: 10px; }
.file-list li.error { color: #ff9ca9; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; justify-content: flex-end; gap: 22px; margin-top: 34px; }
.hidden { display: none !important; }
.form-message { min-height: 22px; margin: 18px 0 0; color: #72eac3; font-size: 12px; line-height: 1.5; }

.final-cta { width: min(var(--max), calc(100% - 40px)); margin: 30px auto 0; padding: 110px 70px; overflow: hidden; border: 1px solid var(--line); border-radius: 38px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(23,110,255,.24), transparent 42%), #0a192b; }
.final-cta h2 { margin-bottom: 42px; }
.site-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 70px 0 34px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.site-footer > p { color: #6f8499; font-size: 11px; }
.site-footer nav { display: flex; gap: 24px; color: #8ea1b5; font-size: 11px; }
.site-footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); color: #566d84; font-size: 9px; }

.reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes orbitA { to { transform: rotateX(67deg) rotateZ(343deg); } }
@keyframes orbitB { to { transform: rotateY(74deg) rotateZ(380deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes formIn { from { opacity: 0; transform: translateX(12px); } }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; padding-top: 154px; }
  .hero-copy { max-width: 850px; }
  .brand-stage { min-height: 520px; }
  .logo-plane { width: 360px; }
  .service-item { grid-template-columns: 60px 1fr 180px; }
  .project-scene { position: relative; top: auto; min-height: auto; grid-template-columns: 1fr; padding: 48px; }
  .project-copy { max-width: 620px; }
  .project-copy h3 { max-width: none; }
  .project-media { min-height: 500px; }
  .process, .briefing { grid-template-columns: 1fr; gap: 54px; }
  .process-intro, .briefing-intro { position: static; }
}

@media (max-width: 720px) {
  body { background-size: 46px 46px; }
  .cursor-light, .ambient-two { display: none; }
  .site-header { top: 8px; width: calc(100% - 16px); min-height: 58px; }
  .desktop-nav { display: none; }
  .brand-name { font-size: 12px; }
  .header-cta { padding: 9px 11px; font-size: 10px; }
  .hero { width: calc(100% - 28px); min-height: auto; padding: 124px 0 38px; }
  .hero h1 { font-size: clamp(52px, 15vw, 70px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button-text { align-self: flex-start; }
  .brand-stage { min-height: 390px; }
  .logo-plane { width: 260px; }
  .logo-face, .logo-depth { border-radius: 28px; }
  .orbit-a { width: 98%; }
  .orbit-b, .stage-label, .point-b { display: none; }
  .hero-foot { flex-wrap: wrap; gap: 15px 24px; }
  .hero-foot small { width: 100%; margin: 0; }
  .section-space { width: calc(100% - 28px); padding: 100px 0; }
  .section-intro { margin-bottom: 46px; }
  .section-intro h2, .process-intro h2, .briefing-intro h2, .final-cta h2 { font-size: 44px; }
  .service-item { min-height: 260px; grid-template-columns: 40px 1fr; gap: 12px; padding: 30px 0; }
  .service-number { padding-top: 8px; }
  .service-item h3 { font-size: 42px; }
  .service-signal { display: none; }
  .project-stack { gap: 18px; }
  .project-scene { min-height: auto; gap: 24px; padding: 30px 22px 24px; border-radius: 24px; }
  .project-scene::after { background-size: 36px 36px; }
  .project-copy h3 { margin-top: 16px; font-size: clamp(40px, 12vw, 54px); }
  .project-copy p { font-size: 14px; line-height: 1.6; }
  .project-tags { margin-top: 20px; }
  .project-link, .project-status { margin-top: 22px; }
  .project-media { min-height: 320px; transform: none !important; will-change: auto; }
  .project-media::before { inset: 11% 4%; }
  .media-chip { right: 2%; bottom: 0; }
  .social-media .shot-primary { top: 13%; right: 0; width: 94%; transform: rotate(1deg); }
  .social-media .shot-secondary, .social-media .shot-tertiary { display: none; }
  .tv-media .shot-primary, .jobs-media .shot-primary { top: 8%; left: 0; right: auto; width: 100%; transform: none; }
  .tv-edge { bottom: 0; }
  .jobs-pulse { width: 58px; height: 58px; }
  .sauber-media .shot-primary { top: 4%; width: 94%; height: 82%; transform: rotate(1deg); }
  .sauber-media .shot-secondary { display: none; }
  .food-media .shot-mark { top: 2%; right: 0; width: 132px; height: 132px; padding: 12px; border-radius: 26px; }
  .food-console { left: 0; bottom: 3%; width: 88%; min-height: 230px; padding: 26px; transform: rotateY(-2deg); }
  .food-console strong { font-size: 30px; }
  .client-track { gap: 46px; }
  .process-step { grid-template-columns: 46px 1fr; }
  .briefing { gap: 34px; }
  .project-form { padding: 26px 20px; border-radius: 24px; }
  .choice-grid, .two-cols { grid-template-columns: 1fr; }
  .form-actions { justify-content: space-between; }
  .final-cta { width: calc(100% - 28px); padding: 80px 22px; border-radius: 28px; }
  .site-footer { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
}

@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; }
  .project-media { transform: none !important; }
}
