:root {
  --ink: #061522;
  --navy: #03131c;
  --navy-2: #06232d;
  --cyan: #03d9c0;
  --cyan-2: #61f4df;
  --blue: #0b85ff;
  --white: #f7fbfc;
  --muted: #8799a4;
  --light: #eff4f5;
  --line: rgba(106, 240, 220, .16);
  --shadow: 0 24px 80px rgba(0, 20, 32, .12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; letter-spacing: -.035em; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(3, 19, 28, .88);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { width: 175px; margin-right: auto; }
.brand img, .footer-brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--cyan);
  transition: .3s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.menu-toggle {
  display: none;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), #00bcae);
  color: #001c22;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 10px 34px rgba(3, 217, 192, .18);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(3, 217, 192, .28); }
.button-small { min-height: 43px; padding: 0 18px; font-size: 10px; }
.button-outline { color: #fff; background: rgba(3, 217, 192, .03); box-shadow: none; }
.button-outline:hover { background: rgba(3, 217, 192, .1); }

.hero {
  position: relative;
  min-height: 770px;
  padding: 152px 0 34px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 42%, rgba(0, 124, 173, .18), transparent 28%),
    linear-gradient(120deg, #020d14 0%, #031822 52%, #020e16 100%);
}
.hero-grid, .ecosystem-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(0, 219, 197, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 219, 197, .13) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 40%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-one { width: 370px; height: 370px; right: 12%; top: 25%; background: rgba(0, 191, 255, .13); }
.hero-glow-two { width: 220px; height: 220px; left: -6%; top: 22%; background: rgba(0, 255, 214, .08); }
.hero-layout { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; min-height: 500px; }
.hero-copy { position: relative; z-index: 3; max-width: 610px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow {
  padding: 8px 13px;
  color: #bceee8;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 216, 192, .07);
}
.eyebrow i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero h1 { margin-bottom: 23px; font-size: clamp(47px, 5vw, 72px); line-height: .98; }
.hero h1 span { color: var(--cyan); text-shadow: 0 0 36px rgba(3, 217, 192, .22); }
.hero-copy > p { max-width: 560px; color: #afbdc5; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-visual { position: relative; height: 500px; }
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0, 221, 204, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(27, 164, 235, .24);
  border-radius: inherit;
}
.orbit::after { inset: 22%; border-style: solid; }
.orbit-outer { width: 480px; height: 480px; animation: spin 35s linear infinite; }
.orbit-middle { width: 350px; height: 350px; border-style: dashed; animation: spin-reverse 24s linear infinite; }
.orbit-inner { width: 240px; height: 240px; box-shadow: inset 0 0 38px rgba(0, 223, 207, .08), 0 0 45px rgba(0, 143, 255, .08); animation: pulse-ring 3s ease-in-out infinite; }
.tech-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 85, 111, .8), rgba(2, 17, 25, .95) 70%);
  box-shadow: 0 0 25px rgba(3, 217, 192, .35), inset 0 0 30px rgba(3, 217, 192, .16);
  transform: translate(-50%, -50%);
}
.core-logo { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #05d9c1, #087fa7); font-size: 42px; box-shadow: 0 0 34px rgba(0, 221, 204, .4); }
.orbit-node {
  position: absolute;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(3, 217, 192, .33);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(3, 27, 39, .88);
  box-shadow: 0 0 22px rgba(0, 212, 196, .12);
  font-size: 22px;
  animation: spin-reverse 35s linear infinite;
}
.node-one { left: 2%; top: 24%; }
.node-two { right: 2%; bottom: 23%; }
.node-three { right: 10%; top: 12%; }
.node-four { left: 12%; bottom: 8%; }
.data-line { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #21e9ff; box-shadow: 0 0 12px 3px #0fd7ff; animation: flicker 2s infinite; }
.line-one { right: 8%; top: 15%; }.line-two { left: 12%; bottom: 18%; animation-delay: .7s; }.line-three { right: 22%; bottom: 9%; animation-delay: 1.2s; }
.stats-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border: 1px solid rgba(68, 227, 209, .13);
  border-radius: 12px;
  background: rgba(4, 35, 45, .72);
  backdrop-filter: blur(14px);
}
.stat { display: flex; align-items: center; gap: 16px; padding: 22px 25px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.08); }
.stat > i { color: var(--cyan); font-size: 27px; }
.stat strong, .stat span { display: block; }
.stat strong { font-family: "Space Grotesk"; font-size: 22px; }
.stat span { margin-top: 2px; color: #8799a3; font-size: 11px; }

.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 24px; align-items: stretch; }
.section-copy { padding-right: 45px; }
.section-copy h2, .section-heading h2, .partner-intro h2, .contact h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.08;
}
.section-copy p { color: #5f7079; line-height: 1.8; }
.about-card {
  position: relative;
  min-height: 365px;
  padding: 32px;
  border: 1px solid #dfe8ea;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(3, 30, 44, .06);
  overflow: hidden;
}
.about-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(transparent, var(--cyan), transparent); opacity: 0; transition: .3s; }
.about-card:hover::before { opacity: 1; }
.about-card h3 { max-width: 230px; margin: 30px 0 25px; font-size: 22px; }
.about-card p { color: #66757d; font-size: 14px; line-height: 1.75; }
.card-number { color: #b6c4c9; font: 700 11px "Space Grotesk"; letter-spacing: .12em; }
.check-list, .feature-list, .eco-card ul { margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; margin: 14px 0; color: #596b73; font-size: 13px; line-height: 1.45; }
.check-list i { flex: 0 0 auto; color: var(--cyan); font-size: 16px; }
.accent-card { background: linear-gradient(155deg, #fff, #eaf9f7); }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; color: #00a999; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

.solutions { color: #fff; background: linear-gradient(135deg, #03141d, #052b34); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 52px; }
.section-heading > div { max-width: 690px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 400px; margin-bottom: 7px; color: #8499a3; line-height: 1.7; }
.solution-tabs { display: flex; width: fit-content; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(0,0,0,.15); overflow: hidden; }
.solution-tab {
  min-width: 170px;
  padding: 16px 25px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  color: #81949d;
  background: transparent;
  font-weight: 700;
}
.solution-tab i { margin-right: 8px; }
.solution-tab.active { color: #001f23; background: var(--cyan); }
.solution-stage {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 510px;
  border: 1px solid rgba(66, 229, 211, .14);
  border-radius: var(--radius);
  background: rgba(0, 14, 21, .34);
  overflow: hidden;
}
.solution-content { display: none; padding: 52px; align-self: center; }
.solution-content.active { display: block; animation: fade-slide .45s ease; }
.solution-index { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.solution-content h3 { margin: 18px 0; font-size: 36px; line-height: 1.08; }
.solution-content > p { color: #8ba0aa; line-height: 1.75; }
.feature-list { margin: 25px 0 32px; }
.feature-list li { margin: 10px 0; color: #b5c2c7; font-size: 13px; }
.feature-list i { margin-right: 9px; color: var(--cyan); }
.solution-media { position: relative; min-height: 510px; overflow: hidden; }
.solution-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #04222c 0%, transparent 45%), linear-gradient(0deg, rgba(2,17,25,.55), transparent 45%); }
.solution-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.06); }
.media-overlay { position: absolute; z-index: 2; right: 28px; bottom: 28px; display: grid; min-width: 220px; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(2, 23, 31, .75); backdrop-filter: blur(10px); }
.media-overlay span { color: var(--cyan); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.media-overlay strong { margin-top: 5px; font-size: 14px; }
.media-overlay i { position: absolute; right: 18px; top: 22px; color: var(--cyan); font-size: 23px; }

.ecosystem {
  position: relative;
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 53%, rgba(0, 211, 193, .12), transparent 27%),
    radial-gradient(circle at 10% 75%, rgba(13, 103, 150, .12), transparent 25%),
    linear-gradient(145deg, #031923, #052f39 58%, #031b25);
  overflow: hidden;
}
.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(76, 239, 224, .55) .7px, transparent .7px);
  background-size: 29px 29px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}
.eco-ambient { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.eco-ambient-one { width: 260px; height: 260px; left: -100px; top: 35%; background: rgba(0, 186, 255, .1); }
.eco-ambient-two { width: 300px; height: 300px; right: -120px; bottom: 2%; background: rgba(0, 232, 199, .09); }
.centered { display: block; max-width: 760px; margin: 0 auto 48px; text-align: center; }
.centered h2 { margin-bottom: 15px; }
.centered p { max-width: 690px; margin: 0 auto; color: #a4b8bf; font-size: 16px; line-height: 1.75; }
.ecosystem-console {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(88, 235, 220, .17);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(2, 20, 29, .88), rgba(4, 38, 47, .72));
  box-shadow: 0 40px 100px rgba(0, 8, 14, .32), inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.ecosystem-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(4, 220, 195, .045) 45%, transparent 65%);
  transform: translateX(-100%);
  animation: eco-sheen 8s ease-in-out infinite;
}
.eco-console-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 25px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(0, 10, 16, .24);
}
.eco-live { display: flex; align-items: center; gap: 9px; color: #c0d1d6; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.eco-live i, .eco-core-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 11px var(--cyan); animation: eco-blink 1.8s ease-in-out infinite; }
.eco-console-metrics { display: flex; align-items: center; gap: 0; }
.eco-console-metrics span { padding: 0 17px; color: #91a7ae; font-size: 10px; text-transform: uppercase; letter-spacing: .045em; }
.eco-console-metrics span + span { border-left: 1px solid rgba(255,255,255,.08); }
.eco-console-metrics strong { margin-right: 6px; color: #e7fffc; font-size: 13px; }
.ecosystem-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  align-items: center;
  gap: 48px;
  min-height: 475px;
  padding: 34px;
}
.eco-connections { position: absolute; z-index: 0; inset: 30px 0 auto; width: 100%; height: calc(100% - 60px); overflow: visible; pointer-events: none; }
.eco-path { fill: none; stroke-width: 1.2; }
.eco-path-base { stroke: rgba(3, 217, 192, .17); }
.eco-path-flow { stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 5 17; filter: drop-shadow(0 0 5px rgba(3,217,192,.9)); animation: eco-flow 3.5s linear infinite; }
.eco-path-flow.flow-two { animation-delay: -.9s; }
.eco-path-flow.flow-three { animation-delay: -1.8s; }
.eco-path-flow.flow-four { animation-delay: -2.7s; }
.eco-card {
  position: relative;
  z-index: 2;
  padding: 25px;
  border: 1px solid rgba(75, 226, 212, .18);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(7, 39, 49, .95), rgba(2, 20, 29, .94));
  box-shadow: 0 22px 65px rgba(0,0,0,.22);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.eco-card:hover { transform: translateY(-5px); border-color: rgba(58, 244, 222, .38); box-shadow: 0 28px 75px rgba(0,0,0,.3), 0 0 40px rgba(3,217,192,.06); }
.eco-card::after { content: ""; position: absolute; inset: 12px auto 12px 0; width: 2px; border-radius: 2px; background: linear-gradient(transparent, var(--cyan), transparent); opacity: .65; }
.eco-card-head { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.eco-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(3,217,192,.27); border-radius: 12px; color: var(--cyan); background: rgba(3,217,192,.09); font-size: 20px; }
.eco-card-head small { display: block; margin-bottom: 4px; color: #8ba2aa; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.eco-card-head h3 { margin: 0; color: #fff; font-size: 19px; letter-spacing: -.02em; }
.eco-count { color: rgba(118, 244, 230, .55); font: 700 26px "Space Grotesk"; }
.eco-module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 17px; }
.eco-module-grid button {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 10px;
  color: #b5c6cc;
  text-align: left;
  background: rgba(255,255,255,.018);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  transition: .25s ease;
}
.eco-module-grid button i { flex: 0 0 auto; color: #42ddca; font-size: 17px; }
.eco-module-grid button:hover, .eco-module-grid button.active { color: #e8fffc; border-color: rgba(3,217,192,.35); background: rgba(3,217,192,.09); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.eco-core-zone { position: relative; z-index: 3; width: 260px; height: 320px; display: grid; place-items: center; justify-self: center; }
.eco-core {
  position: relative;
  z-index: 4;
  width: 192px;
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(64, 255, 231, .8);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, rgba(16, 101, 110, .9), #031923 69%);
  box-shadow: 0 0 0 8px rgba(3,217,192,.035), 0 0 55px rgba(0,216,192,.2), inset 0 0 42px rgba(0,216,192,.12);
  transition: transform .35s ease;
}
.eco-core-zone:hover .eco-core { transform: scale(1.035); }
.eco-core::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; }
.eco-core img { position: relative; z-index: 2; width: 60px; height: 60px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(3,217,192,.38)); }
.eco-core strong { position: relative; z-index: 2; margin-top: 10px; font: 700 18px "Space Grotesk"; }
.eco-core small { position: relative; z-index: 2; max-width: 145px; margin-top: 4px; color: #a0b7be; text-align: center; font-size: 9px; line-height: 1.4; text-transform: uppercase; letter-spacing: .07em; }
.eco-core-status { position: absolute; z-index: 2; bottom: 18px; display: flex; align-items: center; gap: 6px; color: #92e6dc; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.eco-core-status i { width: 4px; height: 4px; }
.eco-core-scan { position: absolute; inset: 4px; border-radius: 50%; overflow: hidden; }
.eco-core-scan::before { content: ""; position: absolute; left: 15%; right: 15%; top: 20%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 12px var(--cyan); animation: eco-scan 3.4s ease-in-out infinite; }
.eco-orbit { position: absolute; z-index: 1; border: 1px dashed rgba(3,217,192,.25); border-radius: 50%; }
.orbit-a { width: 232px; height: 232px; animation: eco-rotate 18s linear infinite; }
.orbit-b { width: 285px; height: 285px; border-color: rgba(24, 151, 210, .17); animation: eco-rotate-reverse 28s linear infinite; }
.eco-satellite { position: absolute; z-index: 5; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(3,217,192,.25); border-radius: 50%; color: var(--cyan); background: #062832; box-shadow: 0 0 20px rgba(3,217,192,.12); font-size: 12px; }
.satellite-one { left: 4px; top: 69px; animation: eco-float 3.2s ease-in-out infinite; }
.satellite-two { right: 2px; top: 112px; animation: eco-float 3.2s ease-in-out -.9s infinite; }
.satellite-three { left: 34px; bottom: 40px; animation: eco-float 3.2s ease-in-out -1.8s infinite; }
.eco-console-bottom { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.07); background: rgba(0, 10, 16, .22); }
.eco-console-bottom > div { display: flex; align-items: center; gap: 15px; padding: 21px 24px; }
.eco-console-bottom > div + div { border-left: 1px solid rgba(255,255,255,.07); }
.eco-console-bottom i { flex: 0 0 auto; color: var(--cyan); font-size: 22px; }
.eco-console-bottom span, .eco-console-bottom strong { display: block; }
.eco-console-bottom strong { margin-bottom: 4px; color: #edfafa; font-size: 12px; }
.eco-console-bottom span { color: #94a9b0; font-size: 10px; line-height: 1.5; }

.cases { background: #f4f7f8; }
.cases .section-heading h2, .partners h2 { color: var(--ink); }
.case-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 18px; }
.case-card { position: relative; min-height: 330px; border-radius: 15px; background: #071924; overflow: hidden; box-shadow: var(--shadow); }
.case-large { grid-row: span 2; min-height: 678px; }
.case-card img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .55s, opacity .55s; }
.case-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,17,25,.95), transparent 66%); }
.case-card:hover img { transform: scale(1.055); opacity: .95; }
.case-content { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 25px; color: #fff; }
.case-content span { color: var(--cyan); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.case-content h3 { margin: 8px 0 0; font-size: 21px; }
.case-content p { margin: 10px 0 0; color: #9eb0b8; font-size: 12px; }
.case-card > i { position: absolute; z-index: 3; right: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); }

.partners { background: #fff; }
.partner-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.partner-intro h2 { margin-bottom: 0; }
.partner-intro p { color: #687982; line-height: 1.8; }
.partner-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.partner-card { min-height: 245px; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 28px; padding: 28px; border: 1px solid #e0e9eb; border-radius: 17px; background: linear-gradient(145deg, #fff, #f4f8f9); box-shadow: 0 18px 55px rgba(4,42,55,.06); transition: .3s; }
.partner-card:hover { transform: translateY(-6px); border-color: rgba(3,217,192,.45); box-shadow: 0 22px 60px rgba(4,42,55,.12); }
.partner-logo { width: 180px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 14px; background: #020b20; overflow: hidden; }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.partner-card:hover .partner-logo img { transform: scale(1.04); }
.partner-content span { display: block; margin-bottom: 9px; color: #00a997; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.partner-content h3 { margin-bottom: 10px; color: var(--ink); font-size: 22px; }
.partner-content p { margin: 0; color: #718188; font-size: 12px; line-height: 1.7; }

.contact { padding: 110px 0; color: #fff; background: radial-gradient(circle at 20% 35%, rgba(0,217,193,.1), transparent 27%), #03131c; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.contact-copy > p { color: #889ca5; line-height: 1.8; }
.contact-direct { padding: 34px; border: 1px solid rgba(51, 223, 206, .15); border-radius: 18px; background: linear-gradient(145deg, rgba(5, 39, 49, .62), rgba(2, 20, 29, .7)); box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.contact-direct-label { display: block; margin-bottom: 18px; color: #8ba1a9; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-links { display: grid; gap: 12px; }
.contact-links a { display: grid; grid-template-columns: 48px 1fr 32px; align-items: center; gap: 15px; padding: 16px; border: 1px solid rgba(121,218,211,.13); border-radius: 11px; color: #fff; background: rgba(0,15,22,.42); transition: .25s; }
.contact-links a:hover { border-color: rgba(3,217,192,.4); background: rgba(3,217,192,.07); transform: translateX(4px); }
.contact-links a > i:first-child { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(3,217,192,.22); border-radius: 50%; color: var(--cyan); background: rgba(3,217,192,.08); font-size: 19px; }
.contact-links span { font-size: 14px; font-weight: 700; }
.contact-links small { display: block; margin-bottom: 4px; color: #748992; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-links .contact-arrow { color: #53727a; font-size: 15px; transition: .25s; }
.contact-links a:hover .contact-arrow { color: var(--cyan); transform: translate(2px, -2px); }
.contact-whatsapp { width: 100%; margin-top: 16px; }
.contact-availability { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 17px; color: #70878f; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.contact-availability i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.site-footer { color: #879ba4; background: #021018; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 60px; padding-top: 62px; padding-bottom: 48px; }
.footer-brand img { width: 175px; }
.footer-brand p { max-width: 250px; margin-top: 20px; font-size: 12px; line-height: 1.7; }
.footer-grid h3 { margin-bottom: 18px; color: #fff; font: 700 12px "Manrope"; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) span { display: block; margin: 11px 0; font-size: 11px; }
.social-links { display: flex; gap: 9px; margin-top: 20px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer-bottom div { display: flex; gap: 25px; }
.scroll-top { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #001c22; background: var(--cyan); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .3s; }
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes pulse-ring { 50% { box-shadow: inset 0 0 52px rgba(0,223,207,.13), 0 0 65px rgba(0,143,255,.13); } }
@keyframes flicker { 50% { opacity: .3; transform: scale(.65); } }
@keyframes fade-slide { from { opacity: 0; transform: translateY(10px); } }
@keyframes data-flow { from { left: 0; } to { left: 100%; } }
@keyframes eco-flow { to { stroke-dashoffset: -88; } }
@keyframes eco-rotate { to { transform: rotate(360deg); } }
@keyframes eco-rotate-reverse { to { transform: rotate(-360deg); } }
@keyframes eco-float { 50% { transform: translateY(-7px); box-shadow: 0 7px 25px rgba(3,217,192,.2); } }
@keyframes eco-blink { 50% { opacity: .35; transform: scale(.7); } }
@keyframes eco-scan { 0%, 100% { top: 20%; opacity: .25; } 50% { top: 77%; opacity: 1; } }
@keyframes eco-sheen { 0%, 72% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 10px; }
  .nav-cta { display: none; }
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .orbit-outer { width: 400px; height: 400px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .section-copy { grid-column: 1 / -1; padding: 0; max-width: 800px; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-large { grid-row: auto; min-height: 330px; }
  .ecosystem-map { grid-template-columns: 1fr 210px 1fr; gap: 22px; padding-inline: 22px; }
  .eco-core-zone { width: 210px; }
  .eco-module-grid { grid-template-columns: 1fr; }
  .eco-module-grid button { min-height: 54px; }
  .eco-console-metrics span { padding-inline: 10px; }
  .contact-grid { gap: 45px; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 640px); }
  .section { padding: 80px 0; }
  .site-header { height: 70px; }
  .brand { width: 155px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 70px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 25px;
    background: rgba(2, 15, 23, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .3s;
  }
  .menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; padding: 18px 5px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: 125px 0 25px; }
  .hero-layout { display: block; min-height: auto; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 390px; }
  .hero-visual { height: 390px; margin-top: 25px; }
  .orbit-outer { width: 350px; height: 350px; }
  .orbit-middle { width: 270px; height: 270px; }
  .orbit-inner { width: 190px; height: 190px; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
  .about-grid, .solution-stage, .partner-intro, .contact-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 0; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 18px; }
  .solution-tabs { width: 100%; }
  .solution-tab { flex: 1; min-width: 0; padding: 14px 8px; font-size: 12px; }
  .solution-content { padding: 35px 25px; }
  .solution-content h3 { font-size: 31px; }
  .solution-media { min-height: 340px; }
  .ecosystem { padding: 78px 0; }
  .centered { margin-bottom: 34px; }
  .eco-console-top { align-items: flex-start; }
  .eco-live { font-size: 10px; }
  .eco-console-metrics { display: none; }
  .ecosystem-map { grid-template-columns: 1fr; gap: 22px; min-height: 0; padding: 24px 18px; }
  .eco-connections { display: none; }
  .eco-core-zone { grid-row: 1; width: 100%; height: 250px; }
  .eco-left { grid-row: 2; }
  .eco-right { grid-row: 3; }
  .eco-module-grid { grid-template-columns: 1fr 1fr; }
  .eco-console-bottom { grid-template-columns: 1fr; }
  .eco-console-bottom > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card, .case-large { min-height: 390px; }
  .partner-intro { gap: 15px; }
  .partner-track { grid-template-columns: 1fr; }
  .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-visual { height: 330px; }
  .orbit-outer { width: 300px; height: 300px; }
  .orbit-middle { width: 230px; height: 230px; }
  .orbit-inner { width: 165px; height: 165px; }
  .tech-core { width: 115px; height: 115px; }
  .core-logo { width: 74px; height: 74px; font-size: 34px; }
  .orbit-node { width: 44px; height: 44px; font-size: 17px; }
  .stats-panel { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .partner-track { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; text-align: center; }
  .partner-logo { width: min(100%, 210px); margin-inline: auto; }
  .eco-module-grid { grid-template-columns: 1fr; }
  .eco-card { padding: 18px; }
  .eco-console-bottom span { font-size: 10px; }
  .contact-direct { padding: 24px 18px; }
  .contact-links a { grid-template-columns: 44px 1fr 24px; padding: 14px; }
  .contact-links a > i:first-child { width: 44px; height: 44px; }
  .contact-links span { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; line-height: 1.6; }
  .footer-bottom div { margin-top: 12px; }
}

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