:root {
  color-scheme: light;
  --ink: #121826;
  --muted: #5c6676;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --line: #dbe2ea;
  --green: #176b54;
  --blue: #1f5fbf;
  --gold: #9f641e;
  --red: #b94535;
  --charcoal: #182230;
  --shadow: 0 18px 50px rgba(18, 24, 38, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  padding: 0 clamp(18px, 5vw, 72px);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  outline: 0;
}

.nav-cta {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 8px 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
    var(--soft);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 92px);
}

.hero-copy {
  max-width: 820px;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #303b4d;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.38;
}

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

.hero-actions {
  margin-top: 30px;
}

.audience-row {
  margin-top: 26px;
}

.audience-row span {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 7px 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 18px;
}

.button.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.11);
  outline: 0;
}

.product-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-topbar {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.visual-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px #e8f5ef;
}

.visual-topbar strong {
  font-size: 16px;
}

.visual-topbar small {
  color: var(--muted);
  font-weight: 850;
}

.brief-list {
  display: grid;
}

.brief-list > div {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.brief-list strong {
  color: var(--ink);
  font-size: 17px;
}

.brief-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.severity {
  width: max-content;
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  text-transform: uppercase;
}

.severity.high {
  background: var(--red);
}

.severity.medium {
  background: var(--gold);
}

.severity.low {
  background: var(--green);
}

.provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 18px;
}

.provider-strip span {
  border: 1px solid #c8d9f4;
  border-radius: 7px;
  background: #f3f7ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}

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

.feature-strip article {
  min-height: 184px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 38px);
}

.feature-strip span,
.lineup-grid span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-strip strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.15;
}

.feature-strip p,
.split-section p,
.run-grid span,
.lineup-grid p,
.lineup-grid li,
.cta-section p,
.contact-form .form-status {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 92px);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.split-section p {
  max-width: 760px;
  font-size: 18px;
}

.run-grid {
  display: grid;
  gap: 12px;
}

.run-grid div,
.lineup-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.run-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.run-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lineup-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.lineup-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lineup-grid li {
  position: relative;
  padding-left: 18px;
}

.lineup-grid li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.tools-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-cloud span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid #c8d9f4;
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  padding: 0 12px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--charcoal);
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section .eyebrow {
  color: #8be0bd;
}

.cta-section p {
  color: #d8dee8;
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 12px;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(23, 107, 84, 0.16);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
}

.form-status.is-sent {
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--charcoal);
  color: #d8dee8;
  padding: 0 clamp(20px, 6vw, 92px);
}

.site-footer span:first-child {
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-nav a {
    min-height: 34px;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-visual {
    display: none;
  }

  .feature-strip,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
