:root {
  --bg: #f4f7f6;
  --paper: #ffffff;
  --ink: #11161e;
  --muted: #68727d;
  --green: #a8ff1a;
  --green-2: #7dde12;
  --green-3: #55b900;
  --green-soft: rgba(168, 255, 26, .13);
  --dark: #0b1117;
  --line: rgba(17, 22, 30, .11);
  --line-light: rgba(255, 255, 255, .12);
  --shadow-sm: 0 12px 34px rgba(17, 22, 30, .08);
  --shadow-md: 0 24px 70px rgba(17, 22, 30, .12);
  --shadow-lg: 0 40px 110px rgba(0, 0, 0, .22);
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 82px;
  --display: "Orbitron", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 6%, rgba(168,255,26,.07), transparent 24rem),
    radial-gradient(circle at 4% 55%, rgba(125,222,18,.045), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 3px solid rgba(125,222,18,.58); outline-offset: 4px; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section { position: relative; padding: 118px 0; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-160%); padding: 11px 16px; border-radius: 10px;
  background: var(--ink); color: #fff; font-weight: 700; transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 1001; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  box-shadow: 0 0 16px rgba(168,255,26,.45);
}
.cursor-glow {
  position: fixed; z-index: -1; width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none; opacity: .22; filter: blur(8px);
  background: radial-gradient(circle, rgba(168,255,26,.17), transparent 68%);
  transform: translate(-50%, -50%); transition: opacity .2s ease;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  background: rgba(247,249,248,.88); border-color: var(--line);
  box-shadow: 0 10px 35px rgba(17,22,30,.07);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.site-brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-wordmark { display: grid; line-height: 1; gap: 5px; }
.brand-wordmark strong { font-family: var(--display); font-size: 18px; letter-spacing: .04em; white-space: nowrap; }
.brand-wordmark strong em { color: var(--green-3); font-style: normal; }
.brand-wordmark small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a:not(.nav-cta) {
  position: relative; color: #39434d; font-size: 13px; font-weight: 700; transition: color .2s ease;
}
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px;
  height: 2px; background: var(--green-2); transition: right .25s ease;
}
.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta).active { color: var(--ink); }
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).active::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 17px;
  border-radius: 12px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 800;
  box-shadow: 0 10px 24px rgba(17,22,30,.16); transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: #202b36; transform: translateY(-2px); }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none; width: 45px; height: 45px; padding: 0; border: 1px solid var(--line);
  border-radius: 13px; background: rgba(255,255,255,.8); align-items: center;
  justify-content: center; flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Shared */
.section-heading { max-width: 790px; margin-bottom: 58px; }
.section-heading .section-index,
.section-index {
  display: inline-flex; align-items: center; gap: 10px; color: var(--green-3);
  font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .17em;
}
.section-heading .section-index::before,
.section-index::before { content: ""; width: 34px; height: 2px; background: var(--green-2); }
.section-heading h2 {
  margin: 17px 0 19px; max-width: 900px; font-size: clamp(38px, 5vw, 67px);
  line-height: 1.06; letter-spacing: -.055em;
}
.section-heading h2 span { color: var(--green-3); }
.section-heading p { margin: 0; max-width: 710px; color: var(--muted); font-size: 17px; line-height: 1.76; }
.section-heading-light h2 { color: #f4f8f5; }
.section-heading-light h2 span { color: var(--green); }
.section-heading-light p { color: #9ca9a3; }
.section-heading-light .section-index { color: var(--green); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
  padding: 0 20px; border: 0; border-radius: 14px; font-weight: 800; font-size: 14px;
  cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button svg { width: 18px; height: 18px; }
.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2)); color: var(--ink);
  box-shadow: 0 16px 36px rgba(104,200,0,.22);
}
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 45px rgba(104,200,0,.3); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.75); color: var(--ink); }
.button-secondary:hover { transform: translateY(-3px); border-color: rgba(125,222,18,.58); background: #fff; }
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { position: relative; min-height: 830px; padding: calc(var(--header-h) + 88px) 0 92px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 63%, rgba(168,255,26,.035) 63% 63.2%, transparent 63.2%),
    radial-gradient(circle at 82% 38%, rgba(168,255,26,.11), transparent 28rem);
}
.hero-grid-lines {
  position: absolute; right: -10%; top: 8%; width: 58%; height: 78%; opacity: .28; transform: skewX(-12deg);
  background-image: linear-gradient(rgba(17,22,30,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(17,22,30,.06) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: linear-gradient(90deg, transparent, black 30%, black 75%, transparent);
}
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.hero-copy { max-width: 650px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; min-height: 34px; padding: 0 13px;
  border: 1px solid rgba(125,222,18,.32); border-radius: 99px; background: rgba(168,255,26,.07);
  color: #3d5a25; font-size: 10px; font-weight: 800; letter-spacing: .13em;
}
.eyebrow b { color: var(--green-3); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-2);
  box-shadow: 0 0 0 5px rgba(125,222,18,.13), 0 0 18px rgba(125,222,18,.6);
}
.hero h1 { margin: 27px 0 25px; font-size: clamp(50px, 6.3vw, 86px); line-height: .98; letter-spacing: -.072em; }
.hero h1 span { color: var(--green-3); }
.hero-lead { max-width: 625px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-badges { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 38px; max-width: 610px; }
.hero-badges > div {
  display: flex; align-items: center; gap: 12px; padding: 14px 15px; border: 1px solid var(--line);
  border-radius: 16px; background: rgba(255,255,255,.65); box-shadow: 0 8px 25px rgba(17,22,30,.035);
  backdrop-filter: blur(10px);
}
.hero-badges svg { flex: 0 0 auto; width: 23px; height: 23px; color: var(--green-3); }
.hero-badges span { display: grid; gap: 3px; }
.hero-badges strong { font-size: 12px; }
.hero-badges small { color: var(--muted); font-size: 10px; }

.hero-visual { position: relative; min-height: 610px; transform-style: preserve-3d; perspective: 1200px; transition: transform .18s ease-out; }
.hero-light {
  position: absolute; inset: 24% 11% 10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,255,26,.27), rgba(125,222,18,.06) 42%, transparent 70%);
  filter: blur(18px);
}
.hero-orbit { position: absolute; border: 1px solid rgba(125,222,18,.18); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 510px; height: 510px; top: 66px; left: 76px; animation: spin 24s linear infinite; }
.orbit-two { width: 390px; height: 390px; top: 126px; left: 136px; animation: spinReverse 18s linear infinite; }
.hero-orbit::before {
  content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 22px var(--green); top: 12%; left: 16%;
}
.hero-orbit::after {
  content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #65726d; bottom: 10%; right: 18%;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

.core-panel {
  position: absolute; top: 112px; left: 83px; width: 430px; min-height: 320px; padding: 20px;
  border: 1px solid rgba(168,255,26,.2); border-radius: 30px;
  background: linear-gradient(145deg, rgba(19,30,38,.98), rgba(7,12,16,.98));
  color: #fff; box-shadow: var(--shadow-lg); transform: rotate(-3deg) translateZ(20px); overflow: hidden;
}
.core-panel::after {
  content: ""; position: absolute; right: -80px; bottom: -110px; width: 260px; height: 260px;
  border-radius: 50%; border: 40px solid rgba(168,255,26,.06);
}
.core-topline {
  position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center;
  color: #7f8d86; font-size: 8px; font-weight: 800; letter-spacing: .16em;
}
.system-live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.system-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.core-brand { position: relative; z-index: 1; display: grid; grid-template-columns: 145px 1fr; gap: 20px; align-items: center; margin-top: 32px; }
.core-brand img { width: 145px; filter: drop-shadow(0 18px 28px rgba(0,0,0,.42)); }
.core-brand div { display: grid; gap: 9px; }
.core-brand small { color: var(--green); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.core-brand strong { font-family: var(--display); font-size: 17px; line-height: 1.5; letter-spacing: -.02em; }
.core-bars { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; margin-top: 31px; }
.core-bars i {
  height: 52px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  background: linear-gradient(to top, rgba(168,255,26,.27) var(--bar), rgba(255,255,255,.035) var(--bar));
}
.core-bars i:nth-child(1) { --bar: 42%; }
.core-bars i:nth-child(2) { --bar: 68%; }
.core-bars i:nth-child(3) { --bar: 52%; }
.core-bars i:nth-child(4) { --bar: 84%; }
.core-bars i:nth-child(5) { --bar: 61%; }
.float-panel {
  position: absolute; z-index: 3; width: 255px; padding: 17px 18px; border-radius: 20px;
  background: rgba(255,255,255,.95); border: 1px solid rgba(17,22,30,.1); box-shadow: var(--shadow-md);
}
.float-panel img { width: 100%; height: 58px; object-fit: contain; object-position: left center; margin: 8px 0 4px; }
.float-panel p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.panel-kicker { color: var(--green-3); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.float-digital { top: 24px; right: -14px; transform: rotate(4deg) translateZ(50px); }
.float-supply { right: 8px; bottom: 41px; transform: rotate(-2deg) translateZ(55px); }
.float-stat {
  position: absolute; z-index: 4; display: grid; min-width: 122px; padding: 13px 14px;
  border-radius: 16px; border: 1px solid rgba(168,255,26,.19); background: rgba(13,19,24,.94);
  color: #fff; box-shadow: 0 18px 45px rgba(0,0,0,.24);
}
.float-stat strong { color: var(--green); font-family: var(--display); font-size: 23px; }
.float-stat span { color: #9eaaa5; font-size: 9px; }
.stat-entities { left: 6px; bottom: 78px; transform: rotate(-5deg); }
.stat-capabilities { left: 4px; top: 54px; transform: rotate(3deg); }

.capability-rail { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.56); }
.rail-track {
  display: flex; align-items: center; gap: 30px; width: max-content; min-height: 58px;
  animation: rail 34s linear infinite; color: #667169; font-family: var(--display);
  font-size: 9px; font-weight: 700; letter-spacing: .14em; white-space: nowrap;
}
.rail-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 10px rgba(125,222,18,.45); }
@keyframes rail { to { transform: translateX(-50%); } }

/* Company */
.company-section { background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.72)); }
.company-layout { display: grid; grid-template-columns: .96fr 1.04fr; gap: 26px; align-items: stretch; }
.company-logo-card {
  position: relative; display: grid; place-items: center; min-height: 475px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm);
}
.logo-card-grid {
  position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(17,22,30,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(17,22,30,.05) 1px, transparent 1px);
  background-size: 32px 32px; mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
}
.company-logo-card::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,255,26,.18), transparent 66%);
}
.company-logo-card > img { position: relative; z-index: 1; width: min(80%,470px); max-height: 285px; object-fit: contain; }
.company-signature {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; padding-top: 17px; border-top: 1px solid var(--line);
}
.company-signature span { font-family: var(--display); font-size: 11px; font-weight: 800; }
.company-signature small { color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.entity-stack { display: grid; gap: 18px; }
.entity-card {
  position: relative; min-height: 226px; padding: 28px; display: grid; grid-template-columns: 54px 1fr;
  gap: 20px; align-content: start; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.82); box-shadow: 0 14px 42px rgba(17,22,30,.05); overflow: hidden;
}
.entity-card::after {
  content: ""; position: absolute; right: -60px; bottom: -75px; width: 180px; height: 180px;
  border: 28px solid rgba(168,255,26,.06); border-radius: 50%;
}
.entity-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--green-soft); color: var(--green-3); }
.entity-icon svg { width: 28px; height: 28px; }
.entity-region { color: var(--green-3); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.entity-card h3 { margin: 7px 0 9px; font-size: 25px; letter-spacing: -.03em; }
.entity-card p { max-width: 470px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.entity-status {
  position: absolute; left: 102px; bottom: 23px; display: inline-flex; align-items: center; gap: 7px;
  color: #53615a; font-size: 9px; font-weight: 800; letter-spacing: .08em;
}
.entity-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 4px rgba(125,222,18,.13); }
.fact-grid {
  display: grid; grid-template-columns: repeat(4,1fr); margin-top: 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.76); overflow: hidden;
}
.fact-grid > div { min-height: 124px; padding: 24px; display: grid; align-content: center; gap: 8px; border-right: 1px solid var(--line); }
.fact-grid > div:last-child { border-right: 0; }
.fact-grid strong { font-family: var(--display); color: var(--ink); font-size: 30px; line-height: 1; }
.fact-grid span { color: var(--muted); font-size: 11px; font-weight: 700; }

/* Divisions */
.divisions-section { overflow: hidden; background: var(--dark); }
.divisions-section::before {
  content: ""; position: absolute; inset: 0; opacity: .7;
  background-image:
    radial-gradient(circle at 75% 18%, rgba(168,255,26,.12), transparent 25rem),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.divisions-section .container { position: relative; z-index: 1; }
.division-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.division-card {
  position: relative; min-height: 510px; padding: 34px; border: 1px solid var(--line-light);
  border-radius: 28px; background: linear-gradient(160deg, rgba(25,36,45,.94), rgba(11,17,23,.96));
  color: #fff; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.18);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.division-card:hover { border-color: rgba(168,255,26,.35); box-shadow: 0 36px 90px rgba(0,0,0,.32); transform: translateY(-5px); }
.division-card::before {
  content: ""; position: absolute; right: -100px; top: -100px; width: 330px; height: 330px;
  border-radius: 50%; background: radial-gradient(circle, rgba(168,255,26,.15), transparent 67%);
}
.division-card::after {
  content: ""; position: absolute; right: -25%; bottom: 52px; width: 75%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), transparent); transform: rotate(-32deg);
}
.division-number { position: absolute; right: 27px; top: 25px; color: rgba(255,255,255,.12); font-family: var(--display); font-size: 57px; font-weight: 800; }
.division-logo-wrap { position: relative; z-index: 1; display: flex; align-items: center; height: 90px; margin-bottom: 20px; padding: 13px 18px; border-radius: 16px; background: rgba(255,255,255,.96); }
.division-logo-wrap img { width: min(100%,410px); height: 65px; object-fit: contain; object-position: left center; }
.division-card h3 { position: relative; z-index: 1; margin: 0 0 12px; font-size: 31px; letter-spacing: -.04em; }
.division-card > p { position: relative; z-index: 1; max-width: 520px; margin: 0; color: #a8b4ae; font-size: 14px; line-height: 1.75; }
.division-card ul { position: relative; z-index: 1; display: grid; gap: 12px; margin: 27px 0 33px; padding: 0; list-style: none; color: #d7e0dc; font-size: 12px; }
.division-card li { display: flex; align-items: center; gap: 10px; }
.division-card li svg { width: 17px; height: 17px; color: var(--green); }
.division-card > a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 800; }
.division-card > a svg { width: 16px; height: 16px; transition: transform .2s ease; }
.division-card > a:hover svg { transform: translateX(4px); }

/* Digital services */
.digital-section { background: #f8faf9; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card {
  position: relative; min-height: 278px; padding: 25px; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 20px; background: #fff;
  box-shadow: 0 12px 34px rgba(17,22,30,.045); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: ""; position: absolute; inset: auto -90px -115px auto; width: 210px; height: 210px;
  border-radius: 50%; border: 32px solid rgba(168,255,26,.055); transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(125,222,18,.5); box-shadow: 0 24px 54px rgba(17,22,30,.09); }
.service-card:hover::after { transform: scale(1.08); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--green-soft); color: var(--green-3); }
.service-icon svg { width: 25px; height: 25px; }
.service-no { position: absolute; right: 22px; top: 22px; color: #b4bcb8; font-family: var(--display); font-size: 10px; letter-spacing: .13em; }
.service-card h3 { position: relative; z-index: 1; margin: 23px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.68; }
.service-card button {
  position: relative; z-index: 1; margin: auto 0 0; padding: 18px 0 0; display: inline-flex;
  align-items: center; gap: 7px; width: fit-content; border: 0; background: none;
  color: #4c5a53; font-size: 10px; font-weight: 800; cursor: pointer;
}
.service-card button svg { width: 14px; height: 14px; color: var(--green-3); transition: transform .2s ease; }
.service-card button:hover { color: var(--ink); }
.service-card button:hover svg { transform: translateX(4px); }
.service-card-wide { grid-column: span 3; min-height: 180px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 24px; }
.service-card-wide h3 { margin: 0 0 8px; }
.service-card-wide button { margin: 0; padding: 0; }

/* Hardware supply */
.supply-section { background: linear-gradient(180deg, #eff3f1, #f8faf9); overflow: hidden; }
.supply-layout { display: grid; grid-template-columns: .94fr 1.06fr; gap: 75px; align-items: center; }
.supply-copy h2 { margin: 17px 0 20px; font-size: clamp(39px,4.7vw,64px); line-height: 1.06; letter-spacing: -.055em; }
.supply-copy h2 span { color: var(--green-3); }
.supply-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.supply-categories { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 31px 0; }
.supply-categories article {
  display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px;
  border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.72);
  transition: transform .2s ease, border-color .2s ease;
}
.supply-categories article:hover { transform: translateY(-3px); border-color: rgba(125,222,18,.45); }
.supply-categories article > svg { width: 26px; height: 26px; color: var(--green-3); }
.supply-categories h3 { margin: 0 0 5px; font-size: 13px; }
.supply-categories p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.supply-stage { position: relative; min-height: 615px; perspective: 1100px; }
.stage-grid {
  position: absolute; inset: 4% 2% 8%; border-radius: 50%;
  background-image: linear-gradient(rgba(17,22,30,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17,22,30,.07) 1px, transparent 1px);
  background-size: 32px 32px; transform: rotateX(68deg) rotateZ(-10deg); opacity: .6;
  mask-image: radial-gradient(circle, black, transparent 72%);
}
.supply-stage::before {
  content: ""; position: absolute; inset: 17% 8% 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,255,26,.25), transparent 66%); filter: blur(20px);
}
.supply-box { position: absolute; display: grid; align-content: center; border-radius: 20px; background: linear-gradient(145deg,#172129,#0b1116); color: #fff; box-shadow: var(--shadow-lg); }
.box-large { left: 60px; top: 108px; width: 360px; height: 285px; padding: 30px; transform: rotateY(-13deg) rotateX(7deg) rotateZ(-4deg); border: 1px solid rgba(168,255,26,.2); }
.box-large::before { content: ""; position: absolute; top: 0; bottom: 0; right: 72px; width: 20px; background: linear-gradient(var(--green),var(--green-3)); opacity: .85; }
.box-large::after { content: ""; position: absolute; inset: auto 30px 26px; height: 1px; background: linear-gradient(90deg,var(--green),transparent); }
.box-large img { width: 90px; margin-bottom: 16px; }
.box-large span { font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: .04em; }
.box-large small { margin-top: 6px; color: #8f9d96; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.box-small { right: 53px; top: 265px; width: 170px; height: 145px; padding: 24px; transform: rotateY(12deg) rotateX(-4deg) rotateZ(7deg); border: 1px solid rgba(255,255,255,.12); }
.box-small svg { width: 37px; height: 37px; color: var(--green); margin-bottom: 12px; }
.box-small span { color: #dfe7e3; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.supply-label { position: absolute; z-index: 3; min-width: 205px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }
.supply-label small { display: block; color: var(--green-3); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.supply-label strong { display: block; margin-top: 5px; font-size: 11px; }
.label-top { right: 9px; top: 82px; transform: rotate(3deg); }
.label-bottom { left: 5px; bottom: 86px; transform: rotate(-3deg); }
.supply-route { position: absolute; left: 102px; right: 80px; bottom: 37px; display: flex; justify-content: space-between; }
.supply-route::before { content: ""; position: absolute; left: 8px; right: 8px; top: 4px; height: 1px; background: rgba(125,222,18,.45); }
.supply-route i { position: relative; z-index: 1; width: 9px; height: 9px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 6px rgba(125,222,18,.1); }

/* Values */
.value-section { background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.value-grid article { position: relative; min-height: 285px; padding: 28px; border-right: 1px solid var(--line); background: #fff; transition: background .2s ease; }
.value-grid article:last-child { border-right: 0; }
.value-grid article:hover { background: #f8faf8; }
.value-grid article > span { color: var(--green-3); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.value-grid h3 { margin: 60px 0 12px; font-size: 20px; line-height: 1.25; }
.value-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.value-grid article::after { content: ""; position: absolute; top: 62px; left: 28px; width: 42px; height: 2px; background: var(--green-2); }

/* Process */
.process-section { background: var(--dark); overflow: hidden; }
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 90%,rgba(168,255,26,.1),transparent 25rem), linear-gradient(135deg,transparent 0 70%,rgba(168,255,26,.035) 70%);
}
.process-section .container { position: relative; z-index: 1; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-grid article {
  position: relative; min-height: 295px; padding: 25px; border: 1px solid var(--line-light);
  border-radius: 20px; background: linear-gradient(150deg,rgba(25,37,46,.75),rgba(10,16,21,.82));
  color: #fff; overflow: hidden;
}
.process-grid article:not(:last-child)::after {
  content: ""; position: absolute; right: -13px; top: 55px; width: 24px; height: 2px;
  background: var(--green); box-shadow: 0 0 10px rgba(168,255,26,.45);
}
.step-number { color: rgba(255,255,255,.2); font-family: var(--display); font-size: 34px; font-weight: 800; }
.process-grid article > svg { width: 31px; height: 31px; margin-top: 34px; color: var(--green); }
.process-grid h3 { margin: 18px 0 10px; font-size: 20px; }
.process-grid p { margin: 0; color: #95a39c; font-size: 11px; line-height: 1.7; }

/* Contact */
.contact-section { background: linear-gradient(180deg,#eff3f1,#f8faf9); }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 55px; align-items: start; }
.contact-copy h2 { margin: 17px 0 20px; font-size: clamp(42px,5vw,66px); line-height: 1.05; letter-spacing: -.06em; }
.contact-copy h2 span { color: var(--green-3); }
.contact-copy > p { margin: 0; max-width: 540px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.contact-list { display: grid; gap: 10px; margin-top: 31px; }
.contact-list a {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 15px; background: rgba(255,255,255,.72); transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-list a:hover { transform: translateX(5px); border-color: rgba(125,222,18,.47); background: #fff; }
.contact-list svg { flex: 0 0 auto; width: 23px; height: 23px; color: var(--green-3); }
.contact-list span { display: grid; gap: 3px; min-width: 0; }
.contact-list small { color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.contact-list strong { overflow-wrap: anywhere; font-size: 12px; }

.contact-card {
  border: 1px solid rgba(168,255,26,.18); border-radius: 27px;
  background: linear-gradient(150deg,#152029,#0b1117); color: #fff; box-shadow: var(--shadow-lg); overflow: hidden;
}
.contact-card-head {
  min-height: 62px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line-light); color: #9aa7a1; font-size: 8px; font-weight: 900; letter-spacing: .14em;
}
.contact-card-head i { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-style: normal; }
.contact-card-head b { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.contact-card form { display: grid; gap: 15px; padding: 25px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.contact-card label { display: grid; gap: 7px; color: #b8c3be; font-size: 9px; font-weight: 800; letter-spacing: .03em; }
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.11); border-radius: 12px;
  background: #0a1116; color: #f4f8f6; padding: 13px 14px; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-card input,
.contact-card select { min-height: 48px; }
.contact-card textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: #68756f; }
.contact-card select option,
.contact-card select optgroup { background: #111a21; color: #fff; }
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus { border-color: rgba(168,255,26,.65); box-shadow: 0 0 0 4px rgba(168,255,26,.07); }
.contact-card .invalid { border-color: #ff6868; box-shadow: 0 0 0 4px rgba(255,104,104,.08); }
.form-consent { display: flex; gap: 10px; align-items: flex-start; color: #82908a; font-size: 9px; line-height: 1.55; }
.form-consent svg { flex: 0 0 auto; width: 16px; height: 16px; color: var(--green); }
.form-submit { width: 100%; margin-top: 2px; }
.form-submit > svg:first-child { width: 20px; height: 20px; }
.email-alternative { text-align: center; color: #87948e; font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.email-alternative:hover { color: #fff; }

/* Footer and floating contact */
.site-footer { position: relative; overflow: hidden; padding: 74px 0 24px; background: #070c10; color: #fff; }
.site-footer::before {
  content: ""; position: absolute; right: -140px; bottom: -160px; width: 520px; height: 520px;
  border-radius: 50%; border: 70px solid rgba(168,255,26,.035);
}
.footer-main { position: relative; z-index: 1; display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 46px; }
.footer-brand img { width: 260px; height: 105px; object-fit: contain; object-position: left center; filter: brightness(1.25); }
.footer-brand p { max-width: 460px; margin: 19px 0 0; color: #87958e; font-size: 12px; line-height: 1.75; }
.footer-column h3 { margin: 13px 0 20px; color: var(--green); font-family: var(--display); font-size: 10px; letter-spacing: .14em; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column a { color: #a4b0aa; font-size: 11px; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 25px;
  margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  color: #6f7c76; font-size: 9px;
}
.footer-bottom span:last-child { display: inline-flex; align-items: center; gap: 10px; text-align: right; }
.footer-bottom i { width: 5px; height: 5px; border-radius: 50%; background: var(--green-2); }
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; display: inline-flex; align-items: center;
  gap: 9px; min-height: 54px; padding: 0 17px; border-radius: 17px; background: #25d366;
  color: #fff; box-shadow: 0 18px 45px rgba(0,0,0,.25); font-size: 11px; font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 23px 52px rgba(0,0,0,.3); }
.whatsapp-float svg { width: 24px; height: 24px; }
.toast {
  position: fixed; left: 50%; bottom: 25px; z-index: 120; max-width: min(420px,calc(100% - 32px));
  padding: 13px 17px; border: 1px solid rgba(168,255,26,.25); border-radius: 13px;
  background: #111a21; color: #fff; box-shadow: 0 18px 48px rgba(0,0,0,.28);
  font-size: 11px; transform: translate(-50%,140%); opacity: 0; transition: transform .28s ease, opacity .28s ease;
}
.toast.show { transform: translate(-50%,0); opacity: 1; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --container: 960px; }
  .main-nav { gap: 17px; }
  .main-nav > a:not(.nav-cta) { font-size: 12px; }
  .hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 650px; width: 100%; margin: 0 auto; }
  .company-layout, .supply-layout, .contact-layout { grid-template-columns: 1fr; }
  .company-logo-card { min-height: 420px; }
  .entity-stack { grid-template-columns: repeat(2,1fr); }
  .entity-card { min-height: 260px; }
  .entity-status { left: 28px; }
  .supply-stage { width: min(620px,100%); margin-inline: auto; order: 2; }
  .supply-copy { order: 1; }
  .contact-copy { max-width: 760px; }
  .footer-main { grid-template-columns: 1.5fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 14px auto; display: grid; align-content: start; gap: 0;
    max-height: calc(100vh - var(--header-h) - 25px); overflow: auto; padding: 12px;
    border: 1px solid var(--line); border-radius: 20px; background: rgba(249,250,249,.98);
    box-shadow: 0 25px 70px rgba(17,22,30,.2); backdrop-filter: blur(18px);
    opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98);
    transition: opacity .22s ease, transform .22s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav > a:not(.nav-cta) { padding: 15px 12px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 12px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-card-wide { grid-column: span 2; grid-template-columns: 48px 1fr; }
  .service-card-wide button { grid-column: 2; }
  .division-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: repeat(2,1fr); }
  .fact-grid > div:nth-child(2) { border-right: 0; }
  .fact-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid article:nth-child(2)::after { display: none; }
  .footer-main { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 28px,var(--container)); }
  .section { padding: 84px 0; }
  .site-brand img { width: 42px; height: 42px; }
  .brand-wordmark strong { font-size: 15px; }
  .brand-wordmark small { font-size: 6px; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 56px) 0 62px; }
  .hero h1 { font-size: clamp(45px,13.5vw,66px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; transform: scale(.86); transform-origin: top center; margin-bottom: -75px; }
  .core-panel { left: 50%; transform: translateX(-50%) rotate(-2deg); width: min(430px,94vw); }
  .orbit-one, .orbit-two { left: 50%; animation: none; transform: translateX(-50%); }
  .orbit-one { width: 470px; height: 470px; }
  .orbit-two { width: 350px; height: 350px; }
  .float-digital { right: -22px; }
  .float-supply { right: -15px; bottom: 28px; }
  .stat-capabilities { left: -17px; }
  .stat-entities { left: -13px; bottom: 68px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .supply-copy h2, .contact-copy h2 { font-size: 39px; }
  .section-heading p { font-size: 14px; }
  .company-layout { gap: 16px; }
  .company-logo-card { min-height: 340px; }
  .company-signature { align-items: flex-start; flex-direction: column; gap: 5px; }
  .entity-stack { grid-template-columns: 1fr; }
  .entity-card { min-height: 245px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid > div { padding: 19px; }
  .fact-grid strong { font-size: 25px; }
  .division-card { min-height: auto; padding: 25px; }
  .division-logo-wrap { height: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; display: flex; min-height: 300px; }
  .service-card-wide button { grid-column: auto; }
  .supply-categories { grid-template-columns: 1fr; }
  .supply-stage { min-height: 500px; transform: scale(.85); transform-origin: top center; margin-bottom: -75px; }
  .box-large { left: 50%; transform: translateX(-50%) rotateY(-10deg) rotateX(6deg) rotateZ(-3deg); width: 350px; }
  .box-small { right: -5px; }
  .label-top { right: -9px; }
  .label-bottom { left: -5px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-grid article:last-child { border-bottom: 0; }
  .value-grid h3 { margin-top: 46px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 250px; }
  .process-grid article::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card form { padding: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
  .whatsapp-float { width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: 17px; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 430px) {
  .brand-wordmark small { display: none; }
  .hero h1 { font-size: 43px; }
  .core-brand { grid-template-columns: 110px 1fr; }
  .core-brand img { width: 110px; }
  .core-brand strong { font-size: 14px; }
  .float-panel { width: 220px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-grid > div:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
