/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root {
  --color-lime: #D9FF04;
  --color-green: #C0F203;
  --color-white: #ffffff;
  --color-off-white: #f0f0ee;
  --color-light-gray: #9e9e9e;
  --color-gray: #D0D0D0;
  --color-dark-gray: #5B5B5B;
  --color-dark: #1a1a1a;
  --color-black: #080808;

  --color-success: #3d7a52;
  --color-warning: #c28a18;
  --color-danger: #b83232;

  /* Semantic aliases — use THESE in components, not raw values */
  /*--color-bg:           var(--color-neutral-50);
  --color-surface:      #ffffff;
  --color-border:       var(--color-neutral-200);*/
  --color-text: var(--color-dark);

  /* === TYPOGRAPHY === */
  --font-display: 'PlayFair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --step--2: clamp(0.7813rem, 0.7759rem + 0.0268vw, 0.8rem);
  --step--1: clamp(1rem, .75rem + .5vw, 1.125rem);
  --step-0: clamp(1.125rem, 1rem + .5vw, 1.35rem);
  --step-1: clamp(1.35rem, 1.2893rem + 0.3036vw, 1.5625rem);
  --step-2: clamp(1.62rem, 1.5248rem + 0.4759vw, 1.75rem);
  --step-3: clamp(1.944rem, 1.8019rem + 0.7106vw, 2.4414rem);
  --step-4: clamp(2.3328rem, 2.1274rem + 1.0271vw, 3.0518rem);
  --step-5: clamp(2.7994rem, 2.5093rem + 1.4505vw, 3.8147rem);
  --step-6: clamp(3.3592rem, 2.9566rem + 2.0131vw, 4.7684rem);
  --step-7: clamp(4.0311rem, 3.4798rem + 2.7563vw, 5.9605rem);
  --step-8: clamp(4.8373rem, 4.0868rem + 3.7695vw, 7.4506rem);

  /* Then map semantic names to steps */
  --font-size-negative: var(--step--2);
  --font-size-base: var(--step--1);
  --font-size-body: var(--step-0);
  --font-size-heading-xs: var(--step-1);
  --font-size-heading-sm: var(--step-2);
  --font-size-heading-md: var(--step-3);
  --font-size-heading-lg: var(--step-4);
  --font-size-heading-xl: var(--step-5);
  --font-size-heading-2xl: var(--step-6);
  --font-size-heading-3xl: var(--step-7);
  --font-size-heading-4xl: var(--step-8);

  --font-size-body-sm: clamp(0.875rem, 0.875rem + 0.25vw, 1rem);
  --font-size-body-md: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  --font-size-body-lg: clamp(1.25rem, 1.125rem + 0.5vw, 1.425rem);


  --font-thin: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;

  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, .12);

  /* === MOTION === */
  --ease-out: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  --duration-fast: 120ms;
  --duration-normal: 220ms;

  /* === LAYOUT === */
  --container-2xs: 25rem;
  --container-xs: 32rem;
  --container-sm: 40rem;
  --container-md: 48rem;
  --container-lg: 64rem;
  --container-xl: 80rem;
  --container-2xl: 90rem;
  --max-width-container: min(100%, 100rem);

  --space-block: clamp(3rem, 3rem + 3vw, 7rem);
  --space-inline: clamp(1.25rem, 1rem + 0.75vw, 1.75rem);
  --space-xxs: clamp(0.5rem, 0.5rem + 0.25vw, 0.75rem);
  --space-xs: clamp(0.75rem, 0.75rem + 0.5vw, 1.125rem);
  --space-s: clamp(1.125rem, 1.0739rem + 0.2273vw, 1.25rem);
  --space-m: clamp(1.6875rem, 1.6108rem + 0.3409vw, 1.875rem);
  --space-l: clamp(2.25rem, 2.1477rem + 0.4545vw, 2.5rem);
  --space-xl: clamp(3rem, 2.8125rem + 0.5625vw, 3.75rem);
  --space-2xl: clamp(4.5rem, 4.2188rem + 0.8438vw, 5.625rem);
  --space-3xl: clamp(6.75rem, 6.3281rem + 1.2656vw, 8.4375rem);
  --space-4xl: clamp(10.125rem, 9.4922rem + 1.8984vw, 12.6563rem);

  /* === Z-INDEX === */
  --z-negative: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-overlay: 100;
  --z-modal: 200;
  --z-toast: 300;
}

::-moz-selection,
::selection {
  color: var(--color-black);
  background: var(--color-lime);
  text-shadow: none;
}

.skip-link {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  color: var(--color-lime);
  padding: 1em;
  z-index: calc(var(--z-toast) + 10);
  text-decoration: none;
  border: none;
  width: 100%;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  transform: translate3d(0,-100%,0);
  font-family: inherit;
  font-weight: var(--font-regular);
  letter-spacing: .03em;
  box-shadow: none;
  transition: opacity .35s ease, box-shadow .35s ease, transform .35s ease;
}

.skip-link:focus {
  opacity: 1;
  transform:translate3d(0,0,0);
  box-shadow: 0 2px 25px var(--color-lime);
  transition: opacity .35s ease, box-shadow .35s .1s ease, transform .35s ease;
}
footer .skip-link:focus {
  transform:translate3d(0,-50%,0);
  box-shadow: none
}

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

svg {
  overflow: visible;
}

button {
  cursor: pointer;
}

.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;
}

.no-break {
  white-space: nowrap;
}

#site-header {
  position: fixed;
  z-index: var(--z-toast);
  padding-block: var(--space-s);
  width: 100%;
  mix-blend-mode: difference;
}

.header_logo {
  width: clamp(11rem, 9rem + 5vw, 14rem)
}

#site-header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: var(--container-2xl);
  justify-content: space-between;
}

.header_actions {
  display: flex;
  flex-direction: row;
  gap: var(--space-xxs);
}

#site-header__toggle-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  background: transparent;
  border: 1px solid hsla(0, 100%, 100%, .25);
  padding: clamp(.75em, .75em + .5vw, 1.125em);
  border-radius: 50%;
  transition: border-color 250ms ease;
}

.hamburger {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 21px;
  aspect-ratio: 1 / 1;
}

.hamburger__line {
  stroke: var(--color-white);
  width: 21px;
  overflow: hidden;
  transition: stroke 0.2s;
}

/* --- Closed state (default) --- */
.hamburger__line g:first-child {
  opacity: 1;
  transition: opacity 0s 0.2s;
}

.hamburger__line g:first-child line {
  transition: transform 0.2s 0.2s;
  transform: translateY(0px);
}

.hamburger__line g:last-child {
  opacity: 0;
  transition: opacity 0s 0.2s;
}

.hamburger__line g:last-child line {
  transition: transform 0.2s;
  transform: rotate(0deg);
  transform-origin: center;
}

/* --- Open state --- */
.menu-open .hamburger__line g:first-child {
  opacity: 0;
}

.menu-open .hamburger__line g:first-child line {
  transition: transform 0.2s;
  transform-style: preserve-3d;
}

.menu-open .hamburger__line g:first-child line:first-child {
  transform: translateY(7px);
}

.menu-open .hamburger__line g:first-child line:last-child {
  transform: translateY(-7px);
}

.menu-open .hamburger__line g:last-child {
  opacity: 1;
}

.menu-open .hamburger__line g:last-child line {
  transition: transform 0.2s 0.2s;
  transform-style: preserve-3d;
}

.menu-open .hamburger__line g:last-child line:first-child {
  transform: rotate(45deg);
}

.menu-open .hamburger__line g:last-child line:last-child {
  transform: rotate(-45deg);
}

.main-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  transform: translateY(-100%);
  background-color: white;
  overflow-y: scroll;
  height: 100%;
  transition: transform .75s .15s var(--ease-out);
}

.main-menu .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-xl);
  max-width: var(--container-2xl);
  justify-content: space-between;
}

.main-menu.is-open {
  transform: translate3d(0, 0, 0);
  transition: transform .75s var(--ease-out);
}

.main-menu ul {
  list-style: none;
  align-self: center;
  margin-top: var(--space-s);
}

.main-menu li {
  overflow: hidden;
  width: calc(100% + 2em)
}

.main-menu nav {
  margin-block-start: var(--space-2xl);
  height: 100%;
  display: flex;
  min-height: max-content;
}

.main-menu nav a {
  display: inline-block;
  position: relative;
  padding-inline: .25em .125em;
  font-size: var(--font-size-heading-2xl);
  line-height: var(--leading-snug);
  color: var(--color-dark);
  text-transform: uppercase;
  transform: translate3d(0, 100%, 0);
  transition: transform .3s ease-in-out;
  transition-delay: 0s;
}

.main-menu.is-open nav a {
  transform: translate3d(0, 0, 0);
  transition: transform .6s 500ms ease;
}

.main-menu.is-open li:nth-of-type(2) a {
  transition-delay: 550ms;
}

.main-menu.is-open li:nth-of-type(3) a {
  transition-delay: 600ms;
}

.main-menu.is-open li:nth-of-type(4) a {
  transition-delay: 650ms;
}

.main-menu.is-open li:nth-of-type(5) a {
  transition-delay: 700ms;
}

.main-menu .copyright {
  opacity: 0;
  padding-block-end: var(--space-m);
  font-size: var(--font-size-base);
  line-height: var(--leading-snug);
  transition: opacity .35s ease;
}

.main-menu.is-open .copyright {
  opacity: 1;
  transition: opacity 1s 800ms ease;
}

body.menu-open {
  overflow: hidden;
}

#site-header nav {
  display: none;
  align-items: center;
  justify-content: space-between;
}

#site-header a {
  display: inline-flex;
  text-decoration: none;
  color: var(--color-white);
  font-size: var(--font-size-base);
}

#site-header ul {
  list-style: none;
  display: flex;
  gap: var(--space-m);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  padding: .25rem;
  border-radius: 3em;
  border: 1px solid hsla(0, 100%, 100%, .25);
  color: var(--color-white);
  transition: all 150ms ease;
}

.cta-btn--primary {
  justify-content: start;
  column-gap: 1em;
}

.cta-btn--primary.dark {
  background-color: var(--color-black);
  border-color: transparent;
}

.cta-btn--primary.scroll-down {
  padding-inline-start: 1.25em;
}

.cta-btn--primary:not(.scroll-down) .cta-button__label {
  padding-inline-end: 1em;
}

.cta-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-lime);
}

.cta-btn--primary.scroll-down .cta-button__icon {
  transform: rotate(45deg)
}

.cta-button__label {
  align-self: center;
}

.cta-button__icon svg {
  width: .7em;
  height: auto;
  fill: var(--color-black);
}

.cta-btn--secondary {
  padding: 1.125rem 1.5rem;
}

.btn-group {
  align-items: flex-start;
}

#site-header .contact-btn {
  display: none;
}

/* Base */
body {
  position: relative;
  font-family: var(--font-body);
  line-height: var(--leading-normal);
  color: var(--color-black);
  background: #fff;
}

.container {
  width: 90%;
  max-width: var(--container-xl);
  margin-inline: auto;
}

/* Sections — each maps to an anchor link */
section {
  padding-block: var(--space-block);
  position: relative;
  overflow: hidden;
}

section .container {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

section .heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-m);
}

section .dot {
  color: var(--color-lime);
}

section .heading.center {
  text-align: center;
  max-width: var(--container-md);
  margin: 0 auto;
}

section .heading .highlight,
.cta-copy .highlight {
  display: inline-block;
  position: relative;
}

section .heading .highlight::after,
.cta-copy .highlight::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .25em;
  background: linear-gradient(90deg, var(--color-lime), var(--color-green));
  z-index: -1;
  transform: rotate(-2deg) scaleX(1);
}

.dark .heading .highlight::after,
.cta-copy.heading .highlight::after {
  bottom: -4px;
  height: .125em;
  transform: none;
}


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

section.gray {
  background-color: var(--color-off-white)
}

section.dark p {
  font-weight: var(--font-thin);
}

section h1,
article h1,
section h2 {
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--font-size-heading-xl);
  line-height: var(--leading-tight);
}

section.dark h2 {
  font-weight: var(--font-medium);
}

section h2 {
  font-size: var(--font-size-heading-lg);
}

section p {
  font-size: var(--font-size-body);
  line-height: var(--leading-normal);
}

#hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: -5em;
  border-radius: 100%;
  filter: blur(20px);
  width: 100%;
  background: linear-gradient(334deg, var(--color-lime), #8a38ee, var(--color-green), #e838ee);
  background-size: 200% 200%;
  animation: gradient-animation 10s ease infinite;
  height: 7em;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


#hero .container {
  padding-block-start: var(--space-2xl);
}

#hero-heading {
  text-indent: 1em;
}

#hero .btn-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

#hero .btn-group>.cta-btn {
  height: 3em;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  max-width: var(--container-sm);
}

.hero__image {
  position: absolute;
  bottom: 30%;
  right: -25%;
  width: 100%;
  height: 75%;
  background: url("/assets/images/pattern.svg") repeat center center;
  background-attachment: fixed;
  background-size: clamp(3.5em, 2em + 3vw, 4.5em) auto;
  max-width: 1000px;
  box-shadow: inset 0 7em 1em var(--color-black);
}

.hero__image::before,
.hero__image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 170%;
  background: radial-gradient(#080808ab, var(--color-black) 35%);
  transform: rotate(-20deg);
  top: -25%;
  left: -50%;
}

.hero__image::before {
  background: linear-gradient(153deg, var(--color-black) 0%, rgba(24, 24, 24, 0) 50%, var(--color-black) 100%);
}

.scroll-btn {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(10em, 10em + 4vw, 13em);
  align-self: center;
  cursor: pointer;
  margin-block: 5em 2em;
}

.scroll-btn__arrow {
  position: absolute;
  width: clamp(2.25em, 2em + 1vw, 2.75em);
  height: auto;
}

.scroll-btn__circular-text {
  animation-name: rotate;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }

  to {
    transform: rotate(0);
  }
}


/* MARQUEE BANNER */
.marquee_banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  user-select: none;
  width: 100vw;
  padding: 0;
}

.marquee__track {
  display: block;
  overflow: hidden;
  width: 100vw;
  pointer-events: none;
}


/* === Track === */
.marquee__item,
.marquee__sentinel {
  z-index: var(--z-raised);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  will-change: transform;
  flex-shrink: 0;
  width: max-content;
  color: white;
  text-transform: uppercase;
  padding: clamp(.75em, .5em + .5vw, 1em) 0;
  background-color: var(--color-dark);
}

.marquee__sentinel {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  color: var(--color-dark);
  width: 100vw;
}

.marquee__icon {
  width: clamp(1em, .5em + .75vw, 1.25rem);
  margin: 0 clamp(1.5em, 1em + 1vw, 2em);
  height: auto;
}

.marquee__text {
  font-size: var(--font-size-base);
  letter-spacing: .05em;
}

#marquee-toggle {
  position: relative;
  text-align: center;
  background: none;
  border: none;
  font-size: clamp(.875rem, .5rem + .5vw, .9375rem);
  align-self: end;
  margin-top: 1em;
  font-family: var(--font-body);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .035em;
  padding-bottom: 2px;
}

#marquee-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-dark);
}

#marquee-toggle.is-paused::after {
  content: "Play motion";
}

#marquee-toggle:not(.is-paused)::after {
  content: "Pause motion";
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation: none !important;
    transform: none !important;
  }
}

/* ====== PROBLEMS SECTION ========== */
#problems .container {
  gap: var(--space-2xl);
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1em;
}

.problem-cards .card {
  display: flex;
  padding: var(--space-l) var(--space-xl);
  position: relative;
  flex-direction: column;
  row-gap: var(--space-l);
  background: var(--color-off-white);
  justify-content: space-around;
  max-width: var(--container-sm);
  margin: 0 auto;
  overflow: hidden;
  transition: background-color .35s ease
}

.problem-cards .card::after {
  opacity: 0;
  z-index: var(--z-base);
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-dark);
  filter: blur(50px);
  transform: translate3d(50%, 50%, 0) scale3d(0, 0, 0);
  transition: .5s ease all;
}

.problem-cards .card.active::after {
  opacity: 1;
  transform: translate3d(50%, 50%, 0) scale3d(3.5, 3.5, 3.5);
}

.problem-cards .card:first-child {
  margin-left: 0;
}

.problem-cards .card:last-child {
  margin-right: 0;
}

.problem-cards .card__number {
  position: relative;
  z-index: var(--z-raised);
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: var(--color-dark-gray);
  transition: color .35s ease;
}

.problem-cards .active .card__number {
  color: var(--color-light-gray);
}

.problem-cards .card__content {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-width: var(--container-xs);
}

.problem-cards .card__title {
  font-size: var(--font-size-heading-xs);
  line-height: var(--leading-snug);
  font-weight: var(--font-medium);
  transition: color .35s ease;
}

.problem-cards .active .card__title {
  color: #fff;
}

.problem-cards .card__body {
  font-size: var(--font-size-base);
  font-weight: var(--font-thin);
  line-height: var(--leading-normal);
  transition: color .35s ease;
}

.problem-cards .active .card__body {
  color: var(--color-light-gray);
}

.problem-cards .card__icon {
  position: relative;
  z-index: var(--z-raised);
  align-self: flex-end;
  width: clamp(3.25em, 2em + 2vw, 3.75em);
  height: auto;
  fill: var(--color-dark);
  transition: fill .35s ease;
}

.active .card__icon {
  fill: var(--color-lime);
}

/* ====== BRIDGE SECTION ========== */
#bridge {
  overflow: hidden;
  padding-block: clamp(1rem, 1rem + 2vw, 3rem);
}

#bridge .container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: normal;
}

#bridge .logo_emblem {
  position: relative;
  left: -20vw;
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 0;
  max-width: var(--container-md);
}

#bridge .logo_emblem svg {
  height: 100%;
  width: auto;
  min-width: 28rem;
}

#bridge .tagline {
  position: relative;
  text-wrap: balance;
  max-width: var(--container-md);
  text-align: right;
  font-size: var(--font-size-heading-lg);
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 1;
  justify-self: end;
}

/* ====== ABOUT SECTION ========== */
#about {
  overflow: hidden;
}

#about .container {
  row-gap: var(--space-block);
}

#about h2 {
  font-size: var(--font-size-heading-2xl);
}

#about h3 {
  font-size: var(--font-size-heading-lg);
  font-family: var(--font-display);
}



.about-body {
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  row-gap: var(--space-2xl);
  z-index: var(--z-raised);
  padding-block: var(--space-block);
}

#about .portrait {
  position: relative;
  align-self: center;
  max-width: var(--container-2xs);
}

#about .portrait img {
  position: relative;
  z-index: var(--z-raised);
}

#about .portrait::after {
  content: "";
  position: absolute;
  z-index: var(--z-base);
  top: clamp(.75rem, .5rem + 1vw, 1rem);
  left: clamp(1.25rem, 1rem + 0.5vw, 1.5rem);
  width: 100%;
  height: 100%;
  background-color: var(--color-lime);
}

.about-text__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: var(--leading-snug);
  max-width: var(--container-xs);
  row-gap: var(--space-l);
  align-self: flex-end;
}

.about-text__content p {
  line-height: var(--leading-relaxed);
  font-size: var(--font-size-body);
}

.about-text__content br {
  display: block;
  margin-block: var(--space-xxs);
}

#about .about-body::after {
  content: "";
  position: absolute;
  z-index: var(--z-negative);
  top: 0;
  left: -25%;
  width: 150%;
  min-width: var(--container-md);
  height: 100%;
  background-color: var(--color-off-white);
}

/* ====== ABOUT SECTION ========== */
.stats {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xl);
}

.stat {
  display: flex;
  flex-direction: column-reverse;
  row-gap: var(--space-s);
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-heading-xl);
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  font-weight: var(--font-semibold);
}

.stat-label {
  text-transform: uppercase;
  font-size: var(--font-size-negative);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ====== SERVICES SECTION ========== */
#services {
  position: relative;
  overflow: hidden;
}

#services .heading {
  max-width: var(--container-lg);
}

#services .container {
  row-gap: var(--space-2xl);
}

#services .heading p {
  max-width: var(--container-md);
  margin: 0 auto
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-m);
  max-width: var(--container-lg);
  margin: 0 auto;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-m);
}

.service-card {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: var(--space-xl);
  padding-block-end: var(--space-3xl);
  max-width: var(--container-sm);
  margin: 0 auto;
  row-gap: var(--space-md);
  border: 1px solid var(--color-dark-gray);
  transition: border-color .35s ease;
}

.service-card.active {
  border-color: var(--color-lime);
}

.service-card__title {
  position: relative;
  display: inline-block;
  font-size: var(--font-size-heading-sm);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-snug);
  font-weight: var(--font-regular);
}

.service-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 3em;
  height: .05em;
  background: linear-gradient(90deg, var(--color-lime), var(--color-green));
  z-index: var(--z-negative);
  transition: width .35s ease;
}

.service-card__description {
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-thin);
  color: var(--color-light-gray)
}

.service-card__features {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}

.service-card__features-title {
  font-weight: var(--font-medium) !important;
}

.service-card__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}

.service-card__feature {
  position: relative;
  font-size: var(--font-size-base);
  font-weight: var(--font-thin);
  padding-left: 1em;
  line-height: var(--leading-snug);
}

.service-card__feature:before {
  content: '';
  position: absolute;
  width: .25em;
  aspect-ratio: 1/1;
  background-color: var(--color-lime);
  border-radius: 50%;
  top: .6em;
  left: .25em;
}

.service-card__icon {
  position: absolute;
  right: 1.75em;
  bottom: 1.5em;
  align-self: flex-end;
  color: var(--color-dark-gray);
  width: var(--font-size-heading-xl);
  height: auto;
  color: var(--color-dark-gray);
  transition: color .35s ease;
}

.service-card.active .service-card__icon {
  color: var(--color-lime);
}

#services .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-m);
  max-width: var(--container-lg);
  justify-content: space-between;
}

#services .cta p {
  line-height: var(--leading-snug);
  align-self: start;
}

#services .cta .cta-btn {
  align-self: flex-end;
}

#services .background {
  position: absolute;
  z-index: var(--z-base);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg__pattern {
  opacity: .45;
  position: absolute;
  top: 0;
  left: -25%;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-image: url("/assets/images/pattern-2.svg");
  background-attachment: fixed;
  background-size: 3.5em auto;
}

#services .bg__pattern.bottom {
  top: auto;
  left: auto;
  bottom: 0;
  right: -25%;
}

.bg__pattern::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 175%;
  height: 175%;
  background: radial-gradient(transparent, var(--color-black) 35%);
  transform: translate3d(-50%, -50%, 0);
}

/* ====== PROCESS SECTION ========== */
#process .heading {
  max-width: var(--container-md);
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-2xl);
}

.process-step__inner {
  display: grid;
  row-gap: var(--space-xxs);
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "meta icon"
    "content content";
  align-items: center;
}

.process-step__meta {
  grid-area: meta;
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-tight);
  flex-direction: column;
}

.process-step__label {
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  font-size: var(--font-size-body-md);
  letter-spacing: .05em;
}

.process-step__number {
  font-size: var(--font-size-heading-3xl);
  line-height: var(--leading-tight);
}

.process-step__number .dot {
  color: var(--color-lime);
}

.process-step__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
  max-width: var(--container-xs);
}

.process-step__title {
  font-size: var(--font-size-heading-sm);
  line-height: var(--leading-tight);
  font-weight: var(--font-semibold);
}

.process-step__content p {
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
}

.process-step__icon {
  grid-area: icon;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1rem + .5vw, 1.5rem);
  border-radius: 50%;
  background-color: var(--color-lime);
}

.process-step__icon svg {
  width: clamp(1.75rem, 1.75rem + 1vw, 2.5rem);
  max-width: 2.375em;
  aspect-ratio: 1/1;
  fill: var(--color-black);
}

/* ====== FAQ SECTION ========== */
.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: .5em
}

.faq__item {
  display: grid;
  overflow: hidden;
  position: relative;
  grid-template-columns: 1fr;
  overflow: visible;
  border: 1px solid var(--color-gray);
  background-color: white;
  transition: box-shadow .35s ease, background-color .35s ease;
}

.faq__item.is-expanded {
  background-color: var(--color-black);
}

.faq__item .bg__pattern {
  display: none;
}

.faq__trigger {
  display: grid;
  position: relative;
  grid-template-columns: 2fr auto;
  align-items: center;
  column-gap: 1.5em;
  padding: var(--space-s) var(--space-m);
  width: 100%;
  font-size: var(--font-size-base);
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  height: 100%;
}

.faq__trigger-label {
  font-size: var(--font-size-body);
  font-weight: var(--font-medium);
  transition: color .35s ease;
}

.is-expanded .faq__trigger-label {
  color: var(--color-off-white);
}

.faq__trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.425em;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: 1px solid var(--color-gray);
  color: var(--color-dark);
  padding: .7em;
  border-radius: 50%;
  transition: color 0.35s ease, background-color .35s ease, border .35s ease, transform 0.35s ease;
}

.is-expanded .faq__trigger-icon {
  color: var(--color-lime);
  background-color: transparent;
  border-color: var(--color-lime);
  transform: rotate(-180deg);
}

.faq__trigger-icon svg {
  height: 100%;
  width: auto;
}

.faq__answer {
  opacity: 0;
  z-index: var(--z-raised);
  max-height: 0;
  overflow: hidden;
  transition: opacity .5s ease, max-height 0.65s var(--ease-out);
}

.faq__item.is-expanded .faq__answer {
  opacity: 1;
  max-height: 100vh;
}

.faq__answer-inner {
  padding: 0 var(--space-m) var(--space-s);
  max-width: var(--container-sm);
}

.faq__answer-inner p {
  max-width: var(--container-sm);
  font-size: var(--font-size-base);
  color: var(--color-light-gray);
  line-height: var(--leading-normal);
  font-weight: var(--font-thin);
}


/* ====== TABLE COMPARISON SECTION ========== */
.comparison-table__container {
  overflow-x: scroll;
}

table {
  position: relative;
  width: 100%;
  min-width: max-content;
  border-collapse: collapse;
  overflow: hidden;
  background-color: white;
}

th,
td {
  padding: var(--space-s);
  line-height: var(--leading-tight);
  width: 15em;
}

.col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  font-size: .9375rem;
  color: white;

}

.comparison-table__header,
.comparison-table thead th:first-child {
  position: sticky;
  color: black;
  text-align: left;
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  max-width: 10em;
  left: 0;
  z-index: var(--z-overlay);
}

.comparison-table__header {
  background-color: white;
}

.comparison-table__header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-right: 1px solid var(--color-off-white);
  z-index: var(--z-raised);
  box-shadow: 5px 0 5px #0808080a;
}

.comparison-table thead th {
  position: relative;
  z-index: var(--z-overlay);
  background-color: var(--color-black);
  padding: var(--space-xxs);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: var(--font-medium);
}

.table__icon {
  height: clamp(1.75rem, 1.5rem + .5vw, 2.25rem);
  aspect-ratio: 1/1;
  width: auto;
}

tbody tr {
  border-bottom: 1px solid var(--color-off-white);
}

tbody tr:nth-child(even) {
  background-color: #afafaf1a
}

tbody td {
  position: relative;
  color: var(--color-black);
}

.table__value {
  display: flex;
  align-items: center;
  column-gap: .5em;
  position: relative;
  z-index: calc(var(--z-raised) + 1);
}

.table__feature {
  align-items: flex-start;
  font-size: var(--font-size-body-sm);
}

.table__icon-check {
  width: var(--font-size-body-md);
  color: #4BB800;
  max-width: 1.125em;
  position: relative;
  top: 2px;
}

.comparison-table thead th:first-child {
  background-color: var(--color-black);
  z-index: calc(var(--z-overlay) + 1);
}

/* ====== CTA SECTION ========== */
#cta {
  position: relative;
  overflow: hidden;
  padding-block-end: calc(var(--space-block) + 1em)
}

.cta-card {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-l);
  padding: var(--space-xl);
  max-width: var(--container-xs);
  background-color: white;
  color: black;
  width: calc(100% - 1em);
  max-width: 27rem;
  align-self: end;
}

.cta-card::after {
  content: "";
  position: absolute;
  z-index: var(--z-negative);
  right: -1em;
  bottom: -1em;
  width: 100%;
  height: 100%;
  background-color: var(--color-lime);

}

.cta-card__brand {
  width: 80%;
  height: auto;
  max-width: 16em;
}

.cta-card__benefits {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: var(--font-size-body);
}

.cta-card__feature {
  display: flex;
  align-items: center;
  column-gap: var(--space-inline);
  font-size: var(--font-size-base);
}

.cta-feature__icon {
  width: clamp(2.5rem, 2rem + 1vw, 3rem);
  max-width: 2.75rem;
}

.cta-feature__label {
  line-height: var(--leading-snug);
}

.cta-card__btn {
  position: relative;
  background-color: var(--color-lime);
  color: var(--color-black);
  font-size: var(--font-size-body-md);
  padding: var(--space-s) var(--space-l);
  font-weight: var(--font-medium);
  text-wrap: nowrap;
  overflow: hidden;
  transition: color .35s ease;
}

.animated-gradient::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(334deg, hsl(236, 84%, 58%), #8a38ee, hsl(219, 100%, 61%), #e838ee);
  animation: gradient-animation 5s ease infinite;
  background-size: 200% 200%;
  height: 150%;
  width: 150%;
  transform: translate3d(-50%, 50%, 0);
  transition: opacity .35s ease, transform .35s ease;
}

#site-header .animated-gradient::after {
  background: linear-gradient(334deg, var(--color-lime), var(--color-green), #94FF13, var(--color-lime));
  background-size: 200% 200%;
}

.cta-card__btn-label {
  position: relative;
  z-index: var(--z-raised);
}

#cta .bg__pattern {
  opacity: .5;
  background-size: 4.5em auto;
}


/* ====== BLOG SECTION ========== */
#blog .container {
  row-gap: var(--space-xl);
}

#blog .heading {
  gap: var(--space-m);
}

.blog__title {
  font-size: var(--font-size-heading-3xl);
}

.blog-link {
  display: flex;
  width: max-content;
  flex-direction: row;
  align-items: center;
  column-gap: .25em;
  font-size: var(--font-size-body-lg);
  font-weight: var(--font-semibold);
  color: var(--color-black);
}

.blog-link__label {
  position: relative;
}

.blog-link__label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
}

.blog-link__icon {
  width: var(--font-size-body-sm);
  position: relative;
  top: 2px;
}

.blog__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: var(--container-sm);
  margin: 0 auto;
  row-gap: var(--space-m);
}

.blog__item {
  display: flex;
  justify-content: center;
  padding-block-end: var(--space-xxs)
}

.blog__item:not(:last-child) {
  border-bottom: 1px solid var(--color-dark);
  padding-block-end: var(--space-xl)
}

.post-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: var(--space-m);
  color: inherit
}

.post-card__category {
  position: absolute;
  z-index: var(--z-raised);
  color: var(--color-white);
  background-color: var(--color-dark);
  top: 1.5em;
  right: 1.5em;
  padding: .325em .5em;
  text-transform: uppercase;
  font-size: var(--font-size-negative);
  border-radius: 3px;
  letter-spacing: .03em;
  transition: color .35s ease;
}

.post-card__media {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.post-card__image {
  position: relative;
  transition: transform .35s ease;
}

.post-card__media::after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, .25);
  box-shadow: inset 0 0 150px 15px var(--color-black);
  transition: opacity .35s ease;
}

.post-card__icon {
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-raised);
  background-color: var(--color-dark);
  color: var(--color-lime);
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(4em, 3em + 1.5vw, 4.5em);
  aspect-ratio: 1/1;
  justify-content: center;
  transition: color .35s ease, background-color .35s ease;
}

.post-card__icon svg {
  width: 22%;
  transition: transform .35s ease;
}

.post-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
  max-width: var(--container-sm);
}

.post-card__date {
  font-size: var(--font-size-body);
  color: var(--color-dark-gray);
  font-weight: var(--font-semibold);
}

.post-card__title {
  font-size: var(--font-size-heading-md);
  line-height: var(--leading-snug);
  font-family: var(--font-display);
  margin-bottom: .325em;
}

.post-card__excerpt {
  font-size: var(--font-size-body-md);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-thin);
}

#site-footer {
  position: relative;
  padding-block: var(--space-2xl) var(--space-m);
}

#site-footer .container {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-2xl);
  align-items: center;
  text-align: center;
}

.site-footer__logo {
  width: clamp(13rem, 13rem + 7vw, 20rem)
}


.site-footer__bottom {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: .25rem;
}

.site-footer__link {
  color: inherit;
  text-decoration: underline;
  font-weight: var(--font-medium);
  background-color: transparent;
  border: none;
  font-size: var(--font-size-base);
  font-family: var(--font-body);
}

#scroll_top {
  margin-bottom: 2em;
  font-size: var(--font-size-body);
  font-weight: var(--font-medium);
}

.site-footer__separator {
  display: none;
}

.site-footer__copyright {
  font-size: clamp(.9375rem, .5rem + 0.5vw, 1rem);
  line-height: var(--leading-snug);
}

.credits {
  font-weight: var(--font-semibold);
  color:var(--color-black);
  text-decoration: underline;
}

@media (min-width: 28.75rem) {
  #hero .btn-group {
    flex-direction: row;
    align-items: stretch;
  }

  #hero .btn-group>.cta-btn {
    height: auto;
  }

  .site-footer__nav {
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
  }

  .site-footer__separator {
    display: flex;
  }

  #scroll_top {
    font-size: var(--font-size-base);
    margin-bottom: 0;
  }

  .site-footer__bottom {
    row-gap: 1.5rem;
  }

}

@media (min-width: 40rem) {
  .stats {
    flex-direction: row;
    justify-content: space-evenly;
    column-gap: var(--space-lg);
  }

  #services .cta {
    width: 100%;
    flex-direction: row;
    column-gap: var(--space-l);
    max-width: var(--container-lg);
    margin: 0 auto;
    justify-content: space-between;
  }

  #services .cta p {
    align-self: center;
  }

  .main-menu nav a {
    font-size: var(--font-size-heading-2xl);
  }

  .blog__title {
    font-size: var(--font-size-heading-4xl);
  }

}

@media (min-width: 48rem) {
  #hero h1 {
    font-size: var(--font-size-heading-2xl);
  }

  section h2,
  #bridge .tagline {
    font-size: var(--font-size-heading-xl);
  }

  #about h2 {
    font-size: var(--font-size-heading-3xl);
  }

  .hero__content {
    max-width: var(--container-md);
  }

  .scroll-btn {
    margin-left: auto;
    margin-right: 3em;
    margin-block-end: 0;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-s);
  }

  #services .bg__pattern {
    opacity: .65;
    width: 50%;
  }

  #process .container {
    row-gap: var(--space-3xl);
  }

  .process-steps {
    align-self: end;
  }

  .process-step__inner {
    display: flex;
    column-gap: var(--space-xl);
    align-items: start;
    justify-content: space-between;
  }

  .cta-card {
    right: 10%;
  }

}

@media (min-width: 53.125rem) {
  #blog .heading {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .blog__list {
    max-width: none;
  }

  .post-card {
    flex-direction: row;
    column-gap: var(--space-xl);
  }

  .post-card__image {
    min-width: 23rem;
  }

  .post-card__content {
    margin-top: 1.75em;
  }

  .post-card__excerpt {
    font-size: clamp(1.125rem, 1rem + .25vw, 1.25rem);
  }
}

@media (min-width: 64rem) {
  :focus-visible {
    outline: 3px solid var(--color-lime);
    outline-offset: 2px;
  }

  #hero .container {
    padding-block-start: var(--space-3xl);
  }

  .main-menu nav a {
    font-size: var(--font-size-heading-3xl);
  }

  #site-header .contact-btn {
    display: inline-flex;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    border: 1px solid hsla(0, 100%, 100%, .25);
    padding: 0 1.5em;
    font-size: var(--font-size-base);
    transition: color .35s ease, border-color .35s ease;
  }

  #site-header .contact-btn__label {
    position: relative;
    z-index: var(--z-raised);
  }

  #bridge .logo_emblem {
    position: relative;
    left: -10%;
  }

  .hero__content p {
    text-wrap: balance;
  }

  .problem-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  #about h2 {
    font-size: var(--font-size-heading-4xl);
  }

  #about .about-body {
    flex-direction: row;
    align-items: center;
    column-gap: var(--space-2xl);
  }

  #about .about-body::after {
    left: -50%;
    width: 130%;
  }

  #about .portrait {
    max-width: none;
    min-width: 27em;
    width: calc(100% - var(--space-2xl) - var(--container-xs) - clamp(1.25rem, 1rem + 0.5vw, 1.5rem));
  }

  .faq__item {
    grid-template-columns: 1fr 1fr 0.125fr;
    grid-template-areas: none;
    gap: 2em;
  }

  .faq__trigger {
    height: 100%;
    align-items: start;
    column-gap: 2em;
    padding-block: var(--space-xs);
    grid-template-columns: 2.5fr 1fr 1fr;
  }

  .faq__trigger-label {
    grid-column: 1 / 2;
    grid-row: 1;
    margin-top: calc(.125em + .25vw);
    line-height: var(--leading-tight);
    transition: color .35s ease;
  }

  .question-mark {
    transition: color .35s ease;
  }

  .is-expanded .question-mark {
    color: var(--color-lime)
  }

  .faq__trigger-icon {
    grid-column: 4;
    grid-row: 1;
    align-self: flex-start;
  }

  .faq__item-title {
    position: relative;
    z-index: var(--z-overlay);
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .faq__answer {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .faq__answer-inner {
    padding-block: var(--space-m) var(--space-m);
  }

  .faq__item .bg__pattern {
    display: block;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: var(--z-base);
    bottom: 0;
    left: 0;
    width: 60%;
    height: 100%;
    max-width: var(--container-sm);
    background-color: var(--color-black);
    transition: .1s ease opacity;
  }

  .faq__item.is-expanded .bg__pattern {
    opacity: .35;
    transition: .35s .35s ease opacity;
  }

  .faq__item .bg__pattern::before {
    z-index: var(--z-raised);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent, var(--color-black) 70%);
  }

  .faq__item .bg__pattern::after {
    z-index: var(--z-base);
    background: url("/assets/images/pattern.svg") repeat center center;
    background-size: clamp(2.5em, 2em + 2vw, 3.5em) auto;
  }

  #cta .container {
    flex-direction: row;
  }

  #cta .bg__pattern {
    height: 125%;
    width: auto;
    opacity: .65;
    left: 0;
    top: -20%;
  }

  #cta .bg__pattern::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background: radial-gradient(transparent, var(--color-black) 50%);
    transform: none;
  }

  .cta-card {
    right: 0
  }

}

@media (min-width: 80rem) {
  .main-menu nav a {
    font-size: var(--font-size-heading-4xl);
  }

  #hero h1 {
    font-size: var(--font-size-heading-3xl);
  }

  .hero__content {
    max-width: var(--container-lg);
  }

  #bridge .tagline {
    max-width: var(--container-lg);
  }

  #about h3 {
    font-size: var(--font-size-heading-xl)
  }

  section p {
    font-size: var(--font-size-body-lg);
  }

  .stats {
    justify-content: space-between;
  }

  .stat-number {
    font-size: var(--font-size-heading-2xl);
  }

  .stat-label {
    font-size: var(--font-size-body-sm);
  }
}

@media (min-width: 85rem) {
  .hero__image {
    right: 15%;
  }

  #services .bg__pattern {
    top: -25%;
    background-size: 4em auto;
  }

  #services .bg__pattern.bottom {
    bottom: -25%;
  }

}

@media (hover:hover) {

  .main-menu nav a::after {
    opacity: 0;
    position: absolute;
    top: 0;
    left: .125em;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-lime);
    z-index: var(--z-negative);
    transform: skew(-0.03turn);
    transition: opacity .35s ease, width .35s ease;
  }
  .main-menu nav a:focus {
    outline:none;
  }
  .main-menu nav a:hover::after, .main-menu nav a:focus::after {
    width: 100%;
    opacity: 1;
  }


  #site-header__toggle-menu:hover {
    border-color: var(--color-white);
  }

  .cta-btn:not(.scroll-down):hover,
  #services .cta .cta-btn.scroll-down:hover {
    color: var(--color-white);
    border-color: var(--color-lime)
  }

  .cta-btn--primary:not(.scroll-down):hover {
    border-color: white;
  }

  .cta-btn--primary.scroll-down:hover {
    color: var(--color-lime);
  }



  #site-header .contact-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-lime);
  }

  #site-header .contact-btn:hover::after {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }

  .cta-button__icon {
    position: relative;
    transition: transform 150ms ease;
  }

  .cta-btn--primary:not(.scroll-down):hover .cta-button__icon {
    transform: rotate(45deg);
  }

  .cta-btn--primary.scroll-down:hover .cta-button__icon {
    transform: rotate(90deg)
  }

  .faq__item:not(.is-expanded):hover {
    background-color: var(--color-dark);
    box-shadow: 0 0 10px 0 var(--color-gray);
  }

  .faq__item:not(.is-expanded):hover .faq__trigger-label {
    color: var(--color-gray)
  }

  .faq__item:not(.is-expanded):hover .faq__trigger-icon {
    background-color: transparent;
    border-color: var(--color-dark-gray);
    color: var(--color-lime);
  }

  .faq__item:not(.is-expanded) .faq__trigger-icon:hover {
    color: var(--color-black);
    background-color: var(--color-lime);
    border-color: var(--color-lime);
  }

  tbody td:hover {
    background-color: var(--color-lime)
  }

  tbody td:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2000%;
    width: 100%;
    transform: translate3d(0, -50%, 0);
    z-index: var(--z-base);
    pointer-events: none;
  }

  .comparison-table__header:hover {
    color: var(--color-green);
    background-color: var(--color-dark);
  }

  tbody tr:hover,
  tbody td:hover:before {
    background-color: #F6FFBE78;
  }

  .cta-card__btn:hover::after {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }

  .post-card:hover .post-card__icon {
    color: var(--color-black);
    background-color: var(--color-lime);
  }

  .post-card:hover .post-card__icon svg {
    transform: rotate(45deg)
  }

  .post-card:hover .post-card__image {
    transform: scale3d(1.1, 1.1, 1.1)
  }

  .post-card:hover .post-card__media::after {
    opacity: 1;
  }

  .post-card:hover .post-card__category {
    color: var(--color-lime)
  }

}