:root {
  --bg: #090a12;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --border: rgba(255, 255, 255, 0.16);
  --text: #f7f7f8;
  --muted: #a4a7b6;
  --acid: #d7ff50;
  --lilac: #b6a8ff;
  --coral: #ff9388;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; padding-top: 104px; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: Archivo, "Noto Sans SC", sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.noise { position: fixed; inset: 0; z-index: -1; opacity: .06; pointer-events: none; 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='.72'/%3E%3C/svg%3E"); }
.ambient { position: fixed; z-index: -2; width: 48vw; height: 48vw; border-radius: 50%; filter: blur(80px); opacity: .2; pointer-events: none; animation: drift 14s ease-in-out infinite alternate; }
.ambient-one { top: -15%; right: -15%; background: #744bff; }
.ambient-two { top: 43%; left: -23%; background: #006dff; animation-delay: -7s; }

.skip-link { position: fixed; left: 16px; top: -56px; z-index: 20; padding: 12px 16px; background: var(--acid); color: #111; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }
.site-header { width: min(1400px, calc(100% - 48px)); height: 70px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; position: fixed; z-index: 100; top: 14px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, rgba(13,15,26,.82), rgba(25,23,47,.66)); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; box-shadow: 0 18px 55px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(24px) saturate(145%); -webkit-backdrop-filter: blur(24px) saturate(145%); }
.brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; color: #101018; background: var(--acid); font-family: "Space Grotesk", sans-serif; border-radius: 50% 50% 50% 6px; font-size: 10px; letter-spacing: -.05em; }
.site-header nav { display: flex; gap: clamp(12px, 1.55vw, 26px); padding: 11px 17px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 999px; backdrop-filter: blur(18px); }
.site-header nav a { position: relative; flex: 0 0 auto; color: var(--muted); font-size: 13px; white-space: nowrap; transition: color .2s; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px; background: var(--acid); transform: scaleX(0); transition: transform .25s var(--ease); }
.site-header nav a:hover, .site-header nav a:focus-visible, .site-header nav a.active { color: var(--text); }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after, .site-header nav a.active::after { transform: scaleX(1); }
.header-cta { color: var(--acid); font-size: 13px; font-weight: 600; }
.header-cta span { margin-left: 6px; font-size: 16px; }

.hero { width: min(1400px, calc(100% - 48px)); min-height: calc(100dvh - 104px); margin: 0 auto; padding: 7vh 0 35px; display: grid; grid-template-columns: .9fr 1.1fr; grid-template-rows: 1fr auto; gap: 30px; align-items: center; }
.hero-copy { max-width: 600px; padding-left: clamp(0px, 4vw, 65px); }
.eyebrow { margin: 0 0 20px; color: var(--muted); font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.eyebrow span { width: 20px; height: 1px; display: inline-block; vertical-align: middle; margin-right: 9px; background: var(--acid); }
h1, h2 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-weight: 500; letter-spacing: -.065em; }
h1 { font-size: clamp(54px, 6.3vw, 103px); line-height: .96; }
h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.76); }
.hero-description { max-width: 435px; margin: 30px 0 31px; color: #c8cad3; font-size: 15px; line-height: 1.85; }
.hero-actions { display: flex; gap: 25px; align-items: center; }
.primary-button { min-height: 50px; display: inline-flex; align-items: center; gap: 24px; padding: 0 18px 0 21px; background: var(--acid); color: #11120b; border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s; }
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(215,255,80,.19); }
.primary-button span { font-size: 19px; }
.text-button { font-size: 13px; font-weight: 600; color: #e8e8ed; }
.text-button span { color: var(--acid); margin-left: 5px; font-size: 17px; }

.hero-visual { position: relative; height: min(67vh, 700px); min-height: 510px; }
.hero-system { --tilt-x: 0deg; --tilt-y: 0deg; isolation: isolate; perspective: 1000px; }
.hero-system::before { content: ""; position: absolute; inset: 9% 7% 7%; border-radius: 50%; background: radial-gradient(circle at 45% 43%, rgba(215,255,80,.11), rgba(112,83,255,.09) 31%, rgba(6,8,16,0) 67%); filter: blur(18px); }
.system-grid { position: absolute; inset: 9% 4% 5%; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle, #000 17%, transparent 70%); }
.system-stage { position: absolute; z-index: 1; top: 48%; left: 52%; width: min(57vw, 510px); aspect-ratio: 1; transform: translate(-50%, -50%) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style: preserve-3d; transition: transform .35s var(--ease); }
.system-ring { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.19); border-radius: 50%; box-shadow: inset 0 0 50px rgba(116,75,255,.045), 0 0 30px rgba(116,75,255,.05); }
.system-ring::before, .system-ring::after { content: ""; position: absolute; width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 18px rgba(215,255,80,.9); }
.system-ring::before { top: 12%; left: 19%; }
.system-ring::after { right: 7%; bottom: 29%; }
.system-ring-outer { animation: spin 22s linear infinite; }
.system-ring-middle { inset: 12%; border-style: dashed; border-color: rgba(182,168,255,.35); animation: spin-reverse 17s linear infinite; }
.system-ring-middle::before { top: 6%; left: 68%; background: var(--lilac); box-shadow: 0 0 18px rgba(182,168,255,.9); }
.system-ring-middle::after { right: 73%; bottom: 3%; background: var(--lilac); box-shadow: 0 0 18px rgba(182,168,255,.9); }
.system-ring-inner { inset: 23%; border-color: rgba(255,255,255,.3); animation: breathe 4.4s ease-in-out infinite; }
.system-ring-inner::before, .system-ring-inner::after { display: none; }
.system-scan { position: absolute; inset: 16%; overflow: hidden; border-radius: 50%; background: conic-gradient(from 235deg, transparent 0 74%, rgba(215,255,80,.17) 83%, transparent 90%); animation: spin 9s linear infinite; }
.system-core { position: absolute; z-index: 2; inset: 28%; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 50%; box-shadow: 0 25px 85px rgba(0,0,0,.35), inset 0 0 55px rgba(255,255,255,.05); transform: translateZ(42px); }
.system-core::before { content: ""; position: absolute; width: 72%; height: 32%; top: 4%; left: 14%; border-radius: 50%; background: rgba(255,255,255,.16); filter: blur(18px); transform: rotate(-12deg); }
.system-core strong { position: relative; color: #f8f8fa; font-family: "Space Grotesk", sans-serif; font-size: clamp(54px, 5vw, 78px); font-weight: 500; letter-spacing: -.09em; line-height: .8; text-shadow: 0 0 32px rgba(215,255,80,.14); }
.system-core p { position: relative; margin: 17px 0 4px; color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.core-status { position: absolute; top: 18%; color: #aeb1be; font-family: "Space Grotesk", sans-serif; font-size: 6px; letter-spacing: .14em; }
.core-status::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 8px var(--acid); }
.core-code { position: relative; color: #7f8392; font-family: "Space Grotesk", sans-serif; font-size: 6px; letter-spacing: .11em; }
.tool-constellation { position: absolute; z-index: 3; inset: 0; margin: 0; padding: 0; list-style: none; pointer-events: none; }
.tool-node { position: absolute; min-width: 132px; min-height: 56px; padding: 7px 12px 7px 8px; display: flex; align-items: center; gap: 9px; color: #f3f3f6; background: linear-gradient(125deg, rgba(255,255,255,.14), rgba(255,255,255,.045)); border: 1px solid rgba(255,255,255,.18); border-radius: 99px; box-shadow: 0 14px 38px rgba(0,0,0,.22); backdrop-filter: blur(18px); animation: tool-float 5.2s ease-in-out infinite alternate; }
.tool-icon { width: 40px; height: 40px; flex: 0 0 40px; padding: 8px; display: grid; place-items: center; background: rgba(5,7,14,.72); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.tool-icon img { width: 100%; height: 100%; object-fit: contain; }
.tool-icon-light { background: #f4f4f4; }
.tool-node > span:last-child { display: grid; gap: 2px; }
.tool-node strong { font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: -.015em; white-space: nowrap; }
.tool-node small { color: #878b9a; font-family: "Space Grotesk", sans-serif; font-size: 6px; letter-spacing: .13em; }
.tool-codex { top: 7%; left: 3%; animation-delay: -.8s; }
.tool-gemini { top: 5%; right: 1%; animation-delay: -2.4s; }
.tool-photoshop { top: 44%; left: -1%; animation-delay: -3.2s; }
.tool-cinema { top: 42%; right: -1%; animation-delay: -1.5s; }
.tool-plasticity { left: 11%; bottom: 4%; animation-delay: -4.1s; }
.system-note { position: absolute; z-index: 4; right: 2%; bottom: 5%; min-width: 176px; padding: 13px 15px; border-radius: 3px; }
.system-note span { display: block; margin-bottom: 4px; color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 7px; letter-spacing: .12em; }
.system-note strong { font-size: 11px; font-weight: 500; }
.glass-panel { background: linear-gradient(120deg, rgba(255,255,255,.15), rgba(255,255,255,.045)); border: 1px solid var(--border); box-shadow: 0 12px 45px rgba(0,0,0,.12); backdrop-filter: blur(18px); }
.hero-footer { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; color: #777b8c; font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .12em; }
.scroll-line { height: 1px; background: rgba(255,255,255,.12); overflow: hidden; }.scroll-line span { display: block; width: 25%; height: 100%; background: var(--acid); animation: scan 2.8s ease-in-out infinite; }

.works { width: min(1220px, calc(100% - 48px)); margin: 120px auto 0; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 43px; }
h2 { font-size: clamp(43px, 5vw, 73px); line-height: .97; }.period { color: var(--acid); }
.filter-group { display: flex; gap: 7px; padding-bottom: 5px; }.filter { border: 1px solid transparent; padding: 9px 13px; background: transparent; color: #989baa; border-radius: 99px; cursor: pointer; font-size: 12px; transition: all .2s; }.filter:hover, .filter:focus-visible { color: var(--text); border-color: var(--border); outline: none; }.filter.is-selected { background: var(--surface-strong); color: var(--text); border-color: var(--border); }.filter span { margin-left: 5px; color: var(--acid); font-size: 9px; }
.work-grid { display: grid; grid-template-columns: 1.14fr .86fr; grid-auto-rows: 310px; gap: 14px; }.work-grid[hidden] { display: none; }.work-card { overflow: hidden; position: relative; border-radius: 4px; cursor: pointer; background: #161721; outline: none; }.work-card.large-card { grid-column: span 1; }.work-card.tall-card { grid-row: span 2; }.work-card img { height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s; }.work-card:focus-visible { box-shadow: 0 0 0 3px var(--acid); }.work-card:hover img, .work-card:focus-visible img { transform: scale(1.06); filter: saturate(1.12); }.card-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(2,3,9,.84) 100%); }.card-info { position: absolute; z-index: 1; bottom: 25px; left: 25px; right: 25px; display: flex; align-items: flex-end; justify-content: space-between; }.card-info p { margin: 0 0 5px; color: #c3c6d0; font-size: 11px; }.card-info h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }.card-arrow { display: grid; place-items: center; flex: 0 0 39px; height: 39px; border: 1px solid rgba(255,255,255,.43); border-radius: 50%; font-size: 18px; transition: all .25s; }.work-card:hover .card-arrow { color: #16180c; background: var(--acid); border-color: var(--acid); transform: rotate(45deg); }.card-number { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.72); font-family: "Space Grotesk", sans-serif; font-size: 11px; }.empty-state { padding: 52px; text-align: center; color: var(--muted); border: 1px dashed var(--border); border-radius: 4px; }

.retouch-panel[hidden] { display: none; }
.retouch-panel { display: grid; gap: 14px; }
.retouch-intro { min-height: 132px; padding: 25px 28px; display: flex; align-items: center; justify-content: space-between; gap: 38px; border-radius: 6px; }
.retouch-intro > div:first-child { max-width: 630px; }
.retouch-kicker { margin: 0 0 7px; color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .13em; }
.retouch-intro h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 26px; font-weight: 500; letter-spacing: -.04em; }
.retouch-intro > div > p:last-child { margin: 8px 0 0; color: #bec1cc; font-size: 12px; line-height: 1.75; }
.retouch-metrics { display: grid; grid-template-columns: repeat(3, minmax(82px, 1fr)); gap: 8px; margin: 0; }
.retouch-metrics div { min-width: 90px; padding: 13px 14px; background: rgba(5,7,13,.46); border: 1px solid rgba(255,255,255,.09); border-radius: 3px; }
.retouch-metrics dt { color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 9px; }
.retouch-metrics dd { margin: 4px 0 0; color: #dfe0e6; font-size: 11px; white-space: nowrap; }
.retouch-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.retouch-card { min-width: 0; overflow: hidden; padding: 7px; background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.028)); border: 1px solid rgba(255,255,255,.13); border-radius: 5px; box-shadow: 0 16px 38px rgba(0,0,0,.16); backdrop-filter: blur(15px); }
.retouch-compare { aspect-ratio: 1; background: #f2f1ef; }
.retouch-card .compare-label { top: 9px; padding: 6px 7px; font-size: 7px; letter-spacing: .06em; }
.retouch-card .label-final { left: 9px; }
.retouch-card .label-wireframe { right: 9px; }
.retouch-card .compare-divider { width: 1px; transform: translateX(-.5px); }
.retouch-card .compare-handle { width: 44px; height: 44px; border-width: 4px; }
.retouch-card .compare-handle svg { width: 25px; height: 14px; }
.retouch-card > header { min-height: 66px; padding: 12px 8px 7px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.retouch-card > header > span { color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 8px; letter-spacing: .08em; }
.retouch-card > header > div { text-align: right; }
.retouch-card h4 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 16px; font-weight: 500; letter-spacing: -.025em; }
.retouch-card header p { margin: 3px 0 0; color: #8f92a1; font-size: 9px; }

.precision { width: min(1220px, calc(100% - 48px)); margin: 150px auto 0; }.precision-head { display: grid; grid-template-columns: 1fr minmax(300px, 440px); gap: 56px; align-items: end; margin-bottom: 54px; }.precision-intro p { margin: 0; color: #c8cad3; font-size: 15px; line-height: 1.8; }.precision-intro > span { display: block; margin-top: 19px; color: var(--acid); font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 10px; letter-spacing: .13em; }.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.compare-card { min-width: 0; padding: 12px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); border: 1px solid var(--border); border-radius: 6px; box-shadow: 0 22px 60px rgba(0,0,0,.2); backdrop-filter: blur(18px); }.compare-card-wide { grid-column: 1 / -1; }.compare-meta { min-height: 98px; padding: 8px 10px 15px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }.compare-meta > span { align-self: flex-start; color: #7d8191; font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .1em; }.compare-meta div { text-align: right; }.compare-meta h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }.compare-meta p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }.image-compare { --position: 50%; position: relative; overflow: hidden; isolation: isolate; width: 100%; background: #eef1f7; border-radius: 3px; cursor: ew-resize; user-select: none; touch-action: pan-y; }.comparison--portrait { aspect-ratio: 3 / 4; }.comparison--landscape { aspect-ratio: 4 / 3; }.compare-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }.compare-final { z-index: 1; clip-path: inset(0 calc(100% - var(--position)) 0 0); }.compare-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgba(255,255,255,.95); box-shadow: 0 0 0 1px rgba(8,12,22,.14), 0 0 22px rgba(255,255,255,.5); transform: translateX(-1px); pointer-events: none; }.compare-handle { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; display: grid; place-items: center; color: #090a12; background: var(--acid); border: 5px solid rgba(9,10,18,.74); border-radius: 50%; box-shadow: 0 9px 28px rgba(0,0,0,.35); transform: translate(-50%, -50%); }.compare-handle svg { width: 31px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }.compare-range { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }.image-compare:has(.compare-range:focus-visible) { box-shadow: 0 0 0 3px var(--acid), 0 0 0 7px rgba(215,255,80,.2); }.compare-label { position: absolute; z-index: 2; top: 16px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: rgba(7,9,18,.58); color: #f7f7f8; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .08em; backdrop-filter: blur(12px); pointer-events: none; }.label-final { left: 16px; }.label-wireframe { right: 16px; color: #101219; background: rgba(255,255,255,.78); border-color: rgba(10,12,20,.12); }

.upscale { width: min(1220px, calc(100% - 48px)); margin: 150px auto 0; }
.upscale-head { display: grid; grid-template-columns: 1fr minmax(300px, 440px); gap: 56px; align-items: end; margin-bottom: 54px; }
.upscale-intro p { margin: 0; color: #c8cad3; font-size: 15px; line-height: 1.8; }
.upscale-intro span { display: block; margin-top: 18px; color: var(--acid); font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 10px; letter-spacing: .13em; }
.upscale-showcase { padding: 13px; border-radius: 7px; }
.upscale-toolbar { min-height: 104px; padding: 9px 11px 17px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.upscale-meta { flex: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.upscale-meta > span { align-self: flex-start; color: #7d8191; font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .1em; }
.upscale-meta > div { text-align: right; }
.upscale-meta h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.upscale-meta p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.upscale-switch { display: flex; gap: 7px; padding: 5px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 99px; }
.upscale-switch button { min-width: 72px; min-height: 40px; padding: 0 15px; color: #9da0ae; background: transparent; border: 0; border-radius: 99px; cursor: pointer; font-family: "Noto Sans SC", sans-serif; font-size: 12px; transition: color .2s, background .2s, box-shadow .2s; }
.upscale-switch button:hover, .upscale-switch button:focus-visible { color: var(--text); outline: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.upscale-switch button.is-selected { color: #11120b; background: var(--acid); box-shadow: none; }
.upscale-compare { aspect-ratio: 16 / 9; background: #f2f1f1; cursor: ew-resize; }
.upscale-compare .compare-image { object-fit: contain; background: #f2f1f1; }
.upscale-resolution { position: absolute; z-index: 2; bottom: 16px; padding: 7px 10px; color: #f7f7f8; background: rgba(7,9,18,.58); border: 1px solid rgba(255,255,255,.22); border-radius: 99px; font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .08em; backdrop-filter: blur(12px); pointer-events: none; }
.resolution-hd { left: 16px; }
.resolution-standard { right: 16px; }

.series { width: min(1220px, calc(100% - 48px)); margin: 150px auto 0; }
.series-head { display: grid; grid-template-columns: 1fr minmax(300px, 440px); gap: 56px; align-items: end; margin-bottom: 54px; }
.series-intro p { margin: 0; color: #c8cad3; font-size: 15px; line-height: 1.8; }
.series-intro span { display: block; margin-top: 18px; color: var(--acid); font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 10px; letter-spacing: .13em; }
.series-shell { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: 14px; padding: 14px; border-radius: 7px; }
.series-reference { min-width: 0; padding: 22px; background: rgba(7,8,15,.62); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; }
.series-kicker { margin: 0 0 8px; color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .14em; }
.series-reference h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 23px; font-weight: 500; letter-spacing: -.04em; }
.reference-cards { position: relative; height: 250px; margin: 18px 0 17px; }
.reference-card { position: absolute; overflow: hidden; margin: 0; background: #e7e1dc; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 14px 35px rgba(0,0,0,.3); }
.reference-card img { height: 100%; object-fit: cover; }
.reference-card figcaption { position: absolute; left: 8px; bottom: 8px; padding: 5px 7px; color: #101219; background: var(--acid); border-radius: 99px; font-family: "Space Grotesk", sans-serif; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.reference-face { inset: 0 auto auto 0; width: 78%; height: 188px; border-radius: 3px 42px 3px 3px; }
.reference-face img { object-position: 50% 34%; }
.reference-outfit { right: 0; bottom: 0; z-index: 1; width: 64%; height: 152px; border: 5px solid #171821; border-radius: 3px; }
.reference-outfit img { object-fit: contain; }
.reference-note { margin: 0; color: #aeb1bf; font-size: 11px; line-height: 1.75; }
.reference-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.reference-metrics span { padding-top: 12px; color: #858898; border-top: 1px solid rgba(255,255,255,.1); font-family: "Space Grotesk", sans-serif; font-size: 8px; letter-spacing: .09em; }
.reference-metrics strong { display: block; margin-bottom: 2px; color: #f3f3f6; font-size: 19px; font-weight: 500; }
.series-viewer { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) 158px; gap: 10px; }
.series-stage { position: relative; overflow: hidden; height: 560px; background: radial-gradient(circle at 50% 45%, #242738 0%, #0c0d14 66%); border-radius: 4px; outline: none; }
.series-stage:focus-visible { box-shadow: inset 0 0 0 3px var(--acid); }
.series-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(5,7,13,.03) 55%, rgba(4,5,10,.8) 100%); }
.series-main-image { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s ease; }
.series-stage.is-switching .series-main-image { opacity: .28; }
.series-stage-copy { position: absolute; z-index: 1; left: 24px; bottom: 22px; }
.series-stage-copy p { margin: 0 0 4px; color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 8px; letter-spacing: .13em; }
.series-stage-copy h3 { margin: 0; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.series-controls { position: absolute; z-index: 2; top: 16px; right: 16px; display: flex; align-items: center; gap: 7px; padding: 6px; color: #f6f6f8; background: rgba(8,9,16,.58); border: 1px solid rgba(255,255,255,.18); border-radius: 99px; backdrop-filter: blur(14px); }
.series-arrow { display: grid; place-items: center; width: 31px; height: 31px; padding: 0; color: #f6f6f8; background: rgba(255,255,255,.08); border: 0; border-radius: 50%; cursor: pointer; transition: color .2s, background .2s; }
.series-arrow:hover, .series-arrow:focus-visible { color: #11120b; background: var(--acid); outline: none; }
.series-arrow svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.series-count { min-width: 51px; text-align: center; color: #8f93a2; font-family: "Space Grotesk", sans-serif; font-size: 9px; }
.series-count strong { color: var(--acid); font-size: 12px; font-weight: 600; }
.series-thumbs { min-width: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 1fr); gap: 8px; }
.series-thumb { position: relative; overflow: hidden; min-height: 0; padding: 0; background: #161721; border: 1px solid rgba(255,255,255,.1); border-radius: 3px; cursor: pointer; opacity: .58; transition: opacity .2s, border-color .2s, transform .2s; }
.series-thumb::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--acid); transition: box-shadow .2s; }
.series-thumb img { height: 100%; object-fit: cover; }
.series-thumb span { position: absolute; z-index: 1; right: 6px; bottom: 5px; display: grid; place-items: center; width: 21px; height: 21px; color: #f6f6f8; background: rgba(7,8,14,.67); border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-size: 7px; backdrop-filter: blur(7px); }
.series-thumb:hover, .series-thumb:focus-visible { opacity: 1; border-color: rgba(255,255,255,.42); outline: none; transform: translateY(-2px); }
.series-thumb.is-active { opacity: 1; border-color: var(--acid); }
.series-thumb.is-active::after { box-shadow: inset 0 0 0 2px var(--acid); }
.series-thumb.is-active span { color: #11120b; background: var(--acid); }

.about { width: min(1220px, calc(100% - 48px)); margin: 150px auto; display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 11vw, 165px); align-items: center; }.about h2 strong { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75); font-weight: 500; }.about-card { padding: 37px; border-radius: 5px 5px 96px 5px; }.about-card > p { margin: 0; font-size: 17px; line-height: 1.85; color: #e0e0e7; }.capabilities { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 8px; }.capabilities span { padding: 8px 10px; color: var(--acid); border: 1px solid rgba(215,255,80,.28); border-radius: 99px; font-family: "Space Grotesk", sans-serif; font-size: 9px; letter-spacing: .08em; }

.contact { width: min(1220px, calc(100% - 48px)); min-height: 590px; margin: 0 auto; padding: 110px 7%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(125deg, #34227e 0%, #16182c 47%, #8f4a57 130%); border: 1px solid rgba(255,255,255,.16); border-radius: 5px 120px 5px 5px; }.contact::after { content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -270px; border-radius: 50%; background: #d9ff54; filter: blur(100px); opacity: .28; }.contact h2 { position: relative; z-index: 1; font-size: clamp(52px, 7vw, 104px); }.contact-links { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 42px; }.contact-link { width: fit-content; padding-bottom: 6px; border-bottom: 1px solid var(--acid); color: var(--acid); font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: clamp(19px, 2.2vw, 31px); transition: color .2s, border-color .2s; }.contact-link:hover, .contact-link:focus-visible { color: var(--text); border-color: var(--text); }.contact-link span { margin-left: 13px; }.contact-phone { color: #f2f2f5; border-color: rgba(255,255,255,.45); font-size: clamp(17px, 1.8vw, 25px); }
footer { width: min(1400px, calc(100% - 48px)); padding: 28px 0 36px; margin: 38px auto 0; display: flex; justify-content: space-between; gap: 18px; color: #777b8c; font-family: "Space Grotesk", "Noto Sans SC", sans-serif; font-size: 9px; letter-spacing: .1em; }footer a { color: #d8d9df; }

.project-modal { width: min(900px, calc(100% - 32px)); max-height: min(88dvh, 900px); padding: 0; overflow: hidden; color: var(--text); background: #14151e; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; box-shadow: 0 24px 100px rgba(0,0,0,.62); }.project-modal::backdrop { background: rgba(2,3,10,.78); backdrop-filter: blur(10px); }.project-modal img { max-height: 70dvh; object-fit: contain; background: #08090d; }.modal-copy { padding: 18px 25px 23px; }.modal-copy p { margin: 0 0 4px; color: var(--muted); font-size: 12px; }.modal-copy h2 { font-size: 29px; }.modal-close { position: absolute; z-index: 1; top: 12px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; color: #121319; border: 0; background: var(--acid); border-radius: 50%; cursor: pointer; font-size: 25px; line-height: 1; }
.card-gallery-count { position: absolute; z-index: 1; top: 20px; left: 22px; padding: 7px 9px; color: #11130d; background: var(--acid); border-radius: 999px; font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.modal-gallery-button { position: absolute; z-index: 2; top: 43%; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; color: var(--text); background: rgba(10,11,17,.72); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; backdrop-filter: blur(12px); cursor: pointer; font-size: 32px; line-height: 1; transition: color .2s, background .2s, border-color .2s; }
.modal-gallery-button:hover, .modal-gallery-button:focus-visible { color: #11130d; background: var(--acid); border-color: var(--acid); outline: none; }
.modal-gallery-button[hidden] { display: none; }
.modal-gallery-prev { left: 14px; }
.modal-gallery-next { right: 14px; }
.modal-gallery-count { position: absolute; z-index: 2; left: 16px; top: 16px; min-width: 58px; padding: 8px 10px; color: var(--text); background: rgba(10,11,17,.72); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; backdrop-filter: blur(12px); font-family: "Space Grotesk", sans-serif; font-size: 10px; text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }.reveal.is-visible { opacity: 1; transform: none; }

@keyframes drift { to { transform: translate3d(11%, 7%, 0) scale(1.14); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes breathe { 50% { transform: scale(.94); opacity: .58; } }
@keyframes tool-float { to { transform: translateY(-8px); } }
@keyframes scan { 0% { transform: translateX(-120%); } 55%,100% { transform: translateX(430%); } }
@media (max-width: 760px) { .site-header { width: min(100% - 32px, 1400px); height: 76px; }.brand-name, .header-cta { display: none; }nav { gap: 10px; padding: 10px 12px; }nav a { font-size: 11px; }.hero { width: min(100% - 32px, 1400px); min-height: auto; padding: 50px 0 32px; grid-template-columns: 1fr; gap: 30px; }.hero-copy { padding: 0; }.hero-description { font-size: 14px; margin: 25px 0 27px; }.hero-visual { height: min(112vw, 500px); min-height: 390px; }.system-stage { top: 49%; left: 50%; width: min(104vw, 430px); }.system-grid { inset: 3% -5%; }.tool-node { min-width: 48px; min-height: 48px; padding: 4px; }.tool-node > span:last-child { display: none; }.tool-icon { width: 40px; height: 40px; flex-basis: 40px; }.tool-codex { top: 6%; left: 1%; }.tool-gemini { top: 5%; right: 1%; }.tool-photoshop { top: 43%; left: -2%; }.tool-cinema { top: 42%; right: -2%; }.tool-plasticity { left: 9%; bottom: 3%; }.system-note { right: 0; bottom: 4%; min-width: 151px; padding: 11px 12px; }.system-note strong { font-size: 10px; }.hero-footer { display: none; }.works { width: min(100% - 32px, 1220px); margin-top: 80px; }.section-head { display: block; margin-bottom: 26px; }.filter-group { margin-top: 22px; overflow-x: auto; padding-bottom: 4px; }.work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 255px; gap: 9px; }.work-card.large-card { grid-column: span 2; }.work-card.tall-card { grid-row: span 1; }.card-info { bottom: 17px; left: 17px; right: 17px; }.card-info p { font-size: 9px; }.card-info h3 { font-size: 19px; }.card-arrow { flex-basis: 34px; height: 34px; }.card-number { top: 14px; right: 15px; }.precision { width: min(100% - 32px, 1220px); margin-top: 100px; }.precision-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 34px; }.precision-intro p { font-size: 14px; }.compare-grid { grid-template-columns: 1fr; gap: 15px; }.compare-card-wide { grid-column: auto; }.compare-card { padding: 8px; }.compare-meta { min-height: 86px; padding: 7px 8px 13px; }.compare-meta > span { max-width: 120px; line-height: 1.5; }.compare-meta h3 { font-size: 21px; }.compare-handle { width: 48px; height: 48px; }.compare-label { top: 11px; padding: 7px 9px; }.label-final { left: 11px; }.label-wireframe { right: 11px; }.about { width: min(100% - 32px, 1220px); grid-template-columns: 1fr; gap: 35px; margin: 100px auto; }.about-card { padding: 25px; border-radius: 5px 5px 60px 5px; }.about-card > p { font-size: 15px; }.contact { width: min(100% - 32px, 1220px); min-height: 460px; padding: 70px 9%; border-radius: 4px 70px 4px 4px; }.contact-links { gap: 14px; margin-top: 35px; }.contact-link { max-width: 100%; overflow-wrap: anywhere; }footer { width: min(100% - 32px, 1400px); flex-wrap: wrap; line-height: 1.7; }.ambient { width: 80vw; height: 80vw; } }
@media (max-width: 760px) { .retouch-intro { min-height: 0; padding: 21px; display: block; }.retouch-intro h3 { font-size: 22px; }.retouch-metrics { margin-top: 18px; grid-template-columns: repeat(3, 1fr); }.retouch-metrics div { min-width: 0; padding: 10px; }.retouch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }.retouch-card { padding: 5px; }.retouch-card .compare-handle { width: 42px; height: 42px; }.retouch-card > header { min-height: 62px; padding: 10px 5px 5px; gap: 6px; }.retouch-card h4 { font-size: 14px; }.retouch-card header p { font-size: 8px; }.retouch-card .compare-label { top: 7px; padding: 5px 6px; }.retouch-card .label-final { left: 7px; }.retouch-card .label-wireframe { right: 7px; } }
@media (max-width: 980px) { .series-shell { grid-template-columns: 196px minmax(0, 1fr); }.series-reference { padding: 17px; }.reference-cards { height: 236px; }.reference-face { height: 176px; }.reference-outfit { height: 144px; }.series-viewer { grid-template-columns: minmax(0, 1fr) 132px; }.series-stage { height: 540px; } }
@media (max-width: 760px) { .upscale { width: min(100% - 32px, 1220px); margin-top: 100px; }.upscale-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 34px; }.upscale-intro p { font-size: 14px; }.upscale-showcase { padding: 8px; }.upscale-toolbar { min-height: 0; padding: 8px 8px 14px; display: block; }.upscale-meta { display: block; }.upscale-meta > span { display: block; margin-bottom: 13px; }.upscale-meta > div { text-align: left; }.upscale-meta h3 { font-size: 21px; }.upscale-switch { width: fit-content; margin-top: 17px; }.upscale-switch button { min-width: 76px; min-height: 44px; }.upscale-compare { aspect-ratio: 4 / 3; }.upscale-resolution { bottom: 11px; padding: 6px 8px; font-size: 8px; }.resolution-hd { left: 11px; }.resolution-standard { right: 11px; } }
@media (max-width: 760px) { .series { width: min(100% - 32px, 1220px); margin-top: 100px; }.series-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 34px; }.series-intro p { font-size: 14px; }.series-shell { grid-template-columns: 1fr; padding: 8px; }.series-reference { display: grid; grid-template-columns: 1fr 1.15fr; gap: 12px 18px; align-items: start; padding: 17px; }.series-reference > .series-kicker, .series-reference > h3 { grid-column: 1 / -1; }.reference-cards { grid-column: 1; grid-row: 3 / span 2; height: 210px; margin: 4px 0 0; }.reference-face { width: 74%; height: 151px; }.reference-outfit { width: 60%; height: 125px; border-width: 4px; }.reference-note { grid-column: 2; margin-top: 4px; }.reference-metrics { grid-column: 2; margin-top: 0; }.series-viewer { grid-template-columns: 1fr; }.series-stage { height: auto; min-height: 0; aspect-ratio: 3 / 4; }.series-stage-copy { left: 17px; bottom: 16px; }.series-stage-copy h3 { font-size: 21px; }.series-controls { top: 11px; right: 11px; }.series-thumbs { display: flex; gap: 7px; overflow-x: auto; padding: 2px 1px 7px; scrollbar-width: thin; }.series-thumb { flex: 0 0 70px; height: 94px; }.series-thumb:hover { transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

#work, #retouch, #precision, #upscale, #series, #about, #contact { scroll-margin-top: 112px; }

@media (max-width: 1100px) {
  .site-header { padding: 0 14px; }
  .site-header .brand-name, .site-header .header-cta { display: none; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 12px; }
}

@media (max-width: 760px) {
  body { padding-top: 78px; }
  .site-header {
    width: min(100% - 20px, 1400px);
    height: 58px;
    top: 8px;
    padding: 8px 10px;
    border-radius: 17px;
  }
  .site-header .brand { display: none; }
  .site-header nav {
    width: 100%;
    gap: 18px;
    padding: 9px 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a { font-size: 11px; scroll-snap-align: center; }
  .hero { padding-top: 38px; }
  #work, #retouch, #precision, #upscale, #series, #about, #contact { scroll-margin-top: 90px; }
}
