:root {
  --ink: #070b12;
  --ink-soft: #0b1220;
  --panel: #101927;
  --panel-light: #162235;
  --white: #f7f8fb;
  --muted: #9ca9ba;
  --muted-dark: #687587;
  --blue: #2f79ff;
  --blue-soft: #80aaff;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(17, 27, 43, 0.68);
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Manrope", "Avenir Next", sans-serif;
  --shell: min(1280px, calc(100% - 64px));
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

::selection { background: var(--blue); color: white; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button { color: inherit; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .25s ease;
}

.skip-link:focus { transform: translateY(0); }

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .045;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  width: 340px;
  height: 340px;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 121, 255, .08), transparent 67%);
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  background: #060910;
  transition: opacity .7s ease, visibility .7s ease;
}

.loader.is-hidden { opacity: 0; visibility: hidden; }

.loader__mark {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.loader__mark::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), transparent 45%);
}

.loader__mark span {
  position: relative;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.loader__mark i {
  position: absolute;
  inset: auto 12px 11px;
  height: 2px;
  background: var(--blue);
  transform-origin: left;
  animation: loaderLine 1.5s var(--ease) infinite;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.loader__line { width: 180px; height: 1px; overflow: hidden; background: var(--line); }
.loader__line span { display: block; width: 55%; height: 100%; background: var(--blue-soft); animation: loaderTravel 1.2s var(--ease) infinite; }

@keyframes loaderLine { 0% { transform: scaleX(0); } 50% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }
@keyframes loaderTravel { from { transform: translateX(-110%); } to { transform: translateX(290%); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 11, 18, .76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 36px; }

.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }

.brand__monogram {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.015));
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.brand__text span { color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }

.nav-menu a {
  position: relative;
  color: #c6cfda;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--blue-soft);
  transition: right .3s var(--ease);
}

.nav-menu a:hover, .nav-menu a.is-active { color: white; }
.nav-menu a:hover::after, .nav-menu a.is-active::after { right: 0; }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}

.nav-cta svg { width: 16px; }
.nav-cta:hover { transform: translateY(-2px); background: var(--white); color: var(--ink); border-color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 13vw 100%,
    linear-gradient(180deg, #0a101b, #070b12 82%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 66%, rgba(47, 121, 255, .06) 66% 67%, transparent 67%);
  pointer-events: none;
}

.hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .8; pointer-events: none; }
.hero__orb--one { width: 600px; height: 600px; right: -250px; top: -190px; background: radial-gradient(circle at 40% 40%, rgba(47,121,255,.19), transparent 68%); }
.hero__orb--two { width: 500px; height: 500px; left: 34%; bottom: -330px; background: radial-gradient(circle, rgba(128,170,255,.08), transparent 70%); }

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  min-height: calc(100svh - 205px);
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow { display: flex; align-items: center; gap: 12px; animation: introUp .8s .65s both; }
.hero__eyebrow span { width: 28px; height: 1px; background: var(--blue-soft); }

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--body);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .99;
  animation: introUp .9s .75s both;
}

.hero h1 em { font-family: var(--display); font-weight: 500; letter-spacing: -.055em; color: #dbe6fb; }
.hero h1 span { color: var(--blue-soft); }

.hero__lede {
  max-width: 580px;
  margin: 30px 0 0;
  color: #aeb9c8;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  animation: introUp .9s .85s both;
}

.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; animation: introUp .9s .95s both; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.button svg { width: 18px; margin-left: 22px; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(4px); }
.button--primary { background: var(--blue); color: white; box-shadow: 0 16px 36px rgba(47,121,255,.18); }
.button--primary:hover { box-shadow: 0 20px 42px rgba(47,121,255,.28); }
.button--secondary { border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.button--secondary:hover { background: white; color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  color: #dbe2ec;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .25s ease, color .25s ease;
}

.text-link span { color: var(--blue-soft); }
.text-link:hover { color: white; border-color: var(--blue-soft); }

.hero__facts {
  display: flex;
  gap: 36px;
  margin: 54px 0 0;
  animation: introUp .9s 1.05s both;
}

.hero__facts div { display: flex; align-items: center; gap: 12px; padding-right: 34px; border-right: 1px solid var(--line); }
.hero__facts div:last-child { border: 0; padding: 0; }
.hero__facts dt { font-family: var(--display); font-size: 28px; color: #d9e5fb; line-height: 1; }
.hero__facts dd { margin: 0; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .07em; line-height: 1.4; text-transform: uppercase; }

.hero__visual { position: relative; animation: visualIn 1.1s .75s both; perspective: 1200px; }

.glass-card {
  border: 1px solid var(--line-strong);
  background: var(--glass);
  box-shadow: 0 38px 90px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: 28px;
  transform: rotate(1.5deg);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}

.hero-card__bar { display: flex; justify-content: space-between; align-items: center; padding: 3px 7px 13px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-card__bar div { display: flex; gap: 5px; }
.hero-card__bar i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); }

.hero-card__image { overflow: hidden; aspect-ratio: 1.665; border-radius: 18px; background: #0d1420; }
.hero-card__image img { width: 100%; height: 100%; object-fit: cover; }

.hero-card__footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 9px 7px; }
.hero-card__footer div { display: grid; gap: 2px; }
.hero-card__footer strong { font-size: 13px; }
.hero-card__footer span { color: var(--muted); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.hero-card__footer a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--white); color: var(--ink); transition: transform .3s var(--ease); }
.hero-card__footer a:hover { transform: rotate(-12deg) scale(1.06); }
.hero-card__footer svg { width: 18px; }

.floating-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 13, 22, .78);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  color: #bdc7d4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.floating-tag--top { top: -21px; right: 8%; display: flex; align-items: center; gap: 9px; padding: 10px 15px; }
.floating-tag--top span { width: 7px; height: 7px; border-radius: 50%; background: #62d7a2; box-shadow: 0 0 0 5px rgba(98,215,162,.09); }
.floating-tag--bottom { left: -40px; bottom: 14%; padding: 12px 18px; }
.floating-tag--bottom strong { color: white; }

.hero__ticker { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.hero__ticker-track { display: flex; align-items: center; width: max-content; padding: 16px 0; animation: ticker 28s linear infinite; }
.hero__ticker span { color: #778496; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.hero__ticker i { width: 4px; height: 4px; margin: 0 42px; border-radius: 50%; background: var(--blue); }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes introUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes visualIn { from { opacity: 0; transform: translate(50px, 25px) scale(.96); } to { opacity: 1; transform: translate(0) scale(1); } }

.section { position: relative; padding: 150px 0; }

.section-marker { display: flex; align-items: center; gap: 10px; color: var(--muted-dark); }
.section-marker span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-soft); font-family: var(--display); font-size: 11px; }
.section-marker p { margin: 0; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.about { background: #f1f3f7; color: #0b111b; }
.about__grid { display: grid; grid-template-columns: .25fr 1.2fr .72fr; gap: 60px; }
.about .section-marker { align-self: start; }
.about .section-marker span { border-color: rgba(11,17,27,.15); color: #1f63dd; }
.about .section-marker p { color: #677385; }

.about__statement { grid-column: 2 / -1; display: grid; grid-template-columns: 1.45fr .55fr; gap: 60px; align-items: end; padding-bottom: 72px; border-bottom: 1px solid rgba(11,17,27,.13); }
.about__statement .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; color: #356fd2; }
.about__statement h2 { grid-column: 1; margin: 0; font-size: clamp(44px, 5vw, 76px); font-weight: 600; letter-spacing: -.06em; line-height: 1.04; }
.about__statement h2 em { display: block; font-family: var(--display); font-weight: 500; color: #3b495d; }

.about__copy { grid-column: 2; padding-top: 28px; }
.about__copy p { margin: 0 0 18px; color: #4e5a6a; font-size: 16px; }
.about__copy .text-link { margin-top: 14px; color: #121b28; border-color: rgba(11,17,27,.22); }

.about__principles { grid-column: 3; }
.about__principles article { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid rgba(11,17,27,.13); }
.about__principles article:first-child { padding-top: 28px; }
.about__principles article > span { color: #356fd2; font-family: var(--display); font-size: 12px; }
.about__principles h3 { margin: 0 0 7px; font-size: 14px; }
.about__principles p { margin: 0; color: #667283; font-size: 12px; line-height: 1.65; }

.services { background: var(--ink); }

.section-heading { display: grid; grid-template-columns: .25fr 1.15fr .55fr; gap: 60px; align-items: end; padding-bottom: 70px; }
.section-heading h2, .portfolio__heading h2, .process h2, .faq h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1.05;
}
.section-heading h2 em, .portfolio__heading h2 em, .process h2 em, .faq h2 em { font-family: var(--display); font-weight: 500; color: #bdcae0; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: .24fr 1.15fr .55fr .56fr;
  gap: 60px;
  align-items: center;
  min-height: 190px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, padding .35s var(--ease);
}
.service-item:hover { padding-inline: 20px; background: rgba(255,255,255,.025); }
.service-item__number { color: #526073; font-family: var(--display); font-size: 13px; }
.service-item__title { display: flex; align-items: center; gap: 24px; }
.service-item__title svg { flex: 0 0 auto; width: 44px; height: 44px; color: var(--blue-soft); stroke-width: 1.25; }
.service-item h3 { margin: 0; font-size: clamp(20px, 2vw, 29px); letter-spacing: -.035em; line-height: 1.2; }
.service-item > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.service-item ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-item li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #aab6c5; font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.portfolio { overflow: hidden; background: #0b111c; }
.portfolio::before { content: ""; position: absolute; inset: 0; opacity: .35; background: linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%); pointer-events: none; }
.portfolio__heading { display: grid; grid-template-columns: .25fr 1.2fr .6fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.portfolio__heading > p { margin: 0 0 6px; color: var(--muted); font-size: 13px; }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 76px 24px; }
.project { min-width: 0; }
.project--wide { grid-column: 1 / 8; }
.project--tall { grid-column: 9 / 13; margin-top: 150px; }
.project--standard:nth-of-type(3) { grid-column: 1 / 6; }
.project--standard:nth-of-type(4) { grid-column: 7 / 13; margin-top: 110px; }
.project--last { grid-column: 2 / 11; margin-top: 35px; }

.project__image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #101722;
}
.project--wide .project__image { aspect-ratio: 1.45; }
.project--tall .project__image { aspect-ratio: .78; }
.project--standard .project__image { aspect-ratio: 1.17; }
.project--last .project__image { aspect-ratio: 1.7; }
.project__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(3,6,10,.42)); opacity: 0; transition: opacity .4s ease; }
.project__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.project__image:hover img { transform: scale(1.035); filter: saturate(1.06); }
.project__image:hover::after { opacity: 1; }
.project__open { position: absolute; right: 22px; bottom: 22px; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(247,248,251,.92); color: var(--ink); transform: translateY(18px) scale(.8); opacity: 0; transition: transform .35s var(--ease), opacity .3s ease; }
.project__open svg { width: 21px; }
.project__image:hover .project__open { transform: translateY(0) scale(1); opacity: 1; }
.project__meta { display: flex; justify-content: space-between; gap: 30px; margin-top: 20px; }
.project__meta span { color: var(--blue-soft); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.project__meta h3 { margin: 4px 0 0; font-size: 18px; letter-spacing: -.025em; }
.project__meta p { max-width: 220px; margin: 7px 0 0; color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-align: right; text-transform: uppercase; }

.process { background: #f2f4f8; color: #0b111b; }
.process__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process .section-marker span { border-color: rgba(11,17,27,.15); color: #1f63dd; }
.process .section-marker p { color: #677385; }
.process__intro { position: sticky; top: 140px; align-self: start; }
.process__intro .eyebrow { margin-top: 70px; color: #356fd2; }
.process h2 em { color: #46556a; }
.process__intro > p:last-child { max-width: 440px; color: #5d6877; font-size: 14px; }
.process__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(11,17,27,.14); }
.process__steps li { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 46px 0; border-bottom: 1px solid rgba(11,17,27,.14); }
.process__steps li > span { color: #356fd2; font-family: var(--display); }
.process__steps h3 { margin: 0 0 10px; font-size: 26px; letter-spacing: -.04em; }
.process__steps p { max-width: 530px; margin: 0; color: #677384; font-size: 13px; }

.faq { background: #0b111c; }
.faq__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.faq__intro { align-self: start; }
.faq__intro .eyebrow { margin-top: 70px; }
.faq__intro > p:not(.eyebrow) { max-width: 450px; color: var(--muted); font-size: 13px; }
.faq__intro .button { margin-top: 24px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid var(--line-strong); border-radius: 50%; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 7px; right: 7px; top: calc(50% - .5px); height: 1px; background: var(--blue-soft); transition: transform .3s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details p { max-width: 630px; margin: -9px 45px 28px 0; color: var(--muted); font-size: 13px; }

.contact { overflow: hidden; padding: 160px 0 130px; background: #07101f; text-align: center; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 28%, rgba(47,121,255,.2), transparent 36%), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px) 0 0 / 12.5% 100%; }
.contact__glow { position: absolute; width: 820px; height: 300px; left: 50%; top: 100px; transform: translateX(-50%); border: 1px solid rgba(128,170,255,.15); border-radius: 50%; filter: blur(1px); }
.contact__inner { position: relative; z-index: 2; }
.contact .eyebrow { margin-bottom: 30px; }
.contact h2 { max-width: 1000px; margin: 0 auto; font-size: clamp(50px, 7vw, 96px); font-weight: 600; letter-spacing: -.07em; line-height: .99; }
.contact h2 em { display: block; font-family: var(--display); font-weight: 500; color: #c8d9f7; }
.contact__copy { max-width: 620px; margin: 34px auto 50px; color: var(--muted); font-size: 14px; }
.contact__links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.contact__links a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.035); text-align: left; transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.contact__links a:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); border-color: rgba(128,170,255,.42); }
.social-icon { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.045); color: #d9e5fb; font-family: var(--display); font-size: 13px; }
.contact__links div { display: grid; }
.contact__links small { color: var(--muted-dark); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact__links strong { font-size: 11px; }
.contact__links svg { width: 16px; color: var(--muted-dark); }

.site-footer { background: #05080e; }
.footer__top { display: grid; grid-template-columns: .8fr 1fr .8fr; align-items: center; gap: 70px; padding: 70px 0; border-bottom: 1px solid var(--line); }
.footer__top > p { margin: 0; color: var(--muted-dark); font-size: 10px; font-weight: 600; letter-spacing: .06em; line-height: 1.8; text-transform: uppercase; }
.footer__top nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 23px; }
.footer__top nav a { color: var(--muted); font-size: 10px; font-weight: 700; }
.footer__top nav a:hover { color: white; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 30px; }
.footer__bottom p { margin: 0; color: #536073; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(11,18,30,.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease), background .3s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }
.back-to-top svg { width: 18px; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(calc(100% - 44px), 1000px); }
  .nav { grid-template-columns: 1fr auto; }
  .nav-menu { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 100px 8vw; background: rgba(5,8,14,.96); backdrop-filter: blur(24px); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
  .nav-menu.is-open { opacity: 1; visibility: visible; }
  .nav-menu a { font-size: clamp(30px, 6vw, 56px); font-weight: 600; letter-spacing: -.05em; }
  .nav-menu a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { position: relative; z-index: 2; display: grid; gap: 7px; }
  .nav-toggle span { display: block; width: 25px; height: 1px; background: white; transition: transform .3s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; gap: 70px; padding-top: 60px; padding-bottom: 100px; }
  .hero__content { max-width: 800px; }
  .hero h1 { font-size: clamp(58px, 9.4vw, 92px); }
  .hero__visual { width: min(780px, 92%); margin-left: auto; }

  .about__grid, .section-heading, .portfolio__heading { grid-template-columns: .22fr 1fr; gap: 38px; }
  .about__statement { grid-column: 2; grid-template-columns: 1fr; }
  .about__statement h2, .about__statement .eyebrow { grid-column: 1; }
  .about__copy { grid-column: 2; }
  .about__principles { grid-column: 2; }
  .section-heading > p, .portfolio__heading > p { grid-column: 2; max-width: 600px; }
  .service-item { grid-template-columns: .2fr 1fr .7fr; gap: 36px; }
  .service-item ul { grid-column: 2 / -1; }
  .project--wide { grid-column: 1 / 9; }
  .project--tall { grid-column: 9 / 13; }
  .process__grid, .faq__grid { gap: 60px; }
  .contact__links { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); --radius-md: 18px; }
  html { scroll-padding-top: 78px; }
  .site-header { padding: 11px 0; }
  .brand__monogram { width: 38px; height: 38px; border-radius: 12px; }
  .hero { min-height: auto; padding-top: 90px; background-size: 25vw 100%, auto; }
  .hero__grid { min-height: auto; gap: 70px; padding: 65px 0 90px; }
  .hero h1 { font-size: clamp(46px, 14vw, 70px); line-height: 1.01; }
  .hero__lede { margin-top: 25px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 30px; }
  .hero__facts { gap: 0; justify-content: space-between; margin-top: 45px; }
  .hero__facts div { gap: 8px; padding-right: 12px; }
  .hero__facts dt { font-size: 23px; }
  .hero__facts dd { font-size: 7px; }
  .hero__visual { width: 100%; }
  .hero-card { padding: 8px; border-radius: 22px; transform: none; }
  .hero-card__footer { padding: 13px 5px 5px; }
  .floating-tag--top { right: 4%; }
  .floating-tag--bottom { left: -6px; bottom: -30px; }
  .hero__ticker i { margin-inline: 26px; }

  .section { padding: 100px 0; }
  .section-marker { margin-bottom: 24px; }
  .about__grid, .section-heading, .portfolio__heading, .process__grid, .faq__grid { display: block; }
  .about__statement { display: block; padding-bottom: 45px; }
  .about__statement .eyebrow { margin-bottom: 18px; }
  .about__statement h2, .section-heading h2, .portfolio__heading h2, .process h2, .faq h2 { font-size: clamp(40px, 12vw, 57px); }
  .about__copy { padding-top: 40px; }
  .about__principles { margin-top: 20px; }
  .section-heading, .portfolio__heading { margin: 0; padding-bottom: 55px; }
  .section-heading > p, .portfolio__heading > p { margin-top: 25px; }
  .service-item { display: grid; grid-template-columns: 35px 1fr; gap: 20px 10px; padding: 36px 0; }
  .service-item:hover { padding-inline: 0; }
  .service-item__number { grid-row: 1; }
  .service-item__title { grid-column: 2; gap: 16px; }
  .service-item__title svg { width: 36px; height: 36px; }
  .service-item h3 { font-size: 22px; }
  .service-item > p, .service-item ul { grid-column: 2; }

  .project-grid { display: block; }
  .project, .project--tall, .project--standard:nth-of-type(4), .project--last { margin: 0 0 70px; }
  .project--wide .project__image, .project--tall .project__image, .project--standard .project__image, .project--last .project__image { aspect-ratio: 1.05; }
  .project__meta { display: block; }
  .project__meta p { max-width: none; text-align: left; }

  .process__intro { position: static; margin-bottom: 60px; }
  .process__intro .eyebrow, .faq__intro .eyebrow { margin-top: 0; }
  .process__steps li { grid-template-columns: 45px 1fr; padding: 34px 0; }
  .faq__intro { margin-bottom: 60px; }
  .faq summary { padding: 24px 0; font-size: 13px; }
  .faq details p { margin-right: 0; }

  .contact { padding: 110px 0 90px; }
  .contact::before { background-size: auto, 25% 100%; }
  .contact h2 { font-size: clamp(43px, 13vw, 64px); }
  .contact__links { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact__links a { padding: 14px 16px; }

  .footer__top { display: block; padding: 55px 0; }
  .footer__top > p { margin: 30px 0; }
  .footer__top nav { justify-content: flex-start; }
  .footer__bottom { display: block; }
  .footer__bottom p + p { margin-top: 9px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 410px) {
  .hero__facts dd { display: none; }
  .hero__facts div { border: 0; }
  .hero-card__footer span { display: none; }
  .floating-tag--top { display: none; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-light { display: none; }
}

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