:root {
  --ink: #07080a;
  --ink-soft: #0d0f12;
  --panel: #111317;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.22);
  --silver: #f2f3f5;
  --muted: #a5a8af;
  --red: #e11d2e;
  --red-dark: #8b0d18;
  --red-glow: rgba(225, 29, 46, 0.32);
  --page: min(1440px, calc(100vw - 48px));
  --header-h: 74px;
  --progress: 0%;
}

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

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 8%, rgba(119, 12, 23, 0.15), transparent 25rem),
    var(--ink);
  color: var(--silver);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--red); color: #fff; }

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.brand-banner {
  position: relative;
  height: clamp(86px, 11vw, 156px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050607;
}

.brand-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.16), transparent 28%, transparent 72%, rgba(7, 8, 10, 0.2));
}

.brand-banner picture,
.brand-banner img { width: 100%; height: 100%; }
.brand-banner img { object-fit: cover; object-position: center; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.95);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.header-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.header-brand > span { display: grid; gap: 2px; }
.header-brand strong { font-size: 13px; letter-spacing: 0.105em; line-height: 1; }
.header-brand em { color: var(--red); font-style: normal; }
.header-brand small { color: #7f838b; font-size: 8px; letter-spacing: 0.32em; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.8vw, 28px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav > a:not(.header-cta):not(.header-call) {
  position: relative;
  color: #b5b7bd;
  transition: color 180ms ease;
}

.primary-nav > a:not(.header-cta):not(.header-call)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="true"] { color: #fff; }
.primary-nav > a:hover::after,
.primary-nav > a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }

.header-call { color: #fff; white-space: nowrap; }

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--red);
  background: rgba(225, 29, 46, 0.07);
  color: #fff;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover { background: var(--red); box-shadow: 0 0 28px var(--red-glow); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 19px;
  height: 1px;
  background: #fff;
  transition: transform 200ms ease;
}

.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); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: var(--header-h);
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), #ff3445, #fff);
  box-shadow: 0 0 12px var(--red);
}

.panel {
  position: relative;
  width: var(--page);
  max-width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(88px, 9vw, 144px) 0;
}

.panel:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17) 22%, rgba(225, 29, 46, 0.5) 50%, rgba(255, 255, 255, 0.17) 78%, transparent);
  transform: scaleX(0.3);
  opacity: 0.4;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), opacity 900ms ease;
}

.panel.is-active::before { transform: scaleX(1); opacity: 1; }

.eyebrow {
  margin: 0 0 18px;
  color: #ff3445;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.27em;
  line-height: 1.5;
}

h1, h2, h3, p { text-wrap: pretty; }

h1, h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

h1 span, h2 span { color: var(--red); }

.hero {
  min-height: calc(100svh - var(--header-h) - clamp(86px, 11vw, 156px));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: 3vw;
  padding-top: 38px;
  padding-bottom: 52px;
  overflow: hidden;
  isolation: isolate;
}

.grid-field {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at 68% 46%, #000 0, transparent 70%);
  mask-image: radial-gradient(circle at 68% 46%, #000 0, transparent 70%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(66vw, 960px);
  aspect-ratio: 1;
  right: -13%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.19), rgba(99, 8, 18, 0.07) 36%, transparent 67%);
  transform: translateY(-50%);
  filter: blur(12px);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 4%, rgba(7, 8, 10, 0.76) 44%, transparent 72%);
}

.hero-copy { position: relative; z-index: 4; max-width: 840px; }
.hero h1 { font-size: clamp(58px, 6.4vw, 108px); }

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #b7bac1;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.6;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.18) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(.2,.7,.2,1);
}

.button > * { position: relative; z-index: 1; }
.button b { font-size: 17px; font-weight: 400; }
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.5); }
.button:hover::before { transform: translateX(120%); }

.button--primary {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 12px 36px rgba(139, 13, 24, 0.24);
}

.button--primary:hover { box-shadow: 0 16px 44px rgba(225, 29, 46, 0.32); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #8f929a;
  list-style: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }

.logo-stage {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.logo-stage picture {
  position: relative;
  z-index: 3;
  width: 88%;
  filter: drop-shadow(0 24px 45px rgba(0,0,0,.52));
}

.logo-stage img { width: 100%; border-radius: 50%; }

.logo-glow {
  position: absolute;
  z-index: 0;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.24), transparent 66%);
  filter: blur(25px);
  animation: glowPulse 3.4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px 3px var(--red);
}

.orbit--outer { inset: 3%; animation: orbit 18s linear infinite; }
.orbit--inner { inset: 10%; border-style: dashed; border-color: rgba(225, 29, 46, 0.27); animation: orbitReverse 24s linear infinite; }

.logo-scan {
  position: absolute;
  z-index: 5;
  right: 11%;
  left: 11%;
  top: 22%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, #ff4554 18%, #fff 50%, #ff4554 82%, transparent);
  box-shadow: 0 0 17px 3px var(--red-glow);
  animation: scanLogo 5.2s cubic-bezier(.5,0,.5,1) infinite 1.2s;
}

.laser-point {
  position: absolute;
  z-index: 6;
  top: 53.4%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 3px #fff, 0 0 28px 11px var(--red);
  animation: pointPulse 2.2s ease-in-out infinite;
}

.laser-beam {
  position: absolute;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.08), #ff2c3e, #fff);
  box-shadow: 0 0 15px var(--red);
  transform-origin: right;
}

.laser-beam--one { width: 58vw; right: 22%; top: 52%; transform: rotate(-7deg); animation: beamIn 1.2s cubic-bezier(.2,.7,.2,1) both 520ms; }
.laser-beam--two { width: 32vw; right: 25%; top: 55%; opacity: .32; transform: rotate(10deg); animation: beamIn 1.3s cubic-bezier(.2,.7,.2,1) both 760ms; }

.section-next {
  position: absolute;
  z-index: 6;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #757982;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-next b { color: var(--red); font-size: 18px; animation: down 1.8s ease-in-out infinite; }

.section-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, .55fr); gap: 42px; align-items: end; margin-bottom: clamp(42px, 6vw, 78px); }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -16px; }
.section-intro h2, .project h2, .contact h2 { font-size: clamp(48px, 5.5vw, 86px); }
.section-intro > p:last-child { margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.75; }

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

.service-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20,22,27,.9), rgba(9,10,12,.88));
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 360ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -100% 45% -100% -65%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent);
  transform: rotate(22deg) translateX(-75%);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(225, 29, 46, .46); background: linear-gradient(145deg, rgba(26,27,32,.96), rgba(10,10,12,.9)); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { transform: rotate(22deg) translateX(160%); }
.service-card > * { position: relative; z-index: 1; }
.service-card > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .22em; }
.service-card h3 { margin: auto 0 12px; font-size: clamp(22px, 1.8vw, 29px); letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card small { margin-top: 24px; color: #6f7279; font-size: 8px; font-weight: 900; letter-spacing: .15em; }

.sectors { min-height: auto; }
.sector-list { border-top: 1px solid var(--line); }

.sector-row {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 144px;
  padding: 24px 4px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms ease, background 260ms ease;
}

.sector-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(225,29,46,.1), transparent 54%);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.sector-row:hover { padding-right: 24px; padding-left: 24px; }
.sector-row:hover::before { transform: translateX(0); }
.sector-row > b { color: rgba(255,255,255,.13); font-size: 64px; font-weight: 900; line-height: 1; }
.sector-row h3 { margin: 0 0 8px; font-size: clamp(23px, 2.3vw, 34px); letter-spacing: -.035em; }
.sector-row p { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.sector-row > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .18em; }

.project {
  display: grid;
  grid-template-columns: minmax(320px, .74fr) minmax(0, 1.26fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.project-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.project-facts { display: grid; gap: 0; margin: 0 0 28px; }
.project-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.project-facts div:last-child { border-bottom: 1px solid var(--line); }
.project-facts dt { color: #777b84; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.project-facts dd { margin: 0; color: #d5d6d9; font-size: 13px; }

.text-link { display: inline-flex; gap: 14px; align-items: center; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.text-link b { color: var(--red); font-size: 18px; transition: transform 180ms ease; }
.text-link:hover b { transform: translate(3px, -3px); }

.project-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0b0c0e;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}

.project-visual::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -20%;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-18deg);
}

.project-visual.is-visible::after { animation: imageSweep 1.25s cubic-bezier(.2,.7,.2,1) 440ms both; }
.project-visual img { width: 100%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.project-visual:hover img { transform: scale(1.018); }
.project-visual figcaption { position: absolute; right: 16px; bottom: 14px; padding: 8px 10px; background: rgba(7,8,10,.78); color: #9b9ea5; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); }

.method { min-height: auto; }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 41px;
  right: 12%;
  left: 12%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), #fff, var(--red), transparent);
  box-shadow: 0 0 14px rgba(225,29,46,.45);
}

.process-line li {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 29px 26px;
  border: 1px solid var(--line);
  background: rgba(11,12,15,.94);
}

.process-line b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(225,29,46,.55);
  border-radius: 50%;
  background: var(--ink);
  color: #ff4050;
  font-size: 8px;
  letter-spacing: .1em;
  box-shadow: 0 0 20px rgba(225,29,46,.13);
}

.process-line h3 { margin: 66px 0 11px; font-size: 25px; letter-spacing: -.03em; }
.process-line p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.founder-note {
  display: grid;
  grid-template-columns: .54fr 1.1fr 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 48px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.founder-note .eyebrow { margin: 4px 0 0; }
.founder-note blockquote { margin: 0; color: #fff; font-size: clamp(20px, 2vw, 29px); font-weight: 700; letter-spacing: -.03em; line-height: 1.35; }
.founder-note > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contact {
  display: grid;
  grid-template-columns: minmax(310px, .8fr) minmax(460px, 1.2fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  bottom: 4%;
  left: -20%;
  border-radius: 50%;
  background: rgba(143,11,24,.18);
  filter: blur(90px);
}

.contact-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.direct-contact { display: grid; border-top: 1px solid var(--line); }
.direct-contact a { display: grid; grid-template-columns: 74px 1fr auto; gap: 15px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); transition: color 180ms ease, padding 180ms ease; }
.direct-contact a:hover { padding-left: 8px; color: #fff; }
.direct-contact small { color: #72767e; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.direct-contact strong { overflow-wrap: anywhere; font-size: 14px; }
.direct-contact b { color: var(--red); font-weight: 400; }

.enquiry-form {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(18,20,24,.96), rgba(9,10,12,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 9px; }
.form-grid label > span { color: #a4a7ad; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.form-grid .wide { grid-column: 1 / -1; }

input, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  outline: 0;
  background: #08090b;
  color: #fff;
  padding: 14px 15px;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover, textarea:hover { border-color: rgba(255,255,255,.28); }
input:focus, textarea:focus { border-color: var(--red); background: #0b0c0e; box-shadow: 0 0 0 3px rgba(225,29,46,.09); }
textarea { min-height: 112px; resize: vertical; line-height: 1.55; }
::placeholder { color: #5f6269; opacity: 1; }

.file-field input { padding: 11px; color: #8f9298; font-size: 12px; }
.file-field input::file-selector-button { margin-right: 12px; padding: 8px 10px; border: 0; background: #24262c; color: #fff; font-size: 10px; font-weight: 800; cursor: pointer; }
.file-field small { color: #666a72; font-size: 9px; }

.consent { flex-direction: row !important; align-items: flex-start; gap: 11px !important; }
.consent input { width: 16px; height: 16px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--red); }
.consent > span { color: #8e9198 !important; font-size: 10px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.55; text-transform: none !important; }
.honeypot { position: absolute; left: -9999px; }
.enquiry-form .button { width: 100%; border: 0; }
.enquiry-form .button:disabled { cursor: wait; opacity: .58; }
.form-status { min-height: 20px; margin: 0; color: #b6b8bd; font-size: 12px; line-height: 1.5; }
.form-status.is-success { color: #7fd79b; }
.form-status.is-error { color: #ff7b86; }

.site-footer {
  width: var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; }
.footer-brand p { display: grid; gap: 6px; margin: 0; }
.footer-brand strong { font-size: 12px; letter-spacing: .11em; }
.footer-brand strong span { color: var(--red); }
.footer-brand small { color: #696d75; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-meta { display: grid; gap: 5px; text-align: right; }
.footer-meta p { margin: 0; color: #6f737b; font-size: 9px; line-height: 1.4; }

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .stagger > .reveal:nth-child(2) { transition-delay: 70ms; }
.js .stagger > .reveal:nth-child(3) { transition-delay: 140ms; }
.js .stagger > .reveal:nth-child(4) { transition-delay: 210ms; }
.js .stagger > .reveal:nth-child(5) { transition-delay: 280ms; }
.js .stagger > .reveal:nth-child(6) { transition-delay: 350ms; }

.js .hero-copy { opacity: 0; transform: translateY(20px); }
.js .logo-stage { opacity: 0; transform: translateX(28px) scale(.97); }
.js.is-ready .hero-copy { opacity: 1; transform: translateY(0); transition: opacity 680ms ease 100ms, transform 680ms cubic-bezier(.2,.7,.2,1) 100ms; }
.js.is-ready .logo-stage { opacity: 1; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: opacity 900ms ease 250ms, transform 900ms cubic-bezier(.2,.7,.2,1) 250ms; }
.js.is-ready.is-settled .logo-stage { transition: transform 220ms ease-out; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
@keyframes glowPulse { 50% { opacity: .52; transform: scale(1.08); } }
@keyframes pointPulse { 50% { opacity: .62; transform: scale(.72); } }
@keyframes beamIn { from { opacity: 0; scale: 0 1; } to { opacity: 1; scale: 1 1; } }
@keyframes scanLogo { 0%, 16% { top: 22%; opacity: 0; } 26% { opacity: .9; } 72% { top: 78%; opacity: .75; } 82%, 100% { top: 78%; opacity: 0; } }
@keyframes down { 50% { transform: translateY(5px); } }
@keyframes imageSweep { from { transform: skewX(-18deg) translateX(0); } to { transform: skewX(-18deg) translateX(760%); } }

@media (max-width: 1140px) {
  :root { --page: min(100% - 40px, 1060px); }
  .header-call { display: none; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); }
  .hero h1 { font-size: clamp(55px, 7.2vw, 86px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: .8fr 1.2fr; gap: 42px; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; --page: min(100% - 34px, 780px); }
  .brand-banner { height: 94px; }
  .brand-banner img { width: 100%; max-width: 100%; object-position: 22% center; }
  .site-header { padding: 0 17px; }
  .menu-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-h);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-h));
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 36px 18px;
    border-top: 1px solid var(--line);
    background: rgba(7,8,10,.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav > a:not(.header-cta) { display: flex; min-height: 58px; align-items: center; border-bottom: 1px solid var(--line); font-size: 13px; }
  .primary-nav > a::after { display: none; }
  .primary-nav .header-call { display: flex; }
  .header-cta { min-height: 54px; justify-content: center; margin-top: 24px; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); gap: 48px; padding-top: 88px; padding-bottom: 96px; }
  .hero::after { background: linear-gradient(180deg, var(--ink) 5%, rgba(7,8,10,.72) 46%, transparent 80%); }
  .hero > *, .project > *, .contact > *, .section-intro > * { min-width: 0; }
  .hero-copy { width: 100%; max-width: 720px; }
  .logo-stage { width: 100%; max-width: 570px; height: auto; align-self: center; justify-self: center; }
  .laser-beam--one { width: 100vw; right: 13%; top: 69%; }
  .laser-beam--two { width: 70vw; right: 25%; top: 72%; }
  .section-next { display: none; }
  .panel { min-height: auto; padding: 96px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro .eyebrow { margin-bottom: -2px; }
  .project, .contact { grid-template-columns: minmax(0, 1fr); overflow: hidden; }
  .project-copy { max-width: 680px; }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .founder-note { grid-template-columns: 1fr 1fr; }
  .founder-note .eyebrow { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 28px); }
  .brand-banner { height: auto; min-height: 62px; padding-top: calc(env(safe-area-inset-top, 0px) + 7px); }
  .brand-banner picture { display: block; }
  .brand-banner img { width: 100%; height: auto; max-width: 100%; object-fit: contain; object-position: center; }
  .header-brand strong { font-size: 11px; }
  .header-brand small { font-size: 7px; }
  .hero { gap: 36px; padding-top: 62px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(44px, 13vw, 56px); line-height: .96; }
  .hero-lead { margin-top: 22px; font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; gap: 11px; }
  .logo-stage { width: 100%; max-width: 430px; align-self: center; }
  .section-intro h2, .project h2, .contact h2 { font-size: clamp(39px, 11.5vw, 50px); line-height: .97; }
  .service-grid, .process-line { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .sector-row { grid-template-columns: 58px 1fr; gap: 17px; min-height: 150px; }
  .sector-row > b { font-size: 45px; }
  .sector-row > span { display: none; }
  .project { gap: 44px; }
  .project-visual figcaption { display: none; }
  .process-line::before { display: none; }
  .process-line li { min-height: 220px; }
  .process-line h3 { margin-top: 48px; }
  .founder-note { grid-template-columns: 1fr; }
  .founder-note .eyebrow { grid-column: auto; }
  .contact { gap: 46px; }
  .contact-copy > p:not(.eyebrow) { font-size: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .enquiry-form { padding: 22px 17px; }
  .direct-contact a { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; }
  .direct-contact strong { font-size: 12px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (hover: none) {
  .service-card:hover, .sector-row:hover, .button:hover { transform: none; }
  .project-visual:hover img { transform: none; }
}

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

@media print {
  .brand-banner, .site-header, .scroll-progress, .hero-actions, .section-next, .laser-beam, .grid-field, .enquiry-form { display: none !important; }
  body { background: #fff; color: #000; }
  .panel { width: 100%; min-height: 0; padding: 30px 0; break-inside: avoid; }
  h1 span, h2 span, .eyebrow { color: #9a0f1c; }
  .project { grid-template-columns: 1fr; }
}
