:root {
  --hrs-navy: #01426a;
  --hrs-blue: #0061a0;
  --hrs-sky: #00a3e0;
  --hrs-teal: #5cb8b2;
  --hrs-gray-11: #53565a;
  --hrs-gray-8: #888b8d;
  --hrs-gray-2: #d0d0ce;
  --hrs-orange: #f4633a;
  --ink: #16344c;
  --muted: #5a6a76;
  --line: rgba(1, 66, 106, 0.14);
  --soft-blue: #f1f8fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(1, 66, 106, 0.16);
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Graphik, Arial, Helvetica, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 16px/1.55 var(--font-body);
}

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

a {
  color: inherit;
}

.landing-shell {
  overflow: hidden;
  background: var(--white);
}

.hero,
.outcomes,
.pitch-grid,
.screenshots,
.detail-band,
.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  --hero-visual-lift: clamp(96px, 12vh, 144px);
  position: relative;
  min-height: calc(clamp(620px, 76vh, 760px) - var(--hero-visual-lift));
  padding: 0 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: calc(84px - var(--hero-visual-lift)) -10vw 44px 34%;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.18) 70%),
    radial-gradient(circle at 78% 20%, rgba(0, 163, 224, 0.18), transparent 34%),
    radial-gradient(circle at 80% 84%, rgba(92, 184, 178, 0.18), transparent 38%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--hrs-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--hrs-navy);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.4vw, 6.8rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  color: var(--hrs-navy);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  color: var(--hrs-navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 410px;
  margin-bottom: 26px;
  color: var(--hrs-gray-11);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--hrs-blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 97, 160, 0.25);
}

.button.primary:hover {
  background: var(--hrs-navy);
}

.button.secondary {
  border-color: rgba(0, 97, 160, 0.24);
  background: var(--white);
  color: var(--hrs-navy);
}

.hero-proof {
  position: absolute;
  z-index: 1;
  right: clamp(-240px, -9vw, -72px);
  bottom: 64px;
  width: min(840px, 67vw);
  transform: rotate(-2deg);
  opacity: 0.92;
}

.hero-proof img,
.screenshot-showcase img {
  border: 1px solid rgba(1, 66, 106, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 0;
  }

  .hero::before {
    inset: 210px -20vw 0 6vw;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 30px;
    transform: none;
  }
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 4px 0 80px;
}

.outcome {
  border-top: 4px solid var(--hrs-teal);
  padding: 18px 0 0;
}

.outcome strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hrs-navy);
  font-size: 1.05rem;
}

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

.pitch-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) 1.14fr;
  gap: 52px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--hrs-blue);
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  grid-column: 2;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.screenshots {
  padding: 78px 0 88px;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

figure {
  margin: 0;
}

.screenshot-feature {
  grid-row: span 2;
}

figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.96rem;
}

figcaption strong {
  display: block;
  color: var(--hrs-navy);
  font-size: 1rem;
}

.detail-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--hrs-gray-11);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--hrs-teal);
  transform: rotate(45deg);
}

.cta {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 70px 0 86px;
}

.cta img {
  width: 74px;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p:last-child {
  margin-bottom: 0;
  max-width: 680px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .outcomes,
  .pitch-grid,
  .screenshots,
  .detail-band,
  .cta {
    width: min(100% - 28px, 720px);
  }

  .hero {
    padding-bottom: 72px;
  }

  .outcomes,
  .pitch-grid,
  .screenshot-showcase,
  .detail-band,
  .cta {
    grid-template-columns: 1fr;
  }

  .outcomes {
    padding-bottom: 56px;
  }

  .pitch-grid,
  .screenshots {
    padding: 56px 0;
  }

  .screenshot-feature {
    grid-row: auto;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .cta {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list h3,
  .feature-list p {
    grid-column: auto;
  }
}
