:root {
  --ink: #071a22;
  --ink-2: #0a2732;
  --teal: #145a6d;
  --teal-bright: #2c8ca2;
  --pink: #ef79ad;
  --mint: #6ed6c2;
  --amber: #f2b761;
  --paper: #f5f7f4;
  --white: #fff;
  --muted: #708086;
  --line: rgba(7, 26, 34, .13);
  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
::selection { background: var(--pink); color: var(--ink); }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section-pad { padding: 128px 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 9999; background: #fff; color: #000; padding: 12px 18px; border-radius: 4px; }
.skip-link:focus { top: 18px; }

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  transition: opacity .7s var(--ease), visibility .7s;
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-grid {
  position: absolute;
  inset: -15%;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(700px) rotateX(62deg) translateY(25%);
  animation: introGrid 2.8s var(--ease) both;
}
.intro-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(31,143,168,.26), transparent 55%);
}
.intro-lockup { position: relative; width: min(76vw, 620px); text-align: center; }
.intro-lockup img { width: 100%; height: auto; aspect-ratio: 560 / 264; object-fit: contain; margin: 0 auto; opacity: 0; transform: scale(.86); filter: drop-shadow(0 20px 35px rgba(0,0,0,.3)); animation: introMark .9s .22s var(--ease) forwards; }
.intro-name { margin-top: -8px; font-size: clamp(25px, 3vw, 42px); font-weight: 900; letter-spacing: -.05em; opacity: 0; transform: translateY(12px); animation: introText .7s .72s var(--ease) forwards; }
.intro-name span { display: block; margin-top: -8px; color: rgba(255,255,255,.7); font-size: .36em; font-weight: 650; letter-spacing: .17em; text-transform: uppercase; }
.intro-line { width: 100%; height: 1px; margin-top: 30px; overflow: hidden; background: rgba(255,255,255,.1); }
.intro-line i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--pink), var(--teal-bright)); transform: translateX(-101%); animation: introLine 1.35s .85s var(--ease) forwards; }
.intro-coordinates { position: absolute; left: 50%; top: -75px; translate: -50% 0; white-space: nowrap; color: rgba(255,255,255,.35); font-family: Consolas, monospace; font-size: 10px; letter-spacing: .2em; opacity: 0; animation: introText .6s .4s forwards; }
.intro-skip { position: absolute; right: 30px; top: 28px; z-index: 2; padding: 8px 0; border: 0; background: transparent; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.intro-skip:hover { color: #fff; }
@keyframes introGrid { from { opacity: 0; transform: perspective(700px) rotateX(62deg) translateY(35%) scale(1.2); } }
@keyframes introMark { to { opacity: 1; transform: scale(1); } }
@keyframes introText { to { opacity: 1; transform: translateY(0); } }
@keyframes introLine { to { transform: translateX(101%); } }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled { background: rgba(7,26,34,.92); backdrop-filter: blur(18px); box-shadow: 0 16px 50px rgba(0,0,0,.14); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; position: relative; z-index: 2; }
.brand img { width: 66px; height: auto; aspect-ratio: 560 / 264; object-fit: contain; filter: drop-shadow(0 3px 7px rgba(0,0,0,.15)); }
.brand-copy { display: flex; flex-direction: column; line-height: .92; }
.brand-copy strong { font-size: 20px; letter-spacing: -.06em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; color: rgba(255,255,255,.76); }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--pink); transition: right .35s var(--ease); }
.site-nav > a:hover { color: #fff; }
.site-nav > a:hover::after { right: 0; }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 3px; transition: background .25s, color .25s, border-color .25s; }
.nav-cta span { margin-left: 18px; color: var(--pink); }
.nav-cta:hover { background: #fff; border-color: #fff; color: var(--ink); }
.menu-toggle { display: none; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; position: relative; z-index: 2; }
.menu-toggle span { position: absolute; left: 8px; width: 24px; height: 1px; background: #fff; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 15px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

/* Hero */
.hero { min-height: 900px; height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--ink); color: #fff; }
.hero-image { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(7,26,34,.25), rgba(7,26,34,0) 58%), url("../images/geox-hero.webp"); background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 14s ease-out both; }
.hero-noise { position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,17,24,.87) 0%, rgba(5,27,37,.58) 39%, rgba(4,18,25,.06) 72%), linear-gradient(0deg, rgba(7,26,34,.55), transparent 36%); }
.hero-content { position: relative; z-index: 2; padding-top: 88px; }
.hero-content > * { max-width: 720px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; color: var(--teal); font-size: 11px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { color: #c1dbe2; }
.eyebrow::before, .section-kicker::before { content: ""; display: block; width: 29px; height: 1px; background: currentColor; }
.hero h1, section h2 { margin: 0; font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(54px, 6.2vw, 90px); text-wrap: balance; }
.hero h1 em { color: var(--pink); font-style: normal; }
.hero-copy { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; margin-top: 37px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; padding: 13px 20px; border: 0; border-radius: 3px; font-size: 12px; font-weight: 750; letter-spacing: .02em; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: var(--ink); }
.button-primary:hover { background: #fff; }
.button-ghost { border: 1px solid rgba(255,255,255,.26); color: #fff; background: rgba(255,255,255,.03); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.hero-disciplines { position: absolute; z-index: 3; right: max(32px, calc((100vw - var(--container)) / 2)); bottom: 43px; display: flex; gap: 20px; }
.hero-disciplines span { min-width: 91px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.27); color: rgba(255,255,255,.75); font-size: 11px; font-weight: 650; letter-spacing: .08em; }
.hero-disciplines b { margin-right: 8px; color: var(--pink); font-family: Consolas, monospace; font-size: 9px; font-weight: 400; }
.scroll-cue { position: absolute; z-index: 4; left: max(32px, calc((100vw - var(--container)) / 2)); bottom: 33px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.54); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 29px; height: 45px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; }
.scroll-cue i::after { content: ""; position: absolute; left: 13px; top: 9px; width: 2px; height: 7px; border-radius: 2px; background: var(--pink); animation: scrollDot 1.8s infinite; }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 430px; height: 430px; right: -210px; top: 90px; }
.orbit-two { width: 610px; height: 610px; right: -302px; top: -10px; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1.02); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(16px); } }

/* Shared section */
section h2 { font-size: clamp(43px, 5vw, 72px); }
section h2 span { color: var(--teal); }
.section-kicker.light { color: #70bdcc; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr); align-items: end; gap: 70px; margin-bottom: 70px; }
.section-intro { margin: 0 0 7px; color: #64767c; font-size: 16px; line-height: 1.8; }
.section-heading.compact { grid-template-columns: 1fr; }
.statement { background: #fff; }
.statement-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; align-items: center; }
.statement-copy { max-width: 540px; padding-left: 46px; border-left: 1px solid var(--line); color: #52676e; font-size: 17px; line-height: 1.8; }
.statement-copy p { margin: 0 0 18px; }
.statement-copy p:last-child { margin-bottom: 0; }

/* Services */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 650px; position: relative; overflow: hidden; padding: 40px 44px 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.35); transition: background .45s, transform .45s var(--ease), box-shadow .45s; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--card-accent); transition: height .55s var(--ease); }
.service-card:hover { z-index: 1; background: #fff; transform: translateY(-5px); box-shadow: 0 30px 70px rgba(7,26,34,.1); }
.service-card:hover::before { height: 100%; }
.service-card[data-accent="cyan"] { --card-accent: var(--teal-bright); }
.service-card[data-accent="pink"] { --card-accent: var(--pink); }
.service-card[data-accent="mint"] { --card-accent: var(--mint); }
.service-card[data-accent="amber"] { --card-accent: var(--amber); }
.service-topline { display: flex; align-items: center; gap: 16px; color: var(--muted); font-family: Consolas, monospace; font-size: 10px; letter-spacing: .12em; }
.service-topline i { height: 1px; flex: 1; background: var(--line); }
.service-icon { width: 72px; height: 72px; margin: 48px 0 40px; color: var(--card-accent); }
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font-size: clamp(27px, 2.6vw, 39px); font-weight: 430; line-height: 1.08; letter-spacing: -.04em; }
.service-card > p { max-width: 470px; min-height: 78px; margin: 22px 0 24px; color: #66777d; line-height: 1.7; }
.service-card ul { display: grid; gap: 9px; padding: 21px 0 0; margin: 0; border-top: 1px solid var(--line); list-style: none; color: #354b53; font-size: 13px; }
.service-card li { display: flex; gap: 10px; }
.service-card li::before { content: "+"; color: var(--card-accent); font-family: Consolas, monospace; }
.card-index { position: absolute; right: -6px; bottom: -51px; color: rgba(7,26,34,.025); font-size: 145px; font-weight: 900; letter-spacing: -.09em; pointer-events: none; }

/* Interactive spatial lab */
.spatial-lab { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.spatial-lab::before { content: ""; position: absolute; width: 550px; height: 550px; left: -260px; bottom: -300px; border: 1px solid rgba(239,121,173,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(239,121,173,.02), 0 0 0 180px rgba(239,121,173,.015); }
.lab-grid { display: grid; grid-template-columns: .65fr 1.15fr; gap: 80px; align-items: center; }
.lab-copy h2 span, .about h2 span { color: var(--pink); }
.lab-copy > p:not(.section-kicker) { max-width: 430px; margin: 30px 0 0; color: rgba(255,255,255,.58); line-height: 1.8; }
.layer-controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-width: 390px; margin-top: 42px; }
.layer-button { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 3px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; letter-spacing: .08em; cursor: pointer; transition: .25s; }
.layer-button i { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; }
.layer-button.active { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; }
.layer-button.active i { background: var(--pink); border-color: var(--pink); box-shadow: 0 0 12px var(--pink); }
.spatial-canvas { aspect-ratio: 1.25; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #0a222c; box-shadow: 0 40px 80px rgba(0,0,0,.28); }
.canvas-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 32px 32px; }
.canvas-grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(22,112,134,.16), transparent 70%); }
.layer { position: absolute; inset: 5%; width: 90%; height: 90%; opacity: 1; transition: opacity .35s, transform .5s var(--ease); }
.layer.off { opacity: .035; transform: scale(.985); }
.layer-gis { stroke: #286e7e; stroke-width: 1; }
.layer-bim { stroke: #85d3e2; stroke-width: 1.25; filter: drop-shadow(0 0 8px rgba(133,211,226,.12)); }
.layer-survey { stroke: var(--pink); stroke-width: 1.3; }
.layer-survey text { fill: var(--pink); stroke: none; font-family: Consolas, monospace; font-size: 10px; }
.layer-gpr { stroke: #f2b761; stroke-width: 2; filter: drop-shadow(0 0 5px rgba(242,183,97,.22)); }
.scan-line { position: absolute; top: 0; bottom: 0; left: 5%; width: 1px; background: linear-gradient(transparent, var(--pink), transparent); opacity: .7; box-shadow: 0 0 18px var(--pink); animation: scan 7s ease-in-out infinite alternate; }
.canvas-label { position: absolute; z-index: 2; color: rgba(255,255,255,.45); font-family: Consolas, monospace; font-size: 9px; line-height: 1.6; letter-spacing: .08em; }
.label-north { right: 18px; top: 17px; display: grid; justify-items: center; }
.label-north i { width: 1px; height: 26px; margin-bottom: 5px; background: linear-gradient(var(--pink), transparent); }
.label-coord { left: 18px; top: 16px; }
.canvas-status { position: absolute; z-index: 3; left: 17px; right: 17px; bottom: 17px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.12); background: rgba(7,26,34,.8); backdrop-filter: blur(9px); color: rgba(255,255,255,.66); font-family: Consolas, monospace; font-size: 9px; letter-spacing: .08em; }
.canvas-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.canvas-status b { margin-left: auto; color: var(--mint); font-weight: 400; }
@keyframes scan { to { left: 94%; } }

/* Process */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { min-height: 280px; position: relative; padding: 35px 30px 33px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--pink); font-family: Consolas, monospace; font-size: 10px; letter-spacing: .12em; }
.process-step > i { position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 6px #fff; }
.process-step h3 { margin: 80px 0 14px; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.process-step p { margin: 0; color: #687980; font-size: 13px; line-height: 1.75; }

/* Clients */
.clients { position: relative; overflow: hidden; background: #edf2f2; }
.clients::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(20,90,109,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20,90,109,.05) 1px, transparent 1px); background-size: 42px 42px; pointer-events: none; }
.clients .container { position: relative; z-index: 1; }
.clients-heading { display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 70px; margin-bottom: 65px; }
.clients-heading > p { margin: 0 0 5px; color: #667980; line-height: 1.8; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(7,26,34,.14); border-left: 1px solid rgba(7,26,34,.14); background: rgba(255,255,255,.2); }
.client-card { position: relative; min-width: 0; border-right: 1px solid rgba(7,26,34,.14); border-bottom: 1px solid rgba(7,26,34,.14); background: rgba(255,255,255,.58); transition: background .35s, transform .35s var(--ease), box-shadow .35s; }
.client-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--pink); transition: width .45s var(--ease); }
.client-card:hover { z-index: 1; background: #fff; transform: translateY(-4px); box-shadow: 0 24px 55px rgba(7,26,34,.09); }
.client-card:hover::after { width: 100%; }
.client-logo { height: 165px; display: grid; place-items: center; padding: 24px; background: #fff; overflow: hidden; }
.client-logo img { display: block; width: auto; height: auto; max-width: 94%; max-height: 112px; object-fit: contain; filter: saturate(.9); transition: filter .35s, transform .35s var(--ease); }
.client-card:hover .client-logo img { filter: saturate(1.08); transform: scale(1.035); }
.client-card > span { min-height: 56px; display: flex; align-items: center; padding: 13px 19px; color: #52666d; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* Industries */
.industries { background: var(--paper); }
.industries-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.industries-copy { position: sticky; top: 140px; align-self: start; }
.industries-copy > p:not(.section-kicker) { max-width: 390px; margin-top: 30px; color: #66777e; line-height: 1.8; }
.industry-list { border-top: 1px solid var(--line); }
.industry-row { display: grid; grid-template-columns: 40px 1fr 1fr 25px; align-items: center; gap: 22px; min-height: 136px; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), background .35s; }
.industry-row:hover { padding: 0 18px; background: #fff; }
.industry-row > span { color: var(--pink); font-family: Consolas, monospace; font-size: 10px; }
.industry-row h3 { margin: 0; font-size: 21px; font-weight: 500; letter-spacing: -.03em; }
.industry-row p { margin: 0; color: #728187; font-size: 13px; line-height: 1.6; }
.industry-row > i { color: var(--teal); font-style: normal; font-size: 17px; opacity: .5; transition: transform .3s, opacity .3s; }
.industry-row:hover > i { opacity: 1; transform: translate(2px, -2px); }

/* About */
.about { position: relative; overflow: hidden; background: #0c303d; color: #fff; }
.about::after { content: "GEOX"; position: absolute; right: -40px; bottom: -145px; color: rgba(255,255,255,.025); font-size: 310px; font-weight: 900; line-height: 1; letter-spacing: -.09em; }
.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 100px; align-items: center; position: relative; z-index: 1; }
.about-visual { aspect-ratio: 1; position: relative; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(135deg, rgba(255,255,255,.03), transparent); }
.about-visual::before, .about-visual::after { content: ""; position: absolute; background: rgba(255,255,255,.08); }
.about-visual::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.about-visual::after { top: 50%; left: 0; right: 0; height: 1px; }
.about-crosshair { position: absolute; inset: 50% auto auto 50%; width: 170px; height: 170px; translate: -50% -50%; border: 1px solid rgba(239,121,173,.55); border-radius: 50%; animation: targetPulse 3s ease-in-out infinite; }
.about-crosshair span:first-child { position: absolute; left: 50%; top: -35px; bottom: -35px; width: 1px; background: linear-gradient(transparent, rgba(239,121,173,.6), transparent); }
.about-crosshair span:nth-child(2) { position: absolute; top: 50%; left: -35px; right: -35px; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,121,173,.6), transparent); }
.about-crosshair i { position: absolute; width: 8px; height: 8px; left: calc(50% - 4px); top: calc(50% - 4px); border-radius: 50%; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.target { position: absolute; width: 13px; height: 13px; border: 1px solid var(--mint); border-radius: 50%; }
.target i { position: absolute; left: 5px; top: 5px; width: 1px; height: 1px; background: var(--mint); box-shadow: 0 0 9px 3px rgba(110,214,194,.45); }
.target-one { left: 18%; top: 22%; }
.target-two { right: 15%; top: 34%; }
.target-three { left: 28%; bottom: 18%; }
.about-card { position: absolute; left: 23px; right: 23px; bottom: 22px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 15px; padding: 14px; border: 1px solid rgba(255,255,255,.13); background: rgba(7,26,34,.72); backdrop-filter: blur(8px); }
.about-card small { color: rgba(255,255,255,.4); font-family: Consolas, monospace; font-size: 8px; letter-spacing: .08em; }
.about-card b { font-family: Consolas, monospace; font-size: 9px; font-weight: 400; }
.about-card span { color: var(--mint); font-family: Consolas, monospace; font-size: 8px; }
.about-copy .lead { margin: 30px 0 14px; color: #fff; font-size: 21px; line-height: 1.5; }
.about-copy > p:not(.section-kicker):not(.lead) { color: rgba(255,255,255,.58); line-height: 1.85; }
.principles { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.13); }
.principles span { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 13px; }
.principles i { color: var(--pink); font-family: Consolas, monospace; font-size: 9px; font-style: normal; }
@keyframes targetPulse { 50% { box-shadow: 0 0 0 22px rgba(239,121,173,.035), 0 0 0 55px rgba(239,121,173,.02); } }

/* Careers */
.careers { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.careers-grid-lines { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.careers-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.careers-copy h2 span { color: var(--pink); }
.careers-copy > p:not(.section-kicker) { max-width: 500px; margin: 30px 0 34px; color: rgba(255,255,255,.58); line-height: 1.82; }
.careers-copy .button { min-width: 190px; }
.careers-panel { padding: 33px 37px 37px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }
.careers-panel > small, .career-email small { color: var(--pink); font-family: Consolas, monospace; font-size: 9px; letter-spacing: .13em; }
.career-role { min-height: 79px; display: grid; grid-template-columns: 32px 1fr 20px; align-items: center; gap: 17px; border-bottom: 1px solid rgba(255,255,255,.12); }
.career-role:first-of-type { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.career-role span { color: rgba(255,255,255,.35); font-family: Consolas, monospace; font-size: 9px; }
.career-role strong { font-size: 16px; font-weight: 500; }
.career-role i { color: var(--pink); font-style: normal; }
.career-email { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 16px 18px; background: var(--pink); color: var(--ink); }
.career-email small { color: rgba(7,26,34,.64); }
.career-email a { font-size: 16px; font-weight: 750; }

/* Location */
.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: stretch; }
.location-copy address { display: flex; flex-direction: column; margin: 34px 0 37px; padding: 24px 0 24px 25px; border-left: 2px solid var(--pink); color: #66777d; font-style: normal; line-height: 1.65; }
.location-copy address strong { margin-bottom: 7px; color: var(--ink); font-size: 20px; font-weight: 650; }
.location-links { border-top: 1px solid var(--line); }
.location-links a { display: grid; grid-template-columns: 62px 1fr 18px; align-items: center; gap: 13px; min-height: 62px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s; }
.location-links a:hover { padding: 0 12px; background: var(--paper); }
.location-links small { color: var(--pink); font-family: Consolas, monospace; font-size: 8px; letter-spacing: .1em; }
.location-links b { font-size: 13px; font-weight: 600; }
.location-links i { color: var(--teal); font-style: normal; }
.map-card { min-height: 590px; position: relative; overflow: hidden; background: var(--ink); box-shadow: 0 35px 75px rgba(7,26,34,.16); }
.map-card iframe { position: absolute; inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px); border: 0; filter: grayscale(1) sepia(.22) saturate(.7) hue-rotate(134deg) contrast(1.07) brightness(.82); }
.map-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,34,.18), transparent 34%, rgba(7,26,34,.26)), linear-gradient(90deg, rgba(7,26,34,.18), transparent 35%); pointer-events: none; }
.geox-map-pin { position: absolute; left: 50%; top: 47%; display: grid; justify-items: center; translate: -50% -50%; color: #fff; filter: drop-shadow(0 10px 18px rgba(0,0,0,.34)); pointer-events: none; }
.geox-map-pin > span { width: 54px; height: 54px; position: relative; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50% 50% 50% 8px; background: var(--pink); transform: rotate(-45deg); box-shadow: 0 0 0 7px rgba(239,121,173,.2); }
.geox-map-pin > span i { width: 17px; height: 17px; border: 4px solid var(--ink); border-radius: 50%; transform: rotate(45deg); }
.geox-map-pin b { margin-top: 15px; padding: 5px 12px; border-radius: 2px; background: var(--ink); font-size: 15px; letter-spacing: -.02em; }
.geox-map-pin small { margin-top: 3px; padding: 3px 8px; background: rgba(7,26,34,.82); font-family: Consolas, monospace; font-size: 8px; letter-spacing: .09em; }
.map-coordinates { position: absolute; left: 20px; top: 18px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.2); background: rgba(7,26,34,.82); color: rgba(255,255,255,.72); font-family: Consolas, monospace; font-size: 8px; line-height: 1.55; letter-spacing: .09em; }
.map-button { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 12px 16px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,.22); transition: background .25s; }
.map-button span { color: var(--pink); }
.map-button:hover { background: var(--teal); }

/* Contact */
.contact { background: var(--pink); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.contact .section-kicker { color: var(--ink); }
.contact h2 span { color: #fff; }
.contact-copy > p:not(.section-kicker) { max-width: 440px; margin: 28px 0; color: rgba(7,26,34,.68); line-height: 1.8; }
.contact-email-list { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.contact-email { display: grid; grid-template-columns: 58px 1fr 18px; align-items: center; gap: 15px; min-width: 305px; padding: 10px 0; border-bottom: 1px solid rgba(7,26,34,.35); font-weight: 700; }
.contact-email small { color: rgba(7,26,34,.58); font-family: Consolas, monospace; font-size: 8px; letter-spacing: .1em; }
.contact-email span { transition: transform .25s; }
.contact-email:hover span { transform: translate(3px, -3px); }
.contact-form { padding: 42px; background: #fff; box-shadow: 0 35px 80px rgba(7,26,34,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #607279; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 14px; transition: border-color .25s; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); }
.contact-form ::placeholder { color: #a1adb1; }
.form-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 9px; }
.form-bottom p { max-width: 280px; margin: 0; color: #8a989d; font-size: 10px; line-height: 1.5; }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--teal); }
.form-status { min-height: 20px; margin: 15px 0 0; color: var(--teal); font-size: 12px; font-weight: 650; }

/* Footer */
.site-footer { padding: 78px 0 23px; background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding-bottom: 70px; }
.footer-brand { align-self: start; display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.footer-brand img { width: 190px; height: auto; aspect-ratio: 560 / 264; object-fit: contain; }
.footer-brand > span { display: flex; flex-direction: column; line-height: 1; padding-left: 2px; }
.footer-brand strong { font-size: 34px; letter-spacing: -.07em; }
.footer-brand small { margin-top: 7px; color: rgba(255,255,255,.47); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-nav small { margin-bottom: 10px; color: var(--pink); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a { color: rgba(255,255,255,.57); font-size: 12px; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 10px; }
.footer-bottom a:hover { color: #fff; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2), .process-step:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .process-step:nth-child(3) { transition-delay: .15s; }
.service-card:nth-child(4), .process-step:nth-child(4) { transition-delay: .22s; }

/* Responsive */
@media (max-width: 1050px) {
  .section-pad { padding: 100px 0; }
  .hero { min-height: 760px; }
  .hero-disciplines { display: none; }
  .statement-grid, .lab-grid, .industries-grid, .about-grid, .contact-grid { gap: 60px; }
  .service-card { padding-inline: 34px; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .careers-grid, .location-grid { gap: 55px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industry-row { grid-template-columns: 35px 1fr 25px; }
  .industry-row p { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 38px), var(--container)); }
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav { position: fixed; inset: 0; padding: 125px 28px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .35s var(--ease); }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 24px; font-weight: 450; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 25px; padding: 15px 18px; border: 0; background: var(--pink); color: var(--ink); font-size: 14px; font-weight: 700; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-image { background-image: url("../images/geox-hero-mobile.webp"); background-position: 61% center; }
  .hero::after { background: linear-gradient(90deg, rgba(4,17,24,.92) 0%, rgba(4,17,24,.67) 70%, rgba(4,17,24,.25)), linear-gradient(0deg, rgba(7,26,34,.65), transparent 45%); }
  .hero-content { padding-top: 45px; }
  .hero h1 { font-size: clamp(47px, 12.5vw, 68px); }
  .hero-copy { max-width: 90%; font-size: 15px; line-height: 1.68; }
  .scroll-cue { left: 19px; bottom: 24px; }
  .scroll-cue i { height: 38px; }
  .statement-grid, .lab-grid, .industries-grid, .about-grid, .careers-grid, .location-grid, .contact-grid, .section-heading, .clients-heading, .footer-main { grid-template-columns: 1fr; }
  .statement-grid, .lab-grid, .industries-grid, .about-grid, .careers-grid, .location-grid, .contact-grid { gap: 48px; }
  .statement-copy { padding: 0; border: 0; }
  .section-heading { gap: 25px; margin-bottom: 48px; }
  .service-card { min-height: 620px; }
  .clients-heading { gap: 24px; margin-bottom: 45px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .spatial-canvas { grid-row: 1; }
  .industries-copy { position: static; }
  .about-visual { max-width: 580px; width: 100%; margin: auto; }
  .map-card { min-height: 520px; }
  .contact-form { padding: 30px; }
  .footer-main { gap: 55px; }
}

@media (max-width: 620px) {
  .header-inner { height: 72px; }
  .brand img { width: 52px; }
  .brand-copy strong { font-size: 18px; }
  .hero { min-height: 750px; }
  .hero h1 { letter-spacing: -.065em; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 32px 26px 44px; }
  .service-icon { margin: 38px 0 30px; }
  .service-card > p { min-height: 0; }
  .card-index { font-size: 110px; bottom: -37px; }
  .client-logo { height: 142px; padding: 17px; }
  .client-logo img { max-height: 98px; }
  .client-card > span { min-height: 51px; padding-inline: 12px; font-size: 8px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 55px; }
  .industry-row { gap: 12px; min-height: 110px; }
  .industry-row h3 { font-size: 18px; }
  .about-card { grid-template-columns: 1fr auto; }
  .about-card b { display: none; }
  .careers-panel { padding: 27px 22px 25px; }
  .career-role { grid-template-columns: 26px 1fr 16px; min-height: 72px; gap: 10px; }
  .career-role strong { font-size: 14px; }
  .career-email { flex-direction: column; align-items: flex-start; }
  .map-card { min-height: 470px; }
  .location-links a { grid-template-columns: 55px 1fr 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { flex-direction: column; align-items: stretch; }
  .form-bottom .button { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .intro-lockup { width: 88vw; }
}

@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; }
}
