/* base.css — Essential global styles (replaces HCP's missing app.css) */

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0A2540;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1235px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #FBBF24;
  color: #0A2540;
  z-index: 100000;
  font-weight: 600;
}

/* ─── Header ─── */
.hcp-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.hcp-site-header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

#top-banner.has-no-banner {
  display: none;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.logo:hover {
  opacity: 0.8;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

/* ─── Navigation ─── */
#hcp-main-nav {
  display: flex;
  align-items: center;
}

.hcp-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  background: #fff;
}

.hcp-nav-menu > li {
  position: static;
}

.hcp-nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 22px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #0A2540;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
  gap: 4px;
  line-height: 19px;
}

.hcp-nav-menu > li > a:hover {
  color: #FBBF24;
}

.hcp-nav-menu > li.has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  margin-left: 2px;
  transition: transform 0.15s;
}

.hcp-nav-menu > li.has-children:hover > a::after,
.hcp-nav-menu > li.has-children.open > a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* ─── Mega-menu dropdown panel ─── */
.hcp-nav-menu > li > div {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 32px 40px 24px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.hcp-nav-menu > li.open > div {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 769px) {
  .hcp-nav-menu > li:hover > div {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Category columns inside dropdown */
.hcp-nav-menu > li > div > .sub-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Solutions: 3 category columns */
#solutions > div > .sub-menu {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Industries: 2 column groups side by side */
#industries > div > .sub-menu {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Resources: single column layout */
#resources > div > .sub-menu {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Category headers (Grow Revenue, Manage Jobs, etc.) */
.hcp-nav-menu > li > div > .sub-menu > li.has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  color: #0A2540;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hcp-nav-menu > li > div > .sub-menu > li.has-children > a:hover {
  color: #FBBF24;
}

/* Child items within each category */
.hcp-nav-menu > li > div .sub-menu .sub-menu li a {
  display: flex;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #0A2540;
  text-decoration: none;
  transition: background 0.15s;
  gap: 12px;
}

.hcp-nav-menu > li > div .sub-menu .sub-menu li a:hover {
  background: #F5F7FA;
}

/* Industries: items without descriptions, simpler layout */
#industries .sub-menu .sub-menu li a {
  padding: 8px 12px;
  border-radius: 8px;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #0A2540;
}

.item-description {
  display: block;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
}

.item-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.item-icon.icon-after {
  margin-left: auto;
  color: #999;
  font-size: 18px;
}

.item-icon.icon-before {
  width: 36px;
  height: 36px;
  background: #E8F4FD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2540;
  flex-shrink: 0;
}

/* Dropdown footer ("See All Solutions", etc.) */
.item-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
  padding-top: 16px;
}

.item-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #0A2540;
  text-decoration: none;
  transition: color 0.15s;
}

.item-footer a:hover {
  color: #FBBF24;
}

/* ─── Mobile nav elements (hidden on desktop) ─── */
.hcp-mobile.hcp-nav-header,
.hcp-mobile.hcp-nav-bottom {
  display: none;
}

.nav-trigger {
  display: none;
  align-items: center;
  margin-left: 15px;
}

/* ─── Header CTA ─── */
.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 8px;
}

.header-cta-experiment {
  display: flex;
  justify-content: flex-end;
}

.cta-wrap {
  margin-left: 15px;
}

.cta-above-576 .hcp-button {
  font-size: 14px;
  height: 40px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
}

.cta-below-576 {
  display: none;
}

/* ─── Hamburger ─── */
.hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  top: 3px;
}

.hamburger_line {
  stroke: #0A2540;
  stroke-width: 8;
  stroke-linecap: round;
  fill: none;
  transform-origin: center center;
}

.hamburger_line-top {
  transform: translateY(-25%);
  transition: transform 0.15s 0.15s, opacity 0.15s 75ms;
}

.hamburger_line-bottom {
  transform: translateY(25%);
  transition: transform 0.15s 0.15s, opacity 0.15s 75ms;
}

.hamburger_line-mid1,
.hamburger_line-mid2 {
  transition: transform 0.15s;
}

.burger {
  display: flex;
  position: relative;
}

.btn-overflow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

body.nav-open {
  overflow: hidden;
}

/* Hamburger → X animation when nav is open */
body.nav-open .hamburger_line-top,
body.nav-open .hamburger_line-bottom {
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.15s, opacity 0.15s 75ms;
}

body.nav-open .hamburger_line-mid1 {
  transform: rotate(45deg);
  transition: transform 0.15s 0.15s;
}

body.nav-open .hamburger_line-mid2 {
  transform: rotate(-45deg);
  transition: transform 0.15s 0.15s;
}

/* ─── Desktop: hide burger, show nav (769px+) ─── */
@media (min-width: 769px) {
  .nav-trigger {
    display: none !important;
  }
  /* dropdown positioning handled by base rule (left:0; right:0) */
}

/* ─── Tablet: hide nav, show burger (max 768px) ─── */
@media (max-width: 768px) {
  .nav-wrapper {
    display: none;
  }

  .nav-trigger {
    display: flex;
  }

  .cta-above-576 {
    display: none;
  }

  .cta-below-576 {
    display: block;
  }

  @media (min-width: 577px) {
    .cta-below-576 {
      display: block;
    }
  }

  /* Mobile nav — always present but offscreen, slides in */
  .nav-wrapper {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  body.nav-open .nav-wrapper {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.nav-open #hcp-main-nav {
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
  }

  body.nav-open .hcp-mobile.hcp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
  }

  body.nav-open .hcp-mobile.hcp-nav-header .hcp-logo {
    font-size: 20px;
  }

  body.nav-open .hcp-mobile.hcp-nav-header .hcp-btn {
    cursor: pointer;
    font-size: 24px;
    padding: 4px 8px;
  }

  body.nav-open .hcp-mobile.hcp-nav-header .menu-title {
    display: none;
  }

  body.nav-open .hcp-mobile.hcp-nav-header .hcp-nav-menu-back {
    display: none;
  }

  body.nav-open .hcp-nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    flex: 1;
  }

  body.nav-open .hcp-nav-menu > li {
    border-bottom: 1px solid #f3f4f6;
  }

  body.nav-open .hcp-nav-menu > li > a {
    padding: 16px 24px;
    font-size: 16px;
    justify-content: space-between;
  }

  body.nav-open .hcp-nav-menu > li > div {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 24px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: auto;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  body.nav-open .hcp-nav-menu > li.open > div {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 0 24px 16px;
  }

  body.nav-open .hcp-nav-menu > li > div > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  body.nav-open .hcp-nav-menu > li > div > .sub-menu > li.has-children > a {
    padding: 12px 0;
    font-size: 13px;
  }

  body.nav-open .hcp-nav-menu > li > div .sub-menu .sub-menu li a {
    padding: 10px 16px;
  }

  body.nav-open .hcp-mobile.hcp-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 32px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
  }

  body.nav-open .hcp-nav-btn-golden {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FBBF24;
    color: #0A2540;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
  }
}

/* ─── Buttons ─── */
.hcp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hcp-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hcp-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.hcp-button:focus-visible,
.navigator:focus-visible,
.form-field:focus-visible,
button:focus-visible {
  outline: 2px solid #FBBF24;
  outline-offset: 2px;
}

.hcp-button--yellow {
  background-color: #FBBF24;
  color: #0A2540;
  border-color: #FBBF24;
}

.hcp-button--yellow:hover {
  background-color: #e5ac1c;
  border-color: #e5ac1c;
}

.hcp-button--blue {
  background-color: #0A2540;
  color: #fff;
  border-color: #0A2540;
}

.hcp-button--blue:hover {
  background-color: #123253;
  border-color: #123253;
}

.hcp-button--white {
  background-color: #fff;
  color: #0A2540;
  border-color: #fff;
}

.hcp-button--white:hover {
  background-color: #F5F7FA;
  border-color: #F5F7FA;
}

.hcp-button--outline {
  background: transparent;
}

.hcp-button--outline.hcp-button--white {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.hcp-button--outline.hcp-button--white:hover {
  background-color: rgba(255,255,255,0.12);
}

.hcp-button--outline.hcp-button--blue {
  color: #0A2540;
  border-color: #0A2540;
  background: transparent;
}

.hcp-button--outline.hcp-button--blue:hover {
  background-color: #0A2540;
  color: #fff;
}

.hcp-button--outline.hcp-button--yellow {
  color: #FBBF24;
  border-color: #FBBF24;
  background: transparent;
}

.hcp-button--outline.hcp-button--yellow:hover {
  background-color: #FBBF24;
  color: #0A2540;
}

/* ─── Forms ─── */
.hcp-book-demo-form,
.hcp-getting-started-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}

.field-container {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.form-field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #0A2540;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field:focus {
  border-color: #FBBF24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}

.field-container label {
  display: none;
}

.hcp-book-demo-form button[type="submit"],
.hcp-getting-started-form button[type="submit"] {
  padding: 14px 28px;
  background-color: #FBBF24;
  color: #0A2540;
  border: 2px solid #FBBF24;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hcp-book-demo-form button[type="submit"]:hover,
.hcp-getting-started-form button[type="submit"]:hover {
  background-color: #e5ac1c;
  border-color: #e5ac1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}

.hcp-book-demo-form button[type="submit"]:active,
.hcp-getting-started-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

select.form-field {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%230A2540'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.disclaimer {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* ─── Hero form dark-mode fields ─── */
.block-hero-carousel .form-field {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.block-hero-carousel .form-field::placeholder {
  color: rgba(255,255,255,0.6);
}

.block-hero-carousel select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23ffffff'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Override block CSS 2-column grid for our 3-field hero form */
.block-hero-carousel .cta-default-wrapper {
  max-width: 620px !important;
}

.block-hero-carousel .cta-default-wrapper form {
  display: flex !important;
  gap: 8px;
  grid-template-columns: unset !important;
}

.block-hero-carousel .cta-default-wrapper .field-container {
  flex: 1;
  min-width: 0;
}

.block-hero-carousel .cta-default-wrapper button[type="submit"] {
  white-space: nowrap;
}

.block-hero-carousel .hcp-carousel .items {
  overflow: visible !important;
  transition: none !important;
}

/* Schematic — block CSS handles layout; helper classes only */
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

/* Social Proof — block CSS handles layout */

/* ─── Testimonial Banner — layout handled by block-testimonial-banner.css ─── */

/* Side-by-side Spotlight — block CSS handles layout */
.button-wrapper {
  margin-top: 24px;
}

/* CTA Banner — layout handled by block-cta-banner.css */
.copy-title {
  font-weight: 400;
  opacity: 0.8;
}

/* ─── Spotlight 2 ─── */
.block-spotlight-2 {
  background: linear-gradient(135deg, #0A2540 0%, #123253 100%);
}

.block-spotlight-2 .spotlight-wrapper .copy .spotlight-cta .cta-default-wrapper form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}

.block-spotlight-2 .spotlight-wrapper .copy .spotlight-cta .cta-default-wrapper .field-container {
  flex: 1;
  min-width: 0;
}

.block-spotlight-2 .spotlight-wrapper .disclaimer {
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.global-star-rating {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.rating-wrapper {
  text-align: center;
}

.dashboard-image {
  margin-top: 48px;
  text-align: center;
}

.dashboard-image img {
  display: block;
  margin: 0 auto;
}

/* ─── Industry Carousel ─── */
.block-industry-carousel {
  padding: 80px 0;
  background: #F5F7FA;
}

.block-industry-carousel .copy-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.block-industry-carousel .items {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.block-industry-carousel .items::-webkit-scrollbar {
  display: none;
}

.block-industry-carousel .hcp-carousel {
  --card-width: 324px;
  --card-height: 550px;
}

.block-industry-carousel .item {
  flex-shrink: 0;
}

.block-industry-carousel .item .image {
  position: relative;
  scroll-snap-align: start;
}

.block-industry-carousel .item .image > div {
  width: 100% !important;
  height: 100% !important;
}

.block-industry-carousel .item .image a {
  position: absolute;
  inset: 0;
}

/* ─── Testimonial Carousel — padding handled by block CSS ─── */

.hcp-testimonial-carousel-header h2 {
  text-align: center;
  margin-bottom: 48px;
}

.card__wrap--outer {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.card__wrap--outer::-webkit-scrollbar {
  display: none;
}

.card__wrap--outer .card__wrap--inner {
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ─── Resources ─── */
.block-resources {
  padding: 80px 0;
  background: #F5F7FA;
}

.resources-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.resources-wrapper p {
  max-width: 600px;
  margin: 16px auto 24px;
}

.block-resources .items {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.block-resources .items > a {
  flex-shrink: 0;
}

.block-resources .items::-webkit-scrollbar {
  display: none;
}

/* ─── Signup Banner ─── */
.block-signup-banner .cta-default-wrapper form {
  display: flex;
  gap: 8px;
  max-width: 460px;
}

.block-signup-banner .cta-default-wrapper .field-container {
  flex: 1;
  min-width: 0;
}

.signup-banner-wrapper .form-field {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.signup-banner-wrapper .form-field::placeholder {
  color: rgba(255,255,255,0.6);
}

/* ─── Footer ─── */
.site-footer {
  background: #0A2540;
  color: #fff;
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-top-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}

.footer-top-nav .menu-item {
  min-width: 160px;
}

.footer-top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-top-nav li {
  margin-bottom: 8px;
}

.footer-top-nav li strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
}

.footer-top-nav a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.footer-top-nav a:hover {
  opacity: 1;
}

.footer-contact {
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom-nav-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-bottom-nav-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

/* ─── Navigation (carousel dots/arrows) ─── */
.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.navigator {
  background: none;
  border: 2px solid #0A2540;
  color: #0A2540;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.block-hero-carousel .navigator::after {
  content: none;
}

.navigator:hover {
  background: #F5F7FA;
  transform: scale(1.08);
  border-color: #FBBF24;
}

.navigator:active {
  transform: scale(0.95);
}

.navigator.prev::after {
  content: '\2190';
}

.navigator.next::after {
  content: '\2192';
}

.dots {
  display: flex;
  gap: 6px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dots button:hover {
  background-color: #9ca3af;
  transform: scale(1.4);
}

.dots button.active {
  background-color: #0A2540;
  transform: scale(1.3);
}

/* ─── ACF Block Spacing ─── */
.acf-block-top-margin-none { margin-top: 0 !important; }
.acf-block-bottom-margin-none { margin-bottom: 0 !important; }
.acf-block-top-margin-large { margin-top: 64px; }
.acf-block-bottom-margin-large { margin-bottom: 64px; }
.acf-block-top-padding-none { padding-top: 0 !important; }
.acf-block-bottom-padding-none { padding-bottom: 0 !important; }
.acf-block-top-padding-large { padding-top: 64px; }
.acf-block-bottom-padding-large { padding-bottom: 64px; }
.acf-block-top-padding-x-large { padding-top: 96px; }
.acf-block-bottom-padding-x-large { padding-bottom: 96px; }

@media (max-width: 768px) {
  .acf-block-top-margin-large { margin-top: 40px; }
  .acf-block-bottom-margin-large { margin-bottom: 40px; }
  .acf-block-top-padding-large { padding-top: 40px; }
  .acf-block-bottom-padding-large { padding-bottom: 40px; }
  .acf-block-top-padding-x-large { padding-top: 64px; }
  .acf-block-bottom-padding-x-large { padding-bottom: 64px; }
}

/* ─── Industry Showcase Cards ─── */
.industry-showcase-card {
  width: 280px;
  max-width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .industry-showcase-card {
    width: 240px;
    height: 340px;
  }
}

@media (max-width: 480px) {
  .industry-showcase-card {
    width: 200px;
    height: 280px;
  }
}

/* ─── Video Modal ─── */
.video-modal {
  display: none;
}

/* ─── Responsive ─── */

/* Tablet — max 992px: content layout adjustments (nav handled above) */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
  }
}

/* Phone — 576px: stack forms */
@media (max-width: 576px) {
  .hcp-book-demo-form,
  .hcp-getting-started-form {
    flex-direction: column;
  }

  .field-container {
    min-width: 100%;
  }

  .block-hero-carousel .cta-default-wrapper form {
    flex-direction: column !important;
  }

  .block-hero-carousel .cta-default-wrapper .field-container {
    min-width: 100%;
  }
}

/* Spotlight kicker: was h3, now p.kicker (block CSS targets h3) */
.block-side-by-side-spotlight .copy-wrapper .kicker {
  color: #FBBF24;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .block-side-by-side-spotlight .copy-wrapper .kicker {
    font-size: 22px;
    line-height: 32px;
  }
}

/* Heading hierarchy: signup banner h2/h3 (block CSS targets h3/h4) */
.block-signup-banner .title-container h2 {
  font-size: 48px;
  letter-spacing: -0.3px;
  line-height: 58px;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .block-signup-banner .title-container h2 {
    max-width: 398px;
  }
}
.block-signup-banner .cta-container h3 {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .block-signup-banner .cta-container h3 {
    max-width: 530px;
  }
}

/* Heading hierarchy: schematic cards use h3 (block CSS only targets h5) */
.block-revamp-schematic .content-wrapper h3 {
  color: #FBBF24;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 32px;
  margin: 0 0 8px;
}

/* Heading hierarchy: CTA banner uses h3 (block CSS mobile targets h5) */
@media (max-width: 768px) {
  .block-cta-banner .copy-container h3 {
    font-size: 22px;
  }
}

/* Heading hierarchy: testimonial cards — h3=name, h4=business (block CSS had h4/h3 inverted) */
.block-hcp-testimonial-carousel .hcp-testimonial-carousel-cards-container .card__item h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.block-hcp-testimonial-carousel .hcp-testimonial-carousel-cards-container .card__item h4 {
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 5px;
  -webkit-font-smoothing: subpixel-antialiased;
  text-transform: uppercase;
}

/* ─── Dark Mode ─── */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
  }
}
[data-theme="dark"] {
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body,
  [data-theme="dark"] body {
    background: #0F1923;
    color: #E0E4E8;
  }
}
[data-theme="dark"] body {
  background: #0F1923;
  color: #E0E4E8;
}

/* Header */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hcp-site-header,
  [data-theme="dark"] .hcp-site-header {
    background: #0F1923;
    border-bottom-color: #1E3148;
  }
  :root:not([data-theme="light"]) .logo-text,
  [data-theme="dark"] .logo-text {
    color: #fff !important;
  }
}
[data-theme="dark"] .hcp-site-header {
  background: #0F1923;
  border-bottom-color: #1E3148;
}
[data-theme="dark"] .logo-text {
  color: #fff !important;
}

/* Navigation */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hcp-nav-menu,
  [data-theme="dark"] .hcp-nav-menu {
    background: transparent;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu > li > a,
  :root:not([data-theme="light"]) .login a,
  [data-theme="dark"] .hcp-nav-menu > li > a,
  [data-theme="dark"] .login a {
    color: #E0E4E8;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu > li > div,
  [data-theme="dark"] .hcp-nav-menu > li > div {
    background: #162232;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  :root:not([data-theme="light"]) .hcp-nav-menu .sub-menu,
  [data-theme="dark"] .hcp-nav-menu .sub-menu {
    background: #162232;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu .sub-menu a,
  :root:not([data-theme="light"]) .hcp-nav-menu .item-label,
  [data-theme="dark"] .hcp-nav-menu .sub-menu a,
  [data-theme="dark"] .hcp-nav-menu .item-label {
    color: #E0E4E8;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu .sub-menu .sub-menu li a:hover,
  [data-theme="dark"] .hcp-nav-menu .sub-menu .sub-menu li a:hover {
    background: #1E3148;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu .item-description,
  [data-theme="dark"] .hcp-nav-menu .item-description {
    color: #9CA3AF;
  }
  :root:not([data-theme="light"]) .hcp-nav-menu .item-footer,
  [data-theme="dark"] .hcp-nav-menu .item-footer {
    border-top-color: #1E3148;
  }
  :root:not([data-theme="light"]) .item-icon.icon-before,
  [data-theme="dark"] .item-icon.icon-before {
    background: #1E3148;
    color: #FBBF24;
  }
  :root:not([data-theme="light"]) .item-icon.icon-after,
  [data-theme="dark"] .item-icon.icon-after {
    color: #9CA3AF;
  }
}
[data-theme="dark"] .hcp-nav-menu {
  background: transparent;
}
[data-theme="dark"] .hcp-nav-menu > li > a,
[data-theme="dark"] .login a {
  color: #E0E4E8;
}
[data-theme="dark"] .hcp-nav-menu > li > div {
  background: #162232;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hcp-nav-menu .sub-menu {
  background: #162232;
}
[data-theme="dark"] .hcp-nav-menu .sub-menu a,
[data-theme="dark"] .hcp-nav-menu .item-label {
  color: #E0E4E8;
}
[data-theme="dark"] .hcp-nav-menu .sub-menu .sub-menu li a:hover {
  background: #1E3148;
}
[data-theme="dark"] .hcp-nav-menu .item-description {
  color: #9CA3AF;
}
[data-theme="dark"] .hcp-nav-menu .item-footer {
  border-top-color: #1E3148;
}
[data-theme="dark"] .item-icon.icon-before {
  background: #1E3148;
  color: #FBBF24;
}
[data-theme="dark"] .item-icon.icon-after {
  color: #9CA3AF;
}

/* Mobile nav */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hcp-nav-header,
  [data-theme="dark"] .hcp-nav-header {
    background: #0F1923;
    border-bottom-color: #1E3148;
  }
  :root:not([data-theme="light"]) .hcp-nav-header .hcp-logo span,
  [data-theme="dark"] .hcp-nav-header .hcp-logo span {
    color: #fff !important;
  }
}
[data-theme="dark"] .hcp-nav-header {
  background: #0F1923;
  border-bottom-color: #1E3148;
}
[data-theme="dark"] .hcp-nav-header .hcp-logo span {
  color: #fff !important;
}

/* Light sections → dark surface */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-industry-carousel,
  :root:not([data-theme="light"]) .block-resources,
  :root:not([data-theme="light"]) .block-hcp-social-proof,
  [data-theme="dark"] .block-industry-carousel,
  [data-theme="dark"] .block-resources,
  [data-theme="dark"] .block-hcp-social-proof {
    background: #162232;
  }
}
[data-theme="dark"] .block-industry-carousel,
[data-theme="dark"] .block-resources,
[data-theme="dark"] .block-hcp-social-proof {
  background: #162232;
}

/* Schematic cards */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-revamp-schematic,
  [data-theme="dark"] .block-revamp-schematic {
    background: #0F1923;
  }
  :root:not([data-theme="light"]) .block-revamp-schematic .container>.wrap>.title-wrapper>h2,
  [data-theme="dark"] .block-revamp-schematic .container>.wrap>.title-wrapper>h2 {
    color: #F0F2F5;
  }
}
[data-theme="dark"] .block-revamp-schematic {
  background: #0F1923;
}
[data-theme="dark"] .block-revamp-schematic .container>.wrap>.title-wrapper>h2 {
  color: #F0F2F5;
}

/* Industry carousel heading */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-industry-carousel .copy-wrapper h3,
  [data-theme="dark"] .block-industry-carousel .copy-wrapper h3 {
    color: #F0F2F5 !important;
  }
}
[data-theme="dark"] .block-industry-carousel .copy-wrapper h3 {
  color: #F0F2F5 !important;
}

/* Resources heading + description */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-resources .resources-wrapper h2,
  [data-theme="dark"] .block-resources .resources-wrapper h2 {
    color: #F0F2F5 !important;
  }
  :root:not([data-theme="light"]) .block-resources .resources-wrapper p,
  [data-theme="dark"] .block-resources .resources-wrapper p {
    color: #E0E4E8 !important;
  }
}
[data-theme="dark"] .block-resources .resources-wrapper h2 {
  color: #F0F2F5 !important;
}
[data-theme="dark"] .block-resources .resources-wrapper p {
  color: #E0E4E8 !important;
}

/* Social proof heading + disclaimer */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-hcp-social-proof .card-header h2,
  [data-theme="dark"] .block-hcp-social-proof .card-header h2 {
    color: #F0F2F5;
  }
  :root:not([data-theme="light"]) .block-hcp-social-proof .disclaimer p,
  [data-theme="dark"] .block-hcp-social-proof .disclaimer p {
    color: #9CA3AF;
  }
}
[data-theme="dark"] .block-hcp-social-proof .card-header h2 {
  color: #F0F2F5;
}
[data-theme="dark"] .block-hcp-social-proof .disclaimer p {
  color: #9CA3AF;
}

/* Testimonial carousel */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-hcp-testimonial-carousel,
  [data-theme="dark"] .block-hcp-testimonial-carousel {
    background: #0F1923;
  }
  :root:not([data-theme="light"]) .block-hcp-testimonial-carousel .hcp-testimonial-carousel-header h2,
  [data-theme="dark"] .block-hcp-testimonial-carousel .hcp-testimonial-carousel-header h2 {
    color: #F0F2F5;
  }
  :root:not([data-theme="light"]) .block-hcp-testimonial-carousel .discalimer small,
  [data-theme="dark"] .block-hcp-testimonial-carousel .discalimer small {
    color: #9CA3AF;
  }
  :root:not([data-theme="light"]) .block-hcp-testimonial-carousel .card,
  [data-theme="dark"] .block-hcp-testimonial-carousel .card {
    background-color: #162232;
  }
  :root:not([data-theme="light"]) .card__item,
  [data-theme="dark"] .card__item {
    background: #162232 !important;
    border-color: #1E3148 !important;
  }
  :root:not([data-theme="light"]) .card__item h3,
  :root:not([data-theme="light"]) .card__item h4,
  :root:not([data-theme="light"]) .card__item p,
  [data-theme="dark"] .card__item h3,
  [data-theme="dark"] .card__item h4,
  [data-theme="dark"] .card__item p {
    color: #E0E4E8;
  }
}
[data-theme="dark"] .block-hcp-testimonial-carousel {
  background: #0F1923;
}
[data-theme="dark"] .block-hcp-testimonial-carousel .hcp-testimonial-carousel-header h2 {
  color: #F0F2F5;
}
[data-theme="dark"] .block-hcp-testimonial-carousel .discalimer small {
  color: #9CA3AF;
}
[data-theme="dark"] .block-hcp-testimonial-carousel .card {
  background-color: #162232;
}
[data-theme="dark"] .card__item {
  background: #162232 !important;
  border-color: #1E3148 !important;
}
[data-theme="dark"] .card__item h3,
[data-theme="dark"] .card__item h4,
[data-theme="dark"] .card__item p {
  color: #E0E4E8;
}

/* Testimonial banner (single quote) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .block-testimonial-banner:not(.new-style),
  [data-theme="dark"] .block-testimonial-banner:not(.new-style) {
    background-color: #0F1923;
  }
  :root:not([data-theme="light"]) .block-testimonial-banner:not(.new-style) .testimonial-copy-wrap .testimonial-copy p,
  [data-theme="dark"] .block-testimonial-banner:not(.new-style) .testimonial-copy-wrap .testimonial-copy p {
    color: #F0F2F5;
  }
}
[data-theme="dark"] .block-testimonial-banner:not(.new-style) {
  background-color: #0F1923;
}
[data-theme="dark"] .block-testimonial-banner:not(.new-style) .testimonial-copy-wrap .testimonial-copy p {
  color: #F0F2F5;
}

/* Side-by-side spotlight — keeps its #0A2540 navy in dark mode for section contrast */

/* Form fields */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form-field,
  [data-theme="dark"] .form-field {
    background-color: #162232;
    border-color: #2A4060;
    color: #E0E4E8;
  }
  :root:not([data-theme="light"]) .form-field::placeholder,
  [data-theme="dark"] .form-field::placeholder {
    color: #7B8A9A;
  }
  :root:not([data-theme="light"]) select.form-field,
  [data-theme="dark"] select.form-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23E0E4E8'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
  }
}
[data-theme="dark"] .form-field {
  background-color: #162232;
  border-color: #2A4060;
  color: #E0E4E8;
}
[data-theme="dark"] .form-field::placeholder {
  color: #7B8A9A;
}
[data-theme="dark"] select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23E0E4E8'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Carousel nav (dots/arrows) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .navigator,
  [data-theme="dark"] .navigator {
    border-color: #E0E4E8;
    color: #E0E4E8;
  }
  :root:not([data-theme="light"]) .navigator:hover,
  [data-theme="dark"] .navigator:hover {
    background: #1E3148;
    border-color: #FBBF24;
  }
  :root:not([data-theme="light"]) .dots button,
  [data-theme="dark"] .dots button {
    background: #3A5068;
  }
  :root:not([data-theme="light"]) .dots button.active,
  [data-theme="dark"] .dots button.active {
    background-color: #FBBF24;
  }
}
[data-theme="dark"] .navigator {
  border-color: #E0E4E8;
  color: #E0E4E8;
}
[data-theme="dark"] .navigator:hover {
  background: #1E3148;
  border-color: #FBBF24;
}
[data-theme="dark"] .dots button {
  background: #3A5068;
}
[data-theme="dark"] .dots button.active {
  background-color: #FBBF24;
}

/* CTA banner — keeps its #0A2540 navy in dark mode for section contrast */

/* Outline blue buttons */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hcp-button--outline.hcp-button--blue,
  [data-theme="dark"] .hcp-button--outline.hcp-button--blue {
    color: #E0E4E8;
    border-color: #E0E4E8;
  }
  :root:not([data-theme="light"]) .hcp-button--outline.hcp-button--blue:hover,
  [data-theme="dark"] .hcp-button--outline.hcp-button--blue:hover {
    background-color: #1E3148;
    color: #F0F2F5;
    border-color: #FBBF24;
  }
}
[data-theme="dark"] .hcp-button--outline.hcp-button--blue {
  color: #E0E4E8;
  border-color: #E0E4E8;
}
[data-theme="dark"] .hcp-button--outline.hcp-button--blue:hover {
  background-color: #1E3148;
  color: #F0F2F5;
  border-color: #FBBF24;
}

/* Headings */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) h1,
  :root:not([data-theme="light"]) h2,
  :root:not([data-theme="light"]) h3,
  :root:not([data-theme="light"]) h4,
  :root:not([data-theme="light"]) h5,
  :root:not([data-theme="light"]) h6,
  [data-theme="dark"] h1,
  [data-theme="dark"] h2,
  [data-theme="dark"] h3,
  [data-theme="dark"] h4,
  [data-theme="dark"] h5,
  [data-theme="dark"] h6 {
    color: #F0F2F5;
  }
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #F0F2F5;
}

/* Hamburger */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hamburger path,
  [data-theme="dark"] .hamburger path {
    stroke: #E0E4E8;
  }
}
[data-theme="dark"] .hamburger path {
  stroke: #E0E4E8;
}

/* Rating labels */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .rating-img,
  [data-theme="dark"] .rating-img {
    color: #9CA3AF !important;
  }
}
[data-theme="dark"] .rating-img {
  color: #9CA3AF !important;
}

/* Disclaimer text */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .disclaimer,
  [data-theme="dark"] .disclaimer {
    color: #9CA3AF;
  }
}
[data-theme="dark"] .disclaimer {
  color: #9CA3AF;
}

/* Dark mode toggle button */
.theme-toggle {
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: #FBBF24;
  background: rgba(251,191,36,0.08);
}
.theme-toggle .icon-sun { display: none; color: #FBBF24; }
.theme-toggle .icon-moon { display: inline; color: #0A2540; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: inline; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
  :root:not([data-theme="light"]) .theme-toggle {
    border-color: #2A4060;
  }
}
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; color: #FBBF24; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle {
  border-color: #2A4060;
}
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: inline; }

/* ─── Accessibility: Focus improvements ─── */
a:focus-visible {
  outline: 2px solid #FBBF24;
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link:focus {
  border-radius: 4px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Form live region */
.form-status {
  font-size: 14px;
  margin-top: 8px;
  min-height: 20px;
}
.form-status:empty {
  display: none;
}

/* ─── High Contrast Mode ─── */
@media (forced-colors: active) {
  .hcp-button,
  button[type="submit"],
  .navigator {
    border: 2px solid ButtonText;
  }
  .dots button {
    border: 1px solid ButtonText;
  }
  .dots button.active {
    background: Highlight;
  }
  .form-field {
    border: 1px solid ButtonText;
  }
  .theme-toggle {
    border: 1px solid ButtonText;
  }
  a {
    text-decoration: underline;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
