:root {
  --ink: #0a1730;
  --ink-soft: #475467;
  --navy: #07172e;
  --green: #4bd37b;
  --green-bright: #76ed9c;
  --mint: #eafbf0;
  --line: #dfe5ea;
  --paper: #f7f9f8;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 72% 42%, rgba(44,122,92,.23), transparent 30%), linear-gradient(120deg, #061426 0%, #091a33 54%, #07182b 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  width: 154px;
  height: 60px;
  padding: 5px 11px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.nav-links { display: flex; align-items: center; gap: 34px; color: #c9d3df; font-size: 14px; font-weight: 550; }
.nav-links > a:not(.nav-cta) { transition: color 180ms ease; }
.nav-links > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 14px 11px 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease;
}
.nav-cta:hover { border-color: var(--green); background: rgba(75,211,123,.08); }
.nav-cta svg, .button svg { width: 18px; height: 18px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  min-height: 675px;
  padding-block: 62px 78px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #7d8da1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 1px; background: var(--green); }
.hero .eyebrow { color: #92a4b8; }
.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero-copy h1 em { display: block; color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: #b5c1ce; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #061a19; background: var(--green-bright); box-shadow: 0 14px 36px rgba(75,211,123,.16); }
.button-primary:hover { background: #91f4af; }
.button-secondary { border: 1px solid rgba(255,255,255,.18); color: #dbe4ed; background: rgba(255,255,255,.03); }
.button-secondary:hover { border-color: rgba(255,255,255,.36); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 34px; color: #8294a8; font-size: 11px; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.hero-proof span { display: flex; align-items: center; gap: 9px; }
.hero-proof span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--green); content: ""; }

.system-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,105,83,.14), transparent 62%);
}
.system-visual::before, .system-visual::after {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(117,154,154,.16);
  border-radius: 50%;
  content: "";
  animation: rotate 35s linear infinite;
}
.system-visual::after { inset: 25%; animation-direction: reverse; animation-duration: 25s; }
.visual-glow { position: absolute; inset: 34%; border-radius: 50%; background: rgba(75,211,123,.22); filter: blur(46px); }
.cemis-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  padding: 33px 18px 25px;
  border: 1px solid rgba(111,238,152,.43);
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, rgba(21,64,60,.95), rgba(6,25,42,.98));
  box-shadow: 0 0 0 11px rgba(75,211,123,.025), 0 24px 70px rgba(0,0,0,.34);
}
.core-logo-crop {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.core-logo-crop img {
  position: absolute;
  top: 0;
  left: -40px;
  width: 150px;
  max-width: none;
}
.cemis-core small { margin-top: 4px; color: var(--green-bright); font-size: 8px; font-weight: 750; letter-spacing: .18em; }
.cemis-core strong { color: #aebdca; font-size: 9px; font-weight: 550; }
.core-ring { position: absolute; inset: -11px; border: 1px solid rgba(75,211,123,.15); border-radius: 50%; }
.system-card {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 184px;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(12,32,56,.88);
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}
.system-card small { color: #74879c; font-size: 8px; font-weight: 750; letter-spacing: .16em; }
.system-card strong { color: #e9eff5; font-size: 14px; }
.system-card > span { color: #7f93a7; font-size: 10px; }
.source-card { top: 9%; left: 1%; }
.destination-card { right: 0; bottom: 9%; }
.status { display: flex; align-items: center; gap: 6px; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.connector { position: absolute; z-index: 2; width: 105px; height: 1px; overflow: hidden; background: linear-gradient(90deg, transparent, rgba(75,211,123,.58), transparent); transform-origin: center; }
.connector i { position: absolute; top: -2px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 10px var(--green); animation: data-flow 2.2s ease-in-out infinite; }
.connector-one { top: 34%; left: 25%; transform: rotate(32deg); }
.connector-two { right: 22%; bottom: 32%; transform: rotate(30deg); }
.floating-tag { position: absolute; z-index: 4; padding: 8px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #8da0b3; background: rgba(7,25,44,.84); font-size: 9px; letter-spacing: .04em; }
.tag-one { top: 16%; right: 10%; }
.tag-two { bottom: 14%; left: 12%; }
.hero-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 88px; border-top: 1px solid rgba(255,255,255,.1); color: #8293a6; font-size: 12px; }
.hero-foot a { display: flex; align-items: center; gap: 13px; color: #b2c0cf; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-foot a span { color: var(--green); font-size: 18px; }

.services { padding-block: 124px 112px; }
.section-heading { display: grid; grid-template-columns: 1fr .55fr; column-gap: 90px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .method-heading h2, .outcome-panel h2, .contact-card h2 { margin: 0; font-size: clamp(38px, 4.2vw, 58px); font-weight: 620; letter-spacing: -.045em; line-height: 1.08; }
.section-heading > p:last-child, .method-heading > p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 66px; }
.service-card { position: relative; min-height: 430px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.service-card:hover { transform: translateY(-6px); border-color: #a8dfb9; box-shadow: 0 24px 55px rgba(16,39,45,.09); }
.service-number { color: #9ba8b3; font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.service-icon { position: relative; width: 90px; height: 90px; margin: 34px 0 42px; border: 1px solid #dbe9df; border-radius: 50%; background: var(--mint); }
.service-icon span { position: absolute; top: 50%; left: 50%; width: 38px; height: 1px; background: #2cb763; transform: translate(-50%, -50%); }
.service-icon span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.service-icon span:nth-child(3) { transform: translate(-50%, -50%) rotate(-60deg); }
.service-card:nth-child(2) .service-icon { border-radius: 24px; transform: rotate(7deg); }
.service-card:nth-child(3) .service-icon { border-radius: 28px 50% 28px 50%; }
.service-card h3 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.service-card > p { margin: 15px 0 0; color: #5b6877; font-size: 14px; line-height: 1.75; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tag-list span { padding: 7px 9px; border: 1px solid #e3e7e9; border-radius: 6px; color: #687583; background: #fafbfb; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.outcome-panel { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 90px; margin-top: 78px; padding: 70px; border-radius: 26px; color: var(--white); background: radial-gradient(circle at 8% 120%, rgba(75,211,123,.24), transparent 38%), var(--navy); }
.eyebrow.light { color: #93a4b6; }
.project-list { border-top: 1px solid rgba(255,255,255,.13); }
.project-item { display: flex; align-items: center; gap: 14px; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.13); color: #ccd6e0; font-size: 13px; }
.check { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--green-bright); background: rgba(75,211,123,.12); }
.check svg { width: 14px; height: 14px; }

.ai-section { padding-block: 118px; color: var(--white); background: radial-gradient(circle at 82% 12%, rgba(75,211,123,.18), transparent 28%), #07172e; }
.ai-heading { display: grid; grid-template-columns: 1fr .52fr; align-items: end; gap: 90px; }
.ai-heading h2 { max-width: 720px; margin: 0; font-size: clamp(42px, 5vw, 66px); font-weight: 620; letter-spacing: -.05em; line-height: 1.02; }
.ai-heading > p { margin: 0; color: #aab9c7; font-size: 16px; line-height: 1.75; }
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.ai-card { min-height: 360px; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.035); transition: transform 200ms ease, border-color 200ms ease, background 200ms ease; }
.ai-card:hover { transform: translateY(-6px); border-color: rgba(118,237,156,.55); background: rgba(75,211,123,.07); }
.ai-card.featured { border-color: rgba(118,237,156,.34); background: linear-gradient(145deg, rgba(75,211,123,.14), rgba(255,255,255,.035)); }
.ai-number { color: var(--green-bright); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; letter-spacing: .08em; }
.ai-card h3 { max-width: 300px; margin: 86px 0 16px; font-size: 25px; letter-spacing: -.025em; line-height: 1.15; }
.ai-card p { margin: 0; color: #aab8c5; font-size: 14px; line-height: 1.75; }
.dark-tags span { border-color: rgba(255,255,255,.14); color: #b9c6d1; background: rgba(255,255,255,.04); }
.local-seo-copy { max-width: 820px; margin: 52px 0 0; color: #7f93a7; font-size: 13px; line-height: 1.7; }

.method { padding-block: 118px 40px; overflow: hidden; background: #edf1ef; }
.method-heading { display: grid; grid-template-columns: 1fr .48fr; align-items: end; gap: 90px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid #cfd8d3; }
.step { min-height: 260px; padding: 28px 38px 28px 0; border-right: 1px solid #cfd8d3; }
.step + .step { padding-left: 38px; }
.step:last-child { border-right: 0; }
.step > span { color: #2db963; font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.step h3 { margin: 48px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.step p { margin: 0; color: #5a6873; font-size: 13px; line-height: 1.7; }
.contact-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 80px; margin-top: 86px; padding: 76px; overflow: hidden; border-radius: 28px; color: var(--white); background: linear-gradient(125deg, #143f3b 0%, #0b243a 54%, #08182d 100%); }
.contact-copy { position: relative; z-index: 2; max-width: 700px; }
.contact-copy > p:last-child { max-width: 610px; margin: 22px 0 0; color: #b4c5cd; font-size: 15px; line-height: 1.75; }
.contact-actions { position: relative; z-index: 2; display: grid; justify-items: center; gap: 16px; }
.button-white { color: var(--ink); background: var(--white); }
.button-white:hover { background: var(--green-bright); }
.contact-email { color: #b8c8d1; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.contact-orbit { position: absolute; border: 1px solid rgba(118,237,156,.11); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; right: -160px; top: -190px; }
.orbit-two { width: 300px; height: 300px; right: -80px; top: -110px; }
footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; min-height: 150px; color: #68757f; font-size: 11px; }
.footer-logo { display: block; width: 164px; height: 88px; object-fit: contain; }
footer > p { text-align: center; text-transform: uppercase; letter-spacing: .08em; }
footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
footer a:hover { color: var(--ink); }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes data-flow { 0% { left: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: calc(100% - 6px); opacity: 0; } }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 84px; }
  .hero-copy { max-width: 720px; }
  .system-visual { min-height: 480px; max-width: 580px; width: 100%; margin: 0 auto; }
  .section-heading, .method-heading { grid-template-columns: 1fr; gap: 24px; }
  .ai-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p:last-child, .method-heading > p { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-card { min-height: auto; }
  .ai-card h3 { margin-top: 48px; }
  .service-card { min-height: auto; }
  .service-icon { margin-bottom: 32px; }
  .outcome-panel { grid-template-columns: 1fr; gap: 48px; padding: 52px; }
  .contact-card { grid-template-columns: 1fr; align-items: start; padding: 58px; }
  .contact-actions { justify-items: start; }
  footer { grid-template-columns: 1fr; justify-items: center; gap: 16px; padding-block: 42px; text-align: center; }
  footer > div { justify-content: center; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1180px); }
  .nav { min-height: 78px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 12px 9px 16px; gap: 10px; }
  .hero-grid { gap: 24px; min-height: auto; padding-block: 70px 58px; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { gap: 12px 18px; }
  .system-visual { min-height: 380px; margin-top: 16px; }
  .cemis-core { width: 145px; height: 145px; padding: 24px 14px 19px; }
  .core-logo-crop { width: 54px; height: 54px; border-radius: 14px; }
  .core-logo-crop img { left: -31px; width: 116px; }
  .system-card { width: 148px; padding: 13px; }
  .source-card { top: 7%; left: -2%; }
  .destination-card { right: -2%; bottom: 7%; }
  .connector { width: 70px; }
  .floating-tag { display: none; }
  .hero-foot { justify-content: center; min-height: 75px; text-align: center; }
  .hero-foot a { display: none; }
  .services, .method { padding-top: 88px; }
  .ai-section { padding-block: 88px; }
  .section-heading h2, .method-heading h2, .outcome-panel h2, .contact-card h2 { font-size: 38px; }
  .service-grid { margin-top: 46px; }
  .outcome-panel { margin-top: 54px; padding: 38px 24px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: auto; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid #cfd8d3; }
  .step h3 { margin-top: 22px; }
  .contact-card { margin-top: 64px; padding: 42px 24px; }
}

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