:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101720;
  background: #f5f7f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f5f7f9;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  isolation: isolate;
  background: #061b31;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 23, 0.92), rgba(3, 12, 23, 0.62) 46%, rgba(3, 12, 23, 0.16)),
    linear-gradient(0deg, rgba(3, 12, 23, 0.42), transparent 38%);
  z-index: -1;
}

.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  font-size: 1rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  padding: 52px 0 96px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8fe1cb;
  font-size: 0.98rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(4.6rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  width: min(680px, 100%);
  margin: 26px 0 0;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 650;
}

.summary {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
}

.summary h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.summary p {
  margin: 18px 0 0;
  color: #4d5a66;
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.signals div {
  min-height: 158px;
  padding: 18px;
  border: 1px solid #dfe6eb;
  border-radius: 8px;
  background: #ffffff;
}

.signals dt {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.signals dd {
  margin: 0;
  color: #53616d;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: 86vh;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 12, 23, 0.94), rgba(3, 12, 23, 0.72) 62%, rgba(3, 12, 23, 0.38)),
      linear-gradient(0deg, rgba(3, 12, 23, 0.58), transparent 44%);
  }

  .nav,
  .hero-copy,
  .summary {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    padding: 16px 0;
  }

  .nav-link {
    display: none;
  }

  .hero-copy {
    padding: 36px 0 66px;
  }

  .summary {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 0 54px;
  }

  .signals {
    grid-template-columns: 1fr;
  }
}
