:root {
  --bg: #000000;
  --bg-soft: #0a0d0f;
  --panel: rgba(12, 15, 17, 0.78);
  --text: #f5f5f7;
  --muted: #86868b;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.28);
  --cyan: #11c6df;
  --cyan-soft: rgba(17, 198, 223, 0.16);
  --shell: min(1400px, calc(100vw - 96px));
  --header-h: 94px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --font-apple: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: var(--font-apple);
  --font-display: var(--font-apple);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.012em;
  overflow-x: hidden;
}
body.menu-open, body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; font-family: var(--font-apple); }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #001114; background: var(--cyan); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: #001114;
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform .25s;
}
.skip-link:focus { transform: translateY(0); }

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.035;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000;
  transition: clip-path 1.1s var(--ease-out) .2s, visibility 0s 1.4s;
  clip-path: inset(0 0 0 0);
  animation: apFailsafeLoader .01s linear 5s forwards;
}
.is-loaded .loader { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader__inner { width: min(360px, 70vw); text-align: center; }
.logo-viewport { position: relative; display: block; aspect-ratio: 353 / 151; overflow: hidden; background: #000; }
.logo-viewport img { position: absolute; width: 141.64%; height: auto; max-width: none; transform: translate(-14.4%, -34.6%); }
.logo-viewport--header, .logo-viewport--footer { box-shadow: 0 0 34px 22px #000; }
.logo-viewport--loader { width: min(330px, 75vw); margin: 0 auto 34px; animation: logoReveal 1.15s var(--ease-out) both; }
.loader__line { height: 1px; overflow: hidden; background: rgba(255,255,255,.1); }
.loader__line span { display: block; width: 100%; height: 100%; background: var(--cyan); transform: translateX(-100%); animation: loadline 1.3s var(--ease-out) forwards .1s; }
@keyframes logoReveal { from { opacity: 0; transform: translateY(18px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes loadline { to { transform: translateX(0); } }
@keyframes apFailsafeLoader {
  to {
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes apFailsafeShow { to { opacity: 1; transform: none; } }

.scroll-progress { position: fixed; z-index: 120; top: 0; left: 0; width: 100%; height: 2px; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--cyan); transform-origin: left; transform: scaleX(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: height .4s var(--ease-out), background .4s, border-color .4s, backdrop-filter .4s;
}
.site-header.is-scrolled { height: 72px; background: rgba(0,0,0,.72); border-color: var(--line); backdrop-filter: blur(24px) saturate(145%); }
.brand { position: relative; justify-self: start; width: 172px; }
.logo-viewport--header { width: 172px; }
.brand:hover .logo-viewport { filter: brightness(1.08); }

.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a { position: relative; color: #c7cbcd; font-size: 12px; font-weight: 400; letter-spacing: -.01em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--cyan); transition: right .35s var(--ease-out); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 22px; justify-self: end; }
.language-toggle { display: flex; align-items: center; gap: 0; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 11px; letter-spacing: .02em; }
.language-toggle a { display: grid; min-width: 44px; min-height: 44px; place-items: center; color: #8a9295; transition: color .25s; }
.language-toggle a.is-active { color: var(--text); }
.language-toggle i { display: block; width: 12px; height: 1px; background: var(--line-strong); }
.header-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 8px 30px rgba(0,0,0,.22); backdrop-filter: blur(20px) saturate(150%); font-size: 12px; font-weight: 500; letter-spacing: -.01em; transition: background .3s, color .3s, border-color .3s, box-shadow .3s; }
.header-cta:hover { color: #001114; background: rgba(17,198,223,.9); border-color: rgba(145,243,255,.72); box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 8px 28px rgba(17,198,223,.18); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: var(--glass); backdrop-filter: blur(20px); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .3s; }
.menu-toggle[aria-expanded="true"] > span:not(.sr-only):first-child { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:not(.sr-only):nth-child(2) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; background: rgba(3,4,5,.98); visibility: hidden; opacity: 0; transition: opacity .45s, visibility 0s .45s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.mobile-menu nav { width: min(560px, 84vw); }
.mobile-menu a { display: flex; align-items: baseline; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a span { color: var(--cyan); font-size: 11px; }
.mobile-menu a b { color: #f5f5f7; font: 600 clamp(32px, 8vw, 56px)/1.05 var(--font-display); letter-spacing: -.015em; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(180deg, #000 0%, rgba(0,0,0,.2) 22%, rgba(0,0,0,.08) 76%, #050607 100%), radial-gradient(circle at 75% 38%, #101517 0, #07090a 31%, #000 66%); }
.hero__brand-wave { position: absolute; z-index: 0; inset: 4% -9% 0 -8%; display: flex; align-items: center; opacity: .28; pointer-events: none; mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 84%, transparent 100%); }
.hero__brand-wave img { width: 116%; height: auto; max-width: none; animation: officialWaveFloat 11s ease-in-out infinite alternate; filter: drop-shadow(0 0 16px rgba(17,198,223,.12)); }
@keyframes officialWaveFloat { from { transform: translate3d(-2%, -1.5%, 0) scale(1.02); opacity: .72; } to { transform: translate3d(2%, 1.5%, 0) scale(1.055); opacity: 1; } }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.12) 70%, rgba(0,0,0,.62) 100%); }
.hero__glow { position: absolute; z-index: 0; width: 480px; height: 480px; border-radius: 50%; filter: blur(130px); opacity: .08; background: var(--cyan); }
.hero__glow--one { left: -220px; top: 25%; }
.hero__glow--two { right: -180px; bottom: -180px; }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); align-items: center; gap: 64px; min-height: 100svh; padding-top: var(--header-h); }
.hero__copy { position: relative; z-index: 3; padding-top: 10px; }
.eyebrow { margin: 0 0 28px; color: #a1a1a6; font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.hero__title { max-width: 760px; margin: 0; color: #f5f5f7; font-family: var(--font-display); font-size: clamp(48px, 5.25vw, 82px); font-weight: 600; line-height: 1.05; letter-spacing: -.015em; }
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span { display: block; transform: translateY(112%); transition: transform 1.15s var(--ease-out); animation: apFailsafeShow .01s linear 5s forwards; }
.is-loaded .title-line > span { transform: translateY(0); }
.title-line:nth-child(2) > span { transition-delay: .12s; }
.hero__lead { width: min(560px, 88%); margin: 28px 0 34px; color: #b0b6b9; font-size: clamp(14px, 1.05vw, 17px); line-height: 1.55; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { position: relative; display: inline-flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 24px; padding: 0 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 34px rgba(0,0,0,.25); backdrop-filter: blur(20px) saturate(155%); overflow: hidden; cursor: pointer; font-size: 14px; font-weight: 500; letter-spacing: -.015em; transition: color .35s, border-color .35s, background .35s, box-shadow .35s, transform .2s; }
.button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.2), transparent 38%, rgba(255,255,255,.08)); opacity: 0; transition: opacity .35s; }
.button > * { position: relative; z-index: 1; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button:hover::before { opacity: 1; }
.button:hover { border-color: rgba(255,255,255,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 12px 36px rgba(0,0,0,.3); }
.button--primary { color: #001114; border-color: rgba(137,241,255,.76); background: linear-gradient(180deg, rgba(83,226,244,.96), rgba(17,198,223,.88)); box-shadow: inset 0 1px 0 rgba(255,255,255,.62), 0 10px 32px rgba(17,198,223,.18); }
.button--primary::before { background: linear-gradient(115deg, rgba(255,255,255,.52), transparent 42%, rgba(255,255,255,.12)); }
.button--ghost { color: var(--text); background: rgba(255,255,255,.055); }
.button--full { width: 100%; }

.hero__visual { position: relative; justify-self: end; width: min(520px, 40vw); height: min(760px, 78vh); display: flex; align-items: center; justify-content: center; transform-style: preserve-3d; transition: transform .16s linear; }
.sculpture-frame { position: relative; z-index: 2; width: 100%; height: 100%; overflow: hidden; mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 88%, transparent 100%), linear-gradient(to right, transparent 0, #000 10%, #000 92%, transparent 100%); mask-composite: intersect; }
.sculpture-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.04) saturate(.92); transform: scale(1.02); }
.light-sweep { position: absolute; inset: -20% -70%; background: linear-gradient(110deg, transparent 42%, rgba(17,198,223,.05) 48%, rgba(255,255,255,.22) 50%, rgba(17,198,223,.08) 52%, transparent 58%); transform: translateX(-45%); animation: sweep 6.4s ease-in-out infinite 2.2s; mix-blend-mode: screen; }
@keyframes sweep { 0%, 22% { transform: translateX(-45%); } 60%, 100% { transform: translateX(45%); } }
.visual-orbit { position: absolute; z-index: 0; border: 1px solid rgba(17,198,223,.12); border-radius: 50%; transform: rotate(-18deg); }
.visual-orbit--one { width: 470px; height: 630px; animation: orbit 18s linear infinite; }
.visual-orbit--two { width: 340px; height: 690px; border-color: rgba(255,255,255,.08); animation: orbitReverse 24s linear infinite; }
.visual-orbit::after { content: ""; position: absolute; top: 50%; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
@keyframes orbit { to { transform: rotate(342deg); } }
@keyframes orbitReverse { to { transform: rotate(-378deg); } }
.visual-meta { position: absolute; z-index: 4; left: -14px; right: -8px; display: flex; align-items: center; color: #717a7e; font: 500 9px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; }
.visual-meta i { flex: 1; height: 1px; margin: 0 14px; background: var(--line); }
.visual-meta--top { top: 12%; }
.visual-meta--bottom { bottom: 11%; justify-content: space-between; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: #b8c0c2; }
.live-dot::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero__footer { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; justify-content: space-between; align-items: flex-end; }
.hero__index { display: flex; align-items: center; gap: 10px; color: #697074; font: 500 9px/1 var(--font-sans); }
.hero__index span:first-child { color: var(--cyan); }
.hero__index i { width: 46px; height: 1px; background: var(--line); }
.scroll-cue { display: flex; align-items: center; gap: 16px; color: #8c9396; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 1px; height: 44px; background: var(--line); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform: translateY(-100%); animation: scrollcue 2s var(--ease-smooth) infinite; }
@keyframes scrollcue { to { transform: translateY(100%); } }

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); animation: apFailsafeShow .01s linear 5s forwards; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
html.ap-reveal-ready [data-reveal] { animation-play-state: paused; }

.section-marker { display: inline-flex; width: max-content; align-items: center; gap: 10px; align-self: start; color: #a1a1a6; font: 600 12px/1.2 var(--font-sans); letter-spacing: -.01em; }
.section-marker > span { color: #86868b; }
.section-marker i { width: 24px; height: 1px; background: #424245; }
.section-marker small { color: #a1a1a6; font: inherit; white-space: nowrap; }
.display-title { max-width: 980px; margin: 0; color: #f5f5f7; font: 600 clamp(40px, 4.25vw, 68px)/1.05 var(--font-display); letter-spacing: -.015em; }
.display-title--compact { font-size: clamp(36px, 3.65vw, 58px); max-width: 820px; }
.section-heading { display: grid; gap: 58px; margin-bottom: 76px; }
.section-heading--split { grid-template-columns: 220px 1fr; align-items: start; }
.section-intro { max-width: 660px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.manifesto { min-height: 90vh; display: flex; align-items: center; background: radial-gradient(circle at 78% 42%, rgba(17,198,223,.055), transparent 34%), linear-gradient(180deg, #000 0%, #060809 48%, #000 100%); }
.manifesto__grid { display: grid; grid-template-columns: 220px 1fr; gap: 70px; }
.manifesto__kicker { margin: 0 0 34px; color: #a1a1a6; font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.manifesto__body { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 58px; padding-top: 34px; border-top: 1px solid var(--line); }
.manifesto__body > p { max-width: 590px; margin: 0; color: #a4abad; font-size: clamp(18px, 1.6vw, 25px); line-height: 1.55; }
.manifesto__tags { display: flex; align-content: flex-start; flex-wrap: wrap; gap: 8px; }
.manifesto__tags span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: #8b9295; font: 500 9px/1 var(--font-sans); letter-spacing: .06em; text-transform: uppercase; }

.services { background: #000; }
.service-list { border-top: 1px solid var(--line); }
.service-card { position: relative; display: grid; grid-template-columns: 80px 240px 1fr 60px; align-items: center; gap: 48px; min-height: 260px; border-bottom: 1px solid var(--line); transition: background .45s; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(17,198,223,.035), transparent); transform: translateX(-100%); transition: transform .8s var(--ease-out); }
.service-card:hover::before { transform: translateX(100%); }
.service-card__number { color: var(--cyan); font: 500 11px/1 var(--font-sans); }
.service-card__visual { position: relative; height: 180px; overflow: hidden; background: #000; opacity: .86; transition: opacity .4s, transform .6s var(--ease-out); }
.service-card__visual::after { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(ellipse at center, transparent 46%, rgba(0,0,0,.28) 68%, #000 100%); }
.service-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03); mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%); mask-composite: intersect; transition: transform .8s var(--ease-out), filter .4s; }
.service-card:hover .service-card__visual { opacity: 1; transform: scale(1.04) rotate(-1deg); }
.service-card:hover .service-card__visual img { transform: scale(1.035); filter: saturate(1) contrast(1.04); }
.service-card__content { display: grid; grid-template-columns: minmax(220px, .65fr) 1fr; align-items: center; gap: 60px; }
.service-card__content h3 { margin: 0; color: #f5f5f7; font: 600 clamp(27px, 2.4vw, 42px)/1.05 var(--font-display); letter-spacing: -.015em; }
.service-card__content p { margin: 0 0 20px; color: #9da4a7; line-height: 1.65; }
.service-card__content ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; color: #7d8588; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.service-card__content li::before { content: "+"; margin-right: 6px; color: var(--cyan); }
.service-card__arrow { justify-self: end; color: #737b7e; font-size: 25px; transition: color .3s, transform .4s var(--ease-out); }
.service-card:hover .service-card__arrow { color: var(--cyan); transform: translate(5px, -5px); }
.wire-object { position: absolute; inset: 20px 28px; transform: rotate(-15deg); }
.wire-object i { position: absolute; inset: calc(var(--i, 0) * 6px); border: 1px solid rgba(17,198,223,.4); border-radius: 42% 58% 66% 34% / 48% 35% 65% 52%; }
.wire-object i:nth-child(1) { --i: 0; }
.wire-object i:nth-child(2) { --i: 1; }
.wire-object i:nth-child(3) { --i: 2; }
.wire-object i:nth-child(4) { --i: 3; }
.wire-object i:nth-child(5) { --i: 4; }
.proto-layers { position: absolute; inset: 28px 42px; perspective: 400px; }
.proto-layers i { position: absolute; left: 15%; width: 70%; height: 58px; border: 1px solid rgba(255,255,255,.28); background: rgba(17,198,223,.04); transform: rotateX(64deg) rotateZ(-12deg); }
.proto-layers i:nth-child(1) { top: 0; }
.proto-layers i:nth-child(2) { top: 28px; }
.proto-layers i:nth-child(3) { top: 56px; }
.proto-layers i:nth-child(4) { top: 84px; border-color: rgba(17,198,223,.55); }
.print-form { position: absolute; inset: 18px 48px; border-radius: 48% 52% 40% 60% / 64% 43% 57% 36%; background: repeating-radial-gradient(ellipse at 42% 52%, transparent 0 5px, rgba(17,198,223,.46) 6px 7px), radial-gradient(circle at 35% 30%, rgba(255,255,255,.16), transparent 45%); box-shadow: inset 0 0 40px rgba(17,198,223,.1); transform: rotate(9deg); }

.process { overflow: hidden; background: #000; }
.process__wave { position: absolute; inset: 180px -8% auto; height: 420px; display: flex; align-items: center; opacity: .09; overflow: hidden; }
.process__wave img { width: 116%; height: auto; max-width: none; animation: officialWaveDrift 16s ease-in-out infinite alternate; }
@keyframes officialWaveDrift { from { transform: translateX(-2%); } to { transform: translateX(2%); } }
.process-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 100px; }
.process-steps article, .process-steps article:not(:first-child) { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.075); border-radius: 28px; background: linear-gradient(145deg, rgba(36,36,38,.96), rgba(17,17,18,.96)); box-shadow: inset 0 1px 0 rgba(255,255,255,.055); }
.process-steps article::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(17,198,223,.055); filter: blur(35px); }
.process-steps article > span { position: relative; z-index: 1; color: #86868b; font: 600 12px/1.2 var(--font-sans); letter-spacing: -.01em; }
.process-steps article > i { display: none; }
.process-steps h3 { position: relative; z-index: 1; margin: 88px 0 16px; color: #f5f5f7; font: 600 25px/1.05 var(--font-display); letter-spacing: -.015em; }
.process-steps p { position: relative; z-index: 1; max-width: 220px; margin: 0; color: #a1a1a6; font-size: 15px; line-height: 1.5; }

.work { background: #000; }
.project-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.project { min-height: 570px; }
.project--large { grid-row: span 2; min-height: 1160px; }
.project__art { position: relative; height: calc(100% - 92px); min-height: 470px; overflow: hidden; background: #000; }
.project__art > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.03); mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%); mask-composite: intersect; transition: transform 1s var(--ease-out), filter .5s; }
.project:hover .project__art > img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.project__art::after { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(ellipse at center, transparent 52%, rgba(0,0,0,.22) 72%, #000 100%); }
.project__meta { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; padding: 20px 2px 0; color: #747d80; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.project__meta h3 { margin: 7px 0 0; color: #f5f5f7; font: 600 19px/1.1 var(--font-display); letter-spacing: -.015em; text-transform: none; }
.project-shape { position: absolute; left: 50%; top: 50%; transition: transform .2s linear; }
.project-shape--one { width: 56%; aspect-ratio: .72; border-radius: 46% 54% 39% 61% / 61% 35% 65% 39%; transform: translate(-50%, -50%) rotate(-8deg); background: repeating-radial-gradient(ellipse at 40% 48%, transparent 0 7px, rgba(255,255,255,.34) 8px 9px), radial-gradient(circle at 34% 25%, rgba(255,255,255,.16), transparent 38%); box-shadow: -26px 15px 90px rgba(17,198,223,.12), inset -20px -20px 60px #000; }
.project-shape--two { width: 62%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%) rotate(18deg); border: 22px double rgba(226,230,226,.66); box-shadow: 0 0 0 1px var(--cyan), inset 0 0 80px rgba(17,198,223,.12), 0 0 70px rgba(17,198,223,.1); }
.project-shape--two::after { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: #0d1012; border: 1px solid rgba(17,198,223,.5); }
.project-shape--three { width: 54%; aspect-ratio: .8; transform: translate(-50%, -50%); border-radius: 10% 10% 48% 48%; background: repeating-linear-gradient(0deg, #1a1f21 0 5px, #50585a 6px, #0a0c0d 7px); clip-path: polygon(12% 0, 88% 0, 100% 90%, 78% 100%, 22% 100%, 0 90%); box-shadow: 25px 0 90px rgba(17,198,223,.12); }

.estimate { overflow: hidden; background: radial-gradient(circle at 82% 28%, rgba(17,198,223,.065), transparent 34%), radial-gradient(circle at 12% 78%, rgba(255,255,255,.025), transparent 30%), linear-gradient(180deg, #000 0%, #070a0b 48%, #000 100%); }
.estimate__spot { position: absolute; width: 760px; height: 760px; right: -280px; top: 0; border-radius: 50%; background: var(--cyan); opacity: .04; filter: blur(150px); }
.estimator { overflow: clip; border: 1px solid var(--line); border-radius: 28px; background: rgba(7,9,10,.76); box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 30px 80px rgba(0,0,0,.24); backdrop-filter: blur(24px) saturate(130%); }
#estimate-form { display: grid; grid-template-columns: minmax(0, 1fr) 450px; }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.estimator__questions { padding: 54px; border-right: 1px solid var(--line); }
.question { margin: 0 0 46px; padding: 0 0 42px; border: 0; border-bottom: 1px solid var(--line); }
.question legend, .select-field > span { width: 100%; display: flex; gap: 18px; margin-bottom: 20px; color: #d9dcdd; }
.question legend > span, .select-field i { color: var(--cyan); font: 500 10px/1.7 var(--font-sans); font-style: normal; }
.question legend b, .select-field b { font-size: 13px; font-weight: 500; letter-spacing: .04em; }
.choice-grid { display: grid; gap: 9px; }
.choice-grid--three { grid-template-columns: repeat(3, 1fr); }
.choice-grid--two { grid-template-columns: repeat(2, 1fr); }
.choice-grid label { position: relative; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span { min-height: 52px; display: flex; align-items: center; justify-content: center; padding: 10px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.055); color: #959da0; cursor: pointer; font-size: 13px; font-weight: 500; text-align: center; transition: color .25s, background .25s, border-color .25s, box-shadow .25s; }
.choice-grid label span:hover { color: #e5e7e8; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.24); }
.choice-grid input:checked + span { color: #001114; background: linear-gradient(180deg, rgba(83,226,244,.96), rgba(17,198,223,.88)); border-color: rgba(137,241,255,.72); box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 8px 26px rgba(17,198,223,.13); }
.choice-grid input:focus-visible + span { outline: 2px solid white; outline-offset: 3px; }
.question-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 46px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.question-row.is-printing { grid-template-columns: repeat(3, 1fr); }
.select-field select { width: 100%; height: 52px; padding: 0 17px; color: #d5d9da; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; outline: none; cursor: pointer; }
.select-field select:focus { border-color: var(--cyan); }
.question--compact { margin-bottom: 0; border-bottom: 0; padding-bottom: 0; }
.estimate-result { position: relative; padding: 54px 44px; background: linear-gradient(150deg, rgba(17,198,223,.055), transparent 46%); }
.estimate-result__sticky { position: sticky; top: 110px; }
.estimate-result__label { display: block; margin-bottom: 22px; color: #a1a1a6; font: 600 12px/1.2 var(--font-sans); letter-spacing: -.01em; }
.estimate-result__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; color: #f5f5f7; font: 600 clamp(28px, 2.7vw, 42px)/1.05 var(--font-display); letter-spacing: -.015em; }
.estimate-result__price i { color: #687174; font-style: normal; }
.estimate-result__price.is-custom { max-width: 320px; font-size: clamp(27px, 2.2vw, 36px); line-height: 1.08; }
.estimate-result__price.is-custom i, .estimate-result__price.is-custom span:last-child { display: none; }
.estimate-result__sticky > p { margin: 25px 0; color: #8a9295; font-size: 12px; line-height: 1.65; }
.estimate-result__flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 34px 0; padding: 22px 0; border-block: 1px solid var(--line); color: #90989b; font-size: 9px; }
.estimate-result__flow i { width: 16px; height: 1px; background: var(--line-strong); }
.estimate-result__sticky > small { display: block; margin-top: 16px; color: #a1a1a6; font-size: 12px; font-weight: 500; line-height: 1.55; text-align: center; }
.contact-step { grid-column: 1 / -1; max-height: 0; padding: 0 54px; overflow: hidden; opacity: 0; border-top: 0 solid var(--line); transition: max-height 1s var(--ease-out), opacity .6s, padding .8s var(--ease-out), border-width .3s; }
.contact-step.is-open { max-height: 1200px; padding: 58px 54px 64px; opacity: 1; border-top-width: 1px; }
.contact-step__heading { display: flex; gap: 24px; margin-bottom: 42px; }
.contact-step__heading > span { color: var(--cyan); font: 500 10px/1.8 var(--font-sans); }
.contact-step h3 { margin: 0 0 10px; color: #f5f5f7; font: 600 26px/1.1 var(--font-display); letter-spacing: -.015em; }
.contact-step p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-grid label { display: grid; gap: 10px; color: #929a9d; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-grid input, .contact-grid textarea { width: 100%; padding: 14px 16px; color: var(--text); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; outline: none; resize: vertical; transition: background .25s, border-color .25s, box-shadow .25s; }
.contact-grid input:focus, .contact-grid textarea:focus { background: rgba(255,255,255,.055); box-shadow: 0 0 0 3px rgba(17,198,223,.09); }
.contact-grid input:focus, .contact-grid textarea:focus { border-color: var(--cyan); }
.contact-grid__wide { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 28px 0; color: #7d8588; font-size: 11px; line-height: 1.5; }
.consent input { accent-color: var(--cyan); }
.form-status { margin-top: 22px !important; color: var(--cyan) !important; }
.consent a { color: #f5f5f7; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.consent a:hover { text-decoration-color: var(--cyan); }

.footer { position: relative; min-height: 84vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.footer__wave { position: absolute; inset: 0 -12%; display: flex; align-items: center; opacity: .13; }
.footer__wave img { width: 124%; height: auto; max-width: none; animation: officialWaveFloat 15s ease-in-out infinite alternate-reverse; }
.footer::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 48%, transparent 0, rgba(0,0,0,.42) 45%, #000 76%); }
.footer__content { position: relative; z-index: 2; padding: 120px 0 50px; }
.footer__headline { display: inline-block; color: #f5f5f7; font: 600 clamp(58px, 8.7vw, 126px)/1.02 var(--font-display); letter-spacing: -.015em; }
.footer__headline::after { content: ""; display: block; height: 5px; margin-top: 18px; background: var(--cyan); transform-origin: left; transform: scaleX(.12); transition: transform .8s var(--ease-out); }
.footer__headline:hover::after { transform: scaleX(1); }
.footer__bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 70px; align-items: end; margin-top: 120px; padding-top: 34px; border-top: 1px solid var(--line); }
.logo-viewport--footer { width: 200px; margin-bottom: 12px; }
.footer__brand > span { color: #838b8e; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer__links { display: flex; gap: 12px; }
.footer__links a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.055); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.22); backdrop-filter: blur(18px); transition: color .25s, background .25s, border-color .25s, transform .25s; }
.footer__links a:hover { color: var(--cyan); background: rgba(17,198,223,.09); border-color: rgba(17,198,223,.42); transform: translateY(-2px); }

/* Privacy */
.privacy-page { min-height: 100vh; background: radial-gradient(circle at 78% 12%, rgba(17,198,223,.07), transparent 28%), linear-gradient(180deg, #000 0%, #070a0b 48%, #000 100%); color: #f5f5f7; }
.privacy-nav { position: relative; z-index: 2; display: flex; width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); }
.privacy-nav img { display: block; width: 190px; height: auto; }
.privacy-nav__actions { display: flex; align-items: center; gap: 12px; }
.privacy-language { color: #a1a1a6; font-size: 13px; }
.privacy-back { display: inline-flex; min-height: 42px; align-items: center; padding: 0 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.06); backdrop-filter: blur(18px); font-size: 14px; }
.privacy-main { width: min(880px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 130px; }
.privacy-main h1 { max-width: 760px; margin: 0; font: 600 clamp(52px, 8vw, 92px)/.96 var(--font-display); letter-spacing: -.055em; }
.privacy-updated { margin: 28px 0 80px; color: #86868b; font-size: 15px; }
.privacy-content { display: grid; gap: 0; }
.privacy-block { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 42px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.12); }
.privacy-block h2 { margin: 0; font: 600 20px/1.2 var(--font-display); letter-spacing: -.025em; }
.privacy-block div, .privacy-block p, .privacy-block li { color: #a1a1a6; font-size: 16px; line-height: 1.55; }
.privacy-block p { margin: 0 0 14px; }
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block ul { margin: 0; padding-left: 20px; }
.privacy-block a { color: #f5f5f7; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.privacy-footer { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 32px 0 50px; border-top: 1px solid rgba(255,255,255,.12); color: #6e6e73; font-size: 13px; }
.privacy-footer a { color: #a1a1a6; text-decoration: none; }
.privacy-footer a:hover { color: #f5f5f7; }
@media (max-width: 700px) {
  .privacy-nav, .privacy-main, .privacy-footer { width: min(100% - 32px, 880px); }
  .privacy-nav img { width: 148px; }
  .privacy-main { padding: 76px 0 90px; }
  .privacy-updated { margin-bottom: 54px; }
  .privacy-block { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; }
}
.footer__links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.75; }
.footer__links .social-icon__dot { fill: currentColor; stroke: none; }
.footer__links a:last-child svg { fill: currentColor; stroke: none; }
.footer__links .social-icon__play { fill: #000; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; color: #858d90; font-size: 10px; }
.footer__legal a, .footer__legal button { display: inline-flex; min-height: 44px; align-items: center; }
.footer__legal button { padding: 0; color: inherit; border: 0; background: none; font: inherit; cursor: pointer; }
.footer__legal a:hover, .footer__legal button:hover { color: #f5f5f7; }

/* SEO service landing pages */
.service-detail-page { background: #000; }
.service-detail-hero { position: relative; min-height: 900px; display: grid; align-items: center; overflow: hidden; padding: 150px 0 90px; background: #000; }
.service-detail-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 36%; pointer-events: none; background: linear-gradient(180deg, transparent, #000); }
.service-detail-hero__glow { position: absolute; width: 760px; height: 760px; right: -260px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(17,198,223,.12), transparent 66%); filter: blur(12px); }
.service-detail-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .8fr); gap: clamp(54px, 8vw, 150px); align-items: center; }
.service-detail-hero__copy { max-width: 760px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 46px; color: #6e6e73; font-size: 12px; }
.breadcrumbs a { color: #a1a1a6; transition: color .2s; }
.breadcrumbs a:hover { color: #f5f5f7; }
.service-detail-hero h1 { max-width: 820px; margin: 18px 0 30px; color: #f5f5f7; font: 600 clamp(54px, 6.1vw, 96px)/.97 var(--font-display); letter-spacing: -.052em; }
.service-detail-hero__lead { max-width: 700px; margin: 0 0 38px; color: #a1a1a6; font-size: clamp(18px, 1.5vw, 23px); font-weight: 500; line-height: 1.42; letter-spacing: -.025em; }
.service-detail-hero__visual { position: relative; min-height: 620px; margin: 0; overflow: hidden; }
.service-detail-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #000 0%, transparent 26%), linear-gradient(180deg, #000 0%, transparent 17%, transparent 72%, #000 100%); pointer-events: none; }
.service-detail-hero__visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; filter: saturate(.88) contrast(1.08); }
.service-detail-section { position: relative; padding: 140px 0; background: #000; }
.service-detail-section--soft { background: radial-gradient(circle at 88% 12%, rgba(17,198,223,.07), transparent 28%), linear-gradient(180deg, #000 0%, #080b0c 50%, #000 100%); }
.service-detail-intro { display: grid; grid-template-columns: 250px minmax(0, 900px); gap: clamp(40px, 8vw, 150px); }
.service-detail-intro h2, .service-detail-heading h2, .service-detail-note h2 { margin: 0; color: #f5f5f7; font: 600 clamp(42px, 5.2vw, 76px)/1.02 var(--font-display); letter-spacing: -.045em; }
.service-detail-intro > div:last-child > p { max-width: 820px; margin: 34px 0 0; color: #a1a1a6; font-size: clamp(18px, 1.55vw, 23px); font-weight: 500; line-height: 1.5; letter-spacing: -.02em; }
.service-detail-heading { display: grid; grid-template-columns: 250px minmax(0, 900px); gap: clamp(40px, 8vw, 150px); align-items: start; margin-bottom: 72px; }
.service-detail-heading > span { padding-top: 12px; color: var(--cyan); font-size: 12px; font-weight: 600; }
.service-detail-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-left: min(24vw, 400px); }
.service-detail-cards article { min-height: 260px; padding: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 80px rgba(0,0,0,.2); }
.service-detail-cards h3, .service-detail-steps h3 { margin: 0 0 16px; color: #f5f5f7; font: 600 25px/1.12 var(--font-display); letter-spacing: -.03em; }
.service-detail-cards p, .service-detail-steps p { margin: 0; color: #86868b; font-size: 16px; font-weight: 500; line-height: 1.55; }
.service-detail-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.12); border-radius: 34px; overflow: hidden; background: rgba(255,255,255,.025); }
.service-detail-steps article { min-height: 340px; padding: 36px 32px; border-left: 1px solid rgba(255,255,255,.1); }
.service-detail-steps article:first-child { border-left: 0; }
.service-detail-steps article > span { display: block; margin-bottom: 86px; color: var(--cyan); font-size: 11px; }
.service-detail-note { background: radial-gradient(circle at 78% 30%, rgba(17,198,223,.1), transparent 34%), #000; }
.service-detail-note__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, .8fr); gap: clamp(60px, 10vw, 180px); align-items: end; padding-block: 46px; }
.service-detail-note__grid > div:last-child > p { margin: 0 0 34px; color: #a1a1a6; font-size: 18px; font-weight: 500; line-height: 1.55; }
.service-related { display: grid; grid-template-columns: 250px repeat(2, 1fr); gap: 18px; align-items: stretch; padding: 40px 0 140px; background: #000; }
.service-related > span { padding-top: 24px; color: #6e6e73; font-size: 12px; }
.service-related a { display: flex; min-height: 96px; align-items: center; justify-content: space-between; padding: 0 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.035); font-size: 18px; font-weight: 600; letter-spacing: -.02em; transition: transform .25s, border-color .25s, background .25s; }
.service-related a:hover { transform: translateY(-3px); border-color: rgba(17,198,223,.45); background: rgba(17,198,223,.07); }
.service-related a span { color: var(--cyan); }
.service-detail-footer { min-height: 680px; }
.service-detail-footer .footer__bottom { grid-template-columns: 1fr auto; }

@media (max-width: 1000px) {
  .service-detail-hero { min-height: auto; padding-top: 160px; }
  .service-detail-hero__grid { grid-template-columns: 1fr; }
  .service-detail-hero__visual { min-height: 480px; }
  .service-detail-hero__visual img { min-height: 480px; }
  .service-detail-intro, .service-detail-heading { grid-template-columns: 170px minmax(0, 1fr); gap: 50px; }
  .service-detail-cards { margin-left: 0; }
  .service-detail-steps { grid-template-columns: 1fr 1fr; }
  .service-detail-steps article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .service-detail-steps article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .service-related { grid-template-columns: 170px 1fr 1fr; }
}

@media (max-width: 700px) {
  .service-detail-hero { padding: 126px 0 54px; }
  .breadcrumbs { margin-bottom: 34px; }
  .service-detail-hero h1 { font-size: clamp(45px, 13vw, 64px); }
  .service-detail-hero__lead { font-size: 17px; }
  .service-detail-hero__visual, .service-detail-hero__visual img { min-height: 360px; }
  .service-detail-section { padding: 90px 0; }
  .service-detail-intro, .service-detail-heading, .service-detail-note__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-intro h2, .service-detail-heading h2, .service-detail-note h2 { font-size: clamp(38px, 11vw, 54px); }
  .service-detail-cards, .service-detail-steps { grid-template-columns: 1fr; }
  .service-detail-cards article { min-height: 220px; padding: 32px 28px; }
  .service-detail-steps article, .service-detail-steps article:nth-child(2), .service-detail-steps article:nth-child(4) { min-height: 250px; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .service-detail-steps article:first-child { border-top: 0; }
  .service-detail-steps article > span { margin-bottom: 54px; }
  .service-related { grid-template-columns: 1fr; padding-bottom: 90px; }
  .service-related > span { padding: 0 0 8px; }
  .service-detail-footer .footer__bottom { grid-template-columns: 1fr; }
}

.cookie-consent { position: fixed; z-index: 300; right: 24px; bottom: 24px; left: 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 22px 24px; color: #f5f5f7; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: linear-gradient(145deg, rgba(35,39,41,.82), rgba(7,9,10,.9)); box-shadow: 0 28px 90px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(255,255,255,.04); backdrop-filter: blur(30px) saturate(155%); -webkit-backdrop-filter: blur(30px) saturate(155%); opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .3s, transform .45s var(--ease-out); }
.cookie-consent::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at 12% 0%, rgba(86,215,231,.09), transparent 36%); }
.cookie-consent.is-visible { opacity: 1; transform: none; }
.cookie-consent__copy { position: relative; }
.cookie-consent__copy strong { display: block; margin-bottom: 7px; font: 600 17px/1.2 var(--font-display); letter-spacing: -.015em; }
.cookie-consent__copy p { max-width: 660px; margin: 0; color: #a1a1a6; font-size: 12px; line-height: 1.55; }
.cookie-consent__copy a { color: #e7e7e9; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; }
.cookie-consent__actions { position: relative; display: flex; gap: 10px; align-items: center; }
.cookie-consent__actions button { min-width: 112px; min-height: 44px; padding: 0 18px; color: #f5f5f7; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.2); font: 600 12px/1 var(--font-sans); cursor: pointer; transition: transform .25s, border-color .25s, background .25s; }
.cookie-consent__actions button:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.11); }
.cookie-consent__actions .cookie-consent__accept { min-width: 158px; color: #001114; border-color: rgba(255,255,255,.45); background: linear-gradient(180deg, #69dfec, #17b9ce); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 30px rgba(17,198,223,.18); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 56px, 1100px); }
  .site-header { padding-inline: 28px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .mobile-menu { display: grid; }
  .hero__content { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .8fr); gap: 20px; }
  .hero__visual { width: 42vw; }
  .service-card { grid-template-columns: 50px 180px 1fr 30px; gap: 26px; }
  .service-card__content { gap: 30px; }
  #estimate-form { grid-template-columns: minmax(0, 1fr) 380px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100vw - 36px); --header-h: 76px; }
  .section { padding: 100px 0; }
  .site-header { padding-inline: 18px; }
  .brand { width: 138px; }
  .logo-viewport--header { width: 138px; }
  .header-cta { display: none; }
  .hero { min-height: 900px; }
  .hero__content { display: block; min-height: 900px; padding-top: 160px; }
  .hero__copy { position: relative; z-index: 6; }
  .hero__title { font-size: clamp(48px, 8.5vw, 66px); }
  .hero__lead { width: 92%; margin-top: 24px; }
  .hero__visual { position: absolute; z-index: 1; right: -58px; bottom: 10px; width: 72vw; height: 570px; opacity: .72; }
  .hero__brand-wave { inset: 9% -38% 0 -34%; opacity: .24; }
  .hero__brand-wave img { width: 168%; }
  .hero__visual::after { content: ""; position: absolute; inset: -20%; background: linear-gradient(180deg, var(--bg) 0%, transparent 35%, transparent 76%, var(--bg) 100%); }
  .visual-meta { display: none; }
  .visual-orbit--one { width: 340px; height: 470px; }
  .visual-orbit--two { width: 250px; height: 510px; }
  .hero__footer { bottom: 22px; }
  .manifesto__grid, .section-heading--split { grid-template-columns: 1fr; gap: 48px; }
  .manifesto__body { grid-template-columns: 1fr; gap: 36px; }
  .service-card { grid-template-columns: 34px 130px 1fr; gap: 18px; min-height: 230px; }
  .service-card__arrow { display: none; }
  .service-card__content { grid-template-columns: 1fr; gap: 18px; }
  .service-card__content ul { display: none; }
  .service-card__visual { height: 140px; }
  .process-steps { grid-template-columns: 1fr 1fr; margin-top: 80px; }
  .process-steps article, .process-steps article:not(:first-child) { min-height: 240px; }
  .project-grid { grid-template-columns: 1fr; }
  .project--large { grid-row: auto; min-height: 680px; }
  #estimate-form { grid-template-columns: 1fr; }
  .estimator__questions { border-right: 0; border-bottom: 1px solid var(--line); }
  .estimate-result__sticky { position: static; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
  .footer__legal { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: auto 1fr; }
  .brand, .logo-viewport--header { width: 124px; }
  .header-actions { gap: 10px; }
  .section { padding: 84px 0; }
  .hero { min-height: 860px; }
  .hero__content { min-height: 860px; padding-top: 132px; }
  .hero__title { font-size: clamp(46px, 12vw, 60px); line-height: .96; }
  .hero__lead { font-size: 14px; }
  .hero__actions { display: grid; width: min(100%, 360px); }
  .button { min-height: 52px; }
  .hero__visual { width: 88vw; right: -104px; bottom: 4px; height: 500px; }
  .hero__footer { display: none; }
  .display-title { font-size: clamp(36px, 10.5vw, 52px); }
  .display-title--compact { font-size: clamp(34px, 9.8vw, 48px); }
  .section-marker { gap: 8px; }
  .service-card { grid-template-columns: 28px 1fr; padding: 28px 0; }
  .service-card__visual { display: none; }
  .service-card__content h3 { font-size: 29px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps article, .process-steps article:not(:first-child) { min-height: 210px; padding: 24px; }
  .process-steps h3 { margin-top: 52px; }
  .project, .project--large { min-height: 560px; }
  .project__art { min-height: 470px; }
  .project__meta { display: block; }
  .project__meta > span { display: block; margin-top: 12px; }
  .estimator__questions, .estimate-result { padding: 32px 20px; }
  .choice-grid--three { grid-template-columns: 1fr; }
  .question-row, .question-row.is-printing, .contact-grid { grid-template-columns: 1fr; }
  .contact-step.is-open { padding: 42px 20px; }
  .estimate-result__price { font-size: 30px; }
  .estimate-result__flow span { font-size: 8px; }
  .footer { min-height: 680px; }
  .footer__headline { font-size: clamp(54px, 15vw, 84px); }
  .footer__bottom { grid-template-columns: 1fr; gap: 36px; margin-top: 90px; }
  .footer__legal { grid-column: auto; }
  .cookie-consent { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; gap: 18px; width: calc(100% - 24px); padding: 20px; border-radius: 22px; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr 1.35fr; }
  .cookie-consent__actions button, .cookie-consent__actions .cookie-consent__accept { min-width: 0; padding-inline: 12px; }
}

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

@media (scripting: none) {
  .loader { display: none; }
  .title-line > span { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Project quote form */
#estimate-form.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(7, 9, 10, .79);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 34px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(24px) saturate(130%);
}
.brief-panel { padding: 54px; border-right: 1px solid var(--line); }
.quote-question { margin: 0 0 42px; padding: 0; border: 0; }
.quote-field { display: grid; gap: 10px; }
.quote-field > span, .field-title { display: flex; align-items: center; gap: 18px; margin-bottom: 10px; color: #d9dcdd; }
.quote-field i, .field-title i { color: var(--cyan); font: 500 10px/1.7 var(--font-sans); font-style: normal; }
.quote-field b, .field-title b { font-size: 13px; font-weight: 500; letter-spacing: .04em; }
.field-title em { margin-left: auto; color: #70787b; font-size: 10px; font-style: normal; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.quote-field input, .quote-field textarea, .contact-preview input { width: 100%; padding: 15px 17px; color: var(--text); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; outline: none; background: rgba(255,255,255,.035); resize: vertical; transition: border-color .25s, background .25s, box-shadow .25s; }
.quote-field textarea { min-height: 172px; line-height: 1.6; }
.quote-field input:focus, .quote-field textarea:focus, .contact-preview input:focus { border-color: var(--cyan); background: rgba(255,255,255,.055); box-shadow: 0 0 0 3px rgba(17,198,223,.09); }
.quote-field > small { color: #70787b; font-size: 11px; line-height: 1.5; }
.upload-block { margin: 38px 0; padding: 38px 0; border-block: 1px solid var(--line); }
.upload-zone { min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; border: 1px dashed rgba(255,255,255,.24); border-radius: 20px; background: linear-gradient(145deg, rgba(17,198,223,.045), rgba(255,255,255,.025)); cursor: pointer; text-align: center; transition: border-color .25s, background .25s, transform .25s; }
.upload-zone:hover { border-color: rgba(17,198,223,.62); background: rgba(17,198,223,.065); transform: translateY(-1px); }
.upload-zone:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(17,198,223,.09); }
.upload-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 4px; color: var(--cyan); border: 1px solid rgba(17,198,223,.3); border-radius: 50%; background: rgba(17,198,223,.08); }
.upload-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.upload-zone strong { color: #e5e7e8; font-size: 14px; font-weight: 500; }
.upload-zone small { color: #727a7d; font-size: 10px; line-height: 1.45; }
.file-name { margin-top: 6px; color: var(--cyan); font-size: 11px; overflow-wrap: anywhere; }
.file-name.is-error, .form-status.is-error { color: #ff8b8b !important; }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.quote-field--wide { grid-column: 1 / -1; }
.quote-panel { position: relative; padding: 54px 42px; background: linear-gradient(150deg, rgba(17,198,223,.075), transparent 48%); }
.quote-panel__sticky { position: sticky; top: 110px; }
.quote-kicker { color: #9ea5a7; font-size: 11px; font-weight: 600; }
.quote-panel h3 { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 0; color: #f5f5f7; letter-spacing: -.035em; }
.quote-panel h3 strong { color: var(--cyan); font-size: 62px; font-weight: 600; line-height: .9; }
.quote-panel h3 span { max-width: 130px; font-size: 22px; font-weight: 600; line-height: 1; }
.quote-panel__sticky > p { margin: 24px 0 0; color: #899194; font-size: 12px; line-height: 1.65; }
.quote-steps { display: grid; gap: 0; margin: 32px 0; padding: 8px 0; list-style: none; border-block: 1px solid var(--line); }
.quote-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.quote-steps li:last-child { border-bottom: 0; }
.quote-steps li > span { color: var(--cyan); font-size: 9px; padding-top: 3px; }
.quote-steps b { display: block; color: #dfe2e3; font-size: 12px; font-weight: 500; }
.quote-steps small { display: block; margin-top: 4px; color: #71797c; font-size: 10px; line-height: 1.45; }
.contact-preview { display: grid; gap: 14px; }
.contact-preview label { display: grid; gap: 8px; color: #868e91; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.contact-preview input { padding-block: 12px; }
.quote-consent { margin: 20px 0; }
.form-status { min-height: 18px; margin: 14px 0 0 !important; color: var(--cyan) !important; font-size: 11px; text-align: center; }
.quote-note { display: flex; justify-content: center; gap: 8px; margin: 22px 0 0; color: #7f888b; font-size: 11px; text-align: center; }
.quote-note > span:first-child { color: var(--cyan); }

@media (max-width: 1000px) {
  #estimate-form.quote-card { grid-template-columns: 1fr; }
  .brief-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .quote-panel__sticky { position: static; }
}

@media (max-width: 560px) {
  .brief-panel, .quote-panel { padding: 32px 20px; }
  .choice-grid--three, .brief-grid { grid-template-columns: 1fr; }
  .quote-field--wide { grid-column: auto; }
  .upload-zone { min-height: 168px; padding: 20px 14px; }
  .quote-panel h3 strong { font-size: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-field input, .quote-field textarea, .contact-preview input, .upload-zone { transition: none; }
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

/* Branded error page */
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 24%, rgba(17,198,223,.11), transparent 30%),
    linear-gradient(180deg, #000 0%, #070a0b 55%, #000 100%);
}
.error-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: rgba(8,10,11,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 100px rgba(0,0,0,.48);
  backdrop-filter: blur(24px);
  text-align: center;
}
.error-card__logo { width: 190px; margin: 0 auto 54px; background: transparent; }
.error-card__logo img { mix-blend-mode: lighten; }
.error-card__code { display: block; margin-bottom: 18px; color: var(--cyan); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.error-card h1 { margin: 0; font: 600 clamp(42px, 7vw, 76px)/1 var(--font-display); letter-spacing: -.045em; }
.error-card p { max-width: 540px; margin: 24px auto 34px; color: #a1a8aa; font-size: 16px; line-height: 1.6; }
.error-card .button { min-width: 220px; }

@media (max-width: 560px) {
  .error-card { padding: 38px 22px; border-radius: 24px; }
  .error-card__logo { width: 150px; margin-bottom: 42px; }
  .error-card p { font-size: 14px; }
  .error-card .button { width: 100%; }
}
