:root {
  --ink: #062d35;
  --deep: #062f37;
  --deep-2: #0f442f;
  --green: #12b857;
  --lime: #9cff22;
  --mint: #c8f1d1;
  --pale: #eff9f2;
  --paper: #ffffff;
  --muted: #68767a;
  --line: rgba(6, 45, 53, 0.16);
  --shadow: 0 24px 60px rgba(2, 28, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 0 0 5px rgba(18, 184, 87, 0.14);
}

.brand-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand-logo.logo-fallback {
  background:
    linear-gradient(135deg, var(--lime) 0 35%, transparent 36%),
    radial-gradient(circle at 62% 40%, var(--deep) 0 23%, transparent 24%),
    var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-action,
.button.primary {
  color: var(--deep);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(156, 255, 34, 0.22);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(18, 184, 87, 0.3);
}

.button.primary:hover {
  background: white;
}

.button.secondary:hover {
  color: var(--deep);
  background: white;
  border-color: white;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 64px;
  align-items: center;
  min-height: 690px;
  padding: 92px 7vw 108px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 47, 55, 0.97), rgba(6, 47, 55, 0.82)),
    radial-gradient(circle at 86% 24%, rgba(156, 255, 34, 0.32), transparent 28%),
    var(--deep);
}

.hero::before,
.dark-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-linear-gradient(135deg, white 0 1px, transparent 1px 12px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 42px;
  background: rgba(18, 184, 87, 0.34);
}

.hero-copy,
.hero-visual,
.section-heading,
.dark-section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(46px, 6.1vw, 86px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
}

h3 {
  font-size: 20px;
  font-weight: 900;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  min-height: 480px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px 30px 92px 30px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 28px -28px -30px 42px;
  z-index: -1;
  border-radius: 26px 86px 26px 26px;
  background: var(--green);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 35%, rgba(156, 255, 34, 0.36) 35% 44%, transparent 44%),
    radial-gradient(circle at 78% 16%, rgba(156, 255, 34, 0.35), transparent 24%);
  mix-blend-mode: screen;
}

.image-frame img,
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.hero .image-frame {
  height: 470px;
}

.scan-card {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(280px, 72%);
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(6, 47, 55, 0.84);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.scan-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
}

.scan-card strong,
.scan-card span {
  display: block;
}

.scan-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.ticker {
  overflow: hidden;
  padding: 14px 0;
  color: white;
  background: var(--deep-2);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  gap: 36px;
  animation: ticker-loop 24s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker span {
  position: relative;
}

.ticker span::after {
  content: "✶";
  margin-left: 36px;
  color: var(--lime);
}

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: 96px 7vw;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.section-image {
  position: relative;
  height: 420px;
  border-radius: 28px 28px 90px 28px;
  overflow: hidden;
}

.section-image::before {
  content: "";
  position: absolute;
  inset: -20px auto auto -20px;
  width: 170px;
  height: 170px;
  z-index: -1;
  border-radius: 28px;
  background: var(--green);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.evidence-panel p {
  color: var(--muted);
  font-size: 17px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.metric-row div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.metric-row div:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  background: var(--pale);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--green);
  font-size: 30px;
}

.metric-row span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
}

.dark-section,
.site-footer {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--deep);
}

.dark-section::after {
  content: "";
  position: absolute;
  left: -38px;
  bottom: 36px;
  width: 260px;
  height: 200px;
  border-radius: 34px;
  background: rgba(18, 184, 87, 0.32);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.capability-grid,
.process-grid,
.sector-grid {
  display: grid;
  gap: 16px;
}

.capability-grid {
  grid-template-columns: repeat(3, 1fr);
}

.capability-card {
  min-height: 235px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  background: rgba(156, 255, 34, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--deep);
  border-radius: 50%;
  background: var(--lime);
  font-size: 22px;
  font-weight: 900;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.7);
}

.method-section {
  background: var(--paper);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbf9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.process-grid span {
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.process-grid p,
.evidence-list span {
  color: var(--muted);
}

.sectors-section {
  background: var(--pale);
}

.sector-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sector-grid a {
  display: flex;
  align-items: center;
  min-height: 126px;
  padding: 28px;
  color: white;
  border-radius: 7px;
  background: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.sector-grid a:hover {
  transform: translateY(-7px) scale(1.01);
  color: var(--deep);
  background: var(--lime);
  box-shadow: var(--shadow);
}

.evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: stretch;
  color: white;
  background: var(--deep);
}

.evidence-panel {
  padding: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.evidence-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.evidence-list {
  display: grid;
  gap: 12px;
}

.evidence-list div {
  padding: 24px;
  border-left: 6px solid var(--lime);
  background: white;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease;
}

.evidence-list div:hover {
  transform: translateX(8px);
  border-color: var(--green);
}

.evidence-list strong,
.evidence-list span {
  display: block;
}

.evidence-list strong {
  font-size: 26px;
  line-height: 1.15;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.5fr);
  gap: 40px;
  padding: 62px 7vw 34px;
}

.footer-brand {
  color: white;
}

.site-footer p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    padding: 16px 5vw;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .split-section,
  .evidence-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 72px 5vw;
  }

  .capability-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 12px;
  }

  .nav-action {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
  }

  section {
    padding: 68px 5vw;
  }

  .hero {
    padding-top: 54px;
  }

  .hero .image-frame,
  .section-image {
    height: 320px;
  }

  .metric-row,
  .capability-grid,
  .process-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .evidence-panel {
    padding: 30px;
  }

  .scan-card {
    right: 10px;
    bottom: -16px;
  }
}
