:root {
  --green: #58e600;
  --green-dark: #35a900;
  --green-soft: rgba(88, 230, 0, 0.16);
  --black: #030503;
  --panel: #080b08;
  --panel-2: #0d110d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8faf8;
  --muted: #b7bcb7;
  --container: 1440px;
  --radius: 22px;
  --header-h: 132px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.page-shell { min-height: 100vh; background: #020402; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(0,0,0,.98), rgba(0,0,0,.87));
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 230px; display: flex; align-items: center; align-self: flex-start; margin-top: 9px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(36px, 5vw, 74px); height: 100%; }
.main-nav a { position: relative; padding: 52px 0 28px; color: #f4f4f4; font-size: 18px; font-weight: 500; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 21px; width: 0; height: 3px; background: var(--green); transform: translateX(-50%); transition: width .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a:hover::after, .main-nav a.active::after { width: 64px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: white; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 900px;
  padding-top: calc(var(--header-h) + 70px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #010201 0%, #020402 36%, rgba(2,4,2,.95) 48%, rgba(2,4,2,.40) 76%, rgba(2,4,2,.04) 100%),
    radial-gradient(circle at 77% 32%, rgba(70,180,0,.12), transparent 33%),
    #020402;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 135px auto 0 0;
  width: 410px;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(255,255,255,.12) 25%, rgba(255,255,255,.12) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.12) 75%, rgba(255,255,255,.12) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(255,255,255,.12) 25%, rgba(255,255,255,.12) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.12) 75%, rgba(255,255,255,.12) 76%, transparent 77%);
  background-size: 56px 98px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent);
  mask-image: linear-gradient(90deg, #000, transparent);
}
.hero::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: 160px;
  height: 210px;
  background: linear-gradient(7deg, transparent 35%, rgba(88,230,0,.12) 36%, rgba(88,230,0,.12) 37%, transparent 38%);
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(90px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 160px; left: -170px; top: 355px; background: rgba(88,230,0,.18); transform: rotate(-14deg); }
.hero-glow-two { width: 380px; height: 180px; right: -160px; top: 180px; background: rgba(88,230,0,.12); }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 43% 57%; align-items: center; min-height: 555px; }
.hero-content { padding: 24px 0 80px; position: relative; z-index: 4; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(64px, 5.65vw, 108px);
  font-style: italic;
  font-weight: 800;
  line-height: .79;
  letter-spacing: -.035em;
  text-transform: none;
  color: #f3f5f3;
  text-shadow: 0 4px 0 rgba(255,255,255,.06), 0 12px 30px rgba(0,0,0,.5);
}
.hero h1 span, .hero h1 strong { color: var(--green); font-weight: 800; }
.hero h1 strong { display: inline-block; margin-top: 10px; font-size: 1.08em; }
.hero-copy { max-width: 580px; margin: 28px 0 0; color: #d0d4d0; font-size: clamp(16px, 1.25vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.button { min-height: 57px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border-radius: 9px; border: 1px solid transparent; font-size: 17px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 25px; height: 25px; fill: currentColor; flex: 0 0 auto; }
.button-primary { background: var(--green); color: #061002; box-shadow: 0 15px 38px rgba(88,230,0,.16); }
.button-primary:hover { background: #69f30d; box-shadow: 0 17px 48px rgba(88,230,0,.28); }
.button-outline { border-color: var(--green); background: rgba(5,8,5,.58); color: #fff; }
.button-outline:hover { background: var(--green-soft); }
.button-large { min-height: 64px; padding-inline: 30px; }
.hero-visual { position: absolute; z-index: 2; top: 0px; right: 0; width: min(63vw, 1060px); height: 610px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 100%); }
.hero-visual::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0) 62%, rgba(0,0,0,.35)); pointer-events:none; }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.05); }

.highlights-wrap { position: relative; z-index: 6; margin-top: 15px; padding-bottom: 38px; }
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 19px; background: linear-gradient(180deg, rgba(8,11,8,.96), rgba(4,6,4,.98)); box-shadow: 0 24px 80px rgba(0,0,0,.4); }
.highlight { min-height: 185px; display: grid; grid-template-columns: 106px 1fr; align-items: center; gap: 22px; padding: 28px 36px; position: relative; }
.highlight:not(:last-child)::after { content:""; position:absolute; top:36px; right:0; bottom:36px; width:1px; background: linear-gradient(transparent, var(--green), transparent); }
.highlight-icon { width: 92px; height: 92px; display: grid; place-items: center; color: var(--green); }
.highlight-icon svg { width: 82px; height: 82px; fill: var(--green); stroke: var(--green); }
.clock-icon { border: 7px dashed var(--green); border-radius: 50%; font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 41px; transform: rotate(-4deg); }
.clock-icon span { transform: rotate(4deg); }
.highlight h2 { margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: 30px; line-height: .98; }
.highlight h2 em { display: block; color: var(--green); font-style: normal; }
.highlight p { margin: 14px 0 0; color: #b9beb9; font-size: 15px; line-height: 1.55; }

.section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2, .coverage h2, .contact h2 { margin: 0; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(42px, 5vw, 72px); line-height: .95; letter-spacing: -.02em; }
.section-heading > p:last-child, .coverage p, .contact p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.services { background: linear-gradient(180deg, #050805, #020402); border-top: 1px solid rgba(255,255,255,.05); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 255px; position: relative; overflow: hidden; padding: 34px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(88,230,0,.45); }
.service-card::after { content:""; position:absolute; width:150px; height:150px; right:-70px; bottom:-70px; border-radius:50%; background:rgba(88,230,0,.12); filter:blur(25px); }
.service-number { color: var(--green); font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 800; }
.service-card h3 { margin: 65px 0 12px; font-family: "Barlow Condensed", sans-serif; font-size: 34px; }
.service-card p { margin:0; max-width:360px; color:var(--muted); line-height:1.65; }
.coverage { background: radial-gradient(circle at 80% 50%, rgba(88,230,0,.09), transparent 36%), #070a07; }
.coverage-grid { display:grid; grid-template-columns: 1fr 1fr; gap:80px; align-items:center; }
.coverage-list { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.coverage-list span { padding:20px 22px; border:1px solid rgba(88,230,0,.22); border-radius:14px; background:rgba(88,230,0,.05); color:#e8ece8; font-weight:600; }
.contact { background:#020402; }
.contact-card { display:flex; justify-content:space-between; align-items:center; gap:60px; padding:58px 64px; border:1px solid rgba(88,230,0,.32); border-radius:26px; background:linear-gradient(135deg, rgba(88,230,0,.12), rgba(255,255,255,.03) 42%, rgba(255,255,255,.01)); box-shadow:inset 0 1px 0 rgba(255,255,255,.06); }
.contact-card > div { max-width:780px; }
.site-footer { padding:28px 0; border-top:1px solid rgba(255,255,255,.09); background:#000; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.footer-inner img { width:155px; }
.footer-inner p { color:#8f958f; font-size:14px; }

@media (max-width: 1180px) {
  :root { --header-h: 112px; }
  .brand { width: 215px; }
  .hero { min-height: 870px; padding-top: calc(var(--header-h) + 40px); }
  .hero-grid { grid-template-columns: 52% 48%; min-height: 560px; }
  .hero-visual { top: 150px; right: -175px; width: 780px; height: 520px; opacity: .87; }
  .hero-content { padding-bottom: 76px; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight:last-child { grid-column: 1 / -1; }
  .highlight:nth-child(2)::after { display:none; }
  .highlight:last-child::before { content:""; position:absolute; top:0; left:36px; right:36px; height:1px; background:linear-gradient(90deg,transparent,var(--green),transparent); }
}

@media (max-width: 820px) {
  :root { --header-h: 92px; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { position: fixed; height: var(--header-h); backdrop-filter: blur(18px); }
  .brand { width: 172px; }
  .menu-toggle { display:block; }
  .main-nav { position:absolute; top:calc(100% + 1px); left:0; right:0; height:auto; display:grid; gap:0; padding:10px 16px 18px; background:rgba(0,0,0,.96); border-bottom:1px solid var(--line); transform:translateY(-14px); opacity:0; visibility:hidden; transition:.25s ease; }
  .main-nav.open { transform:translateY(0); opacity:1; visibility:visible; }
  .main-nav a { padding:15px 8px; border-bottom:1px solid rgba(255,255,255,.06); }
  .main-nav a::after { display:none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .hero { min-height:auto; padding-top:calc(var(--header-h) + 48px); background:linear-gradient(180deg,#020402 0%,#020402 57%,#060a06 100%); }
  .hero::after { bottom:240px; }
  .hero-grid { display:flex; flex-direction:column; min-height:auto; }
  .hero-content { width:100%; padding:10px 0 20px; }
  .hero h1 { font-size:clamp(55px,17vw,82px); line-height:.82; }
  .hero-copy { max-width:620px; }
  .hero-actions { gap:12px; }
  .button { min-height:54px; font-size:15px; padding-inline:18px; }
  .hero-visual { position:relative; inset:auto; width:calc(100% + 32px); height:auto; margin:12px -16px -16px; -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 10%,#000 93%,transparent 100%); mask-image:linear-gradient(180deg,transparent 0%,#000 10%,#000 93%,transparent 100%); }
  .hero-visual img { aspect-ratio:1.7/1; height:auto; object-position:57% center; }
  .highlights-wrap { margin-top:0; }
  .highlights { grid-template-columns:1fr; }
  .highlight { min-height:156px; grid-template-columns:82px 1fr; padding:25px 24px; }
  .highlight:not(:last-child)::after { top:auto; left:24px; right:24px; bottom:0; width:auto; height:1px; background:linear-gradient(90deg,transparent,var(--green),transparent); }
  .highlight:nth-child(2)::after { display:block; }
  .highlight:last-child { grid-column:auto; }
  .highlight:last-child::before { display:none; }
  .highlight-icon { width:72px; height:72px; }
  .highlight-icon svg { width:68px; height:68px; }
  .clock-icon { border-width:5px; font-size:32px; }
  .highlight h2 { font-size:28px; }
  .section { padding:76px 0; }
  .service-grid, .coverage-grid { grid-template-columns:1fr; }
  .coverage-grid { gap:38px; }
  .coverage-list { grid-template-columns:1fr; }
  .contact-card { flex-direction:column; align-items:flex-start; padding:40px 28px; }
  .footer-inner { flex-direction:column; text-align:center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand { width: 145px; }
  .hero { padding-top:calc(var(--header-h) + 32px); }
  .eyebrow { font-size:11px; }
  .hero h1 { font-size:clamp(49px,16vw,70px); }
  .hero h1 strong { margin-top:7px; }
  .hero-copy { margin-top:22px; font-size:15px; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .button { width:100%; }
  .hero-visual { width:calc(100% + 24px); margin-inline:-12px; }
  .hero-visual img { aspect-ratio:1.35/1; object-position:58% center; }
  .highlight { grid-template-columns:64px 1fr; gap:15px; padding:22px 18px; }
  .highlight-icon { width:58px; height:58px; }
  .highlight-icon svg { width:56px; height:56px; }
  .clock-icon { border-width:4px; font-size:27px; }
  .highlight h2 { font-size:25px; }
  .highlight p { font-size:13px; }
  .service-card { min-height:225px; padding:27px; }
  .service-card h3 { margin-top:48px; }
  .contact-card { padding:34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
}
