:root {
  --ink: #172033;
  --ink-strong: #08111f;
  --muted: #5f6c7f;
  --line: #dce5ee;
  --soft: #f6f8fb;
  --surface: #fbfcfe;
  --surface-muted: #f4f7fb;
  --surface-tint: #f1f7fb;
  --soft-blue: #edf4ff;
  --white: #ffffff;
  --navy: #0b1220;
  --panel: #111c2f;
  --blue: #2357d8;
  --green: #07806d;
  --gold: #b67a14;
  --red: #c14b42;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 13px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.055);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 246px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 224px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(217, 226, 236, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
  color: #516074;
  font-size: 13px;
  font-weight: 760;
}

nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

nav a:hover {
  background: #f2f6fb;
  color: var(--ink-strong);
}

.nav-cta {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  background: #111c2f;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.18);
}

.nav-cta:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 94, 255, 0.24);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  min-height: calc(89vh - 64px);
  padding: clamp(48px, 6vw, 78px) clamp(18px, 4vw, 64px) clamp(38px, 4.5vw, 58px);
  background: #f6f9fc;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.99) 0%, rgba(246, 249, 252, 0.94) 34%, rgba(246, 249, 252, 0.64) 55%, rgba(246, 249, 252, 0.12) 84%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: clamp(12px, 2vw, 28px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--ink-strong);
  font-size: clamp(42px, 4.75vw, 70px);
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.07;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 21px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 24px;
  color: #526176;
  font-size: clamp(18px, 1.55vw, 21px);
}

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

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-signals span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(184, 197, 212, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #39475b;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: var(--blue);
  background: linear-gradient(180deg, #2f63ec, var(--blue));
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 94, 255, 0.19);
}

.button-primary:hover {
  background: #174ee0;
  box-shadow: 0 18px 40px rgba(31, 94, 255, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #b8c5d4;
  background: #fff;
}

.button:focus-visible,
nav a:focus-visible {
  outline: 3px solid rgba(31, 94, 255, 0.24);
  outline-offset: 3px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #e9f4fb;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.08), rgba(11, 18, 32, 0));
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

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

.positioning div {
  min-height: 158px;
  padding: 30px clamp(18px, 4vw, 44px);
  background: #fff;
}

.positioning span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.positioning strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: 19px;
}

.positioning p,
.section-heading p,
.service-list p,
.capability-grid span,
.proof-copy p,
.industry-grid p,
.impact-grid span,
.contact-section p,
.policy p {
  color: var(--muted);
}

.section,
.capability-band,
.proof-section,
.impact-section,
.contact-section,
.policy {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.services-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface) 66%, var(--surface-muted) 100%);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 214px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.052);
}

.service-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.service-list p {
  max-width: 880px;
  margin-bottom: 0;
  font-size: 17px;
}

.capability-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0)),
    #101827;
  color: #fff;
}

.capability-band h2 {
  color: #fff;
}

.capability-band .section-heading p {
  color: #96a8bd;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-grid div {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.capability-grid b,
.capability-grid span {
  display: block;
}

.capability-grid b {
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
}

.capability-grid span {
  color: #b8c5d4;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: #0b1220;
  color: #fff;
}

.proof-section h2 {
  color: #fff;
}

.proof-copy {
  max-width: 880px;
}

.proof-copy p {
  color: #c8d3df;
}

.proof-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.proof-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-header span {
  font-size: 24px;
  font-weight: 900;
}

.proof-header b {
  color: #87e6c8;
  font-size: 13px;
}

.proof-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.industry-section {
  background: var(--surface);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.045);
}

.industry-grid article:nth-child(2) {
  border-top-color: var(--green);
}

.industry-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.industry-grid article:nth-child(4) {
  border-top-color: var(--red);
}

.impact-section {
  background: var(--surface-muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
}

.impact-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.045);
}

.impact-grid b,
.impact-grid span {
  display: block;
}

.impact-grid b {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 20px;
}

.impact-grid span {
  color: var(--muted);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(90deg, rgba(7, 128, 109, 0.055), rgba(35, 87, 216, 0.045)),
    var(--surface-tint);
}

.contact-section div {
  max-width: 840px;
}

.contact-section p {
  max-width: 760px;
  margin-bottom: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer a {
  font-weight: 850;
  text-decoration: none;
}

.policy {
  max-width: 960px;
  margin: 0 auto;
}

.policy-head {
  padding-top: clamp(36px, 6vw, 70px);
}

.policy-head h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 72px);
}

.policy-body {
  display: grid;
  gap: 22px;
  padding-bottom: 64px;
}

.policy-body h2 {
  margin-bottom: -10px;
  padding-top: 8px;
  font-size: 24px;
}

@media (max-width: 1040px) {
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(247, 250, 252, 0.98) 0%, rgba(247, 250, 252, 0.9) 48%, rgba(247, 250, 252, 0.34) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08));
  }

  .capability-grid,
  .service-list,
  .industry-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 220px;
  }

  nav {
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    border-radius: 18px;
  }

  nav a {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .positioning,
  .capability-grid,
  .service-list,
  .industry-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .positioning div {
    min-height: auto;
  }

  .service-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    min-height: auto;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero,
  .section,
  .capability-band,
  .proof-section,
  .impact-section,
  .contact-section,
  .policy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.98) 0%, rgba(247, 250, 252, 0.92) 50%, rgba(247, 250, 252, 0.42) 100%);
  }

  .hero-visual img {
    object-position: 58% center;
  }
}
