:root {
  color-scheme: light;
  scroll-behavior: smooth;
  --navy: #08194a;
  --ink: #101828;
  --muted: #667085;
  --line: #d0d5dd;
  --blue: #175cd3;
  --cyan: #16b8c4;
  --bg: #f7f9fc;
}
* {
  box-sizing: border-box;
}
html {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
}
a {
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 99;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
}
.skip-link:focus {
  left: 10px;
}
.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
}
.compact-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 138px;
  height: auto;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.primary-nav a,
.text-link {
  color: #475467;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.primary-nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff !important;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 92, 211, 0.2);
}
.button:hover {
  background: #004eeb;
  transform: translateY(-1px);
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 13px;
}
.button-cyan {
  background: var(--cyan);
  color: #041c2c !important;
  box-shadow: 0 10px 24px rgba(22, 184, 196, 0.2);
  white-space: nowrap;
}
.button-cyan:hover {
  background: #2dd4bf;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding: 84px 0 78px;
}
.hero:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -160px;
  right: -280px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 184, 196, 0.18),
    rgba(23, 92, 211, 0.06) 48%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-copy,
.system-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid #b2ddff;
  border-radius: 999px;
  background: #eff8ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 7px 11px;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero-dash {
  display: inline-block;
  margin-inline: 0.04em;
  letter-spacing: 0;
}
.lede {
  max-width: 700px;
  margin: 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.65;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.actions .text-link {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}
.assurance {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.system-card,
.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.12);
}
.card-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.system-card h2 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.priority-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #eaecf0;
}
.priority-list > li > span,
.feature-card > span {
  color: #0aa6b2;
  font-size: 12px;
  font-weight: 900;
}
.priority-list strong,
.priority-list small {
  display: block;
}
.priority-list strong {
  margin-bottom: 4px;
  font-size: 15px;
}
.priority-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}
.proof-strip div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  padding: 20px 26px;
  border-left: 1px solid #eaecf0;
}
.proof-strip div:first-child {
  border-left: 0;
}
.proof-strip strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.03em;
}
.proof-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.section,
.split-section {
  padding: 94px 0;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section h2,
.section-intro h2,
.cta-band h2,
.pricing h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}
.body-copy {
  color: #475467;
  font-size: 18px;
  line-height: 1.7;
}
.body-copy p {
  margin: 0 0 18px;
}
.section-intro {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-intro .eyebrow {
  margin-inline: auto;
}
.section-intro > p:last-child {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.045);
}
.accent-card {
  border-color: #9ce6ed;
  background: linear-gradient(145deg, #effcfd, #fff);
}
.feature-card h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 52px;
  border-radius: 26px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 70px rgba(8, 25, 74, 0.18);
}
.cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(36px, 4vw, 50px);
}
.cta-band p:last-child {
  max-width: 760px;
  margin: 17px 0 0;
  color: #d0d5dd;
  font-size: 16px;
  line-height: 1.65;
}
.eyebrow-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #9ce6ed;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.steps article {
  padding: 30px;
  border-top: 3px solid var(--cyan);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.05);
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff8ff;
  color: var(--blue);
  font-weight: 900;
}
.steps h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 23px;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.72fr);
  gap: 74px;
  align-items: center;
}
.lede-small {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-size: 15px;
  line-height: 1.5;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0aa6b2;
  font-weight: 900;
}
.price-card {
  padding: 34px;
  border-color: #b2ddff;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 0;
  color: var(--navy);
}
.price strong {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.price span {
  color: var(--muted);
  font-size: 16px;
}
.no-setup {
  margin: 8px 0 0 !important;
  color: #0aa6b2 !important;
  font-weight: 850;
}
.price-card > p:not(.card-label):not(.price):not(.no-setup) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
}
.price-card li:before {
  content: '•';
  position: absolute;
  left: 3px;
  color: #0aa6b2;
  font-weight: 900;
}
.price-card .button {
  width: 100%;
}
.price-card small {
  display: block;
  margin-top: 16px;
  color: #98a2b3;
  font-size: 11px;
  line-height: 1.55;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  padding: 24px 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}
.faq-list p {
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.final-cta {
  margin-bottom: 80px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 50px;
  align-items: start;
  padding: 46px 0 30px;
}
.footer-brand {
  margin-bottom: 8px;
}
.footer-brand img {
  width: 124px;
}
.footer-grid p {
  margin: 0;
  font-size: 13px;
}
.footer-grid address {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-style: normal;
}
.footer-grid a,
.footer-grid address span {
  color: #475467;
  text-decoration: none;
}
.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 24px;
  font-size: 13px;
}
.copyright {
  margin: 0;
  padding: 0 20px 24px;
  text-align: center;
  color: #98a2b3;
  font-size: 11px;
}
.audit-body {
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(30, 136, 229, 0.12),
      transparent 32rem
    ),
    linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
}
.audit-page {
  padding-bottom: 20px;
}
.audit-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 24px 30px;
  text-align: center;
}
.audit-hero .eyebrow {
  margin-inline: auto;
}
.audit-hero h1,
.legal-page h1 {
  margin: 18px auto 16px;
  color: var(--navy);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.audit-hero > p:last-of-type {
  max-width: 720px;
  margin: 0 auto;
  color: #475467;
  font-size: 18px;
  line-height: 1.65;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.badges span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #344054;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}
.service-note {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 14px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.audit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}
.audit-card iframe {
  display: block;
  width: 100%;
  height: 1250px;
  border: 0;
  background: #fff;
}
.manual-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 24px;
  padding: 30px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 42px rgba(8, 25, 74, 0.16);
}
.manual-card h2 {
  margin: 14px 0 9px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.manual-card p:last-child {
  max-width: 760px;
  margin: 0;
  color: #d0d5dd;
  font-size: 16px;
  line-height: 1.65;
}
.audit-disclaimer {
  margin: 20px auto;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.legal-page {
  max-width: 860px;
  padding: 72px 0 100px;
}
.legal-page h1 {
  margin-left: 0;
}
.effective {
  color: var(--muted);
  font-weight: 700;
}
.legal-lede {
  font-size: 19px;
  line-height: 1.65;
  color: #475467;
}
.legal-page h2 {
  margin: 38px 0 10px;
  color: var(--navy);
  font-size: 25px;
}
.legal-page p,
.legal-page li,
.legal-page address {
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}
.legal-page a {
  color: var(--blue);
}
.legal-page address {
  font-style: normal;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0;
}
.contact-grid > * {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #475467;
  text-decoration: none;
}
.contact-grid strong {
  color: var(--navy);
  font-size: 18px;
}
.contact-grid span {
  line-height: 1.5;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .primary-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 58px;
  }
  .system-card {
    max-width: 680px;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .price-card {
    max-width: 620px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    gap: 14px;
    padding: 16px 0;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 104px;
    height: auto;
  }
  .button-small {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 11px;
  }
  .hero {
    padding: 48px 0 54px;
  }
  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .lede {
    font-size: 17px;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .actions .text-link {
    text-align: center;
  }
  .system-card {
    padding: 24px;
  }
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-strip div {
    min-height: 92px;
    padding: 18px;
    border-bottom: 1px solid #eaecf0;
  }
  .proof-strip div:nth-child(odd) {
    border-left: 0;
  }
  .proof-strip div:nth-child(n + 3) {
    border-bottom: 0;
  }
  .section,
  .split-section {
    padding: 70px 0;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: auto;
  }
  .cta-band,
  .manual-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }
  .button-cyan {
    width: 100%;
    white-space: normal;
  }
  .pricing {
    gap: 42px;
  }
  .price-card {
    padding: 26px;
  }
  .price strong {
    font-size: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }
  .footer-grid nav {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    gap: 10px 18px;
  }
  .audit-hero {
    padding: 26px 4px 24px;
  }
  .audit-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .audit-hero > p:last-of-type {
    font-size: 16px;
  }
  .service-note {
    display: block;
    padding: 0 10px;
  }
  .audit-card {
    border-radius: 16px;
  }
  .audit-card iframe {
    height: 1600px;
  }
  .legal-page {
    padding: 48px 0 70px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  a {
    transition: none;
  }
}
