:root {
  --ink: #12313a;
  --muted: #60727a;
  --line: #d9e5e8;
  --paper: #f7fbfb;
  --white: #ffffff;
  --teal: #285aa8;
  --green: #55a870;
  --navy: #17396f;
  --gold: #f0c400;
  --shadow: 0 18px 45px rgba(18, 49, 58, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 148px;
  height: auto;
  display: block;
}

.brand span:last-child {
  font-size: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.drop-trigger {
  padding: 10px 12px;
  color: #37535c;
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown:hover .drop-trigger,
.drop-trigger.active {
  color: var(--teal);
  background: #e9f5f5;
}

.dropdown {
  position: relative;
  padding: 6px 0;
}

.drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.drop-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 244px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  color: var(--ink);
  font-size: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(240, 196, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #f7fbfb 0%, #eef4f8 52%, #dfe8f1 100%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 46px;
  align-items: center;
  padding: 88px 0 72px;
}

.hero-copy {
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 660px;
  margin-top: 22px;
  color: #48616a;
  font-size: 20px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 44px;
}

.metric,
.card,
.form-card,
.security-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-graph {
  align-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-graph-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}

.hero-graph-top p {
  color: var(--muted);
  font-weight: 800;
}

.hero-graph-top strong {
  display: block;
  color: var(--navy);
  font-size: 72px;
  line-height: 0.95;
}

.hero-graph-top span {
  padding: 8px 12px;
  color: var(--navy);
  background: #fff4b8;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.claim-chart {
  height: 250px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  padding: 18px 14px 34px;
  background:
    linear-gradient(to top, rgba(217, 229, 232, 0.72) 1px, transparent 1px) 0 0 / 100% 25%,
    #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.claim-bar {
  position: relative;
  min-height: 36px;
  height: var(--height);
  background: linear-gradient(180deg, #6f91c9, var(--teal));
  border-radius: 7px 7px 0 0;
}

.claim-bar.highlight {
  background: linear-gradient(180deg, var(--gold), #d6a800);
}

.claim-bar::before {
  content: attr(style);
  display: none;
}

.claim-bar.highlight::after {
  content: "99%";
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.claim-bar span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.graph-note {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.graph-note span {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 86px 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 26px;
  box-shadow: none;
}

.card[id] {
  scroll-margin-top: 96px;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.card p,
.feature-list,
.plain-list {
  margin-top: 14px;
  color: var(--muted);
}

.leader-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: start;
}

.leader-initials {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff4b8;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
}

.role {
  margin-top: 7px;
  color: var(--teal);
  font-weight: 800;
}

.software-section {
  background: linear-gradient(180deg, #f7fbfb, #eef4f8);
}

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

.software-logo {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.software-logo img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 76px;
  object-fit: contain;
}

.software-note {
  max-width: 850px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.feature-list,
.plain-list {
  padding-left: 20px;
}

.feature-list li,
.plain-list li {
  margin: 8px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.visual-panel {
  min-height: 430px;
  padding: 28px;
  background: #eef7f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard {
  height: 100%;
  min-height: 370px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dash-top,
.dash-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dash-pill {
  width: 112px;
  height: 28px;
  background: #d9efee;
  border-radius: 14px;
}

.dash-pill.short {
  width: 76px;
  background: #f3dfb9;
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
  padding: 26px 18px 0;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bar {
  min-height: 70px;
  border-radius: 7px 7px 0 0;
  background: var(--teal);
}

.bar:nth-child(2) {
  min-height: 120px;
  background: var(--green);
}

.bar:nth-child(3) {
  min-height: 96px;
  background: var(--gold);
}

.bar:nth-child(4) {
  min-height: 160px;
  background: var(--navy);
}

.bar:nth-child(5) {
  min-height: 132px;
  background: #68a9b0;
}

.dash-row {
  justify-content: space-between;
}

.dash-line {
  height: 12px;
  flex: 1;
  background: #dcebed;
  border-radius: 8px;
}

.page-hero {
  padding: 76px 0 48px;
  background: linear-gradient(135deg, #edf7f7, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
}

.security-panel {
  padding: 34px;
  background: linear-gradient(135deg, #14353d, #193f63);
  color: var(--white);
}

.security-panel p,
.security-panel li {
  color: #d4e5e9;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.form-card {
  padding: 26px;
}

.contact-card {
  align-self: start;
  padding: 34px;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.9;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 7px;
  color: #37535c;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfefe;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

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

.footer {
  padding: 42px 0;
  color: #d8e7ea;
  background: #102c34;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .dropdown {
    display: grid;
    padding: 0;
  }

  .drop-trigger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-menu a {
    white-space: normal;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 66px 0;
  }

  .hero-graph {
    max-width: 560px;
  }

  .metrics,
  .software-logos,
  .grid.three,
  .grid.two,
  .split,
  .form-grid,
  .leader-card {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    display: block;
  }

  .section-head p,
  .footer-links {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
