:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5c6874;
  --line: #d8e1e9;
  --paper: #ffffff;
  --surface: #f5f7fa;
  --surface-strong: #e9f0f5;
  --teal: #047857;
  --teal-dark: #065f46;
  --emerald-deep: #064e3b;
  --emerald-dark: #022c22;
  --emerald-light: #a7f3d0;
  --blue: #2457d6;
  --coral: #e65c3a;
  --gold: #c78d22;
  --shadow: 0 18px 44px rgba(24, 39, 54, 0.13);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(4, 120, 87, 0.92);
  border-bottom: 1px solid rgba(167, 243, 208, 0.28);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 95, 70, 0.96);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(2, 44, 34, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
  flex: 0 0 58px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald-light), var(--teal-dark));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2, 44, 34, 0.18);
}

.brand-display {
  width: 45px;
  height: 24px;
  fill: #f3fff9;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.62));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--emerald-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 44, 34, 0.94), rgba(6, 95, 70, 0.72) 52%, rgba(4, 120, 87, 0.32)),
    linear-gradient(180deg, rgba(4, 120, 87, 0.3), rgba(2, 44, 34, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 34px) 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 640px;
  color: var(--emerald-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(230, 92, 58, 0.28);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  padding: 15px 18px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: clamp(68px, 8vw, 108px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.why-section,
.proof-section {
  background: var(--surface);
}

.services-section {
  background: #ffffff;
}

.use-section {
  color: #ffffff;
  background: #22313a;
}

.use-section .eyebrow {
  color: #8ce7dc;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-right: auto;
}

.section-heading.compact {
  max-width: 820px;
  display: block;
}

.value-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.use-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 8px;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(22, 36, 48, 0.06);
}

.value-card p,
.use-card p,
.service-item p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: #dff5f1;
  border-radius: 8px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.service-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--coral);
  font-size: 18px;
  font-weight: 900;
}

.use-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.use-card p {
  color: rgba(255, 255, 255, 0.75);
}

.use-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.use-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.use-card li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(245, 247, 250, 0.96)),
    url("assets/analytics-operations.svg");
  background-size: cover;
  background-position: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.contact-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

address a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 127, 122, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: #ffffff;
  background: #17212b;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .value-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-toggle {
    position: relative;
    z-index: 24;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
  }

  .site-header.is-scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .nav-toggle span[aria-hidden="true"],
  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(-7px);
  }

  .nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(5px);
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"] {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
    transform: translateY(-2px) rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 22;
    display: grid;
    align-content: start;
    gap: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 90px 28px 28px;
    color: #ffffff;
    background: rgba(2, 44, 34, 0.98);
    transform: translateX(100%);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 22px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 44, 34, 0.9), rgba(6, 95, 70, 0.66) 55%, rgba(2, 44, 34, 0.86)),
      linear-gradient(90deg, rgba(4, 120, 87, 0.5), rgba(4, 120, 87, 0.22));
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: calc(var(--header-height) + 26px);
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .value-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts div {
    padding: 13px 12px;
  }

  .hero-facts div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts dt {
    font-size: 11px;
  }

  .hero-facts dd {
    font-size: 13px;
    line-height: 1.28;
  }

  .section {
    padding: 62px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .section-heading {
    display: block;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 52px;
    height: 38px;
    flex-basis: 52px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
