html {
  scroll-behavior: smooth;
}

body > .main {
  padding-top: 0;
}

.prod-site {
  --prod-navy: #153554;
  --prod-navy-deep: #0d2740;
  --prod-azure: #00a9e0;
  --prod-azure-ink: #00719f;
  --prod-ink: #17324d;
  --prod-copy: #52697a;
  --prod-line: #dce6eb;
  --prod-cloud: #f5f8fa;
  --prod-sky: #eaf4f8;
  --prod-white: #ffffff;
  background: var(--prod-white);
  color: var(--prod-ink);
  font-family: "freight-sans-pro", Arial, sans-serif;
  font-size: 17px;
  margin: 0;
  overflow: hidden;
}

.prod-site * {
  box-sizing: border-box;
}

.prod-site a:focus-visible,
.prod-site button:focus-visible {
  outline: 3px solid var(--prod-azure);
  outline-offset: 3px;
}

.prod-site-container {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

/* Skip link — visually hidden until keyboard focus. */
.prod-skip {
  background: var(--prod-navy);
  border-radius: 0 0 10px 0;
  color: var(--prod-white) !important;
  font-size: 14px;
  font-weight: 700;
  left: 0;
  padding: 13px 20px;
  position: absolute;
  text-decoration: none;
  top: -70px;
  transition: top .2s ease;
  z-index: 300;
}

.prod-skip:focus {
  top: 0;
}

/* Dedicated products navigation */
.prod-site .prod-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(21, 53, 84, .1);
  box-shadow: 0 8px 28px rgba(21, 53, 84, .06);
  height: auto;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.prod-header-inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  min-height: 80px;
}

.prod-brand {
  align-items: center;
  color: var(--prod-navy) !important;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.prod-brand-auditfile {
  display: block;
  height: 35px;
  width: 158px;
}

.prod-brand-divider {
  background: var(--prod-line);
  height: 31px;
  width: 1px;
}

.prod-brand-product {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.prod-header-links {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.prod-header-links a,
.prod-header-login {
  color: var(--prod-ink) !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.prod-header-links a:hover,
.prod-header-login:hover {
  color: var(--prod-azure-ink) !important;
}

.prod-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.prod-header-cta {
  background: var(--prod-navy);
  border-radius: 9px;
  color: var(--prod-white) !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.prod-header-cta:hover {
  background: var(--prod-azure-ink);
  transform: translateY(-1px);
}

/* Hero */
.prod-hero {
  background:
    radial-gradient(circle at 88% 4%, rgba(0, 169, 224, .12), transparent 32%),
    linear-gradient(115deg, #f7fbfd 0%, var(--prod-sky) 100%);
  overflow: hidden;
  padding: 92px 0 84px;
  position: relative;
}

.prod-hero:before,
.prod-hero:after {
  border: 1px solid rgba(0, 169, 224, .16);
  border-radius: 28px;
  content: '';
  height: 250px;
  position: absolute;
  transform: rotate(18deg);
  width: 250px;
}

.prod-hero:before {
  left: -170px;
  top: 60px;
}

.prod-hero:after {
  bottom: -190px;
  right: -110px;
}

.prod-hero-inner {
  position: relative;
  z-index: 1;
}

.prod-eyebrow,
.prod-section-heading > span,
.prod-final-cta-inner > div > span {
  color: var(--prod-azure-ink);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.prod-site h1 {
  color: var(--prod-navy);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.01;
  margin: 20px 0 24px;
  max-width: 760px;
}

.prod-lede {
  color: var(--prod-copy);
  font-size: 21px;
  line-height: 1.55;
  margin: 0;
  max-width: 750px;
}

.prod-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.prod-button {
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 15px 22px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.prod-button-primary {
  background: var(--prod-navy);
  color: var(--prod-white) !important;
}

.prod-button-primary:hover {
  background: var(--prod-azure-ink);
}

.prod-button-on-dark {
  border-color: rgba(255, 255, 255, .5);
  color: var(--prod-white) !important;
}

.prod-button-on-dark:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--prod-white);
}

.prod-text-link {
  align-self: center;
  border-bottom: 1px solid rgba(0, 113, 159, .35);
  color: var(--prod-azure-ink) !important;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
  padding: 5px 0 3px;
  text-decoration: none;
}

.prod-text-link:hover {
  border-color: var(--prod-azure-ink);
}

/* Shared sections */
.prod-section {
  padding: 92px 0;
  scroll-margin-top: 90px;
}

.prod-section-alt {
  background: var(--prod-cloud);
  border-bottom: 1px solid var(--prod-line);
  border-top: 1px solid var(--prod-line);
}

.prod-section-heading {
  margin-bottom: 40px;
  max-width: 790px;
}

.prod-section-heading h2,
.prod-final-cta h2 {
  color: var(--prod-navy);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.07;
  margin: 13px 0 15px;
}

.prod-section-heading p {
  color: var(--prod-copy);
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

/*
 * Card system. Every product card carries a colored top keyline in its
 * product's accent, set with a per-card modifier class via --prod-accent.
 */
.prod-card {
  background: var(--prod-white);
  border: 1px solid var(--prod-line);
  border-radius: 14px;
  border-top: 4px solid var(--prod-accent, var(--prod-azure));
  box-shadow: 0 8px 24px rgba(21, 53, 84, .055);
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.prod-card:hover {
  box-shadow: 0 18px 42px rgba(21, 53, 84, .12);
  transform: translateY(-3px);
}

.prod-card-platform {
  --prod-accent: #00a9e0;
}

.prod-card-advantage {
  --prod-accent: #c9a227;
}

.prod-card-agents {
  --prod-accent: #7c5cff;
}

.prod-card-chatcpa {
  --prod-accent: #5e54d6;
}

.prod-card-leasepunch {
  --prod-accent: #078b84;
}

.prod-card-esign {
  --prod-accent: #4c5fd5;
}

.prod-card-portal {
  --prod-accent: #0a8fa3;
}

.prod-card-billing {
  --prod-accent: #0e7a4e;
}

.prod-card-programs {
  --prod-accent: #153554;
}

.prod-card-ios {
  --prod-accent: #00a9e0;
}

.prod-card-cli {
  --prod-accent: #00a9e0;
}

.prod-card-name {
  color: var(--prod-navy);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 9px;
}

.prod-card-oneliner {
  color: var(--prod-copy);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.prod-card-points {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.prod-card-points li {
  color: var(--prod-copy);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.prod-card-points li:before {
  background: var(--prod-accent, var(--prod-azure));
  border-radius: 50%;
  content: '';
  height: 7px;
  left: 2px;
  position: absolute;
  top: 8px;
  width: 7px;
}

.prod-card-link {
  align-items: center;
  border-top: 1px solid var(--prod-line);
  color: var(--prod-navy) !important;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  margin-top: auto;
  padding-top: 17px;
  text-decoration: none;
}

.prod-card-link .prod-card-arrow {
  color: var(--prod-accent, var(--prod-azure));
  transition: transform .2s ease;
}

.prod-card-link:hover {
  color: var(--prod-azure-ink) !important;
}

.prod-card-link:hover .prod-card-arrow {
  transform: translateX(4px);
}

/* Flagship cards — large, two columns. */
.prod-flagship-grid {
  display: grid;
  gap: 20px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prod-card-flagship {
  padding: 34px;
}

.prod-card-flagship .prod-card-name {
  font-size: 27px;
}

.prod-card-flagship .prod-card-oneliner {
  font-size: 17px;
}

/* Built into every engagement — medium, three columns. */
.prod-engagement-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prod-engagement-grid .prod-card-name {
  font-size: 21px;
}

.prod-engagement-grid .prod-card-oneliner {
  font-size: 15px;
}

.prod-engagement-grid .prod-card-points li {
  font-size: 14px;
}

/* AuditFile anywhere — two wide cards. */
.prod-anywhere-grid {
  display: grid;
  gap: 20px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prod-card-wide {
  padding: 34px;
}

/* Platform features — small, four columns. */
.prod-feature-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.prod-feature {
  background: var(--prod-white);
  border: 1px solid var(--prod-line);
  border-radius: 12px;
  padding: 22px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.prod-feature:hover {
  border-color: rgba(0, 169, 224, .5);
  box-shadow: 0 12px 28px rgba(21, 53, 84, .09);
  transform: translateY(-2px);
}

.prod-feature h3 {
  color: var(--prod-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.prod-feature h3 a {
  border-bottom: 2px solid rgba(0, 169, 224, .45);
  color: var(--prod-navy) !important;
  padding-bottom: 1px;
  text-decoration: none;
}

.prod-feature h3 a:hover {
  border-color: var(--prod-azure-ink);
  color: var(--prod-azure-ink) !important;
}

.prod-feature p {
  color: var(--prod-copy);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Trust band */
.prod-trust {
  background: var(--prod-navy-deep);
  color: var(--prod-white);
  padding: 30px 0;
}

.prod-trust-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: center;
}

.prod-trust-item {
  align-items: center;
  color: #e7f0f4;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
}

.prod-trust-item:before {
  background: rgba(0, 169, 224, .18);
  border: 1px solid rgba(0, 169, 224, .45);
  border-radius: 50%;
  color: #7fd6f2;
  content: '\2713';
  display: inline-grid;
  font-size: 11px;
  font-weight: 700;
  height: 20px;
  margin-right: 9px;
  place-items: center;
  width: 20px;
}

.prod-trust-item a {
  color: inherit;
  text-decoration: none;
}

.prod-trust-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Final CTA */
.prod-final-cta {
  background: var(--prod-navy);
  color: var(--prod-white);
  padding: 74px 0;
}

.prod-final-cta-inner {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto;
}

.prod-final-cta-inner > div > span {
  color: #7fd6f2;
}

.prod-final-cta h2 {
  color: var(--prod-white);
  margin-bottom: 12px;
  max-width: 780px;
}

.prod-final-cta p {
  color: #c6d6e0;
  font-size: 17px;
  margin: 0;
}

.prod-final-cta .prod-actions {
  flex-wrap: nowrap;
  margin: 0;
}

.prod-final-cta .prod-button-primary {
  background: var(--prod-white);
  color: var(--prod-navy) !important;
}

.prod-final-cta .prod-button-primary:hover {
  background: var(--prod-sky);
}

/* Compact brand footer */
.prod-footer {
  background: #091c2d;
  color: #9fb2c0;
  padding: 48px 0 34px;
  position: static;
}

.prod-footer-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
}

.prod-footer-brand img {
  filter: brightness(0) invert(1);
  height: 35px;
  opacity: .95;
  width: 158px;
}

.prod-footer-brand p {
  font-size: 13px;
  margin: 12px 0 0;
}

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

.prod-footer a {
  color: #d5e0e7;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
}

.prod-footer a:hover {
  color: var(--prod-white);
}

.prod-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
}

/* Responsive collapse */
@media (max-width: 1000px) {
  .prod-header-links {
    display: none;
  }

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

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

  .prod-card-flagship,
  .prod-card-wide {
    padding: 28px;
  }

  .prod-card-flagship .prod-card-name {
    font-size: 24px;
  }

  .prod-final-cta-inner {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .prod-final-cta .prod-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .prod-site-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .prod-header-inner {
    min-height: 70px;
  }

  .prod-brand-auditfile {
    height: 29px;
    width: 131px;
  }

  .prod-brand-divider {
    height: 27px;
  }

  .prod-brand-product {
    font-size: 17px;
  }

  .prod-hero {
    padding: 68px 0 64px;
  }

  .prod-section {
    padding: 72px 0;
  }
}

@media (max-width: 600px) {
  .prod-site {
    font-size: 16px;
  }

  .prod-header-inner {
    gap: 12px;
  }

  .prod-brand {
    gap: 8px;
  }

  .prod-brand-auditfile {
    height: 26px;
    width: 117px;
  }

  .prod-brand-divider,
  .prod-header-login {
    display: none;
  }

  .prod-brand-product {
    font-size: 15px;
  }

  .prod-header-cta {
    border-radius: 7px;
    font-size: 13px;
    padding: 10px 12px;
  }

  .prod-hero {
    padding-top: 52px;
  }

  .prod-site h1 {
    font-size: 40px;
  }

  .prod-lede {
    font-size: 18px;
  }

  .prod-actions,
  .prod-button {
    width: 100%;
  }

  .prod-button {
    align-items: center;
  }

  .prod-text-link {
    margin: 3px 0 0;
    text-align: center;
  }

  .prod-flagship-grid,
  .prod-engagement-grid,
  .prod-anywhere-grid,
  .prod-feature-grid {
    grid-template-columns: 1fr;
  }

  .prod-card,
  .prod-card-flagship,
  .prod-card-wide {
    padding: 24px;
  }

  .prod-trust-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .prod-final-cta {
    padding: 60px 0;
  }

  .prod-final-cta .prod-actions {
    width: 100%;
  }

  .prod-footer-inner {
    grid-template-columns: 1fr;
  }

  .prod-footer-links {
    gap: 15px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .prod-site *,
  .prod-site *:before,
  .prod-site *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
