:root {
  --bg: #07090d;
  --bg-soft: #0b0f15;
  --panel: rgba(14, 19, 27, .78);
  --line: rgba(194, 255, 27, .18);
  --line-soft: rgba(255, 255, 255, .09);
  --text: #f4f5f2;
  --muted: #9299a4;
  --acid: #c2ff1b;
  --cyan: #24e7ff;
  --magenta: #ff3fcf;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Manrope", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(36, 231, 255, .08), transparent 26rem),
    radial-gradient(circle at 18% 58%, rgba(255, 63, 207, .035), transparent 30rem),
    var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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; }
.noise {
  position: fixed; z-index: 90; inset: 0; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.cursor-glow { position: fixed; z-index: -1; width: 360px; height: 360px; border-radius: 50%; background: rgba(36,231,255,.035); filter: blur(25px); transform: translate(-50%, -50%); pointer-events: none; transition: opacity .2s; }

.site-header {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  height: 82px; padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 9, 13, .72); border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  color: var(--bg); background: var(--acid); font: 700 14px/1 var(--mono); letter-spacing: -2px;
  clip-path: polygon(0 0, 79% 0, 100% 21%, 100% 100%, 21% 100%, 0 79%);
  box-shadow: 0 0 22px rgba(194,255,27,.2);
}
.logo-mark span { color: #3d4f08; }
.logo-name { font: 600 18px/1 var(--sans); letter-spacing: -.03em; }
.logo-name b { color: var(--muted); font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: 34px; font: 500 12px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.site-nav a { color: #c4c8ce; transition: color .2s; }
.site-nav a:hover { color: var(--acid); }
.site-nav .nav-cta { padding: 13px 18px; color: var(--bg); background: var(--acid); }
.site-nav .nav-cta:hover { color: var(--bg); box-shadow: 0 0 28px rgba(194,255,27,.22); }
.menu-toggle { display: none; border: 0; background: none; color: white; }

.hero { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; min-height: 100vh; padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 100px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-index { margin: 0 0 24px; color: var(--acid); font: 500 11px/1.4 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 1px; background: var(--acid); box-shadow: 0 0 8px var(--acid); }
h1 { max-width: 780px; margin: 0; font-size: clamp(58px, 7.25vw, 108px); line-height: .91; letter-spacing: -.075em; font-weight: 600; }
h1 em, h2 em { position: relative; color: var(--acid); font-style: normal; text-shadow: 0 0 24px rgba(194,255,27,.15); }
.hero-lead { max-width: 570px; margin: 34px 0 0; color: #acb2bb; font-size: clamp(18px, 1.8vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 46px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; min-height: 55px; padding: 0 25px; border: 1px solid var(--acid); font: 600 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.button-primary { color: #0b0e08; background: var(--acid); box-shadow: 0 0 0 rgba(194,255,27,0); transition: transform .2s, box-shadow .2s; }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(194,255,27,.24); }
.text-link { color: #c6cad0; border-bottom: 1px solid #4c535c; font: 500 12px/2.2 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.text-link span { margin-left: 12px; color: var(--acid); }

.radar-panel { position: relative; width: min(100%, 470px); justify-self: end; padding: 16px; border: 1px solid var(--line-soft); background: linear-gradient(145deg, rgba(11,15,21,.8), rgba(4,7,10,.55)); box-shadow: 0 35px 100px rgba(0,0,0,.4); }
.radar-panel::before, .radar-panel::after { position: absolute; width: 20px; height: 20px; content: ""; border-color: var(--acid); }
.radar-panel::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.radar-panel::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.panel-top { display: flex; justify-content: space-between; padding: 4px 2px 15px; color: #6e7783; font: 500 9px/1 var(--mono); letter-spacing: .09em; }
.status { color: var(--acid); }
.status i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 8px var(--acid); animation: pulse 1.8s infinite; }
.radar { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(36,231,255,.13); background: radial-gradient(circle, rgba(36,231,255,.055), transparent 62%), #070b10; }
.radar::before { position: absolute; inset: 0; content: ""; opacity: .25; background-image: linear-gradient(rgba(36,231,255,.1) 1px, transparent 1px), linear-gradient(90deg,rgba(36,231,255,.1) 1px,transparent 1px); background-size: 28px 28px; }
.radar-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(36,231,255,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 31%; height: 31%; }.ring-two { width: 61%; height: 61%; }.ring-three { width: 91%; height: 91%; }
.radar-cross { position: absolute; top: 50%; left: 50%; background: rgba(36,231,255,.15); transform: translate(-50%,-50%); }
.radar-cross-x { width: 100%; height: 1px; }.radar-cross-y { width: 1px; height: 100%; }
.radar-sweep { position: absolute; inset: -15%; border-radius: 50%; background: conic-gradient(from 5deg, transparent 0 79%, rgba(194,255,27,.2) 97%, rgba(194,255,27,.55) 100%); animation: spin 6s linear infinite; transform-origin: center; }
.radar-core { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(194,255,27,.7); color: var(--acid); background: #0b1009; font: 600 13px/1 var(--mono); letter-spacing: -2px; transform: translate(-50%,-50%) rotate(45deg); box-shadow: 0 0 25px rgba(194,255,27,.14); }
.radar-core > span { color: white; transform: rotate(-45deg); }.radar-core b { color: var(--acid); font-weight: 600; }
.signal { position: absolute; display: flex; gap: 7px; align-items: center; color: #8e9aa8; font: 500 8px/1 var(--mono); letter-spacing: .08em; }
.signal i { width: 7px; height: 7px; border: 1px solid var(--acid); border-radius: 50%; background: rgba(194,255,27,.35); box-shadow: 0 0 10px var(--acid); }
.signal-one { top: 29%; left: 20%; }.signal-two { right: 18%; top: 37%; }.signal-three { right: 25%; bottom: 22%; }.signal-four { left: 27%; bottom: 35%; }
.panel-bottom { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-soft); }
.panel-bottom > div { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: end; padding: 15px 7px 2px; }
.panel-bottom > div + div { padding-left: 15px; border-left: 1px solid var(--line-soft); }
.panel-bottom span { align-self: start; color: var(--acid); font: 500 8px/1 var(--mono); }
.panel-bottom p { margin: 0; color: #68717c; font: 500 9px/1.45 var(--mono); text-transform: uppercase; }
.panel-bottom strong { color: white; font: 500 19px/1 var(--mono); }
.hero-strip { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: center; gap: 28px; min-width: max-content; height: 48px; color: #68717d; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(9,12,17,.72); font: 500 10px/1 var(--mono); letter-spacing: .12em; }
.hero-strip i { width: 4px; height: 4px; background: var(--acid); transform: rotate(45deg); }

.section { max-width: var(--max); margin: 0 auto; padding: 132px 28px; }
.section-heading { display: grid; grid-template-columns: 190px 1.1fr .7fr; gap: 40px; align-items: end; margin-bottom: 66px; }
.section-heading h2, .markets-copy h2, .approach-head h2, .contact h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; font-weight: 600; }
.section-heading > p:last-child { max-width: 420px; margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.service-card { position: relative; min-height: 475px; padding: 32px; background: var(--bg); transition: background .25s, transform .25s; }
.service-card:hover { z-index: 2; background: #0b1014; transform: translateY(-5px); }
.service-card.featured { background: linear-gradient(150deg, rgba(194,255,27,.07), rgba(10,14,18,.8)); }
.card-number { color: #535b67; font: 500 10px/1 var(--mono); }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 58px 0 30px; border: 1px solid var(--line); color: var(--acid); font: 400 24px/1 var(--mono); box-shadow: inset 0 0 22px rgba(194,255,27,.04); }
.service-card h3 { margin: 0 0 18px; font-size: 25px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card ul { position: absolute; right: 32px; bottom: 30px; left: 32px; padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line-soft); list-style: none; }
.service-card li { position: relative; padding-left: 15px; color: #b4b9c0; font: 500 10px/2 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.service-card li::before { position: absolute; left: 0; color: var(--acid); content: "/"; }

.markets { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; border-top: 1px solid var(--line-soft); }
.markets-visual { position: relative; display: grid; place-items: center; min-height: 580px; overflow: hidden; background: radial-gradient(circle, rgba(36,231,255,.08), transparent 53%); }
.globe { position: relative; width: min(95%, 470px); aspect-ratio: 1; border: 1px solid rgba(36,231,255,.27); border-radius: 50%; box-shadow: inset 0 0 80px rgba(36,231,255,.05), 0 0 70px rgba(36,231,255,.035); }
.globe::before, .globe::after { position: absolute; inset: 12%; content: ""; border: 1px solid rgba(36,231,255,.16); border-radius: 50%; }
.globe::after { inset: 0 34%; }
.globe-grid { position: absolute; inset: 0; overflow: hidden; border-radius: 50%; background: repeating-linear-gradient(0deg, transparent 0 39px, rgba(36,231,255,.09) 40px); }
.orbit { position: absolute; top: 50%; left: 50%; width: 117%; height: 42%; border: 1px solid rgba(194,255,27,.23); border-radius: 50%; }
.orbit-a { transform: translate(-50%,-50%) rotate(24deg); }.orbit-b { transform: translate(-50%,-50%) rotate(-29deg); }
.geo { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); }
.geo-a { left: 22%; top: 34%; }.geo-b { right: 25%; top: 25%; }.geo-c { right: 31%; bottom: 21%; }
.coordinates { position: absolute; bottom: 20px; left: 20px; color: #697482; font: 500 9px/1.6 var(--mono); letter-spacing: .08em; }
.markets-copy > p:not(.section-index) { max-width: 490px; margin: 30px 0 44px; color: var(--muted); font-size: 17px; }
.market-list { border-top: 1px solid var(--line-soft); }
.market-list > div { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); font: 500 10px/1.4 var(--mono); letter-spacing: .06em; }
.market-list span { color: var(--acid); }.market-list b { color: #9da4ae; font-weight: 500; text-align: right; }

.products { padding-top: 0; }
.section-heading.compact { display: flex; align-items: end; justify-content: space-between; margin-bottom: 44px; }
.product-ticker { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; padding: 35px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); font: 500 clamp(20px, 2.8vw, 36px)/1 var(--mono); letter-spacing: -.04em; }
.product-ticker span { color: #c9cdd1; }.product-ticker i { color: var(--acid); font-style: normal; font-weight: 300; }

.approach { padding-top: 70px; }
.approach-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 64px; }
.approach-head h2 { width: 62%; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; margin: 0; background: var(--line-soft); border: 1px solid var(--line-soft); list-style: none; }
.steps li { min-height: 280px; padding: 25px; background: var(--bg); }
.steps li > span { display: inline-block; color: var(--acid); font: 500 9px/1 var(--mono); }
.steps li div { margin-top: 92px; }
.steps h3 { margin: 0 0 13px; font-size: 22px; }.steps p { margin: 0; color: var(--muted); font-size: 13px; }

.contact { position: relative; display: flex; align-items: flex-end; justify-content: space-between; min-height: 670px; padding: 110px max(28px, calc((100vw - var(--max)) / 2)); overflow: hidden; border-top: 1px solid var(--line-soft); background: linear-gradient(120deg, rgba(194,255,27,.045), transparent 35%), #080b10; }
.contact::before { position: absolute; top: -120px; right: -80px; width: 540px; height: 540px; content: ""; border: 1px solid rgba(194,255,27,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(194,255,27,.025), 0 0 0 140px rgba(194,255,27,.015); }
.contact-inner { position: relative; z-index: 2; max-width: 780px; }
.contact-inner > p:not(.section-index):not(.contact-note) { max-width: 560px; margin: 30px 0 38px; color: var(--muted); font-size: 17px; }
.contact-button { min-width: 235px; }
.contact-email { display: block; width: max-content; margin-top: 18px; color: #8d949e; border-bottom: 1px solid #404751; font: 500 11px/2 var(--mono); letter-spacing: .06em; }
.contact-email:hover { color: var(--acid); border-color: var(--acid); }
.contact-code { position: relative; z-index: 1; color: rgba(255,255,255,.07); font: 600 clamp(40px,6vw,82px)/.88 var(--mono); letter-spacing: -.08em; text-align: right; white-space: nowrap; }
.contact-code span { color: rgba(194,255,27,.08); }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: end; max-width: var(--max); margin: 0 auto; padding: 45px 28px; }
footer p { margin: 0; color: #727985; font: 400 10px/1.6 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.footer-meta { display: flex; justify-content: flex-end; gap: 25px; color: #727985; font: 400 10px/1 var(--mono); text-transform: uppercase; }
.footer-meta a:hover { color: var(--acid); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .25; box-shadow: 0 0 2px var(--acid); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .radar-panel { width: min(76vw, 520px); justify-self: center; }
  .section-heading { grid-template-columns: 1fr 1.3fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 400px; }
  .markets { grid-template-columns: 1fr; gap: 60px; }
  .markets-visual { order: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-code { display: none; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; padding: 0 20px; }
  .menu-toggle { display: grid; gap: 5px; width: 36px; height: 36px; padding: 8px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: #fff; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 20px 24px; background: rgba(7,9,13,.97); border-bottom: 1px solid var(--line-soft); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
  .site-nav .nav-cta { margin-top: 12px; padding: 17px; text-align: center; border: 0; }
  .hero { gap: 65px; padding: 122px 20px 90px; }
  h1 { font-size: clamp(51px, 16vw, 76px); }
  .hero-lead { margin-top: 25px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 34px; }
  .radar-panel { width: 100%; }
  .hero-strip { justify-content: flex-start; overflow: hidden; padding-left: 20px; }
  .section { padding: 95px 20px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 25px; }
  .service-card { min-height: 430px; padding: 26px; }
  .service-card ul { right: 26px; bottom: 24px; left: 26px; }
  .markets { gap: 45px; }
  .markets-visual { min-height: 390px; }
  .section-heading.compact, .approach-head { display: block; }
  .approach-head h2 { width: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 215px; }
  .steps li div { margin-top: 58px; }
  .contact { min-height: 620px; padding: 90px 20px; }
  footer { grid-template-columns: 1fr; padding: 38px 20px; }
  .footer-meta { justify-content: space-between; }
}

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