:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --navy: #10253f;
  --blue: #1d65f2;
  --teal: #11a7a0;
  --lime: #b8df42;
  --orange: #f08a34;
}

* {
  box-sizing: border-box;
}

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

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 48px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  display: block;
  width: 188px;
  height: auto;
  max-width: 42vw;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #334155;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: var(--blue);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 92px 48px 120px;
  color: #ffffff;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.94) 0%, rgba(7, 19, 34, 0.78) 38%, rgba(7, 19, 34, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 19, 34, 0.92) 0%, rgba(7, 19, 34, 0.12) 34%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

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

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

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

.hero-copy {
  max-width: 650px;
  color: #d7e1ed;
  font-size: 19px;
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band a {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 12px;
  color: #4a5568;
  background: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.trust-band a:hover,
.trust-band a:focus {
  color: var(--blue);
  background: #f8fbff;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -58px auto 0;
  position: relative;
  z-index: 5;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 37, 63, 0.12);
}

.metrics div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.platform-copy p,
.solution-item p {
  color: var(--muted);
}

.ranking-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.table-row {
  display: grid;
  grid-template-columns: 0.6fr 1.8fr 1.5fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  min-height: 48px;
  color: #667085;
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.signal.high {
  color: #123e31;
  background: #dff5e8;
}

.signal.medium {
  color: #4b330f;
  background: #fff1cf;
}

.solutions {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: var(--soft);
}

.solution-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-item,
.report-card {
  min-height: 245px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.item-index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--orange);
  font-weight: 900;
}

.solution-item h3,
.report-card h3 {
  font-size: 24px;
  line-height: 1.16;
}

.report-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--blue);
}

.report-card p {
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
}

.report-card span {
  color: var(--blue);
  font-weight: 800;
}

.platform {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.map-panel {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 24% 42%, rgba(17, 167, 160, 0.38), transparent 20%),
    radial-gradient(circle at 72% 44%, rgba(29, 101, 242, 0.36), transparent 24%),
    #10253f;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.map-grid span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 9px rgba(184, 223, 66, 0.18), 0 0 36px rgba(184, 223, 66, 0.65);
}

.platform-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.platform-copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.testimonial {
  padding: 86px 24px;
  color: #ffffff;
  background: var(--navy);
  text-align: center;
}

.testimonial blockquote {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.testimonial cite {
  color: #b7c7da;
  font-style: normal;
  font-weight: 700;
}

.cta-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-section h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 48px;
  color: #667085;
  border-top: 1px solid var(--line);
}

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

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .brand-logo {
    width: 164px;
    max-width: 58vw;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: 76px 22px 116px;
  }

  .trust-band,
  .metrics,
  .solution-grid,
  .report-grid,
  .platform {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin: -42px 18px 0;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .table-row {
    grid-template-columns: 44px 1fr;
    gap: 8px 14px;
    padding: 16px;
  }

  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    grid-column: 2;
  }

  .table-head {
    display: none;
  }

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

  .cta-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
