:root {
  --ink: #041d1b;
  --green-950: #032925;
  --green-900: #063b35;
  --green-700: #0b5a4f;
  --lime: #d8f500;
  --lime-soft: #e6fa48;
  --ivory: #f3f0e8;
  --paper: #faf9f4;
  --white: #fffefa;
  --muted: #a9b9b4;
  --line: rgba(216, 245, 0, .24);
  --line-soft: rgba(6, 59, 53, .14);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 22px;
  --max: 1380px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

::selection { background: var(--lime); color: var(--ink); }

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

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

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

button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 99px;
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 999;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(216, 245, 0, .75);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .32;
  pointer-events: none;
  background-image: linear-gradient(rgba(6, 59, 53, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 59, 53, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 245, 0, .08), transparent 64%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 50%;
  width: min(calc(100% - 40px), var(--max));
  height: 76px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 29, 27, .56);
  backdrop-filter: blur(18px) saturate(130%);
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background .3s ease, top .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(4, 29, 27, .9);
  box-shadow: 0 16px 50px rgba(1, 20, 18, .24);
}

.brand { display: flex; align-items: center; gap: 13px; }

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(216, 245, 0, .34);
}

.brand-copy { display: grid; gap: 2px; line-height: 1; }

.brand-copy strong { font-size: 15px; letter-spacing: .22em; }

.brand-copy small { color: var(--lime); font-size: 11px; letter-spacing: .42em; }

.site-nav { display: flex; align-items: center; gap: 34px; font-size: 15px; }

.site-nav > a:not(.nav-contact) { color: rgba(255,255,255,.72); transition: color .2s ease; }

.site-nav > a:not(.nav-contact):hover { color: var(--lime); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 11px;
  font-weight: 700;
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 176px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--green-950);
}

.hero-photo, .hero-shade { position: absolute; inset: 0; }

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 30, 27, .96) 0%, rgba(2, 30, 27, .82) 39%, rgba(2, 30, 27, .25) 76%, rgba(2, 30, 27, .45) 100%),
    linear-gradient(0deg, rgba(2, 27, 24, .92) 0%, transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-content, .hero-readout, .scroll-cue { position: relative; z-index: 2; }

.hero-content { align-self: center; max-width: 880px; }

.eyebrow, .kicker {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }

.hero h1, .section-heading h2, .standard h2, .about h2, .contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .88;
}

.hero h1 { font-size: clamp(68px, 9.6vw, 154px); max-width: 980px; }

.hero h1 em { color: var(--lime); font-style: normal; }

.hero-intro { max-width: 560px; margin: 34px 0 0; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }

.hero-actions { display: flex; gap: 12px; margin-top: 38px; }

.button {
  min-height: 56px;
  padding: 0 21px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  border-radius: 12px;
  font-weight: 760;
  font-size: 15px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--lime); color: var(--ink); }

.button-primary:hover { background: var(--lime-soft); }

.button-ghost { border-color: rgba(255,255,255,.24); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }

.button-ghost:hover { border-color: var(--lime); color: var(--lime); }

.hero-readout {
  justify-self: end;
  width: min(100%, 380px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(3, 41, 37, .65);
  backdrop-filter: blur(18px);
  border-radius: 17px;
}

.readout-top { padding-bottom: 18px; display: flex; justify-content: space-between; color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .12em; border-bottom: 1px solid rgba(255,255,255,.13); }

.live-dot { color: var(--lime); }

.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 10px var(--lime); }

.readout-grid { padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.readout-grid div { display: grid; gap: 8px; }

.readout-grid small { color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .16em; }

.readout-grid strong { font-size: 15px; font-weight: 600; }

.scroll-cue { position: absolute; left: max(24px, calc((100vw - var(--max)) / 2)); bottom: 26px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

.scroll-cue i { position: relative; display: block; width: 72px; height: 1px; overflow: hidden; background: rgba(255,255,255,.16); }

.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--lime); transform: translateX(-100%); animation: scan 2.4s ease-in-out infinite; }

.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(216,245,0,.16); border-radius: 50%; pointer-events: none; }

.orbit-one { width: 680px; height: 680px; right: -260px; top: 8%; animation: float 9s ease-in-out infinite; }

.orbit-two { width: 420px; height: 420px; right: -130px; top: 23%; border-style: dashed; animation: spin 35s linear infinite; }

.signal-strip { overflow: hidden; padding: 18px 0; color: var(--lime); background: var(--ink); border-top: 1px solid rgba(216,245,0,.24); }

.signal-track { width: max-content; display: flex; align-items: center; gap: 34px; white-space: nowrap; animation: ticker 27s linear infinite; }

.signal-track span { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.signal-track i { width: 6px; height: 6px; border: 1px solid var(--lime); transform: rotate(45deg); }

.section { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; padding-block: clamp(96px, 10vw, 160px); }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 54px; }

.kicker { margin-bottom: 24px; color: var(--green-700); }

.section-heading h2, .standard h2, .about h2, .contact h2 { font-size: clamp(54px, 7vw, 108px); }

.section-heading h2 span, .standard h2 span, .about h2 span, .contact h2 span { color: var(--green-700); }

.section-heading > p { max-width: 500px; margin: 0 0 5px; color: #526662; font-size: 18px; line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.service-card {
  position: relative;
  min-height: min(62vw, 610px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
  border-radius: var(--radius);
  outline: none;
  isolation: isolate;
}

.service-card:nth-child(2), .service-card:nth-child(3) { min-height: min(55vw, 540px); }

.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }

.service-card:hover img, .service-card:focus img { transform: scale(1.045); filter: saturate(1.08); }

.service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,31,27,.08), rgba(2,31,27,.16) 38%, rgba(2,31,27,.95)); }

.service-index { position: absolute; top: 24px; left: 24px; padding: 9px 11px; color: var(--lime); background: rgba(3,41,37,.68); border: 1px solid rgba(216,245,0,.28); backdrop-filter: blur(12px); border-radius: 9px; font-size: 12px; letter-spacing: .14em; }

.service-copy { position: absolute; left: 28px; right: 88px; bottom: 28px; }

.service-copy p { margin: 0 0 12px; color: var(--lime); font-size: 12px; letter-spacing: .18em; }

.service-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 64px); font-weight: 500; letter-spacing: -.05em; line-height: .95; }

.service-copy span { display: block; margin-top: 14px; color: rgba(255,255,255,.76); font-size: 15px; }

.service-open { position: absolute; right: 26px; bottom: 26px; width: 52px; height: 52px; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 21px; cursor: pointer; transition: transform .25s ease; }

.service-open:hover, .service-card:focus .service-open { transform: rotate(45deg); }

.standard { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 8vw, 130px); align-items: center; }

.standard-visual { position: relative; min-height: 690px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: radial-gradient(circle at 50% 46%, #0f6558, #063b35 45%, #031f1c 78%); border-radius: var(--radius); isolation: isolate; }

.standard-visual::before { content: ""; position: absolute; width: 48%; height: 100%; opacity: .26; background-image: linear-gradient(rgba(216,245,0,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(216,245,0,.16) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle, black, transparent 65%); }

.brand-core { position: relative; z-index: 1; width: 420px; height: 420px; display: grid; place-items: center; }

.brand-core img { position: relative; z-index: 2; width: 164px; height: 164px; object-fit: cover; border-radius: 38px; box-shadow: 0 24px 80px rgba(0,0,0,.34), 0 0 0 1px rgba(216,245,0,.4); }

.core-ring { position: absolute; inset: 0; border: 1px solid rgba(216,245,0,.43); border-radius: 50%; }

.ring-a { animation: spin 30s linear infinite; border-style: dashed; }

.ring-b { inset: 62px; border-color: rgba(255,255,255,.22); animation: spin 18s linear infinite reverse; }

.ring-a::before, .ring-b::before { content: ""; position: absolute; top: 50%; left: -5px; width: 9px; height: 9px; margin-top: -4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }

.core-label { position: absolute; padding: 7px 9px; color: var(--lime); background: rgba(4,29,27,.8); border: 1px solid rgba(216,245,0,.22); border-radius: 6px; font-size: 11px; letter-spacing: .18em; }

.label-a { left: -14px; top: 48%; }
.label-b { right: 2px; top: 17%; }
.label-c { right: 18px; bottom: 14%; }

.standard-lead { max-width: 560px; margin: 34px 0 48px; color: #536b66; font-size: 18px; line-height: 1.72; }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }

.process-list li { padding: 24px 0; display: grid; grid-template-columns: 50px 1fr; gap: 18px; border-bottom: 1px solid var(--line-soft); }

.process-list > li > span { padding-top: 4px; color: var(--green-700); font-size: 12px; letter-spacing: .14em; }

.process-list h3 { margin: 0 0 8px; font-size: 19px; }

.process-list p { margin: 0; color: #6b7b78; font-size: 16px; line-height: 1.7; }

.about { border-top: 1px solid var(--line-soft); }

.about-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }

.about-copy { padding-bottom: 8px; }

.about-copy p { margin: 0 0 22px; color: #526662; font-size: 17px; line-height: 1.8; }

.about-grid { margin-top: 70px; display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 14px; }

.about-tile { position: relative; min-height: 300px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--white); background: var(--green-900); border-radius: var(--radius); }

.about-tile > span, .tile-code { color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: .15em; }

.about-tile strong { display: block; font-family: var(--display); font-size: clamp(68px, 7vw, 116px); font-weight: 500; letter-spacing: -.08em; line-height: .8; }

.about-tile p { margin: 14px 0 0; color: rgba(255,255,255,.74); font-size: 15px; }

.about-tile-large { background: linear-gradient(125deg, #031f1c, #07564b); }

.about-tile-large > div:not(.tile-lines) { margin-top: auto; }

.tile-lines { position: absolute; top: -10%; right: -8%; width: 52%; height: 130%; opacity: .3; background: repeating-radial-gradient(ellipse at center, transparent 0 14px, var(--lime) 15px 16px, transparent 17px 29px); transform: rotate(-18deg); }

.lime-tile { color: var(--ink); background: var(--lime); }

.lime-tile > span, .lime-tile p { color: rgba(4,29,27,.62); }

.contact { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 8vw, 130px); align-items: start; }

.contact-intro { position: sticky; top: 126px; }

.contact-intro > p:not(.kicker) { max-width: 520px; margin: 32px 0 42px; color: #536b66; font-size: 17px; line-height: 1.8; }

.direct-contact { display: grid; border-top: 1px solid var(--line-soft); }

.direct-contact a { padding: 18px 2px; display: grid; grid-template-columns: 58px 1fr 20px; align-items: center; gap: 16px; border-bottom: 1px solid var(--line-soft); }

.direct-contact small { color: var(--green-700); font-size: 11px; letter-spacing: .15em; }

.direct-contact strong { font-size: 15px; overflow-wrap: anywhere; }

.direct-contact span { color: var(--green-700); transition: transform .2s ease; }

.direct-contact a:hover span { transform: rotate(45deg); }

.contact-form { padding: clamp(24px, 4vw, 52px); color: var(--white); background: var(--green-950); border: 1px solid rgba(216,245,0,.18); border-radius: var(--radius); box-shadow: 0 35px 80px rgba(3,41,37,.18); }

.form-topline { margin: -8px 0 38px; padding-bottom: 18px; display: flex; justify-content: space-between; color: rgba(255,255,255,.52); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 11px; letter-spacing: .16em; }

.form-status { color: var(--lime); }

.form-status::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 8px var(--lime); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { position: relative; margin-bottom: 21px; display: grid; gap: 9px; }

.field > span { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.field b { color: var(--lime); }

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255,255,255,.045);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field input, .field select { height: 54px; padding: 0 15px; }

.field textarea { padding: 15px; resize: vertical; min-height: 140px; }

.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }

.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }

.field select option { color: var(--ink); background: var(--white); }

.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); background: rgba(255,255,255,.075); box-shadow: 0 0 0 4px rgba(216,245,0,.07); }

.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff9478; }

.field-error { display: none; color: #ffb5a2; font-size: 12px; }

.field.invalid .field-error { display: block; }

.other-field[hidden] { display: none; }

.button-submit { width: 100%; margin-top: 4px; justify-content: space-between; color: var(--ink); background: var(--lime); border: 0; }

.button-submit:disabled { cursor: wait; opacity: .74; transform: none; }

.button-submit i { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(4,29,27,.28); border-radius: 50%; font-style: normal; transition: transform .2s ease; }

.button-submit:hover i { transform: rotate(45deg); }

.form-note { margin: 14px 0 -4px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.6; }

.site-footer { position: relative; padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 28px; color: var(--white); overflow: hidden; background: var(--ink); }

.site-footer::before { content: "PAVITRA"; position: absolute; left: 50%; bottom: -2vw; color: rgba(255,255,255,.027); font-family: var(--display); font-size: 19vw; font-weight: 800; letter-spacing: -.08em; line-height: .8; transform: translateX(-50%); pointer-events: none; }

.footer-brand { position: relative; display: flex; align-items: center; gap: 20px; }

.footer-brand img { width: 74px; height: 74px; object-fit: cover; border: 1px solid rgba(216,245,0,.26); border-radius: 18px; }

.footer-brand div { display: grid; gap: 5px; }

.footer-brand strong { font-size: 20px; letter-spacing: .2em; }

.footer-brand span { color: var(--lime); font-size: 11px; letter-spacing: .42em; }

.site-footer > p { position: relative; max-width: 420px; margin: 34px 0 50px; color: rgba(255,255,255,.5); line-height: 1.7; }

.footer-links { position: absolute; top: 90px; right: max(24px, calc((100vw - var(--max)) / 2)); display: flex; gap: 34px; color: rgba(255,255,255,.7); font-size: 14px; }

.footer-links a:hover { color: var(--lime); }

.footer-bottom { position: relative; padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.11); font-size: 13px; }

.footer-bottom a:hover { color: var(--lime); }

.toast { position: fixed; z-index: 200; right: 24px; bottom: 24px; width: min(360px, calc(100% - 48px)); padding: 18px 20px; display: grid; gap: 5px; color: var(--white); background: var(--green-900); border: 1px solid rgba(216,245,0,.38); border-radius: 13px; box-shadow: 0 20px 50px rgba(2,29,26,.3); transform: translateY(150%); opacity: 0; transition: transform .35s ease, opacity .35s ease; }

.toast.show { transform: translateY(0); opacity: 1; }

.toast strong { color: var(--lime); font-size: 14px; }
.toast span { color: rgba(255,255,255,.7); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes scan { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-18px,14px,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; align-content: end; gap: 42px; padding-top: 150px; }
  .hero-content { align-self: end; }
  .hero-readout { justify-self: start; width: 100%; max-width: 600px; }
  .scroll-cue { display: none; }
  .section-heading, .about-top { grid-template-columns: 1fr; gap: 34px; }
  .standard { grid-template-columns: 1fr; }
  .standard-visual { min-height: 580px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-tile-large { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
}

@media (max-width: 760px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 14px; }
  .nav-toggle { position: relative; z-index: 102; width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.05); }
  .nav-toggle span { width: 20px; height: 1px; display: block; background: var(--white); transition: transform .25s 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); }
  .site-nav { position: fixed; inset: -11px -11px auto -11px; min-height: 100svh; padding: 116px 30px 34px; display: flex; flex-direction: column; align-items: stretch; gap: 0; visibility: hidden; opacity: 0; background: rgba(3,41,37,.98); transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a { padding: 22px 0; font-size: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-contact { margin-top: 22px; padding: 16px !important; justify-content: space-between; border: 0 !important; font-size: 16px !important; }
  .hero { min-height: 880px; padding: 132px 24px 48px; gap: 34px; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,30,27,.93), rgba(2,30,27,.57)), linear-gradient(0deg, rgba(2,27,24,.95), transparent 64%); }
  .hero h1 { font-size: clamp(62px, 19vw, 104px); }
  .hero-intro { margin-top: 26px; font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: space-between; }
  .hero-readout { padding: 17px; }
  .readout-grid { grid-template-columns: 1fr; }
  .orbit-one { width: 440px; height: 440px; right: -280px; }
  .section { width: calc(100% - 32px); padding-block: 90px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .standard h2, .about h2, .contact h2 { font-size: clamp(50px, 15vw, 78px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2), .service-card:nth-child(3) { min-height: 520px; }
  .service-copy { left: 22px; right: 76px; bottom: 22px; }
  .service-open { right: 20px; bottom: 20px; }
  .standard-visual { min-height: 450px; }
  .brand-core { width: 300px; height: 300px; }
  .brand-core img { width: 125px; height: 125px; border-radius: 28px; }
  .ring-b { inset: 46px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-tile-large { grid-column: auto; }
  .about-tile { min-height: 260px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .direct-contact a { grid-template-columns: 50px 1fr 18px; gap: 8px; }
  .site-footer { padding-top: 60px; }
  .footer-links { position: static; margin: 38px 0; }
  .footer-bottom { gap: 20px; flex-direction: column; }
}

@media (hover: none), (pointer: coarse) { .cursor-glow { 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; }
}
