*, ::before, ::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

:root {
  --px: 1.25rem;
  --px-lg: 2rem;
  --max-width: 80rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: rgb(255, 255, 255);
  min-height: 100vh;
  font-family: var(--font-sans);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-color: initial;
  text-decoration-style: initial;
  text-decoration-thickness: initial;
}

ul, ol {
  list-style-type: none;
  list-style-image: initial;
  list-style-position: initial;
}

button {
  cursor: pointer;
  font-family: inherit;
  background-clip: initial;
  background-size: initial;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: medium;
  background-color: initial;
  background-image: none;
  border-left-color: currentcolor;
  border-left-style: none;
  border-left-width: medium;
  background-origin: initial;
  background-repeat: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: currentcolor;
  border-right-style: none;
  border-right-width: medium;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

::selection {
  background-color: rgba(255, 59, 48, 0.3);
}

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

@media (min-width: 1024px) {
  .container {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.bg-grid {
  background-size: 56px 56px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.section-divider {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.section-border-b {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.navbar {
  top: 0px;
  z-index: 50;
  position: sticky;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.navbar-inner {
  display: flex;
  max-width: var(--max-width);
  align-items: center;
  margin-left: auto;
  padding: 1rem var(--px);
  margin-right: auto;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .navbar-inner {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.nav-logo {
  row-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  box-shadow: rgba(255, 59, 48, 0.3) 0px 4px 16px;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  background-color: var(--color-crimson);
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.nav-brand-text {
  color: rgb(255, 255, 255);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.nav-brand-accent {
  color: var(--color-crimson);
}

.nav-links {
  row-gap: 0.25rem;
  display: none;
  column-gap: 0.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
  display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-property: color, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

.nav-link:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link-active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  color: rgb(255, 255, 255);
  display: none;
  font-size: 0.875rem;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background-color: var(--color-crimson);
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

@media (min-width: 768px) {
  .nav-cta {
  display: inline-block;
  }
}

.nav-cta:hover {
  transform: translateY(-2px);
  background-color: rgb(224, 52, 42);
}

.nav-toggle-btn {
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  background-clip: initial;
  background-size: initial;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: medium;
  justify-content: center;
  background-color: initial;
  background-image: none;
  border-left-color: currentcolor;
  border-left-style: none;
  border-left-width: medium;
  background-origin: initial;
  background-repeat: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: currentcolor;
  border-right-style: none;
  border-right-width: medium;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

@media (min-width: 768px) {
  .nav-toggle-btn {
  display: none;
  }
}

.nav-mobile {
  display: none;
  padding: 8px 20px 20px;
  background-clip: initial;
  background-size: initial;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  background-image: initial;
  background-origin: initial;
  background-repeat: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

.nav-mobile.nav-open {
  display: block;
}

.nav-mobile-links {
  row-gap: 0.25rem;
  display: flex;
  column-gap: 0.25rem;
  flex-direction: column;
}

.nav-mobile-link {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 0.75rem;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease;
}

.nav-mobile-link:hover {
  color: rgb(255, 255, 255);
}

.nav-mobile-link-active {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-mobile-cta {
  color: rgb(255, 255, 255);
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  padding: 0.625rem 1rem;
  background-color: var(--color-crimson);
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: var(--color-black-footer);
}

.footer-inner {
  max-width: var(--max-width);
  margin-left: auto;
  padding: 3.5rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .footer-inner {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.footer-grid {
  row-gap: 2.5rem;
  display: grid;
  column-gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
  grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  row-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  background-color: var(--color-crimson);
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.footer-brand-text {
  color: rgb(255, 255, 255);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

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

.footer-about {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.625;
}

.footer-address {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-col-heading {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav-list {
  row-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  margin-top: 1rem;
  flex-direction: column;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  transition-timing-function: ease;
}

.footer-nav-link:hover {
  color: var(--color-crimson);
}

.footer-compliance-link {
  color: rgba(255, 255, 255, 0.55);
  row-gap: 0.5rem;
  display: flex;
  font-size: 0.875rem;
  column-gap: 0.5rem;
  align-items: center;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  transition-timing-function: ease;
}

.footer-compliance-link:hover {
  color: var(--color-recovery);
}

.footer-compliance-icon {
  color: var(--color-recovery);
  flex-shrink: 0;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  transition-timing-function: ease;
}

.footer-contact-link:hover {
  color: var(--color-crimson);
}

.footer-contact-link-second {
  margin-top: 0.375rem;
}

.footer-social-row {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}

.footer-social-icon {
  color: rgba(255, 255, 255, 0.6);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-property: border-color, color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

.footer-social-icon:hover {
  color: var(--color-crimson);
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.footer-bottom {
  row-gap: 1rem;
  display: flex;
  column-gap: 1rem;
  margin-top: 3rem;
  align-items: center;
  padding-top: 1.5rem;
  flex-direction: column;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-bottom {
  flex-direction: row;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.vcard {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.vcard:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.vcard-red:hover {
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.vcard-green:hover {
  border-top-color: rgba(16, 185, 129, 0.5);
  border-left-color: rgba(16, 185, 129, 0.5);
  border-right-color: rgba(16, 185, 129, 0.5);
  border-bottom-color: rgba(16, 185, 129, 0.5);
}

.vcard-glow {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background-clip: initial;
  background-size: initial;
  background-color: initial;
  background-image: linear-gradient(to right bottom, transparent, transparent);
  transition-delay: 0s;
  background-origin: initial;
  background-repeat: initial;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-property: opacity;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
  transition-timing-function: ease;
}

.vcard:hover .vcard-glow {
  opacity: 1;
}

.vcard-glow-default {
  background-clip: initial;
  background-size: initial;
  background-color: initial;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.04), transparent);
  background-origin: initial;
  background-repeat: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

.vcard-glow-red {
  background-clip: initial;
  background-size: initial;
  background-color: initial;
  background-image: linear-gradient(to right bottom, rgba(255, 59, 48, 0.1), transparent);
  background-origin: initial;
  background-repeat: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

.vcard-glow-green {
  background-clip: initial;
  background-size: initial;
  background-color: initial;
  background-image: linear-gradient(to right bottom, rgba(16, 185, 129, 0.1), transparent);
  background-origin: initial;
  background-repeat: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

.vcard-body {
  position: relative;
}

.icon-chip {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  border-top-color: currentcolor;
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  border-left-color: currentcolor;
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: currentcolor;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: currentcolor;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.chip-default {
  color: rgb(255, 255, 255);
  border-top-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.chip-crimson {
  color: var(--color-crimson);
  border-top-color: rgba(255, 59, 48, 0.2);
  background-color: rgba(255, 59, 48, 0.1);
  border-left-color: rgba(255, 59, 48, 0.2);
  border-right-color: rgba(255, 59, 48, 0.2);
  border-bottom-color: rgba(255, 59, 48, 0.2);
}

.chip-green {
  color: var(--color-recovery);
  border-top-color: rgba(16, 185, 129, 0.2);
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.2);
  border-right-color: rgba(16, 185, 129, 0.2);
  border-bottom-color: rgba(16, 185, 129, 0.2);
}

.vcard-title {
  color: rgb(255, 255, 255);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.vcard-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.hero-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.hero-grid-bg {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.6;
  position: absolute;
}

.hero-grid-bg-50 {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
  position: absolute;
}

.hero-grid-bg-40 {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.4;
  position: absolute;
}

.hero-glow-crimson {
  top: -10rem;
  left: 50%;
  width: 42rem;
  filter: blur(140px);
  height: 24rem;
  position: absolute;
  transform: translate(-50%);
  pointer-events: none;
  background-color: rgba(255, 59, 48, 0.2);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-glow-crimson-right {
  top: -8rem;
  right: 0px;
  width: 36rem;
  filter: blur(130px);
  height: 20rem;
  position: absolute;
  pointer-events: none;
  background-color: rgba(255, 59, 48, 0.15);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-glow-crimson-left {
  top: -8rem;
  left: 33%;
  width: 36rem;
  filter: blur(130px);
  height: 20rem;
  position: absolute;
  pointer-events: none;
  background-color: rgba(255, 59, 48, 0.15);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-glow-emerald-left {
  top: -8rem;
  left: 33%;
  width: 36rem;
  filter: blur(130px);
  height: 20rem;
  position: absolute;
  pointer-events: none;
  background-color: rgba(16, 185, 129, 0.15);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-glow-crimson-center {
  top: -8rem;
  right: 25%;
  width: 36rem;
  filter: blur(130px);
  height: 20rem;
  position: absolute;
  pointer-events: none;
  background-color: rgba(255, 59, 48, 0.15);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-content {
  max-width: var(--max-width);
  position: relative;
  margin-left: auto;
  padding: 6rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-content {
  padding: 8rem var(--px-lg);
  }
}

.hero-content-center {
  max-width: 56rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-content-left {
  max-width: 48rem;
}

.hero-badge {
  color: rgba(255, 255, 255, 0.7);
  row-gap: 0.5rem;
  display: inline-flex;
  font-size: 0.75rem;
  column-gap: 0.5rem;
  align-items: center;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-badge-green {
  color: rgb(110, 231, 183);
  row-gap: 0.5rem;
  display: inline-flex;
  font-size: 0.75rem;
  column-gap: 0.5rem;
  align-items: center;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-top-color: rgba(16, 185, 129, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(16, 185, 129, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(16, 185, 129, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.badge-dot-recovery {
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-color: var(--color-recovery);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.badge-dot-crimson {
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-color: var(--color-crimson);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.badge-dot-emerald {
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-color: var(--color-emerald);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hero-h1 {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  margin-top: 1.75rem;
  font-weight: 800;
  line-height: 1.05;
  text-wrap-mode: initial;
  letter-spacing: -0.025em;
  text-wrap-style: balance;
}

@media (min-width: 640px) {
  .hero-h1 {
  font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-h1 {
  font-size: 4.5rem;
  }
}

.hero-h1-page {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  margin-top: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  text-wrap-mode: initial;
  letter-spacing: -0.025em;
  text-wrap-style: balance;
}

@media (min-width: 640px) {
  .hero-h1-page {
  font-size: 3.75rem;
  }
}

.hero-accent {
  color: var(--color-crimson);
}

.hero-accent-emerald {
  color: var(--color-emerald);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  max-width: 40rem;
  margin-top: 1.5rem;
  line-height: 1.75;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

.hero-sub-center {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  max-width: 40rem;
  margin-top: 1.5rem;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

.hero-cta-group {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  margin-top: 2.25rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta-group {
  flex-direction: row;
  }
}

.btn-crimson {
  color: rgb(255, 255, 255);
  width: 100%;
  display: inline-block;
  font-size: 0.875rem;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  text-align: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-crimson);
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

@media (min-width: 640px) {
  .btn-crimson {
  width: auto;
  }
}

.btn-crimson:hover {
  transform: translateY(-2px);
  background-color: rgb(224, 52, 42);
}

.btn-outline {
  color: rgb(255, 255, 255);
  width: 100%;
  display: inline-block;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.15);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.15);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.15);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: border-color, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

@media (min-width: 640px) {
  .btn-outline {
  width: auto;
  }
}

.btn-outline:hover {
  border-top-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.btn-crimson-sm {
  color: rgb(255, 255, 255);
  display: inline-block;
  font-size: 0.875rem;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  margin-top: var(--space-4xl);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-crimson);
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

.btn-crimson-sm:hover {
  transform: translateY(-2px);
  background-color: rgb(224, 52, 42);
}

.btn-emerald-sm {
  color: rgb(0, 0, 0);
  display: inline-block;
  font-size: 0.875rem;
  box-shadow: rgba(16, 185, 129, 0.25) 0px 4px 14px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-emerald);
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

.btn-emerald-sm:hover {
  transform: translateY(-2px);
  background-color: rgb(14, 165, 113);
}

.section-eyebrow {
  color: var(--color-crimson);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow-green {
  color: var(--color-emerald);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-h2 {
  color: rgb(255, 255, 255);
  font-size: 1.875rem;
  margin-top: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-h2 {
  font-size: 2.25rem;
  }
}

.section-p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.75;
}

.section-wrapper {
  max-width: var(--max-width);
  margin-left: auto;
  padding: 5rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .section-wrapper {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.section-header {
  max-width: 32rem;
}

.section-header-center {
  max-width: 32rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.infra-split {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.infra-split-grid {
  row-gap: 3rem;
  display: grid;
  column-gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .infra-split-grid {
  row-gap: 4rem;
  column-gap: 4rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  }
}

.infra-feature-grid {
  row-gap: 1rem;
  display: grid;
  column-gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .infra-feature-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.infra-feature-card {
  padding: 1rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.infra-feature-inner {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  align-items: flex-start;
}

.infra-check-icon {
  color: var(--color-crimson);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.infra-feature-title {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  font-weight: 600;
}

.infra-feature-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  line-height: 1.625;
}

.spec-panel-outer {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 25px 50px;
  background: linear-gradient(to bottom,var(--color-surface),var(--color-base));
  padding: 0.375rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.spec-panel-inner {
  padding: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.spec-panel-header {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  justify-content: space-between;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.spec-panel-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
}

.spec-live-badge {
  color: var(--color-recovery);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.spec-dl {
  row-gap: 1rem;
  display: flex;
  column-gap: 1rem;
  margin-top: 1.25rem;
  flex-direction: column;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-key {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.spec-val {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  font-weight: 600;
}

.narrative-banner {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: rgb(10, 10, 10);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.narrative-content {
  max-width: 72rem;
  position: relative;
  text-align: center;
  margin-left: auto;
  padding: 6rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .narrative-content {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.narrative-h2 {
  color: rgb(255, 255, 255);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  text-wrap-mode: initial;
  letter-spacing: -0.025em;
  text-wrap-style: balance;
}

@media (min-width: 640px) {
  .narrative-h2 {
  font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .narrative-h2 {
  font-size: 3.75rem;
  }
}

.narrative-p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.125rem;
  max-width: 48rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-table {
  margin-top: 3rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.capability-row {
  row-gap: 0.5rem;
  display: flex;
  column-gap: 0.5rem;
  padding-top: 1.5rem;
  flex-direction: column;
  padding-bottom: 1.5rem;
  transition-delay: 0s;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: background-color;
  transition-timing-function: ease;
}

@media (min-width: 640px) {
  .capability-row {
  row-gap: 2rem;
  column-gap: 2rem;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex-direction: row;
  }
}

.capability-row:last-child {
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
}

.capability-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.capability-num {
  color: var(--color-crimson);
  font-size: 0.875rem;
  flex-shrink: 0;
  font-family: ui-monospace, monospace;
  font-weight: 600;
}

.capability-title {
  color: rgb(255, 255, 255);
  width: 100%;
  font-size: 1.125rem;
  max-width: 18rem;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.capability-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.625;
}

.bento-grid {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-span-2 {
  display: flex;
  grid-row-end: auto;
  grid-row-start: span 2;
  flex-direction: column;
  justify-content: space-between;
  }
}

.clients-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-grid {
  row-gap: 1.5rem;
  display: grid;
  column-gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .clients-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
  grid-template-columns: repeat(6, 1fr);
  }
}

.client-logo {
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 0.875rem;
  text-align: center;
  align-items: center;
  font-weight: 600;
  padding: 1.25rem 1rem;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.02);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.05);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition-timing-function: ease;
}

.client-logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

.metrics-grid {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  margin-top: 4rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  text-align: center;
  padding: 1.75rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.metric-value {
  color: var(--color-crimson);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .metric-value {
  font-size: 3rem;
  }
}

.metric-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.cta-banner {
  margin-top: 4rem;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: center;
  background: linear-gradient(to right,rgba(255,59,48,.15),var(--color-surface),var(--color-base));
  padding: 2rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (min-width: 640px) {
  .cta-banner {
  padding: 3rem;
  }
}

.cta-banner-emerald {
  margin-top: 4rem;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: center;
  background: linear-gradient(to right,rgba(16,185,129,.15),var(--color-surface),var(--color-base));
  padding: 2rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (min-width: 640px) {
  .cta-banner-emerald {
  padding: 3rem;
  }
}

.cta-h2 {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .cta-h2 {
  font-size: 1.875rem;
  }
}

.cta-p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 36rem;
  margin-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

.table-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.spec-table {
  width: 100%;
  min-width: 720px;
  text-align: left;
  border-collapse: collapse;
}

.spec-table thead tr {
  background-color: rgba(20, 20, 20, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.spec-table th {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  vertical-align: top;
}

.spec-table th.col-gpu {
  color: rgb(255, 255, 255);
}

.spec-table th .col-sub {
  color: var(--color-crimson);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.125rem;
  font-weight: 400;
}

.spec-table td {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.spec-table td.col-spec {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.spec-table tbody tr:last-child td {
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
}

.spec-table tbody tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.016);
}

.spec-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.table-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 1rem;
}

.highlights-grid {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .highlights-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.services-grid {
  row-gap: 1.5rem;
  display: grid;
  column-gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .services-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  padding: 1.75rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.service-icon {
  color: var(--color-crimson);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  border-top-color: rgba(255, 59, 48, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(255, 59, 48, 0.1);
  border-left-color: rgba(255, 59, 48, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 59, 48, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 59, 48, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.service-h2 {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  margin-top: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.service-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.service-points {
  row-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  margin-top: 1.25rem;
  flex-direction: column;
}

.service-point {
  color: rgba(255, 255, 255, 0.7);
  row-gap: 0.625rem;
  display: flex;
  font-size: 0.875rem;
  column-gap: 0.625rem;
  align-items: flex-start;
}

.service-point-icon {
  color: var(--color-crimson);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.finance-table-wrapper {
  max-width: 56rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  margin-left: auto;
  margin-right: auto;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.finance-table {
  width: 100%;
  min-width: 560px;
  text-align: left;
  border-collapse: collapse;
}

.finance-table thead tr {
  background-color: rgba(20, 20, 20, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.finance-table th {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
}

.finance-table th.col-opex {
  color: var(--color-recovery);
}

.finance-table th.col-capex {
  color: rgba(255, 255, 255, 0.8);
}

.finance-table td {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.finance-table td.col-factor {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.finance-table tbody tr:last-child td {
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
}

.finance-table tbody tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.016);
}

.timeline-list {
  row-gap: 2rem;
  display: flex;
  column-gap: 2rem;
  margin-top: 3.5rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .timeline-list {
  row-gap: 0px;
  column-gap: 0px;
  }
}

.timeline-item {
  row-gap: 1.25rem;
  display: grid;
  position: relative;
  column-gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .timeline-item {
  row-gap: 2rem;
  column-gap: 2rem;
  padding-bottom: 3rem;
  grid-template-columns: auto 1fr;
  }
}

.timeline-connector {
  top: 3.5rem;
  left: 1.5rem;
  width: 1px;
  height: calc(100% - 2rem);
  display: none;
  position: absolute;
  background-clip: initial;
  background-size: initial;
  background-color: initial;
  background-image: linear-gradient(rgba(16, 185, 129, 0.4), transparent);
  background-origin: initial;
  background-repeat: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-attachment: initial;
}

@media (min-width: 768px) {
  .timeline-connector {
  display: block;
  }
}

.timeline-step-badge {
  color: rgb(110, 231, 183);
  width: 3rem;
  height: 3rem;
  display: flex;
  font-size: 1rem;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  border-top-color: rgba(16, 185, 129, 0.3);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.3);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(16, 185, 129, 0.3);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(16, 185, 129, 0.3);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.timeline-card {
  padding: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(16, 185, 129, 0.4);
  border-left-color: rgba(16, 185, 129, 0.4);
  border-right-color: rgba(16, 185, 129, 0.4);
  border-bottom-color: rgba(16, 185, 129, 0.4);
}

.timeline-card-title {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.timeline-card-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.timeline-tags {
  row-gap: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  margin-top: 1rem;
}

.timeline-tag {
  color: rgb(110, 231, 183);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-top-color: rgba(16, 185, 129, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(16, 185, 129, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(16, 185, 129, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.certs-grid {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .certs-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .certs-grid {
  grid-template-columns: repeat(4, 1fr);
  }
}

.cert-card {
  padding: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(16, 185, 129, 0.5);
  border-left-color: rgba(16, 185, 129, 0.5);
  border-right-color: rgba(16, 185, 129, 0.5);
  border-bottom-color: rgba(16, 185, 129, 0.5);
}

.cert-icon-chip {
  color: rgb(110, 231, 183);
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-top-color: rgba(16, 185, 129, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(16, 185, 129, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(16, 185, 129, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.cert-title {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cert-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.impact-stats-grid {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .impact-stats-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.impact-stat-card {
  text-align: center;
  padding: 1.75rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.impact-stat-value {
  color: var(--color-emerald);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .impact-stat-value {
  font-size: 3rem;
  }
}

.impact-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.contact-inner {
  max-width: var(--max-width);
  position: relative;
  margin-left: auto;
  padding: 5rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .contact-inner {
  padding: 6rem var(--px-lg);
  }
}

.contact-header {
  max-width: 48rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-split {
  row-gap: 2.5rem;
  display: grid;
  column-gap: 2.5rem;
  margin-top: 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-split {
  row-gap: 3rem;
  column-gap: 3rem;
  grid-template-columns: 1fr 1fr;
  }
}

.hubs-heading {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hubs-grid {
  row-gap: 1rem;
  display: grid;
  column-gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .hubs-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.hub-card {
  padding: 1.25rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.hub-city {
  color: rgb(255, 255, 255);
  row-gap: 0.5rem;
  display: flex;
  font-size: 0.875rem;
  column-gap: 0.5rem;
  align-items: center;
  font-weight: 700;
}

.hub-city-icon {
  color: var(--color-crimson);
  flex-shrink: 0;
}

.hub-address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-style: normal;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.hub-address-line {
  display: block;
}

.direct-lines-heading {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  margin-top: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.channels-list {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  margin-top: 1.25rem;
  flex-direction: column;
}

.channel-link {
  row-gap: 1rem;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: border-color;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  transition-timing-function: ease;
}

.channel-link:hover {
  border-top-color: rgba(255, 59, 48, 0.4);
  border-left-color: rgba(255, 59, 48, 0.4);
  border-right-color: rgba(255, 59, 48, 0.4);
  border-bottom-color: rgba(255, 59, 48, 0.4);
}

.channel-icon {
  color: var(--color-crimson);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-top-color: rgba(255, 59, 48, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(255, 59, 48, 0.1);
  border-left-color: rgba(255, 59, 48, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 59, 48, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 59, 48, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.channel-label {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 0.75rem;
}

.channel-value {
  color: rgb(255, 255, 255);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-property: color;
  transition-timing-function: ease;
}

.channel-link:hover .channel-value {
  color: var(--color-crimson);
}

.contact-form-panel {
  padding: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (min-width: 640px) {
  .contact-form-panel {
  padding: 2rem;
  }
}

.form-heading {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.form-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-required-star {
  color: var(--color-crimson);
}

.contact-form {
  row-gap: 1.25rem;
  display: flex;
  column-gap: 1.25rem;
  margin-top: 1.5rem;
  flex-direction: column;
}

.form-row-2 {
  row-gap: 1.25rem;
  display: grid;
  column-gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row-2 {
  grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-input {
  color: rgb(255, 255, 255);
  width: 100%;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  padding: 0.625rem 1rem;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-property: border-color, box-shadow;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition-timing-function: ease, ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  box-shadow: rgba(255, 59, 48, 0.15) 0px 0px 0px 3px;
  border-color: var(--color-crimson);
}

.form-textarea {
  color: rgb(255, 255, 255);
  width: 100%;
  resize: vertical;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  padding: 0.75rem 1rem;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-property: border-color, box-shadow;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition-timing-function: ease, ease;
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-textarea:focus {
  box-shadow: rgba(255, 59, 48, 0.15) 0px 0px 0px 3px;
  border-color: var(--color-crimson);
}

.form-select {
  color: rgb(255, 255, 255);
  width: 100%;
  font-size: 0.875rem;
  appearance: none;
  font-family: var(--font-sans);
  padding: 0.625rem 1rem;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-property: border-color, box-shadow;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition-timing-function: ease, ease;
}

.form-select:focus {
  box-shadow: rgba(255, 59, 48, 0.15) 0px 0px 0px 3px;
  border-color: var(--color-crimson);
}

.form-select option {
  color: rgb(255, 255, 255);
  background-color: rgb(20, 20, 20);
}

.form-hidden {
  display: none;
}

.btn-form-submit {
  color: rgb(255, 255, 255);
  width: 100%;
  cursor: pointer;
  font-size: 0.875rem;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: medium;
  background-color: var(--color-crimson);
  border-left-color: currentcolor;
  border-left-style: none;
  border-left-width: medium;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: currentcolor;
  border-right-style: none;
  border-right-width: medium;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition-timing-function: ease, ease;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  background-color: rgb(224, 52, 42);
}

.form-footer-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-align: center;
}

.blog-featured-link {
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

@media (min-width: 1024px) {
  .blog-featured-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  }
}

.blog-featured-link:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.blog-featured-img-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  aspect-ratio: 16 / 10;
}

@media (min-width: 1024px) {
  .blog-featured-img-wrap {
  height: 100%;
  aspect-ratio: auto;
  }
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: ease;
}

.blog-featured-link:hover .blog-featured-img {
  transform: scale(1.05);
}

.blog-featured-badge {
  top: 1rem;
  left: 1rem;
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  position: absolute;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-crimson);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.blog-featured-body {
  display: flex;
  padding: 1.75rem;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .blog-featured-body {
  padding: 2.5rem;
  }
}

.blog-meta {
  color: rgba(255, 255, 255, 0.5);
  row-gap: 0.75rem;
  display: flex;
  font-size: 0.75rem;
  column-gap: 0.75rem;
  align-items: center;
  font-weight: 500;
}

.blog-meta-category {
  color: var(--color-crimson);
}

.blog-meta-dot {
  width: 0.25rem;
  height: 0.25rem;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.blog-featured-title {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  margin-top: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-property: color;
  transition-timing-function: ease;
}

@media (min-width: 640px) {
  .blog-featured-title {
  font-size: 1.875rem;
  }
}

.blog-featured-link:hover .blog-featured-title {
  color: var(--color-crimson);
}

.blog-featured-excerpt {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  line-height: 1.75;
}

.blog-author-row {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.blog-author-avatar {
  color: var(--color-crimson);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  font-size: 0.75rem;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  border-top-color: rgba(255, 59, 48, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(255, 59, 48, 0.1);
  border-left-color: rgba(255, 59, 48, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 59, 48, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 59, 48, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.blog-author-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.blog-grid {
  row-gap: 1.5rem;
  display: grid;
  column-gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-direction: column;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.blog-card-img-wrap {
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-cat-badge {
  top: 0.75rem;
  left: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  position: absolute;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  backdrop-filter: blur(4px);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.blog-card-body {
  display: flex;
  flex-grow: 1;
  flex-basis: 0%;
  flex-shrink: 1;
  padding: 1.5rem;
  flex-direction: column;
}

.blog-card-meta {
  color: rgba(255, 255, 255, 0.45);
  row-gap: 0.625rem;
  display: flex;
  font-size: 0.75rem;
  column-gap: 0.625rem;
  align-items: center;
}

.blog-card-title {
  color: rgb(255, 255, 255);
  font-size: 1.125rem;
  margin-top: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-property: color;
  transition-timing-function: ease;
}

.blog-card:hover .blog-card-title {
  color: var(--color-crimson);
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.55);
  flex-grow: 1;
  font-size: 0.875rem;
  flex-basis: 0%;
  margin-top: 0.5rem;
  flex-shrink: 1;
  line-height: 1.625;
}

.blog-card-footer {
  row-gap: 0.75rem;
  display: flex;
  column-gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
  padding-top: 1rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
}

.blog-card-avatar {
  color: var(--color-crimson);
  width: 2rem;
  height: 2rem;
  display: flex;
  font-size: 0.75rem;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  border-top-color: rgba(255, 59, 48, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(255, 59, 48, 0.1);
  border-left-color: rgba(255, 59, 48, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 59, 48, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 59, 48, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.blog-card-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.btn-crimson-sm {
  color: rgb(255, 255, 255);
  display: inline-block;
  font-size: 0.875rem;
  box-shadow: rgba(255, 59, 48, 0.25) 0px 4px 14px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-crimson);
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease;
}

.thankyou-section {
  display: flex;
  position: relative;
  min-height: 70vh;
  overflow-x: hidden;
  overflow-y: hidden;
  align-items: center;
}

.thankyou-glow {
  top: -8rem;
  left: 50%;
  width: 36rem;
  filter: blur(130px);
  height: 20rem;
  position: absolute;
  transform: translate(-50%);
  pointer-events: none;
  background-color: rgba(255, 59, 48, 0.15);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.thankyou-content {
  max-width: 32rem;
  position: relative;
  text-align: center;
  margin-left: auto;
  padding: 6rem var(--px);
  margin-right: auto;
}

@media (min-width: 1024px) {
  .thankyou-content {
  padding-left: var(--px-lg);
  padding-right: var(--px-lg);
  }
}

.thankyou-icon {
  color: var(--color-recovery);
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  border-top-color: rgba(16, 185, 129, 0.2);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: rgba(16, 185, 129, 0.2);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(16, 185, 129, 0.2);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(16, 185, 129, 0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.thankyou-h1 {
  color: rgb(255, 255, 255);
  font-size: 2.25rem;
  margin-top: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .thankyou-h1 {
  font-size: 3rem;
  }
}

.thankyou-p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  max-width: 28rem;
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  row-gap: 1.5rem;
  display: grid;
  column-gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-direction: column;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  background-color: rgba(20, 20, 20, 0.6);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.1);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-property: transform, border-color;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition-timing-function: ease, ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 59, 48, 0.5);
  border-left-color: rgba(255, 59, 48, 0.5);
  border-right-color: rgba(255, 59, 48, 0.5);
  border-bottom-color: rgba(255, 59, 48, 0.5);
}

.product-img-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  aspect-ratio: 16 / 10;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card-body {
  display: flex;
  flex-grow: 1;
  flex-basis: 0%;
  flex-shrink: 1;
  padding: 1.5rem;
  flex-direction: column;
}

.product-title {
  color: rgb(255, 255, 255);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-property: color;
  transition-timing-function: ease;
}

.product-card:hover .product-title {
  color: var(--color-crimson);
}

.product-desc {
  color: rgba(255, 255, 255, 0.55);
  flex-grow: 1;
  font-size: 0.875rem;
  flex-basis: 0%;
  margin-top: 0.5rem;
  flex-shrink: 1;
  line-height: 1.625;
}

.product-price-row {
  display: flex;
  margin-top: 1.25rem;
  align-items: center;
  padding-top: 1rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: space-between;
}

.product-price {
  color: var(--color-crimson);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.product-cta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-top-color: rgba(255, 255, 255, 0.15);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.15);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s, 0s;
  border-image-slice: initial;
  border-image-width: initial;
  border-right-color: rgba(255, 255, 255, 0.15);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-source: initial;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.2s, 0.2s, 0.2s;
  transition-property: color, border-color, background-color;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-timing-function: ease, ease, ease;
}

.product-cta:hover {
  color: rgb(255, 255, 255);
  border-color: var(--color-crimson);
  background-color: rgba(255, 59, 48, 0.1);
}

.nav-link-active, .nav-mobile-link-active {
  color: rgb(255, 255, 255);
}

.cta-banner .btn-crimson-sm {
  margin-top: var(--space-3xl);
}

.cta-banner .cta-p {
  margin-bottom: var(--space-3xl);
}