:root {
  --ink: #0b1f3a;
  --ink-soft: #1a3358;
  --paper: #f8f9fb;
  --accent: #1e4a7a;
  --muted: #5a6b80;
  --sky: #8fb4d9;
  --light: #f7f8fa;
  --line: rgba(247, 248, 250, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "IBM Plex Sans", ui-sans-serif, sans-serif;
  color: var(--light);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
p {
  margin: 0;
}

.backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(11, 31, 58, 0.92) 0%,
      rgba(11, 31, 58, 0.72) 45%,
      rgba(11, 31, 58, 0.4) 100%
    ),
    url("hero.jpg") center / cover no-repeat;
  transform: scale(1.03);
  animation: hero-zoom 20s var(--ease) forwards;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 100dvh;
  width: min(100% - 2.5rem, 70rem);
  margin-inline: auto;
}

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 72px;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand svg {
  flex-shrink: 0;
}

.brand__accent {
  color: var(--sky);
}

.badge {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40rem;
  padding: 2.5rem 0 3rem;
  animation: rise-in 0.9s var(--ease) both;
}

.eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
}

.wordmark {
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.wordmark span {
  color: var(--sky);
}

.hero h2 {
  max-width: 20ch;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 36ch;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: rgb(247 248 250 / 78%);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.85rem 1.3rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease-out;
}

.cta:hover {
  transform: scale(1.03);
}

.cta:active {
  transform: scale(1);
}

.standouts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  animation: fade-up 0.7s var(--ease) 0.2s both;
}

.standouts article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.35rem 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.standouts span {
  grid-row: 1 / 3;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky);
}

.standouts h2 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.standouts p {
  max-width: 36ch;
  font-size: 0.95rem;
  color: rgb(247 248 250 / 72%);
}

.foot {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 1.5rem 0 1.75rem;
  font-size: 0.9rem;
  color: rgb(247 248 250 / 62%);
}

.foot a {
  font-weight: 500;
  color: var(--light);
}

.foot a:hover {
  color: var(--sky);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .standouts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .standouts article {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .standouts article:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .standouts span {
    grid-row: auto;
    margin-bottom: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .backdrop,
  .hero,
  .standouts {
    animation: none;
  }

  .backdrop {
    transform: none;
  }

  .cta {
    transition: none;
  }
}
