:root {
  color-scheme: dark;
  --bg: #020806;
  --surface: #06110e;
  --surface-soft: rgba(7, 21, 17, .72);
  --mint: #39f4c8;
  --mint-bright: #92ffe5;
  --text: #f5faf8;
  --muted: #9aaba6;
  --line: rgba(110, 255, 219, .18);
  --line-strong: rgba(110, 255, 219, .36);
  --pad: clamp(24px, 5vw, 84px);
  --header-h: 78px;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Unbounded", "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(16, 115, 89, .14), transparent 30%),
    linear-gradient(180deg, #020b08 0%, #010604 100%);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--mint-bright); outline-offset: 5px; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #00120d;
  background: var(--mint);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .76;
}

.grid-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(81, 255, 210, .027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 255, 210, .027) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.site-header, main, footer { position: relative; z-index: 2; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(117, 255, 222, .07);
  background: linear-gradient(180deg, rgba(1, 9, 6, .92), rgba(1, 8, 5, .64));
  backdrop-filter: blur(15px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: max-content;
  color: white;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .18em;
  font-family: var(--font-display);
}
.brand-light { font-weight: 780; }
.brand-studio { color: #8fa09b; font-weight: 350; }

.desktop-nav { display: flex; align-self: stretch; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a {
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #dce7e3;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s, border-color .2s;
}
.desktop-nav a:hover { color: white; border-color: var(--mint); }

.header-note {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8b9a96;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .26em;
}
.header-note span { width: 40px; height: 1px; background: var(--mint); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: center;
  gap: clamp(20px, 2vw, 44px);
  padding: calc(var(--header-h) + 40px) var(--pad) 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 20, 14, .68), transparent);
}

.hero-copy { position: relative; z-index: 5; padding-bottom: 4vh; }
.hero-slogan {
  position: absolute;
  top: calc(var(--header-h) + 28px);
  right: var(--pad);
  z-index: 8;
  max-width: 320px;
  margin: 0;
  padding: 3px 17px 3px 0;
  border-right: 2px solid var(--mint);
  color: #b8c8c3;
  font-family: var(--font-display);
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .015em;
  text-align: right;
  text-wrap: balance;
}
.hero-slogan span { color: var(--mint-bright); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .28em;
}

h1, h2, h3, p { text-wrap: balance; }
h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 500;
}
h1 span { color: #b8c6c1; }

.hero-lead {
  max-width: 660px;
  margin: 25px 0 0;
  color: #a9b8b3;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid rgba(225, 255, 248, .28);
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button:hover { transform: translateY(-2px); border-color: var(--mint); }
.button-primary {
  min-width: 226px;
  color: #00160f;
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 35px rgba(57, 244, 200, .18);
}
.button-primary:hover { background: var(--mint-bright); box-shadow: 0 0 46px rgba(57, 244, 200, .28); }
.button-secondary { min-width: 170px; background: rgba(2, 11, 8, .38); }

.capability-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 42px;
  color: #9baca6;
  font-size: 10px;
  letter-spacing: .2em;
}
.capability-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); opacity: .7; }

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  z-index: 3;
  width: min(48vw, 760px);
  aspect-ratio: 1.08;
  justify-self: end;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .18s ease-out;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(31, 242, 188, .22) 0%, rgba(15, 120, 91, .1) 28%, transparent 67%);
  filter: blur(6px);
}

.scan-plane {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 13%;
  height: 33%;
  border-radius: 50%;
  border: 1px solid rgba(65, 255, 209, .38);
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(63,255,205,.08) 27px),
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(63,255,205,.07) 26px);
  transform: perspective(550px) rotateX(69deg);
  box-shadow: 0 0 60px rgba(40, 255, 200, .16), inset 0 0 34px rgba(40,255,200,.12);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(92, 255, 218, .31);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(50, 242, 195, .1);
}
.ring-a { width: 75%; height: 75%; transform: rotateX(65deg) rotateZ(9deg); }
.ring-b { width: 58%; height: 85%; transform: rotateY(68deg) rotateZ(-18deg); border-style: dashed; }
.ring-c { width: 84%; height: 46%; transform: rotateX(72deg) rotateZ(-18deg); opacity: .5; }

.light-core {
  position: relative;
  z-index: 3;
  width: 58%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateZ(45px) rotate(-4deg);
  border: 1px solid rgba(111, 255, 222, .24);
  clip-path: polygon(19% 0, 100% 8%, 87% 100%, 0 83%);
  background: linear-gradient(145deg, rgba(4, 29, 22, .28), rgba(25, 225, 174, .07));
  box-shadow: inset 0 0 80px rgba(55, 244, 198, .08), 0 0 70px rgba(39, 233, 183, .13);
}
.light-core::before, .light-core::after {
  content: "";
  position: absolute;
  inset: 6%;
  clip-path: inherit;
  border: 1px solid rgba(98, 255, 216, .21);
}
.light-core::after { inset: 14%; opacity: .5; }

.monogram {
  color: white;
  font-size: clamp(94px, 11vw, 180px);
  font-weight: 760;
  letter-spacing: -.11em;
  text-shadow: 0 0 8px var(--mint), 0 0 22px rgba(57,244,200,.7), 0 0 60px rgba(57,244,200,.35);
}
.monogram span { color: var(--mint); }
.core-caption {
  position: absolute;
  bottom: 15%;
  color: var(--mint-bright);
  font-size: 9px;
  letter-spacing: .28em;
}

.visual-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 12px;
  color: #7f938d;
  font-size: 9px;
  letter-spacing: .22em;
}
.visual-tag b { color: var(--mint); font-weight: 600; }
.tag-one { top: 21%; left: 5%; }
.tag-two { top: 29%; left: 2%; }
.tag-three { top: 37%; left: 7%; }

.visual-index {
  position: absolute;
  right: 2%;
  top: 18%;
  bottom: 21%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: 9px;
  color: #a2b0ac;
  font-size: 10px;
}
.visual-index strong { color: var(--mint); }
.visual-index span { width: 1px; background: linear-gradient(var(--mint), rgba(130,255,225,.12)); }

.scroll-hint {
  position: absolute;
  z-index: 8;
  right: var(--pad);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #80908b;
  text-decoration: none;
  font-size: 9px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.scroll-hint i { width: 2px; height: 42px; background: linear-gradient(var(--mint), transparent); }

.section-pad { padding: clamp(94px, 11vw, 170px) var(--pad); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 500;
}
.section-intro { margin: 0; color: #9eada8; font-size: 16px; line-height: 1.6; }
.text-link {
  justify-self: end;
  color: #d8e7e2;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 8px;
}
.text-link span { color: var(--mint); margin-left: 10px; }

.selected {
  background: linear-gradient(180deg, rgba(2, 10, 7, .6), rgba(4, 17, 13, .82));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.preview-card {
  --project-accent: var(--mint);
  --card-rx: 0deg;
  --card-ry: 0deg;
  min-height: 330px;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--project-accent), transparent 68%);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  background: rgba(2, 9, 7, .84);
  overflow: hidden;
  transition: transform .32s ease, border-color .32s, box-shadow .32s;
  transform: perspective(1200px) rotateX(var(--card-rx)) rotateY(var(--card-ry));
  transform-style: preserve-3d;
}
.preview-card:last-child:nth-child(3n + 1) { grid-column: 2; }
.preview-card:hover {
  border-color: color-mix(in srgb, var(--project-accent), transparent 32%);
  box-shadow: 0 24px 80px rgba(0,0,0,.46), 0 0 28px color-mix(in srgb, var(--project-accent), transparent 84%);
}
.preview-meta { display: flex; justify-content: flex-end; gap: 24px; color: #8fa09a; font-size: 10px; letter-spacing: .16em; }
.preview-window {
  min-height: 185px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  background: #09100e;
}
.preview-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(1,7,5,.46), transparent 45%);
}
.preview-window img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.preview-card:hover img { transform: scale(1.025); }
.preview-foot { display: grid; gap: 6px; align-content: start; }
.preview-foot strong { font-family: var(--font-display); font-size: clamp(17px, 1.35vw, 22px); font-weight: 500; line-height: 1.25; }
.preview-foot > span { color: #92a39d; font-size: 14px; line-height: 1.45; }

.preview-site { display: grid; place-items: center; padding: 15px; background: radial-gradient(circle at 72% 38%, rgba(57,244,200,.18), transparent 34%), #020906; }
.preview-site-shell { width: 92%; height: 86%; display: block; padding: 11px; border: 1px solid rgba(79,255,213,.36); border-radius: 5px; background: #06110e; box-shadow: 0 14px 32px rgba(0,0,0,.45); transform: rotate(-1.5deg); }
.preview-site-nav { display: flex; justify-content: space-between; padding-bottom: 7px; border-bottom: 1px solid rgba(95,255,218,.16); color: #dff8f1; font-size: 7px; letter-spacing: .14em; }
.preview-site-nav i { width: 31px; height: 3px; border-radius: 2px; background: var(--project-accent); }
.preview-site-shell strong { display: block; margin-top: 15px; color: white; font-size: clamp(17px, 1.6vw, 26px); line-height: .98; letter-spacing: -.04em; }
.preview-site-shell em { color: var(--project-accent); font-style: normal; }
.preview-site-copy { display: grid; gap: 5px; margin-top: 11px; }
.preview-site-copy i { width: 68%; height: 3px; border-radius: 2px; background: rgba(213,236,230,.23); }
.preview-site-copy i:last-child { width: 48%; }
.preview-site-action { display: block; width: 70px; height: 19px; margin-top: 14px; border-radius: 3px; background: var(--project-accent); }

.preview-image-collage { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 1fr 1fr; gap: 3px; padding: 3px; }
.preview-image-collage img { width: 100%; height: 100%; object-fit: cover; }
.preview-image-collage img:first-child { grid-row: 1 / span 2; object-position: 50% 22%; }
.preview-image-collage img:nth-child(2) { object-position: 50% 28%; }
.preview-image-collage img:nth-child(3) { object-position: 50% 50%; }

.preview-bot { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8px; padding: 13px; background: radial-gradient(circle at 68% 30%, rgba(74,167,255,.2), transparent 35%), #030b12; }
.preview-bot-dialog, .preview-bot-flow { overflow: hidden; border: 1px solid rgba(104,185,255,.27); border-radius: 6px; background: rgba(4,17,27,.92); }
.preview-bot-bar { min-height: 28px; display: flex; align-items: center; gap: 4px; padding: 0 8px; border-bottom: 1px solid rgba(104,185,255,.15); }
.preview-bot-bar i { width: 4px; height: 4px; border-radius: 50%; background: #4aa7ff; }
.preview-bot-bar b { margin-left: 4px; color: #9db5c7; font-size: 6px; letter-spacing: .08em; }
.preview-bot-messages { height: calc(100% - 28px); display: grid; align-content: center; gap: 6px; padding: 9px; }
.preview-bot-messages i { width: 84%; padding: 7px; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; color: #bed0dc; background: rgba(255,255,255,.04); font-size: 7px; font-style: normal; }
.preview-bot-messages i:nth-child(2) { justify-self: end; width: 76%; border-color: rgba(74,167,255,.28); color: #e4f3ff; background: rgba(74,167,255,.12); }
.preview-bot-flow { display: grid; align-content: center; gap: 8px; padding: 8px; }
.preview-bot-flow i { position: relative; display: grid; place-items: center; min-height: 30px; border: 1px solid rgba(74,167,255,.25); border-radius: 4px; color: #bad0e0; background: rgba(74,167,255,.06); font-size: 6px; font-style: normal; letter-spacing: .06em; }

.preview-booking {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 7px;
  padding: 11px;
  background: radial-gradient(circle at 76% 22%, rgba(98,217,255,.2), transparent 34%), #031018;
}
.preview-booking-app, .preview-booking-confirm {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(98,217,255,.26);
  border-radius: 6px;
  background: rgba(5,18,24,.94);
}
.preview-booking-nav {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(98,217,255,.15);
  font-size: 6px;
}
.preview-booking-nav b { color: #62d9ff; font-family: var(--font-display); font-weight: 600; }
.preview-booking-nav i { color: #738d96; font-style: normal; letter-spacing: .07em; }
.preview-booking-body { height: calc(100% - 28px); display: grid; align-content: center; gap: 7px; padding: 9px; }
.preview-booking-body small, .preview-booking-confirm small { color: #62d9ff; font-size: 6px; font-weight: 700; letter-spacing: .12em; }
.preview-booking-body > strong { color: white; font-size: clamp(13px, 1.3vw, 19px); line-height: 1.04; letter-spacing: -.04em; }
.preview-booking-service { display: flex; justify-content: space-between; gap: 8px; padding: 6px 7px; border: 1px solid rgba(255,255,255,.08); border-radius: 4px; color: #a9bec5; font-size: 6px; }
.preview-booking-service b { color: white; }
.preview-booking-days, .preview-booking-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.preview-booking-days i, .preview-booking-times i { display: grid; place-items: center; min-height: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: #78929b; background: rgba(255,255,255,.025); font-size: 5px; font-style: normal; text-align: center; }
.preview-booking-days i:nth-child(3), .preview-booking-times i:nth-child(3) { border-color: #62d9ff; color: #00141c; background: #62d9ff; }
.preview-booking-confirm { display: grid; align-content: center; gap: 9px; padding: 10px; }
.preview-booking-confirm strong { color: white; font-family: var(--font-display); font-size: clamp(12px, 1.25vw, 18px); font-weight: 500; line-height: 1.15; letter-spacing: -.035em; }
.preview-booking-confirm > span { color: #7f9aa3; font-size: 6px; line-height: 1.45; }
.preview-booking-confirm > b { display: grid; place-items: center; min-height: 23px; border-radius: 4px; color: #00141c; background: #62d9ff; font-size: 6px; }

.services { background: #020806; }
.service-list { border-top: 1px solid var(--line-strong); }
.service-item {
  min-height: 132px;
  display: grid;
  grid-template-columns: 70px minmax(260px, .8fr) 1fr 90px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s;
}
.service-item:hover { padding: 0 18px; background: rgba(57,244,200,.035); }
.service-icon {
  width: 29px;
  height: 29px;
  color: var(--mint);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s, filter .25s;
}
.service-item:hover .service-icon { transform: translateY(-2px); filter: drop-shadow(0 0 7px rgba(57,244,200,.56)); }
.service-item h3 { margin: 0; font-family: var(--font-display); font-size: clamp(19px, 1.65vw, 27px); font-weight: 500; letter-spacing: -.025em; line-height: 1.25; }
.service-item p { margin: 0; max-width: 560px; color: #91a19c; font-size: 15px; line-height: 1.55; }
.service-item i { justify-self: end; color: #71817c; font-size: 10px; font-style: normal; letter-spacing: .2em; }

.process {
  position: relative;
  background: radial-gradient(circle at 55% 80%, rgba(25, 112, 86, .16), transparent 38%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}
.process-line::before { content: ""; position: absolute; left: 2px; right: 2px; top: 44px; height: 1px; background: #42504c; }
.process-line::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, #1d8068, var(--mint));
  transform: scaleX(0);
  transform-origin: left center;
}
.process.is-progressing .process-line::after { animation: process-line-flow 6s cubic-bezier(.32,.72,.22,1) infinite; }
.process-line li { position: relative; z-index: 2; min-height: 250px; }
.process-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 21px 0 38px;
  border: 1px solid #52615c;
  border-radius: 50%;
  color: #75847f;
  background: #03110d;
  transition: color .35s, border-color .35s, box-shadow .35s;
}
.process-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.process.is-progressing .process-line li:nth-child(1) .process-icon { animation: process-step-one 6s linear infinite; }
.process.is-progressing .process-line li:nth-child(2) .process-icon { animation: process-step-two 6s linear infinite; }
.process.is-progressing .process-line li:nth-child(3) .process-icon { animation: process-step-three 6s linear infinite; }
.process.is-progressing .process-line li:nth-child(4) .process-icon { animation: process-step-four 6s linear infinite; }
.process-line h3 { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.35; }
.process-line p { margin: 14px 0 0; max-width: 260px; color: #93a49e; font-size: 15px; line-height: 1.6; }

@keyframes process-line-flow {
  0% { transform: scaleX(0); opacity: 1; }
  78% { transform: scaleX(1); opacity: 1; }
  92% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}
@keyframes process-step-one {
  0%, 3%, 100% { color: #75847f; border-color: #52615c; box-shadow: none; }
  8%, 92% { color: var(--mint); border-color: rgba(57,244,200,.7); box-shadow: 0 0 15px rgba(57,244,200,.24); }
}
@keyframes process-step-two {
  0%, 27%, 100% { color: #75847f; border-color: #52615c; box-shadow: none; }
  32%, 92% { color: var(--mint); border-color: rgba(57,244,200,.7); box-shadow: 0 0 15px rgba(57,244,200,.24); }
}
@keyframes process-step-three {
  0%, 51%, 100% { color: #75847f; border-color: #52615c; box-shadow: none; }
  56%, 92% { color: var(--mint); border-color: rgba(57,244,200,.7); box-shadow: 0 0 15px rgba(57,244,200,.24); }
}
@keyframes process-step-four {
  0%, 73%, 100% { color: #75847f; border-color: #52615c; box-shadow: none; }
  78%, 92% { color: var(--mint); border-color: rgba(57,244,200,.7); box-shadow: 0 0 15px rgba(57,244,200,.24); }
}

.studio {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  min-height: 700px;
}
.studio-code {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  clip-path: polygon(13% 0, 100% 9%, 88% 100%, 0 84%);
  background: radial-gradient(circle at center, rgba(29, 193, 151, .12), transparent 58%);
  color: #71827c;
  font-size: 11px;
  letter-spacing: .28em;
}
.studio-code strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(89, 255, 215, .16);
  font-size: clamp(88px, 12vw, 184px);
  letter-spacing: -.12em;
  text-shadow: 0 0 50px rgba(56,244,201,.16);
}
.studio-copy h2 { margin-bottom: 32px; }
.studio-copy > p:not(.eyebrow) { max-width: 700px; color: #a4b2ae; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.7; }

.contact {
  min-height: 78svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 75% 50%, rgba(35, 224, 172, .13), transparent 34%);
}
.contact h2 { max-width: 1000px; font-size: clamp(32px, 4.4vw, 66px); }
.contact h2 span { color: #9cadA7; }
.contact-link {
  width: max-content;
  margin-top: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mint);
  color: white;
  text-decoration: none;
  font-size: clamp(17px, 1.6vw, 23px);
}
.contact-link span { color: var(--mint); margin-left: 12px; }
.contact-glow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(57, 244, 200, .06);
  font-size: min(27vw, 430px);
  font-weight: 780;
  letter-spacing: -.12em;
  pointer-events: none;
}

footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 26px var(--pad);
  border-top: 1px solid var(--line);
  color: #7f918b;
  font-size: 11px;
  letter-spacing: .1em;
}
footer p { margin: 0; }
footer > a:last-child { justify-self: end; color: #b4c2bd; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.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; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr minmax(360px, .75fr); }
  .hero-visual { width: 48vw; }
  .hero-slogan { max-width: 260px; }
  .service-item { grid-template-columns: 50px minmax(240px, .8fr) 1fr 55px; }
}

@media (max-width: 1180px) {
  .project-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .preview-card:last-child:nth-child(3n + 1) { grid-column: auto; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .desktop-nav, .header-note { display: none; }
  .menu-toggle {
    justify-self: end;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: rgba(4,15,12,.85);
  }
  .menu-toggle i { display: block; width: 19px; height: 1px; background: white; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    padding: 20px;
    border-bottom: 1px solid var(--line-strong);
    background: rgba(2, 10, 7, .97);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s, opacity .28s;
  }
  .mobile-nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 18px; }

  .hero { min-height: auto; grid-template-columns: 1fr; padding: calc(var(--header-h) + 64px) 20px 70px; }
  h1 { max-width: 720px; font-size: clamp(30px, 7vw, 44px); }
  .hero-slogan {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    max-width: 340px;
    margin: -12px 0 12px;
    padding: 3px 0 3px 15px;
    border-right: 0;
    border-left: 2px solid var(--mint);
    font-size: 12px;
    text-align: left;
  }
  .hero-visual { width: min(88vw, 620px); justify-self: center; margin-top: -20px; }
  .scroll-hint { display: none; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .section-heading { grid-template-columns: 1fr; }
  .text-link { justify-self: start; }
  .project-preview-grid { grid-template-columns: 1fr; }
  .preview-card, .preview-card:last-child:nth-child(3n + 1) { grid-column: auto; min-height: 350px; }
  .service-item { grid-template-columns: 42px 1fr; gap: 12px 20px; padding: 28px 0; }
  .service-item p { grid-column: 2; }
  .service-item i { display: none; }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 42px 24px; }
  .process-line::before, .process-line::after { display: none; }
  .process-icon { margin-bottom: 22px; }
  .studio { grid-template-columns: 1fr; }
  .studio-code { width: min(82vw, 560px); justify-self: center; }
  footer { grid-template-columns: 1fr; justify-items: start; }
  footer > a:last-child { justify-self: start; }
}

@media (max-width: 520px) {
  .brand { font-size: 13px; }
  h1 { font-size: clamp(28px, 8.5vw, 40px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .capability-line { gap: 9px; }
  .hero-visual { margin-top: 6px; }
  .tag-one, .tag-two, .tag-three { display: none; }
  .visual-index { right: 0; }
  .preview-card { min-height: 335px; padding: 13px; }
  .preview-window { min-height: 190px; }
  .preview-foot { grid-template-columns: 1fr; gap: 6px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line li { min-height: auto; }
  .contact { min-height: 68svh; }
  .contact-link { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  #field { opacity: .34; }
  .reveal { opacity: 1; transform: none; }
  .process-line::after { transform: scaleX(1); }
  .process-icon { color: var(--mint); border-color: rgba(57,244,200,.7); }
}
