:root {
  --blue: #3b86f7;
  --blue-strong: #0d67e6;
  --blue-dark: #07469d;
  --teal: #66c1b6;
  --yellow: #e1df91;
  --ochre: #d4ad6f;
  --coral: #e5687a;
  --ink: #424242;
  --muted: #5e5e5e;
  --soft: #f7f7f7;
  --line: #e4e4e4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 57, 84, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Outfit", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px max(24px, calc((100% - 1160px) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(37, 57, 82, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-word {
  font-size: 1.38rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-word strong {
  font-weight: 800;
}

.brand-word span {
  font-weight: 300;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 0.9rem;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 15px 36px rgba(59, 134, 247, 0.34);
}

.button-primary:hover {
  background: var(--blue-strong);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  padding: 116px 0 46px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/images/v2-manager-care-1800.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 64, 0.9) 0%, rgba(7, 70, 157, 0.7) 46%, rgba(7, 70, 157, 0.18) 86%),
    linear-gradient(0deg, rgba(59, 134, 247, 0.48), rgba(66, 66, 66, 0.08));
}

.hero-content {
  position: relative;
  align-self: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  width: min(740px, 100%);
  margin: 0;
  font-size: 4.45rem;
  line-height: 0.95;
  font-weight: 900;
}

.hero-copy {
  width: min(630px, 100%);
  margin: 26px 0 0;
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.metric-strip {
  background: var(--ink);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  min-height: 148px;
  padding: 28px 0;
}

.strip-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.strip-grid strong {
  display: block;
  font-size: 1.62rem;
  line-height: 1.05;
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.section {
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.platform-copy h2,
.visual-content h2,
.outcomes-grid h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.platform-copy > p,
.visual-content p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.problem-section {
  background: var(--soft);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-item,
.indicator-grid article,
.audience-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-item h3,
.indicator-grid h3,
.audience-grid h3,
.flow-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.problem-item p,
.indicator-grid p,
.audience-grid p,
.flow-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.accent-bar {
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.teal {
  background: var(--teal);
}

.yellow {
  background: var(--yellow);
}

.coral {
  background: var(--coral);
}

.ochre {
  background: var(--ochre);
}

.blue {
  background: var(--blue);
}

.platform-section {
  background: var(--white);
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.flow-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.flow-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.flow-list article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.dashboard-mock {
  overflow: hidden;
  border: 1px solid rgba(66, 66, 66, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
}

.mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-topbar strong {
  margin-left: 10px;
  font-size: 0.9rem;
}

.mock-body {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.mock-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.mock-hero small,
.mock-hero strong {
  display: block;
}

.mock-hero small {
  color: rgba(255, 255, 255, 0.68);
}

.mock-hero strong {
  margin-top: 4px;
  font-size: 1.6rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.kpi {
  min-height: 134px;
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
}

.kpi small,
.kpi strong {
  display: block;
}

.kpi small {
  min-height: 40px;
  font-size: 0.78rem;
  font-weight: 700;
}

.kpi strong {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1;
}

.kpi span {
  display: block;
  height: 7px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.chart-panel {
  margin-top: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
}

.chart-heading span {
  color: var(--muted);
  font-size: 0.9rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: end;
  height: 180px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(66, 66, 66, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    var(--soft);
}

.bar-chart i {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.indicators-section {
  background: var(--soft);
}

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

.indicator-icon,
.audience-swatch {
  display: block;
  margin-bottom: 24px;
}

.indicator-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.audience-swatch {
  width: 100%;
  height: 10px;
  border-radius: 999px;
}

.visual-section {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center start;
  color: var(--white);
  overflow: hidden;
}

.visual-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 70, 157, 0.84), rgba(7, 70, 157, 0.24)),
    url("assets/images/v2-manager-care-1800.jpg");
  background-position: center;
  background-size: cover;
}

.visual-content {
  position: relative;
  width: min(610px, calc(100% - 48px));
}

.visual-content h2 {
  color: var(--white);
}

.visual-content p {
  color: rgba(255, 255, 255, 0.82);
}

.audiences-section {
  background: var(--white);
}

.outcomes-section {
  color: var(--white);
  background: var(--ink);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.outcomes-grid h2 {
  color: var(--white);
}

.outcome-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.outcome-list span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 60px;
  align-items: start;
}

.contact-note {
  margin-top: 32px;
  padding: 22px;
  border-left: 6px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background: var(--white);
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 4px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(40, 54, 75, 0.1);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 134, 247, 0.15);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #2f2f2f;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .two-column,
  .platform-grid,
  .outcomes-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container,
  .visual-content {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .brand-word {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 28, 66, 0.9) 0%, rgba(6, 58, 120, 0.66) 100%),
      linear-gradient(0deg, rgba(7, 70, 157, 0.58), rgba(7, 70, 157, 0.22));
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .strip-grid,
  .problem-list,
  .indicator-grid,
  .audience-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .strip-grid {
    gap: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .platform-copy h2,
  .visual-content h2,
  .outcomes-grid h2,
  .contact-copy h2 {
    font-size: 2.24rem;
  }

  .section-heading {
    text-align: left;
  }

  .flow-list article {
    grid-template-columns: 44px 1fr;
  }

  .flow-list article > span {
    width: 44px;
    height: 44px;
  }

  .mock-body,
  .lead-form {
    padding: 18px;
  }

  .chart-heading {
    display: grid;
  }

  .visual-section {
    min-height: 520px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .button,
  .problem-item,
  .indicator-grid article,
  .audience-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .button:hover,
  .problem-item:hover,
  .indicator-grid article:hover,
  .audience-grid article:hover {
    transform: translateY(-2px);
  }

  .problem-item:hover,
  .indicator-grid article:hover,
  .audience-grid article:hover {
    border-color: rgba(59, 134, 247, 0.32);
    box-shadow: 0 18px 40px rgba(40, 54, 75, 0.1);
  }
}
