:root {
  --ink: #0b110d;
  --ink-soft: #15221a;
  --paper: #f5f2ea;
  --paper-bright: #fbfaf6;
  --brand: #22c55e;
  --brand-deep: #159447;
  --lime: #7ee7a4;
  --line: rgba(11, 17, 13, 0.14);
  --muted: #667069;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { 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; }
.page-noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.035;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20; height: 92px; display: flex; align-items: center; justify-content: space-between;
  width: min(1380px, calc(100% - 80px)); margin: 0 auto; color: white; border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-logo { display: block; width: 52px; height: 52px; object-fit: cover; border-radius: 3px; box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.brand-copy { display: grid; line-height: 1; gap: 6px; }
.brand-copy strong { font-size: 15px; letter-spacing: .13em; }
.brand-copy small { font: 500 8px/1 var(--mono); letter-spacing: .2em; opacity: .68; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 13px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; opacity: .76; transition: opacity .25s; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 1px; background: var(--brand); transition: width .25s; }
.site-nav > a:hover { opacity: 1; }
.site-nav > a:hover::after { width: 100%; }
.nav-cta { padding: 13px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 2px; transition: .25s; }
.nav-cta span { margin-left: 18px; color: var(--brand); }
.nav-cta:hover { background: white; color: var(--ink); }
.menu-button { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 12px; }
.menu-button > span:not(.sr-only) { display: block; height: 1px; margin: 7px 0; background: white; transition: transform .2s; }

.hero {
  position: relative; min-height: 790px; height: 100svh; max-height: 980px; overflow: hidden; color: white; background: var(--ink);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr); align-items: center; column-gap: clamp(45px, 7vw, 120px);
  padding: 145px max(40px, calc((100vw - 1380px) / 2)) 80px;
}
.hero-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(83,176,116,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(83,176,116,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brand), transparent); opacity: .45; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 450px; height: 450px; right: 5%; top: 12%; background: radial-gradient(circle, rgba(34,197,94,.2), transparent 68%); }
.orb-two { width: 280px; height: 280px; left: 38%; bottom: -18%; background: radial-gradient(circle, rgba(126,231,164,.09), transparent 70%); }
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow, .section-index { font: 500 10px/1.3 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #b8c6bd; margin-bottom: 25px; }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(126,231,164,.09), 0 0 16px rgba(126,231,164,.55); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(126,231,164,0), 0 0 20px rgba(126,231,164,.7); } }
h1 { max-width: 830px; margin: 0; font-size: clamp(54px, 5.3vw, 88px); line-height: .98; letter-spacing: -.065em; font-weight: 700; }
.accent-text { display: block; color: var(--brand); }
.hero-copy > p { max-width: 645px; margin: 30px 0 36px; color: #aebbb2; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 54px; padding: 0 22px; border: 0; border-radius: 2px; font-size: 13px; font-weight: 700; cursor: pointer; }
.button-primary { background: var(--brand); color: var(--ink); box-shadow: 0 10px 35px rgba(34,197,94,.14); transition: background .25s, transform .25s, box-shadow .25s; }
.button-primary:hover { background: var(--lime); transform: translateY(-2px); box-shadow: 0 14px 45px rgba(126,231,164,.16); }
.text-link { display: inline-flex; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link span { color: var(--brand-deep); }
.text-link.light { color: white; border-color: rgba(255,255,255,.35); }
.text-link.light span { color: var(--brand); }

.signal-console { position: relative; z-index: 2; width: min(100%, 580px); justify-self: end; border: 1px solid rgba(34,197,94,.28); background: rgba(10,16,12,.72); box-shadow: 0 28px 90px rgba(0,0,0,.35); backdrop-filter: blur(15px); transform: perspective(1000px) rotateY(-3deg); }
.console-topbar { height: 43px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); color: #829187; font: 400 9px/1 var(--mono); letter-spacing: .08em; }
.console-dots { display: flex; gap: 5px; }
.console-dots i { width: 5px; height: 5px; border-radius: 50%; background: #3e4a42; }
.live-label { justify-self: end; color: var(--lime); }
.console-body { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 330px; }
.radar-wrap { display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.08); }
.radar { position: relative; display: grid; place-items: center; width: 235px; aspect-ratio: 1; border: 1px solid rgba(34,197,94,.32); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 35px, rgba(34,197,94,.1) 36px 37px), linear-gradient(rgba(34,197,94,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(34,197,94,.1) 1px, transparent 1px); background-size: auto, 100% 50%, 50% 100%; overflow: hidden; }
.radar::before, .radar::after { content:""; position:absolute; background: rgba(34,197,94,.15); }
.radar::before { width: 100%; height: 1px; }
.radar::after { width: 1px; height: 100%; }
.radar-sweep { position: absolute; inset: -1px 50% 50% -1px; transform-origin: bottom right; background: conic-gradient(from 90deg at 100% 100%, rgba(34,197,94,.28), transparent 28%); animation: sweep 4s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-center { position: relative; z-index: 2; width: 85px; height: 85px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: rgba(10,16,12,.9); border: 1px solid rgba(34,197,94,.45); box-shadow: 0 0 30px rgba(34,197,94,.13); }
.radar-center b { font: 500 19px/1 var(--mono); color: white; }
.radar-center small { margin-top: 8px; font: 400 8px/1 var(--mono); letter-spacing: .18em; color: var(--brand); }
.node { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.node-one { left: 20%; top: 31%; }.node-two { right: 18%; top: 46%; }.node-three { left: 38%; bottom: 14%; }
.console-stats { display: grid; align-content: center; padding: 25px; }
.console-stats > div { position: relative; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.console-stats > div:last-child { border: 0; }
.console-stats span { display: block; margin-bottom: 9px; font: 400 8px/1 var(--mono); letter-spacing: .15em; color: #6c7b71; }
.console-stats strong { display: block; font: 500 13px/1.2 var(--mono); color: #d6e2d9; }
.console-stats i { position: absolute; right: 0; bottom: 20px; font: normal 400 8px/1 var(--mono); }
.up { color: var(--lime); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.console-log { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 15px 19px; border-top: 1px solid rgba(255,255,255,.08); font: 400 9px/1.5 var(--mono); color: #6f8075; }
.console-log strong { color: var(--brand); font-weight: 400; }
.hero-proof { position: absolute; z-index: 3; left: max(40px, calc((100vw - 1380px) / 2)); right: max(40px, calc((100vw - 1380px) / 2)); bottom: 29px; display: flex; align-items: center; gap: 35px; font: 500 8px/1 var(--mono); letter-spacing: .14em; color: #6c7c72; }
.hero-proof > div { display: flex; gap: 28px; }
.hero-proof b { color: #8d9c92; font-weight: 400; }
.hero-proof b + b::before { content: "/"; margin-right: 28px; color: #3d4d42; }

.section { padding: 120px max(40px, calc((100vw - 1300px) / 2)); }
.section-index { display: block; margin-bottom: 28px; color: var(--brand-deep); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; margin-bottom: 62px; }
h2 { margin: 0; font-size: clamp(42px, 4.2vw, 66px); line-height: 1.02; letter-spacing: -.052em; font-weight: 700; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 445px; padding: 34px 29px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.14); transition: transform .35s, background .35s, box-shadow .35s; }
.service-card:hover { z-index: 2; transform: translateY(-8px); background: var(--paper-bright); box-shadow: 0 22px 60px rgba(11,17,13,.09); }
.service-card.featured { background: var(--ink-soft); color: white; }
.service-card.featured p { color: #93a298; }.service-card.featured li { border-color: rgba(255,255,255,.13); }.service-card.featured .card-number { color: #68796d; }
.service-icon { display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 50px; border: 1px solid rgba(21,148,71,.3); color: var(--brand-deep); background: rgba(34,197,94,.05); }
.service-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon { color: var(--brand); border-color: rgba(34,197,94,.3); }
.card-number { position: absolute; top: 34px; right: 27px; font: 400 9px/1 var(--mono); color: #95a099; }
.service-card h3 { margin: 0 0 17px; font-size: 20px; letter-spacing: -.025em; }
.service-card p { min-height: 78px; margin: 0 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card ul { list-style: none; margin: 0; padding: 0; }
.service-card li { padding: 9px 0; border-top: 1px solid var(--line); font: 500 10px/1.3 var(--mono); color: inherit; }
.service-card li::before { content: "+"; margin-right: 10px; color: var(--brand-deep); }

.approach { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 160px); color: white; background: var(--ink); }
.approach-copy { align-self: center; }
.approach-copy h2 { margin-bottom: 28px; }
.approach-copy > p { max-width: 465px; margin: 0 0 38px; color: #8b9a90; font-size: 14px; line-height: 1.85; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li { position: relative; display: grid; grid-template-columns: 45px 1fr 35px; gap: 25px; align-items: center; min-height: 125px; border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list li > span { font: 400 10px/1 var(--mono); color: var(--brand); }
.process-list h3 { margin: 0 0 7px; font-size: 21px; }
.process-list p { margin: 0; color: #829087; font-size: 12px; line-height: 1.5; }
.process-list i { font-style: normal; font-size: 20px; color: #5d6d62; transition: transform .25s, color .25s; }
.process-list li:hover i { transform: translate(4px, 4px); color: var(--lime); }

.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(70px, 10vw, 150px); align-items: center; background: var(--paper-bright); }
.about-visual { position: relative; min-height: 515px; overflow: hidden; background: var(--ink-soft); }
.signal-lines { position: absolute; inset: 0; display: grid; place-content: center; }
.signal-lines span { position: absolute; left: 50%; top: 50%; aspect-ratio: 1; border: 1px solid rgba(34,197,94,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.signal-lines span:nth-child(1) { width: 85px; }.signal-lines span:nth-child(2) { width: 175px; }.signal-lines span:nth-child(3) { width: 285px; }.signal-lines span:nth-child(4) { width: 405px; }.signal-lines span:nth-child(5) { width: 560px; }
.signal-lines::before, .signal-lines::after { content: ""; position: absolute; left: 50%; top: 50%; background: rgba(34,197,94,.11); transform: translate(-50%,-50%); }
.signal-lines::before { width: 100%; height: 1px; }.signal-lines::after { height: 100%; width: 1px; }
.signal-lines i { position: absolute; width: 9px; height: 9px; border: 2px solid var(--brand); border-radius: 50%; box-shadow: 0 0 18px var(--brand); }
.signal-lines i:nth-of-type(1) { top: 28%; left: 26%; }.signal-lines i:nth-of-type(2) { top: 20%; right: 20%; }.signal-lines i:nth-of-type(3) { bottom: 21%; right: 30%; }
.about-badge { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-content: center; width: 130px; height: 130px; text-align: center; border-radius: 50%; transform: translate(-50%,-50%); background: var(--brand); color: var(--ink); box-shadow: 0 0 0 16px rgba(34,197,94,.05), 0 0 70px rgba(34,197,94,.18); }
.about-badge strong { font: 700 13px/1.35 var(--mono); letter-spacing: .08em; }.about-badge span { margin-top: 8px; color: var(--ink); font-size: 8px; }
.about-copy .lead { margin: 0 0 20px; color: var(--ink); font-size: 20px; line-height: 1.55; font-weight: 600; }
.about-copy > p:not(.lead) { margin: 0 0 40px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.about-copy h2 { margin-bottom: 28px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.values > div { padding-top: 16px; border-top: 2px solid var(--brand-deep); }
.values strong, .values span { display: block; }.values strong { font-size: 13px; }.values span { margin-top: 7px; color: var(--muted); font-size: 10px; }

.contact { color: white; background: #101a13; }
.contact-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 9vw, 145px); }
.contact-copy { align-self: center; }
.contact-copy h2 { margin-bottom: 27px; }
.contact-copy > p { max-width: 440px; margin: 0 0 35px; color: #94a398; line-height: 1.75; }
.availability { display: flex; align-items: center; gap: 12px; color: #b8c5bc; font: 400 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-email { display: inline-flex; align-items: center; gap: 18px; margin-top: 24px; padding-bottom: 7px; border-bottom: 1px solid rgba(34,197,94,.4); color: var(--brand); font: 500 13px/1.3 var(--mono); transition: color .2s, border-color .2s; }
.contact-email:hover { color: var(--lime); border-color: var(--lime); }
.contact-form { display: grid; gap: 20px; padding: clamp(28px, 4vw, 50px); color: var(--ink); background: var(--paper-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { font: 500 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(11,17,13,.17); border-radius: 0; outline: 0; background: transparent; color: var(--ink); padding: 14px 15px; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand-deep); box-shadow: 0 0 0 3px rgba(21,148,71,.08); }
.contact-form .button { justify-self: start; margin-top: 2px; }
.form-note { margin: -5px 0 0; color: #7b8780; font-size: 10px; line-height: 1.5; }
.form-note.success { color: #167e58; }

.site-footer { padding: 65px max(40px, calc((100vw - 1380px) / 2)) 24px; color: white; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 50px; padding-bottom: 55px; }
.footer-top p { margin: 0; color: #77887d; font-size: 12px; line-height: 1.7; }
.footer-email { display: inline-block; margin-top: 9px; color: var(--brand); }
.footer-email:hover { color: var(--lime); }
.back-to-top { padding-bottom: 5px; border-bottom: 1px solid #647469; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #5e6f64; font: 400 8px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: .1s; }.delay-two { transition-delay: .2s; }

@media (max-width: 1100px) {
  .site-header { width: calc(100% - 48px); }
  .hero { grid-template-columns: 1fr .78fr; padding-left: 32px; padding-right: 32px; column-gap: 35px; }
  .signal-console { transform: none; }
  .console-body { grid-template-columns: 1fr; }.console-stats { display: none; }.radar-wrap { border-right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 390px; }
}

@media (max-width: 780px) {
  .site-header { height: 76px; width: calc(100% - 36px); }
  .site-header .brand-logo { width: 44px; height: 44px; }
  .site-header .brand-copy strong { font-size: 12px; }
  .site-header .brand-copy small { font-size: 6px; }
  .menu-button { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 30px; background: rgba(10,16,12,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; font-size: 20px; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav .nav-cta { margin-top: 10px; font-size: 14px; }
  .menu-button.active > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .hero { height: auto; min-height: 100svh; grid-template-columns: 1fr; padding: 125px 22px 95px; }
  .hero-copy { align-self: end; }
  h1 { font-size: clamp(48px, 13.5vw, 72px); }
  .hero-copy > p { margin: 24px 0 30px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .signal-console { display: none; }
  .hero-proof { position: relative; left: auto; right: auto; bottom: auto; margin-top: 75px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-proof > div { flex-wrap: wrap; gap: 10px 18px; }.hero-proof b + b::before { margin-right: 18px; }
  .section { padding: 82px 22px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 43px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 370px; }
  .approach, .about, .contact-inner { grid-template-columns: 1fr; }
  .approach { gap: 60px; }.process-list li { min-height: 115px; gap: 16px; }
  .about { gap: 55px; }.about-visual { min-height: 390px; }.signal-lines span:nth-child(5) { width: 450px; }
  .values { gap: 8px; }.values span { line-height: 1.4; }
  .contact-inner { gap: 50px; }.contact-form { margin: 0 -6px; }.field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }.back-to-top { justify-self: start; }.footer-bottom { gap: 20px; }
}

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