:root {
  color-scheme: light;
  --ink: #18202a;
  --muted: #596475;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #154f86;
  --green: #2b7a5b;
  --gold: #c48a28;
  --shadow: 0 22px 60px rgba(24, 32, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(13, 19, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.nav-links {
  gap: 26px;
  font-size: 0.95rem;
}

.nav-links a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  place-items: center;
  padding: 120px clamp(22px, 6vw, 92px) 72px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 17, 25, 0.92), rgba(11, 17, 25, 0.72) 45%, rgba(11, 17, 25, 0.36)),
    linear-gradient(0deg, rgba(11, 17, 25, 0.92), rgba(11, 17, 25, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 128px;
  padding: 30px clamp(22px, 4vw, 48px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.02rem;
}

.proof-strip span,
.section p,
.cta p,
.site-footer {
  color: var(--muted);
}

.section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(22px, 6vw, 92px);
  background: var(--white);
}

.section:nth-of-type(2n + 1) {
  background: var(--paper);
}

.section-copy,
.section-heading {
  max-width: 640px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.section p,
.cta p {
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.platform-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #eef3f7;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9aa8b6;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.panel-grid div {
  min-height: 178px;
  padding: 26px;
  background: var(--white);
}

.panel-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.08rem;
}

.panel-grid p {
  margin: 0;
}

.process {
  display: block;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  min-height: 232px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.compact {
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capabilities p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.cta {
  padding: clamp(72px, 10vw, 124px) clamp(22px, 6vw, 92px);
  color: var(--white);
  background: #152238;
}

.cta h2,
.cta p {
  max-width: 780px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 0.95rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 17, 25, 0.95), rgba(11, 17, 25, 0.82)),
      linear-gradient(0deg, rgba(11, 17, 25, 0.94), rgba(11, 17, 25, 0.36) 46%);
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 4.5rem);
  }

  .proof-strip,
  .section,
  .steps,
  .compact,
  .capabilities,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .steps article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
  }

  .site-footer span + span {
    margin-top: 8px;
  }
}
