:root {
  --ink: #0b1726;
  --navy: #0f3554;
  --blue: #0d6fb8;
  --cyan: #16a9df;
  --soft: #eef7fb;
  --muted: #5b6875;
  --line: #d9e4eb;
  --green: #2f8b62;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a {
  color: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 53, 84, 0.1);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.logo {
  width: 250px;
  max-width: 42vw;
  display: block;
}
.spacer {
  flex: 1;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}
.navlinks a {
  text-decoration: none;
}
.menu-toggle {
  display: none;
}
.login {
  color: var(--navy);
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 9px;
  padding: 13px 20px;
  font-weight: 700;
  transition: 0.18s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 111, 184, 0.18);
}
.btn-primary:hover {
  background: #095f9f;
  transform: translateY(-1px);
}
.btn-light {
  border-color: #b9cfdd;
  background: #fff;
  color: var(--navy);
}
.hero {
  background: linear-gradient(
    105deg,
    #061a2c 0%,
    #0c3454 58%,
    #0b6e9a 100%
  );
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.hero-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 52px;
  padding: 37px 0 57px;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7dd9fb;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  margin: 14px 0 20px;
  letter-spacing: -0.035em;
}
.hero p {
  font-size: 20px;
  color: #d9edf7;
  max-width: 650px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.stack {
  position: relative;
  min-height: 490px;
}
.stack-card {
  position: absolute;
  width: 58%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.stack-card.one {
  right: 0;
  top: 0;
  transform: rotate(3deg);
}
.stack-card.two {
  left: 3%;
  top: 82px;
  transform: rotate(-3deg);
}
.stack-card.three {
  right: 12%;
  top: 174px;
  transform: rotate(1deg);
}
.stack-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 15px;
  text-align: center;
  font-weight: 650;
  color: #364857;
}
.trust-grid div + div {
  border-left: 1px solid var(--line);
}
section {
  padding: 37px 0;
}
.section-kicker {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.section-title {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 9px 0 16px;
}
.section-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 820px;
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.problem-card {
  background: var(--soft);
  border: 1px solid #d5eaf4;
  border-radius: 24px;
  padding: 34px;
}
.problem-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.problem-list {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}
.problem-item {
  display: flex;
  gap: 14px;
}
.icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 38px;
  background: #dff3fb;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.workflow,
.usecases {
  background: #f7fafc;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.step .circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.report-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 9px 28px rgba(8, 40, 61, 0.06);
}
.report-preview {
  aspect-ratio: 1/1;
  background: #eef3f6;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.report-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.report-copy {
  padding: 24px;
}
.report-copy h3 {
  margin: 0 0 8px;
  font-size: 23px;
}
.report-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}
.text-link {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}
.metrics {
  background: #0b2c47;
  color: #fff;
}
.metrics .section-lead {
  color: #d0e5ef;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 38px;
}
.metric {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.metric strong {
  display: block;
  font-size: 19px;
}
.metric span {
  color: #bfdae7;
  font-size: 14px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 27px;
}
.card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.provider-note {
  background: linear-gradient(135deg, #edf8fc, #f9fcfe);
}
.provider-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  background: #fff;
  border: 1px solid #d8e6ee;
  border-radius: 24px;
  padding: 46px;
}
.checks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.check {
  display: flex;
  gap: 10px;
  color: #3d4d59;
}
.check:before {
  content: "✓";
  font-weight: 900;
  color: var(--green);
}
.cta {
  background: linear-gradient(110deg, #0a3150, #0b75a8);
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #d9eef6;
  font-size: 19px;
}
.cta .btn-primary {
  background: #fff;
  color: var(--navy);
}
footer {
  background: #071827;
  color: #afc5d2;
  padding: 34px 0;
}
.footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}
.footer img {
  width: 190px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-trust {
  flex-basis: 100%;
  text-align: center;
  line-height: 1.35;
}
.footer .spacer {
  flex: 1;
}
.footer a {
  text-decoration: none;
  color: #d6e6ee;
}
@media (max-width: 900px) {
  .navlinks .desktop {
    display: none;
  }
  .hero-grid,
  .split,
  .provider-box {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 35px 0;
  }
  .stack {
    min-height: 420px;
    max-width: 700px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }
  .trust-grid div + div {
    border-left: 0;
  }
  .steps,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .trust {
    display: none;
  }

  .wrap {
    width: min(100% - 28px, var(--max));
  }
  .nav {
    height: 68px;
    gap: 10px;
    position: relative;
  }
  .logo {
    max-width: 160px;
  }
  .navlinks {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(320px, calc(100vw - 28px));
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 35px rgba(15, 53, 84, 0.16);
  }
  .navlinks.is-open {
    display: flex;
  }
  .navlinks .desktop {
    display: block;
  }
  .navlinks a:not(.btn) {
    padding: 11px 12px;
  }
  .navlinks .btn {
    margin-top: 6px;
    width: 100%;
  }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  .btn {
    padding: 11px 15px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 18px;
  }
  .stack {
    min-height: 360px;
  }
  .stack-card {
    width: 66%;
  }
  .trust-grid {
    font-size: 14px;
  }
  .steps,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .provider-box {
    padding: 28px;
  }
  section {
    padding: 35px 0;
  }
  .footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer .spacer {
    display: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: calc(100% - 24px);
  }

  .logo {
    max-width: 118px;
  }

  .nav {
    gap: 6px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .stack {
    min-height: 390px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .footer img {
    width: 170px;
  }
}
