/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 1. ROOT VARIABLES —————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

/* Root Variables */

:root {
  --color-neutral-100: white;
  --color-neutral-200: #efeeec;
  --color-neutral-300: #e3e1de;
  --color-neutral-400: #cbc8c5;
  --color-neutral-500: #818180;
  --color-neutral-600: #2c2c2c;
  --color-neutral-700: #1f1f1f;
  --color-neutral-800: #131313;
  --color-neutral-900: black;
  --color-white: var(--color-neutral-100);
  --color-light: var(--color-neutral-200);
  --color-dark: var(--color-neutral-800);
  --color-black: var(--color-neutral-900);

  --color-primary: #8000ff;
  --color-success: #0ba954;
  --color-error: #e03e3e;

  --color-ignore-neutral-100: #ffffff;
  --color-ignore-neutral-200: #efeeec;
  --color-ignore-neutral-300: #e3e1de;
  --color-ignore-neutral-400: #d0cfcd;
  --color-ignore-neutral-500: #818180;
  --color-ignore-neutral-600: #2c2c2c;
  --color-ignore-neutral-700: #1f1f1f;
  --color-ignore-neutral-800: #131313;
  --color-ignore-neutral-900: #000000;
  --color-ignore-white: var(--color-ignore-neutral-100);
  --color-ignore-light: var(--color-ignore-neutral-200);
  --color-ignore-dark: var(--color-ignore-neutral-800);
  --color-ignore-black: var(--color-ignore-neutral-900);
  --color-ignore-rgb-dark: 19, 19, 19;
  --color-ignore-rgb-light: 239, 238, 236;
  --color-ignore-rgb-black: 0, 0, 0;
  --color-ignore-rgb-white: 255, 255, 255;

  /* For the code snippet preview */
  --color-code-gray: var(--color-neutral-500);
  --color-code-purple: #735b9e;
  --color-code-orange: #c68052;
  --color-code-blue: #698cb0;
  --color-code-green: #9ebe5e;
  --color-code-red: #c96666;

  --gap-tiny: 0.5em;
  --gap-small: 0.75em;
  --gap-reg: 1em;
  --gap-med: 1.25em;
  --gap-large: 1.5em;
  --gap-xlarge: 2em;
  --gap-xxlarge: 3em;
  --container-padding: 2em;

  --card--radius-small: 0.5em;
  --card--radius-reg: 0.75em;
  --card--background-color: #efeeec0f;
  --card--background-color-active: #efeeec1a;
  --card--border-color: #efeeec14;

  --gap-size: 1rem;
  --dash-side-width: 18.5em;
  --dash-top-height: 6.5em;
  --dash-side-width-ignore: 18.5em;
  --dash-side-width-collapsed: 5.5em;
  --dash-col-width: 0em;
  --dash-col-width-half: 0em;
  --dash-col-gap: 1.5em;
  --dash-content-max-width: 65em;
  --dash-content-width: 0em;
  --gap-component-grid: 0.75em;

  --cubic-default: cubic-bezier(0.625, 0.05, 0, 1);
  --duration-default-double: 1.6s;
  --duration-default-onehalf: 1.2s;
  --duration-default: 0.8s;
  --duration-default-half: 0.4s;
  --animation-default-double: var(--duration-default-double)
    var(--cubic-default);
  --animation-default-onehalf: var(--duration-default-onehalf)
    var(--cubic-default);
  --duration-default-quarter: 0.2s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --animation-default-half: var(--duration-default-half) var(--cubic-default);
  --animation-default-quarter: var(--duration-default-quarter)
    var(--cubic-default);
  --animation-ease: 0.2s ease;
  --animation-ease-double: 0.4s ease;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 2. SCALING SYSTEM ————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

/* Desktop */
:root {
  --size-unit: 16;
  --size-container-ideal: 1440;
  /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(
    var(--size-container-min),
    100vw,
    var(--size-container-max)
  );
  --size-font: calc(
    var(--size-container) / (var(--size-container-ideal) / var(--size-unit))
  );
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 1080;
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
  .f-grid-card.snippets {
    display: none;
  }
  .logo-wall__logo-img {
    width: 140px !important;
    height: auto;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 550;
    /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
    --container-padding: 1.25em;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 402;
    /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}

/* Apply to body */
body {
  font-size: var(--size-font);
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 3. GLOBAL RESETS & BASE STYLES ———————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

body ::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
}

html,
body {
  width: 100%;
  height: auto !important;
  min-height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

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

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-neutral-800);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-neutral-800);
  text-shadow: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.code-embed-css,
.code-embed-galactical {
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.opacity--25 {
  opacity: 0.25;
}

.opacity--50 {
  opacity: 0.5;
}

.opacity--70 {
  opacity: 0.7;
}

.opacity--80 {
  opacity: 0.8;
}

.opacity--60 {
  opacity: 0.6;
}

.image {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.image.round {
  border-radius: 100em;
}

.pointer-off {
  pointer-events: none;
}

.text-container {
  margin-bottom: 4.5em;
}

.text-container.text-center {
  text-align: center;
  margin-bottom: 3em;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 4. UTILITIES ——————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.u--clip {
  overflow: clip;
}

.u--rel {
  z-index: 1;
  position: relative;
}

.u--abs {
  position: absolute;
}

.u--abs.top {
  z-index: 1;
  inset: 0% 0% auto;
}

.u--abs.bottom {
  inset: auto 0% 0%;
}

.u--hide {
  display: none;
}

.u--color-neutral-500 {
  color: var(--color-neutral-500);
}

.fixed {
  position: fixed;
  inset: 0% auto auto 0%;
}

.bg-wrapper canvas {
  position: absolute;
}

.single-line-wrap {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.gradient-overlay {
  background-image: linear-gradient(
    rgba(14, 14, 14, 1) 0%,
    rgba(14, 14, 14, 0.3) 50%,
    rgba(14, 14, 14, 0.15) 65%,
    rgba(14, 14, 14, 0.075) 75.5%,
    rgba(14, 14, 14, 0.037) 82.85%,
    rgba(14, 14, 14, 0.019) 88%,
    rgba(14, 14, 14, 0) 100%
  );
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 4a. UTILITY FLEX ROWS & COLUMNS ————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.flex-col {
  flex-flow: column;
  display: flex;
}

.flex-col.a--left {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-col.a--center {
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex-col.gap--70 {
    grid-column-gap: 4.375em;
    grid-row-gap: 0.5em;
  }
}

@media (min-width: 768px) {
  .flex-col.gap--70 {
    grid-column-gap: 4.375em;
    grid-row-gap: 4.2em;
  }
}

.flex-col.gap--tiny {
  gap: var(--gap-tiny);
}

.flex-col.gap--small {
  gap: var(--gap-small);
}

.flex-col.gap--med {
  gap: var(--gap-med);
}

.flex-col.gap--xlarge {
  gap: var(--gap-large);
}

.flex-col.gap--xxlarge {
  gap: var(--gap-xxlarge);
}

.flex-row {
  flex-flow: row;
  display: flex;
}

.flex-row.a--center {
  justify-content: center;
  align-items: center;
}

.flex-row.a--center.is--relative {
  position: relative;
}

.flex-row.gap--small {
  gap: var(--gap-small);
}

.flex-row.gap--tiny {
  gap: var(--gap-tiny);
}

.flex-row.gap--med {
  gap: var(--gap-med);
}

/* ————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 5. TEXT STYLES —————————————————————————————— */
/* ————————————————————————————————————————————————————————————————————— */
.eyebrow {
  text-transform: uppercase;
  font-family: RM Mono, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1;
}
.footer-count {
  position: relative;
  top: -0.45em; /* lift slightly above baseline */
  margin-left: 0.1em; /* small gap from label */
  opacity: 0.6; /* match subtle look */
}

.footer-main .link:has(.link-label)::after {
  display: none;
}

.footer-main .link .link-label {
  position: relative;
  display: inline-block;
}
.footer-main .link .link-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* sits right under text baseline */
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: center right;
  transition: transform var(--animation-default);
}
.footer-main .link.w--current .link-label::after,
.footer-main .link:hover .link-label::after {
  transform: scale(1, 1);
  transform-origin: center left;
}

.eyebrow.small {
  font-size: 0.65em;
}

.eyebrow.circle {
  color: #131313;
  cursor: pointer;
  background-color: #efeeec;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 1.333em;
  height: 1.333em;
  display: inline-flex;
}

.eyebrow.circle.dark {
  background-color: #0000;
  border: 1px solid #000c;
  transform: translate(0, -15%);
}

.p-tiny {
  font-size: 0.75em;
}

.p-small {
  font-size: 0.875em;
  line-height: 1.3;
}

.p-reg {
  font-size: 1em;
  line-height: 1.4;
}

.p-reg.mask {
  height: 1.5em;
  overflow: hidden;
}

.p-reg.sold-out {
  opacity: 0.33;
}

.p-med {
  font-size: 1.125em;
}

.p-large {
  font-size: 1.5em;
  line-height: 1.15;
}

.h-small {
  letter-spacing: -0.02em;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
}

.h-medium {
  font-size: 3.375em;
  font-weight: 500;
  line-height: 1;
}

.h-large {
  font-size: 5em;
  font-weight: 500;
  line-height: 1;
}

.h-display {
  letter-spacing: -0.01em;
  font-size: 5.625em;
  font-weight: 500;
  line-height: 0.95;
}

.page-title {
  margin-bottom: var(--gap-xxlarge);
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 6. BUTTONS & LINKS ——————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.button {
  color: var(--color-dark);
  background-color: #0000;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  height: 3.125em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  position: relative;
}

.button:focus {
  outline-color: var(--color-light);
  outline-offset: 2px;
  border-radius: 0.15em;
  outline-width: 1px;
  outline-style: none;
}

.button:focus-visible {
  outline-color: var(--color-light);
  outline-offset: 2px;
  outline-width: 1px;
  outline-style: solid;
}

.button[data-wf-focus-visible] {
  outline-color: var(--color-light);
  outline-offset: 2px;
  outline-width: 1px;
  outline-style: solid;
}

.button.is--secondary,
.button.is--dark {
  color: var(--color-light);
}

.button.small {
  height: 2.5em;
  padding-left: 1em;
  padding-right: 1em;
}

.button.small:focus {
  outline-color: var(--color-light);
  outline-offset: 2px;
  border-radius: 0.25em;
  outline-width: 1px;
  outline-style: solid;
}

.button.small.is--secondary {
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
}

.link {
  z-index: 1;
  position: relative;
}

.link:focus {
  outline-color: var(--color-light);
  outline-offset: 0px;
  border-radius: 0.15em;
  outline-width: 1px;
  outline-style: none;
}

.link:focus-visible {
  outline-color: var(--color-light);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
}

.link[data-wf-focus-visible] {
  outline-color: var(--color-light);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
}

.link.nav-link {
  overflow: clip;
}

.nav-link-text {
  font-size: 1em;
  line-height: 1.4;
}

.nav-link-arrow {
  display: none;
}

.inline-link {
  white-space: nowrap;
  position: relative;
}

.square-button {
  color: var(--color-light);
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0.625em;
  display: flex;
}

.close-icon {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.65, 0.05, 0, 1);
  position: relative;
  transform: rotate(-45deg);
}

.button-bg {
  z-index: -1;
  background-color: var(--color-light);
  border-radius: 0.25em;
  position: absolute;
  inset: 0%;
}

.button-bg.black {
  z-index: 0;
  background-color: var(--color-dark);
}

.button-bg.is--secondary {
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  background-color: #efeeec26;
}

.button-bg.is--dark-outline {
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  background-color: #0000;
  border: 1px solid #13131326;
}

.button p,
.link p {
  text-shadow: 0px 1.25em currentColor;
}

.button .single-letter,
.link .single-letter {
  transition: transform var(--animation-default);
}

.button-bg {
  transition: transform var(--animation-default),
    background-color 0.2s ease-in-out;
}

.inline-link::after,
.link::after,
.rich-text a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0px;
  transform-origin: center left;
  transition: transform var(--animation-default);
  background: currentColor;
  transform: scale(1, 1);
}

.link::after {
  transform: scale(0, 1);
  transition-delay: 0.1s;
  transform-origin: center right;
}

.link.w--current::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
  .nav-link::after {
    transform: scale(0, 1) !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  /* Button & Link letter hovers */
  .button:hover .single-letter,
  .link:not(.w--current):hover .single-letter {
    transform: translate(0px, -1.25em);
  }

  .button:hover .button-bg {
    transform: scale(0.95);
  }

  .form-submit-btn:hover .button-bg {
    transform: scale(0.99, 0.95);
  }

  .home-hero-vid:hover .hero-vid-bg {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .square-button:hover .button-bg {
    transform: scale(0.95);
  }

  .square-button:hover .close-icon {
    transform: rotate(-135deg);
  }

  /* Style pseudo element in code-embed-css */
  .inline-link:hover::after,
  .rich-text a:hover::after {
    transform-origin: center right;
    transform: scale(0, 1);
  }

  .link:hover::after {
    transform-origin: center left;
    transform: scale(1, 1);
    transition-delay: 0s;
  }
}

/* Explore Styles */
.dash-command.is--explore {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4em;
  min-width: 60%;
  font-size: 0.95em;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dash-command.is--explore:hover {
  background-color: white;
  color: black;
}

[data-svg-copy],
[data-svg-download],
.dash-command.is--download {
  display: none !important;
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— 7. BODY, MAIN-W, SECTION, CONTAINERS, ETC. ————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.body {
  background-color: var(--color-black);
  color: var(--color-neutral-200);
  font-family: PP Neue Montreal, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
}

.main-w {
  overflow: clip;
}

.section.u--rel.z--2 {
  z-index: 2;
}

.container {
  z-index: 1;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  max-width: var(--size-container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.container.c-pad-top {
  padding-top: 10em;
}

.container-small {
  width: 100%;
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 57em;
  margin-left: auto;
  margin-right: auto;
}

.container-large {
  width: 100%;
  max-width: 72em;
  margin-left: auto;
  margin-right: auto;
}

.container-large.is-half {
  max-width: 36em;
  height: 100%;
  margin-right: 0;
}

.spacer {
  height: 10em;
}

.sm--show {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}
/* ——————————————————————————————————————————————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— Header & Nav ————————————————————————————————————————————————————————————————————— */
/* ———————————————————————————————————————————————————————————————————————————————————————————————————————————————————*/
.header {
  z-index: 100;
  padding-top: var(--container-padding);
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  width: 100%;
  max-width: 100vw;
  transition: padding 0.4s cubic-bezier(0.625, 0.05, 0, 1);
  position: fixed;
  inset: 0% 0% auto;
}

.nav-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-logo-row {
  justify-content: space-between;
  align-items: center;
  width: 15.25em;
  display: flex;
  gap: 3em;
}

.nav-logo-row .dash-side__logo-icon {
  transition: transform var(--animation-default);
  transform: rotate(0.001deg);
  height: 2.2em; /* make it bigger */
  width: auto; /* = flex: 0 0 auto; prevents shrinking */
}

.nav-logo-row:hover .dash-side__logo-icon {
  transform: rotate(-180deg);
}

/* Touch: logo spin animation (JS-controlled) */
@media (pointer: coarse) {
  @keyframes logo-spin {
    0%,
    100% {
      transform: rotate(0);
    }
    25%,
    50% {
      transform: rotate(-180deg);
    }
  }
  .nav-logo-row:hover .dash-side__logo-icon {
    transform: rotate(0.001deg);
  }
  .dash-side__logo-icon.logo-spinning {
    animation: logo-spin 2s ease forwards !important;
  }
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.nav-menu-eyebrow {
  display: none;
}

.nav-menu__links {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link.nav-link {
  overflow: clip;
}

.nav-link-text {
  font-size: 1em;
  line-height: 1.4;
}

.nav-link-arrow {
  display: none;
}

.nav-menu-divider {
  background-image: linear-gradient(
    90deg,
    #efeeec00,
    #efeeec 25% 75%,
    #efeeec00
  );
  width: 100%;
  height: 1px;
  display: none;
}

.nav-menu-buttons {
  display: none;
}

.nav-button-row {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.menu-button {
  color: #efeeec;
  background-color: #0000;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0.625em;
  display: none;
  position: relative;
}

.menu-button__icon {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.65, 0.05, 0, 1);
  position: relative;
}

.menu-button.close .button-bg {
  background: var(--color-dark);
}

.menu-button.close .menu-button__icon {
  transform: rotate(135deg);
}

.menu-button.close {
  color: var(--color-light);
}

.header-bg {
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  width: 100%;
  height: 200%;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
  position: absolute;
  top: 0%;
  left: 0%;
  transform: scale3d(1, 0, 1);
}

body[data-scrolling-started="true"] .header-bg {
  transform: scale(1);
}

body[data-scrolling-started="true"][data-nav-status="closed"] .header {
  padding: calc(var(--container-padding) / 2) calc(var(--container-padding) / 2)
    0px calc(var(--container-padding) / 2);
}

.header-bg,
.home-hero-bg {
  background-image: linear-gradient(
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

.menu-bg {
  z-index: 0;
  background-color: #0009;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.image.slack-interface {
  object-position: 0% 50%;
}

.bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 1px;
}

.bg.modal-bg {
  background-color: var(--color-dark);
}

.bg-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cover-vid {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Logo responsive sizes */
.nav-logo-row {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: auto;
}

.nav-logo-row .dash-side__logo-wordmark {
  height: 2.25em; /* Desktop and tablet size */
  width: auto;
  transition: all 0.3s ease;
  display: block;
  margin-right: 0.5em;
}

.nav-logo-row .dash-side__logo-icon {
  height: 3em; /* Desktop and tablet size */
  width: auto;
  transition: all 0.3s ease;
  display: block;
}

/* Mobile styles */
@media screen and (max-width: 480px) {
  .nav-logo-row .dash-side__logo-wordmark {
    display: none; /* Hide the wordmark on mobile */
  }

  .nav-logo-row .dash-side__logo-icon {
    height: 4.25em; /* Bigger size for mobile */
    margin-left: 0;
  }
}

/* === Mobile-only char stagger for .nav-link-text === */
@media (hover: none) and (pointer: coarse), (max-width: 991px) {
  .nav-link-text {
    display: inline-block;
    overflow: hidden; /* hide the sliding text-shadow line */
    line-height: 1.3;
    position: relative;
  }

  /* Characters (added by JS, or use existing spans if already split) */
  .nav-link-text span {
    display: inline-block;
    position: relative;
    text-shadow: 0 1.3em currentColor;
    transform: translateY(0) rotate(0.001deg);
    transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
    will-change: transform;
  }

  /* Trigger on tap (JS toggles .is-tapped); :active works as a fallback */
  .nav-link:active .nav-link-text span,
  .nav-link-text.is-tapped span {
    transform: translateY(-1.3em) rotate(0.001deg);
  }
}

/* ===== Phones only (<=767px): Services + 67 inline, arrow on the right ===== */
@media (max-width: 767px) {
  /* Make the Services <a> a tiny flex row so the label + 67 sit together */
  .nav-menu .nav-item.has-submenu > a {
    display: flex;
    align-items: center;
    gap: 0.55em; /* space between “Services” and 67 */
    width: 100%; /* allows arrow to live at the far right */
  }

  /* Inline badge that JS injects */
  .nav-count--inline {
    display: inline-flex;
    align-items: baseline;
    pointer-events: none;
    user-select: none;
  }
  .nav-count--inline .eyebrow {
    font-family: "RM Mono", sans-serif;
    font-size: 0.75em;
    line-height: 1;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.85;
  }

  /* Push the arrow to the far right but DO NOT reposition it absolutely */
  .nav-menu .nav-item.has-submenu > a .nav-link-arrow {
    margin-left: auto;
    position: static !important;
    transform: none !important;
  }

  /* Hide the original block count in the Services row on phones (prevents dup) */
  .nav-item.has-submenu .nav-count.updates-count {
    display: none !important;
  }
}

/* ===== DESKTOP / TABLET (>=768px): Services + 67 inline,lifted ===== */
@media (min-width: 768px) {
  /* Make the Services row lay out horizontally */
  .nav-menu .nav-item.has-submenu {
    display: inline-flex !important;
    align-items: baseline;
    gap: 0.22rem; /* distance between “Services” and 67 */
    white-space: nowrap;
  }

  /* Keep the link itself inline/baseline inside that row */
  .nav-menu .nav-item.has-submenu > a {
    display: inline-flex !important;
    align-items: baseline;
  }

  .nav-menu .nav-item.has-submenu > .nav-count .eyebrow {
    font-family: "RM Mono", sans-serif !important;
    font-size: 0.75em !important;
    line-height: 1;
    color: #131313 !important;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1 !important;
  }

  /* Never show the phone-injected badge on desktop */
  .nav-menu .nav-item.has-submenu > a .nav-count--inline {
    display: none !important;
  }
}

/* Hide the stacked "Services" counter on tablet + desktop */
@media (min-width: 768px) {
  .nav-submenu p.eyebrow[data-count-display="services"],
  .nav-count p.eyebrow[data-count-display="services"],
  p.eyebrow[data-count-display="services"] {
    display: none !important;
  }
}

/* Keep the source hidden on phones too (prevent duplicate inline + source) */
@media (max-width: 767.98px) {
  p.eyebrow[data-count-display="services"] {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .nav-menu .nav-item.has-submenu {
    gap: 0.1rem;
  } /* was .22rem */
  /* or, to butt up tight: gap: 0; */
}

/* Hide GM icon on tablet portrait-ish widths where it collides with the nav.
   Keeps iPad Pro (1024px+) unchanged and doesn't affect phones. */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .nav-logo-row .dash-side__logo-icon {
    display: none !important;
  }
}

/* Small tablet portrait (480-767px): show only small GM icon, keep login and Elevate Brand */
@media screen and (min-width: 480px) and (max-width: 767px) {
  /* Hide the wordmark, keep the small GM icon */
  .nav-logo-row .dash-side__logo-wordmark {
    display: none !important;
  }

  /* Prevent button/link text from wrapping */
  .nav-button-row .button.small,
  .nav-button-row .login-wrap .link {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .nav-count--inline {
    transform: translate(-2px, -8px); /* X: -1px (left), Y: -8px (raise) */
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— MODAL ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.modal-wrap {
  z-index: 101;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-bg.bg {
  background-color: var(--color-dark);
  opacity: 0.5;
  cursor: pointer;
}

.modal-bg.bg.dark {
  background-color: var(--color-neutral-900);
  opacity: 0.75;
}

.modal__content {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: column;
  padding: 2em 1.5em 1.5em;
  display: flex;
}

.modal {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2em 1em;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.modal__p {
  opacity: 0.7;
  margin-bottom: 0.5em;
  font-size: 0.9375em;
  line-height: 1.5;
}

.modal__card {
  pointer-events: auto;
  background-color: var(--color-ignore-light);
  color: var(--color-ignore-dark);
  border-radius: 0.5em;
  width: 100%;
  max-width: 52em;
  max-height: 100%;
  display: none;
  position: relative;
}

.modal__card.is--small {
  max-width: 25em;
}

.modal__dark {
  opacity: 0.5;
  pointer-events: auto;
  cursor: pointer;
  background-color: var(--color-ignore-neutral-900);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal__h2 {
  margin-top: 0;
  margin-bottom: 0.1em;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.175;
}

.modal__h2.is--small {
  font-size: 1.5em;
}

.modal__scroll {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: scroll;
}

.modal__btn-close-bar {
  background-color: currentColor;
  width: 0.125em;
  height: 40%;
  position: absolute;
  transform: rotate(45deg);
}

.modal__btn-close-bar.is--second {
  transform: rotate(-45deg);
}

.modal__btn-close {
  cursor: pointer;
  background-color: #efeeec;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  display: flex;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}

.modal__discount {
  color: var(--color-ignore-neutral-500);
  border-style: dashed;
  border-width: 1px;
  border-top-color: rgba(var(--color-ignore-rgb-dark), 0.2);
  border-right-color: rgba(var(--color-ignore-rgb-dark), 0.2);
  border-bottom-color: rgba(var(--color-ignore-rgb-dark), 0.2);
  border-left-color: rgba(var(--color-ignore-rgb-dark), 0.2);
  background-color: var(--color-ignore-neutral-300);
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  padding: 1em 0.75em 0.95em;
  display: flex;
}

.modal__discount-p {
  letter-spacing: 0.05em;
  font-family: RM Mono, sans-serif;
  font-weight: 400;
  .motionpath-content-item__desc {
    font-size: 0.85rem;
    line-height: 1.25;
    letter-spacing: 0.015em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.35rem;
    font-weight: 400;
    max-width: 18ch; /* keep it compact under title */
  }

  @media (max-width: 767px) {
    .motionpath-content-item__desc {
      font-size: 0.78rem;
      max-width: 22ch;
    }
  }
  line-height: 0.9;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— SIDEBAR ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.sidebar {
  padding-right: var(--container-padding);
  padding-bottom: 1.25em;
  padding-left: var(--container-padding);
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--color-neutral-100);
  color: var(--color-dark);
  top: calc(var(--container-padding) / 2);
  bottom: calc(var(--container-padding) / 2);
  right: calc(var(--container-padding) / 2);
  padding-top: calc(var(--container-padding) * 3.5);
  border-radius: 0.5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 36.25em;
  display: block;
  position: absolute;
  left: auto;
  overflow: auto;
}

.indent {
  margin-left: 1.5em;
}

.sidebar-title {
  padding-right: var(--container-padding);
  width: 100%;
}

.sidebar-button {
  z-index: 2;
  top: var(--container-padding);
  right: var(--container-padding);
  position: absolute;
}

.sidebar-content {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
  display: flex;
}

.sidebar-content.no-gap {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
}

.rotate-wrap {
  perspective: 1000px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 50vh;
  display: flex;
  position: relative;
}

.rotate-content {
  transform-style: preserve-3d;
  flex: 1;
  grid-template-columns: 100%;
  grid-template-areas: "card";
  justify-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
}

.rotate-card {
  aspect-ratio: 1 / 1.33;
  border: 1px solid #efeeec14;
  border-radius: 0.5em;
  grid-area: card;
  width: 10em;
  position: relative;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— FAQ ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.faq-list {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.faq-link {
  border-top: 1px solid var(--color-neutral-600);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  font-size: 1.125em;
  display: flex;
}

.faq-link-icon {
  opacity: 0.5;
  width: 0.875em;
  transition: opacity 0.2s, transform 0.65s cubic-bezier(0.65, 0.05, 0, 1);
}

@media (hover: hover) and (pointer: fine) {
  .faq-link:hover p {
    transform: translate(1em, 0px);
  }

  .faq-link:hover .faq-link-icon {
    opacity: 1;
  }
}

.faq-content {
  color: var(--color-neutral-500);
  width: 100%;
  height: 0;
  line-height: 1.4;
  overflow: hidden;
}

.faq-content__top-space {
  height: 0.625em;
}

.faq-content__bottom-space {
  height: 1.5em;
}

.faq-left-col {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding-top: 6em;
  display: flex;
  position: relative;
}

.faq-left-sticky {
  position: sticky;
  top: 10em;
}

.faq-row {
  padding-top: 6em;
}

.faq-link p {
  transition: transform 0.6s var(--cubic-default);
}

.faq-item[data-state="open"] .faq-link-icon {
  transform: rotate(-225deg);
  opacity: 1;
}

.faq-item[data-state="open"] .faq-link p {
  transform: translate(0em, 0px) !important;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— VIDEO & VIMEO ——————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.video-player {
  z-index: 2;
  aspect-ratio: 1.6;
  border-radius: 0.4em;
  width: 57em;
  position: relative;
}

.vimeo-wrap {
  border: 1px solid var(--card--border-color);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.single-vimeo-player {
  background-color: var(--color-neutral-900);
  isolation: isolate;
  transform-style: preserve-3d;
  border-radius: 0.25em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.single-vimeo-player.no-radius {
  border-radius: 0;
}

/* Video modal player - native video element */
.single-vimeo-player .w-embed,
.single-vimeo-player .w-embed.w-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.single-vimeo-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.vimeo-overlay-dark {
  z-index: 2;
  background-color: var(--color-neutral-900);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  position: absolute;
  inset: 0%;
}

.overlay {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.overlay.vimeo-overlay-play {
  z-index: 3;
  opacity: 0;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.48, 0, 0.1, 1);
}

.icon {
  justify-content: center;
  align-items: center;
  padding: 1.2em;
}

.video-wrap {
  z-index: 101;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  display: none;
  position: fixed;
  inset: 0%;
}

.video-player__wrap {
  padding: 1em;
  position: relative;
}

.vimeo-player__btn {
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  background-color: #6464644d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 6em;
  display: flex;
  position: relative;
}

.vimeo-player__duration-span {
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  display: block;
}

.vimeo-player__play {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.vimeo-player__fullscreen {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  position: relative;
}

.vimeo-player__iframe {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.vimeo-player__btn-play-svg {
  width: 40%;
}

.vimeo-player {
  pointer-events: auto;
  color: var(--color-ignore-light);
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  position: relative;
  overflow: hidden;
}

.vimeo-player.is--modal {
  margin-top: 0.25em;
  display: flex;
}

.vimeo-player__timeline {
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  display: flex;
  position: relative;
}

.vimeo-player__loading {
  pointer-events: none;
  color: var(--color-primary);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.vimeo-player__fullscreen-scale-svg {
  width: 100%;
  position: absolute;
}

.vimeo-player__loading-svg {
  width: 7em;
}

.vimeo-player__duration {
  flex-shrink: 0;
  width: 2.25em;
}

.vimeo-player__timeline-input {
  pointer-events: auto;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0000;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.vimeo-player__mute {
  cursor: pointer;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  position: relative;
}

.vimeo-player__interface-bottom {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.vimeo-player__volume-up-svg {
  width: 100%;
  position: absolute;
}

.vimeo-player__dark {
  opacity: 0.5;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
}

.vimeo-player__btn-pause-svg {
  width: 50%;
}

.vimeo-placeholder {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.vimeo-player__placeholder {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.vimeo-player__pause {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.vimeo-player__before {
  padding-top: 62.5%;
}

.vimeo-player__volume-mute-svg {
  width: 100%;
  position: absolute;
}

.vimeo-player__interface {
  pointer-events: none;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: min(2em, 4vw);
  display: flex;
  position: absolute;
}

.vimeo-player__fullscreen-shrink-svg {
  width: 100%;
  position: absolute;
}

.vimeo-player__timeline-progress {
  vertical-align: top;
  -webkit-appearance: none;
  appearance: none;
  height: var(--progress-height);
  border-radius: var(--timeline-rounded-corners);
  color: var(--progress-fill-bg);
  background-color: #0000;
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  overflow: hidden;
}

.single-vimeo-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.single-vimeo-player[data-vimeo-player-target] {
  cursor: pointer;
}

/* Overlay Dark */
.single-vimeo-player[data-vimeo-status-activated="true"] .vimeo-overlay-dark {
  opacity: 0.2;
}

.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-loaded="true"]
  .vimeo-overlay-dark,
.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-loaded="true"]
  .vimeo-placeholder {
  opacity: 0;
}

@media (hover: hover) {
  .single-vimeo-player
    [data-vimeo-status-hover="true"]:hover
    .vimeo-overlay-dark {
    opacity: 0.3 !important;
  }
}

/* Interface */
.single-vimeo-player .vimeo-overlay-interface {
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--container-padding) / 1.5);
  gap: 1rem;
}

.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-play="false"]
  .vimeo-overlay-interface,
.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-hover="true"]:hover
  .vimeo-overlay-interface {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-play="true"]
    .vimeo-overlay-interface {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-play="true"]
    .vimeo-overlay-interface
    * {
    pointer-events: none !important;
  }
}

.single-vimeo-player .vimeo-overlay-interface * {
  pointer-events: all;
}

.single-vimeo-player .vimeo-mute {
  height: 1.5em;
  width: 1.5em;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.single-vimeo-player .vimeo-mute svg {
  width: 100%;
  display: block;
}

.single-vimeo-player .vimeo-mute svg path {
  fill: white;
}

.single-vimeo-player .vimeo-mute svg:nth-child(2) {
  display: none;
}

.single-vimeo-player[data-vimeo-status-muted="true"]
  .vimeo-mute
  svg:nth-child(1) {
  display: none;
}

.single-vimeo-player[data-vimeo-status-muted="true"]
  .vimeo-mute
  svg:nth-child(2) {
  display: block;
}

.single-vimeo-player .vimeo-duration {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.single-vimeo-player .vimeo-duration span {
  color: var(--color-neutral-300);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: RM Mono, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
}

/* Timeline */
.single-vimeo-player .vimeo-timeline {
  height: 1.5em;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -0.35em;
  --timeline-rounded-corners: 0px;
  --progress-value: var(--color-neutral-300);
  --progress-background: rgba(100, 100, 100, 0.2);
  --progress-height: 2px;
  --dot-height: 0.75em;
  --dot-color: var(--color-primary);
}

.single-vimeo-player .vimeo-timeline > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  display: block;
  background: transparent;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.single-vimeo-player .vimeo-timeline > progress {
  width: 100%;
  position: absolute;
  left: 0;
  height: var(--progress-height);
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px;
  overflow: hidden;
  z-index: 0;
  background: transparent;
  border: none;
  color: var(--progress-value);
  cursor: pointer;
}

/* Progress */
.single-vimeo-player progress::-webkit-progress-bar {
  border-radius: var(--timeline-rounded-corners);
  background-color: var(--progress-background);
  box-shadow: 0;
}

.single-vimeo-player progress::-webkit-progress-value {
  background: var(--progress-value);
}

.single-vimeo-player progress::-moz-progress-bar {
  border-radius: var(--timeline-rounded-corners);
  background: var(--progress-value);
  box-shadow: 0;
}

.single-vimeo-player progress::-ms-fill {
  border-radius: var(--timeline-rounded-corners);
}

/* Range */
.single-vimeo-player [type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.single-vimeo-player [type="range"]:focus {
  outline: none;
}

.single-vimeo-player [type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.single-vimeo-player [type="range"].time::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--progress-height);
  cursor: pointer;
  background: var(--progress-background);
  border-radius: var(--timeline-rounded-corners);
}

.single-vimeo-player [type="range"]::-webkit-slider-thumb {
  box-shadow: 0;
  height: var(--dot-height);
  width: var(--dot-height);
  border-radius: var(--timeline-rounded-corners);
  background: var(--dot-color);
  cursor: pointer;
  -webkit-appearance: none;
}

.single-vimeo-player [type="range"]:focus::-webkit-slider-runnable-track {
  background: transparent;
}

.single-vimeo-player [type="range"]::-moz-range-track {
  width: 100%;
  height: var(--progress-height);
  cursor: pointer;
  background: var(--progress-background);
  border-radius: 0;
  border: 0;
  border-radius: var(--timeline-rounded-corners);
  overflow: hidden;
}

.single-vimeo-player [type="range"]::-moz-range-thumb {
  box-shadow: 0;
  border: 0;
  height: var(--dot-height);
  width: var(--dot-height);
  border-radius: var(--timeline-rounded-corners);
  background: var(--dot-color);
  cursor: pointer;
  box-shadow: 0;
}

/* Icon (Play + Pause) */
.single-vimeo-player .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  transform: scale(1) rotate(0.001deg);
  transition: opacity 0.3s ease-in-out;
  background: rgba(30, 30, 30, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 50%;
}

.single-vimeo-player .icon svg {
  width: 60%;
}

/* Play */
.single-vimeo-player .vimeo-overlay-play {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
}

.single-vimeo-player[data-vimeo-status-play="true"] .vimeo-overlay-play {
  opacity: 0;
}

.single-vimeo-player .vimeo-overlay-play .icon svg path {
  fill: var(--color-dark);
}

/* Pause */
.single-vimeo-player .vimeo-overlay-pause {
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.single-vimeo-player[data-vimeo-status-play="true"] .vimeo-overlay-pause {
  display: flex;
}

.single-vimeo-player .vimeo-overlay-pause .icon {
  opacity: 0;
}

.single-vimeo-player .vimeo-overlay-pause .icon svg path {
  stroke: var(--color-dark);
}

.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-play="false"]
  .vimeo-overlay-pause
  .icon,
.single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-hover="true"]:hover
  .vimeo-overlay-pause
  .icon {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .single-vimeo-player[data-vimeo-status-activated="true"][data-vimeo-status-play="true"]
    .vimeo-overlay-pause
    .icon {
    opacity: 0 !important;
  }
}

/*  Loading */
.single-vimeo-player .vimeo-overlay-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  transition: all 0.3s ease-in-out 0.5s;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(var(--color-dark-rgb), 0.5);
}

.single-vimeo-player[data-vimeo-status-play="true"] .vimeo-overlay-loading {
  opacity: 1;
}

.single-vimeo-player[data-vimeo-status-play="true"][data-vimeo-status-loaded="true"]
  .vimeo-overlay-loading {
  opacity: 0;
}

.single-vimeo-player .vimeo-overlay-loading svg {
  width: 8em;
}

.single-vimeo-player .vimeo-overlay-loading svg path {
  fill: var(--color-white);
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— FORM ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.form-group {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 25em;
  margin-bottom: 0;
  display: flex;
}

.form {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-field-group {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.form-field {
  width: 100%;
  position: relative;
}

.form-label {
  color: #efeeec;
  width: 100%;
  margin-bottom: 0;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1;
}

.form-required {
  color: #ff4c24;
}

.form-input {
  outline-offset: 0px;
  color: #efeeec;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  vertical-align: middle;
  background-color: #131313;
  border: 1px solid #2c2c2c;
  border-radius: 0.328125em;
  outline: 0 #0000;
  height: auto;
  margin-bottom: 0;
  padding: 0.9em 3.5em 0.9em 1em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: 0 0 #0000;
}

.form-input.is--textarea {
  resize: vertical;
  min-height: 9em;
}

.form-input:focus {
  border-color: #efeeec;
}

.form-input::placeholder {
  color: #818180;
  /* no background — a fill here paints a dark box behind the placeholder text */
}

.form-field-icon {
  opacity: 0;
  pointer-events: none;
  color: #cbc8c5;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 0.375em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  max-height: 3.5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
}

.form-field-icon.is--error {
  color: #ff4c24;
}

.form-field-icon.is--select {
  right: 1.75em;
}

.radio-dot {
  color: inherit;
  background-color: currentColor;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
}

.radiocheck-field-icon {
  opacity: 0;
  pointer-events: none;
  color: #cbc8c5;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 0.375em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  max-height: 3.5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: absolute;
  top: 1px;
  right: 1px;
}

.radiocheck-field-icon.is--error {
  color: #ff4c24;
}

.radiocheck-label {
  color: #efeeec;
  cursor: pointer;
  flex-grow: 1;
  margin-bottom: 0;
  padding-left: 1.8em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.2;
}

.radiocheck-label.is--small {
  flex-grow: 1;
  padding-left: 2em;
  font-size: 1em;
}

.radiocheck-group {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.checkbox-input {
  cursor: pointer;
  width: 0;
  height: 0;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
}

.form-field-chevron {
  pointer-events: none;
  color: #131313;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 0.375em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  max-height: 3.5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
}

.form-inactive-text {
  opacity: 0.35;
  margin-left: auto;
  padding-left: 0.5em;
}

.radiocheck-field {
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.radio-input {
  cursor: pointer;
  width: 0;
  height: 0;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
}

.radiocheck-custom {
  pointer-events: none;
  color: #131313;
  -webkit-user-select: none;
  user-select: none;
  background-color: #131313;
  border: 1px solid #2c2c2c;
  border-radius: 0.125em;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 1.25em;
  height: 1.25em;
  margin-top: 0.066em;
  margin-right: 0.75em;
  display: flex;
  position: absolute;
}

.radiocheck-check-svg {
  width: 1.5em;
  position: absolute;
}

.radiocheck-custom.is--radio {
  border-radius: 50%;
}

.form-submit {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  inset: 0;
}

.form-submit-btn {
  outline-offset: 0px;
  color: #efeeec;
  cursor: pointer;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 0.375rem;
  outline: 0 #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1.005em 1.125em;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 #0000;
}

.form-submit-btn:focus {
  outline-offset: 0px;
  border-width: 1px;
  border-color: #cbc8c5;
  outline-color: #131313;
}

.form-submit-btn-p {
  margin-bottom: 0;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.2;
}

.form-divider {
  opacity: 0.15;
  background-color: #131313;
  width: 100%;
  height: 1px;
}

.form-notifcation {
  outline-offset: 0px;
  color: #0ba954;
  text-align: left;
  border: 1px solid #0ba954;
  border-color: inherit;
  background-color: #efeeec;
  border-radius: 0.375rem;
  outline: 0 #0000;
  width: 100%;
  padding: 1.125em;
  font-size: 1em;
  position: relative;
}

.form-notifcation.is--error {
  color: #ff4c24;
  margin-top: 0;
  padding-right: 3.5em;
}

.form-notification-icon {
  pointer-events: none;
  color: inherit;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.form-notification-bg {
  opacity: 0.1;
  pointer-events: none;
  color: inherit;
  background-color: currentColor;
  border-radius: calc(0.375rem - 2px);
  display: flex;
  position: absolute;
  inset: 0;
}

.form-notification-p {
  color: inherit;
  font-size: 1.125em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .form-group {
    width: 100%;
  }
}

/* Field: Error */
[data-validate].is--error input,
[data-validate].is--error textarea,
[data-validate].is--error select {
  border-color: #ff4c24;
}

[data-validate].is--error .form-field-icon.is--error,
[data-validate].is--error .radiocheck-field-icon.is--error {
  opacity: 1;
}

/* Field: Success */
[data-validate].is--success .form-field-icon.is--success,
[data-validate].is--success .radiocheck-field-icon.is--success {
  opacity: 1;
}

/* Field: Custom Radio or Checkbox */
[data-form-validate]
  .radiocheck-field
  input:focus-visible
  ~ .radiocheck-custom {
  background-color: #2c2c2c;
  color: #efeeec;
}

[data-form-validate]
  .radiocheck-field
  input:focus-visible:checked
  ~ .radiocheck-custom,
[data-form-validate] .radiocheck-field input:checked ~ .radiocheck-custom {
  background-color: #efeeec;
  color: #131313;
}

[data-form-validate] .radiocheck-field .radiocheck-label.is--small {
  margin-top: 0.125em;
}

[data-validate].is--error .radiocheck-custom {
  border-color: #ff4c24;
}

[data-validate].is--error input:checked ~ .radiocheck-custom {
  border-color: #efeeec;
}

/* Field: Select */
[data-form-validate] select:has(option[value=""]:checked) {
  color: #818180;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— DASHBOARD ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.dash-side__logo-icon {
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  position: relative;
}

.dash-side__logo-wordmark {
  width: 4.4em;
  position: relative;
}

.dash-side {
  z-index: 2;
  width: var(--dash-side-width);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.dash-side__inner {
  background-color: var(--color-neutral-200);
  border-radius: 0.5em;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
  position: relative;
}

.dash-side__collapse-btn {
  background-color: var(--color-neutral-200);
  cursor: pointer;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 2em;
  padding-right: 0.15em;
  display: flex;
  position: relative;
}

.dash-side__collapse-svg {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.35em;
}

.dash-side__collapse {
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  overflow: hidden;
}

.dash-side__collapse-inner {
  height: var(--dash-top-height);
  align-items: center;
  display: flex;
}

.dash-side__top {
  padding-bottom: 0.75em;
}

.dash-side__bottom {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  position: relative;
}

.dash-side__row-logo {
  height: calc(var(--dash-top-height) - 1em);
  align-items: center;
  padding-left: 1em;
  padding-right: 0;
  display: flex;
}

.dash-side__logo {
  color: var(--color-dark);
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 1.75em);
  padding-left: 0.75em;
  display: flex;
  position: relative;
}

.dash-side__logo-wordmark-wrap {
  flex-shrink: 0;
  width: calc(100% - 1.5em);
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.dash-side__logo-icon-wrap {
  pointer-events: none;
  width: calc(var(--dash-side-width-collapsed) - 0.5em);
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  position: absolute;
  right: -1.75em;
}

.dash-side__row-cat {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1em;
  padding-right: 1em;
  list-style: none;
  display: flex;
}

.dash-side__cat {
  flex-flow: column;
  display: flex;
  position: relative;
}

.dash-type-btn {
  color: var(--color-dark);
  cursor: pointer;
  background-color: rgba(var(--color-rgb-dark), 0);
  border-radius: 0.25em;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.dash-icon {
  color: var(--color-neutral-500);
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.dash-icon.is--logout {
  color: var(--color-primary);
}

.dash-type-btn__title {
  white-space: nowrap;
}

.dash-type-btn__start {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-type-btn__inner {
  width: calc(var(--dash-side-width-ignore) - 2.5em);
  justify-content: space-between;
  align-items: center;
  padding: calc(0.7em - 1px) 0.75em;
  display: flex;
  position: relative;
}

.dash-type-btn__inner.is--soon {
  cursor: not-allowed;
}

.dash-cat-tooltip {
  background-color: var(--color-neutral-700);
  pointer-events: none;
  color: var(--color-neutral-300);
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25em;
  margin-left: 0.5em;
  padding: 0.35em 0.5em;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0.5em, -50%) rotate(0.001deg);
}

.dash-cat-tooltip__span {
  white-space: nowrap;
  font-size: 0.9375em;
}

.display-none {
  display: none;
}

.display-none.is--absolute {
  position: absolute;
  top: -200vw;
  left: -200vw;
}

.dash-type-btn__end {
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: relative;
}

.dash-command {
  grid-column-gap: 0.125em;
  grid-row-gap: 0.125em;
  color: var(--color-neutral-500);
  cursor: pointer;
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  transition: background-color 0.2s;
  display: flex;
}

.dash-command:hover {
  background-color: var(--card--background-color-active);
}

.dash-command.is--300 {
  background-color: var(--color-neutral-300);
}

.dash-command.is--download.is--home-features {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.dash-command.is--db {
  background-color: var(--card--background-color-active);
}

.dash-command.is--home-features {
  padding-left: 0.25em;
  padding-right: 0.25em;
  transition: background-color 0.2s;
}

.dash-command.is--home-features:hover {
  background-color: var(--color-neutral-100);
}

.dash-command__shift-svg {
  width: 0.8em;
  margin-left: -0.125em;
  margin-right: -0.0625em;
}

.dash-command__text {
  font-size: 0.85em;
}

.dash-cat-soon {
  background-color: rgba(var(--color-rgb-dark), 0.04);
  border-radius: 3em;
  justify-content: flex-start;
  align-items: center;
  height: 1.375em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: flex;
}

.dash-cat-soon__text {
  color: var(--color-neutral-500);
  font-size: 0.75em;
}

.dash-cat-dropdown__top {
  z-index: 1;
  position: relative;
}

.empty {
  display: none;
}

.dash-cat-dropdown__collection {
  width: calc(var(--dash-side-width-ignore) - 2.75em);
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  padding-left: 0.4em;
  padding-right: 0.5em;
  position: relative;
}

.dash-cat-dropdown__list {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  padding-bottom: 0.75em;
  display: flex;
}

.dash-cat-btn {
  grid-column-gap: 0.7em;
  grid-row-gap: 0.7em;
  opacity: 0.4;
  color: var(--color-dark);
  border-radius: 0.25em;
  padding: 0.4em 0.25em 0.4em 0.35em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.dash-cat-btn__text {
  white-space: nowrap;
  font-size: 0.9375em;
}

.dash-cat-btn__count {
  justify-content: center;
  align-items: center;
  width: 1.5em;
  display: flex;
}

.dash-cat-btn__count-text {
  text-align: center;
  font-size: 0.8125em;
}

.dash-cat-dropdown__bottom {
  overflow: hidden;
}

.dash-cat-dropdown__border-bottom {
  background-color: var(--color-neutral-200);
  justify-content: center;
  width: 100%;
  height: 0.75em;
  display: flex;
  position: absolute;
  bottom: 0;
}

.dash-global {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.dash-cat-dropdown__bottom-inner {
  flex-flow: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-cat-dropdown__border-bottom-line {
  background-color: rgba(var(--color-rgb-dark), 0.12);
  width: calc(100% - 1.25em);
  height: 1px;
  position: absolute;
  top: 0;
}

.dash-user-btn__inner {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  width: calc(var(--dash-side-width-ignore) - 2.5em);
  justify-content: space-between;
  align-items: center;
  padding: calc(0.7em - 1px) 1em calc(0.7em - 1px) 0.65em;
  display: flex;
  position: relative;
}

.dash-user-btn {
  color: var(--color-dark);
  cursor: pointer;
  background-color: rgba(var(--color-rgb-dark), 0);
  border-radius: 0.25em;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.dash-user-btn__start {
  grid-column-gap: 0.65em;
  grid-row-gap: 0.65em;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-user-btn__end {
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: relative;
}

.dash-user-btn__dots {
  color: var(--color-neutral-500);
  width: 0.1875em;
}

.dash-user-btn__name {
  grid-column-gap: 0.25em;
  grid-row-gap: 0.25em;
  white-space: nowrap;
  flex-grow: 1;
  display: flex;
}

.dash-user-btn__pic {
  background-color: var(--color-neutral-300);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.7em;
  height: 1.7em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-side__row-user {
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

.dash-user-btn__pic-p {
  color: var(--color-neutral-500);
}

.dash-user-btn__name-gradient {
  background-image: linear-gradient(270deg, var(--color-light), transparent);
  width: 1em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.dash-user-btn__pic-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dash-side-settings {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: column;
  padding-bottom: 0.25em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 0;
}

.dash-side-settings__list {
  background-color: var(--color-neutral-200);
  border-style: solid;
  border-width: 1px;
  border-top-color: rgba(var(--color-rgb-dark), 0.1);
  border-right-color: rgba(var(--color-rgb-dark), 0.1);
  border-bottom-color: rgba(var(--color-rgb-dark), 0.1);
  border-left-color: rgba(var(--color-rgb-dark), 0.1);
  border-radius: 0.5em;
  flex-flow: column;
  margin-bottom: 0;
  padding: 0.5em;
  display: flex;
  box-shadow: 0 0.25em 0.5em #0000000a;
}

.dash-side-settings__item {
  flex-flow: column;
  display: flex;
  position: relative;
}

.dash-settings-btn {
  color: var(--color-dark);
  cursor: pointer;
  background-color: rgba(var(--color-rgb-dark), 0);
  border-radius: 0.25em;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.dash-settings-btn.is--logout {
  color: var(--color-primary);
}

.dash-settings-btn__inner {
  width: calc(var(--dash-side-width-ignore) - 4.25em);
  justify-content: space-between;
  align-items: center;
  padding: calc(0.5em - 1px) 0.75em;
  display: flex;
  position: relative;
}

.dash-settings-btn__start {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-settings-btn__start.is--gsap {
  overflow: visible;
}

.dash-settings-btn__end {
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: relative;
}

.dash-settings-btn__title {
  white-space: nowrap;
}

.dash-toggle {
  background-color: rgba(var(--color-rgb-dark), 0.1);
  border-radius: 2em;
  flex-shrink: 0;
  width: 2em;
  height: 1.25em;
}

.dash-toggle__dot {
  background-color: var(--color-light);
  border-radius: 50%;
  width: 1em;
  height: 1em;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.dash-side-settings__divider {
  background-color: rgba(var(--color-rgb-dark), 0.1);
  width: calc(100% - 1em);
  height: 1px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 0.5em;
  position: relative;
}

.dash-main-top__title {
  font-size: 1.5em;
  display: flex;
}

.dash-main-top__parent {
  opacity: 0.33;
  color: var(--color-dark);
  white-space: nowrap;
  padding-right: 0.25em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.dash-main-top__h1 {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
}

.dash-main-top__slash {
  opacity: 0.33;
  white-space: nowrap;
  padding-right: 0.25em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
}

.dash-main-top__count {
  flex-shrink: 0;
}

.dash-main-top__count-box {
  border-style: solid;
  border-width: 1px;
  border-top-color: rgba(var(--color-rgb-dark), 0.15);
  border-right-color: rgba(var(--color-rgb-dark), 0.15);
  border-bottom-color: rgba(var(--color-rgb-dark), 0.15);
  border-left-color: rgba(var(--color-rgb-dark), 0.15);
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  min-width: 1.75em;
  height: 1.75em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  display: flex;
}

.dash-main-top__count-number {
  opacity: 0.4;
  font-size: 1em;
}

.dash-res-card {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  background-color: var(--color-light);
  border-radius: 0.5em;
  flex-flow: column;
  width: 100%;
  padding: 0.5em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.dash-res-card__visual {
  background-color: var(--color-neutral-300);
  border-radius: 0.25em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dash-res-card__visual-before {
  padding-top: 62.5%;
}

.dash-res-card__info {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.dash-res-card__info-start {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
  display: flex;
}

.dash-res-card__info-end {
  justify-content: center;
  align-items: center;
  padding-right: 0.5em;
  display: flex;
}

.dash-res-card__title-h2 {
  color: var(--color-dark);
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.25;
}

.dash-sitemap {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.search-dummy {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  cursor: pointer;
  background-color: rgba(var(--color-rgb-dark), 0.06);
  border-radius: 0.25em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 12.5em;
  padding: 0.75em;
  display: flex;
}

.search-dummy__text {
  color: var(--color-neutral-500);
  -webkit-user-select: none;
  user-select: none;
}

.search-dummy__start {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  align-items: center;
  display: flex;
}

.search-dummy__end {
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: relative;
}

.dash-command__command-svg {
  width: 0.6em;
  margin-left: 0;
  margin-right: -0.0625em;
}

.dash-search {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.dash-search__bg {
  background-color: var(--color-neutral-500);
  opacity: 0.5;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dash-search__modal {
  flex-flow: column;
  width: 35em;
  display: flex;
  position: relative;
}

.dash-search-field__input {
  background-color: var(--color-light);
  color: var(--color-neutral-800);
  border: 0;
  outline: 0;
  width: 100%;
  height: 3.5em;
  font-size: 1em;
  box-shadow: 0 0;
}

.dash-search__results {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  flex-flow: column;
  align-items: flex-start;
  padding: 0.5em 0.5em 0.75em 0.75em;
  display: flex;
}

.dash-search__field {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3.5em;
  padding-left: 0.75em;
  padding-right: 0.75em;
  display: flex;
}

.dash-search__list-group {
  background-color: var(--color-light);
  pointer-events: auto;
  border-radius: 0.25em;
  flex-flow: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1em 2em #0003;
}

.dash-search__results-list-resources {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.dash-search__results-list-icons {
  flex-flow: column;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.dash-search__not-found {
  color: var(--color-neutral-500);
  padding: 0.35em 1.25em 1.35em;
  display: none;
}

.dash-search__results-title {
  color: var(--color-neutral-500);
  text-transform: uppercase;
  margin-left: 0.4em;
  font-family: RM Mono, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
}

.dash-search__line {
  height: 0;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.dash-search__line-inner {
  background-color: rgba(var(--color-rgb-dark), 0.1);
  width: 100%;
  height: 1px;
}

.dash-search__field-start {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  flex-grow: 1;
  align-items: center;
  display: flex;
}

.dash-search__field-end {
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.dash-search__scroll {
  flex-flow: column;
  margin-right: 0.75em;
  padding-top: 1em;
  display: flex;
  overflow: scroll;
}

.dash-search__not-found-p {
  font-size: 0.9375em;
}

.dash-icon-card {
  background-color: var(--color-light);
  transform-style: preserve-3d;
  border-radius: 0.5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-icon-card.is--home-features {
  border: 1px solid var(--color-neutral-600);
  background-color: var(--color-neutral-800);
  color: var(--color-light);
}

.dash-icon-card__before {
  padding-top: 100%;
}

.dash-icon-card__svg {
  color: var(--color-neutral-500);
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  margin-bottom: 0.5em;
  display: flex;
  position: absolute;
}

.dash-icon-card__info {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dash-icon-card__h2 {
  color: var(--color-dark);
  text-align: center;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1;
}

.dash-icon-card__btns {
  grid-column-gap: 0.375em;
  grid-row-gap: 0.375em;
  pointer-events: none;
  justify-content: center;
  width: 100%;
  padding: 1em;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dash-res-card__visual-img {
  object-fit: cover;
  border-radius: 0.25em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dash-res-card__visual-top,
.data-icon-card__top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75em;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.dash-notifcations {
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding: 2em;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dash-loading {
  z-index: 999;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.dash-loading-icon {
  background-color: rgba(var(--color-rgb-dark), 0.25);
  -webkit-backdrop-filter: blur(2em);
  backdrop-filter: blur(2em);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  position: absolute;
}

.dash-loading-icon__inner {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: var(--color-light);
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: var(--color-light);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--color-light);
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: var(--color-light);
  -webkit-clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%);
  clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%);
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
}

.dash-res-card__link {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dash-btn-info {
  grid-column-gap: 0.375em;
  grid-row-gap: 0.375em;
  background-color: var(--color-dark);
  color: var(--color-light);
  cursor: pointer;
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  height: 3.125em;
  text-decoration: none;
  display: flex;
}

.dash-btn-info.is--gsap-modal,
.dash-btn-info.is--slack-modal {
  background-color: var(--color-ignore-dark);
  color: var(--color-ignore-light);
}

.dash-btn-info__p {
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding-right: 0.5em;
  font-size: 0.9375em;
  text-decoration: none;
  position: relative;
}

.dash-main-top__info {
  height: var(--dash-top-height);
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  align-items: center;
  width: 100%;
  display: flex;
}

.dash-main-top__search {
  height: var(--dash-top-height);
  align-items: center;
  width: 100%;
  display: flex;
}

.dash-code {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  background-color: var(--color-light);
  border-style: solid;
  border-width: 1px;
  border-top-color: rgba(var(--color-rgb-dark), 0.12);
  border-right-color: rgba(var(--color-rgb-dark), 0.12);
  border-bottom-color: rgba(var(--color-rgb-dark), 0.12);
  border-left-color: rgba(var(--color-rgb-dark), 0.12);
  border-radius: 0.5em;
  flex-flow: column;
  padding: 0.5em;
  display: flex;
}

.dash-code.is--dark {
  border-color: var(--card--background-color-active);
  background-color: var(--color-neutral-800);
  margin-top: -1em;
}

.dash-code__top {
  justify-content: space-between;
  height: 1.5em;
  padding-left: 0.375em;
  padding-right: 0;
  display: flex;
}

.dash-code__title {
  color: var(--color-neutral-500);
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.875em;
}

.dash-code__start,
.dash-code__end {
  align-items: center;
  display: flex;
}

.dash-code__content {
  background-color: var(--color-neutral-300);
  border-radius: 0.25em;
  overflow: hidden;
}

.dash-code__content-rich {
  border-radius: 0.25em;
  width: 100%;
  font-family: RM Mono, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.dash-code__content-rich.is--home-features {
  font-size: 0.675em;
}

.dash-code__copy-svg {
  width: 0.8125em;
  margin-left: -0.1em;
  margin-right: 0.1em;
}

.dash-card-visual__video-wrap {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dash-card-visual__video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 0.25em;
}

.dash-res-card__arrow {
  justify-content: center;
  align-items: center;
  width: 1.625em;
  height: 1.625em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dash-res-card__arrow-svg {
  color: var(--color-neutral-800);
  width: 75%;
}

.dash-res-card__arrow-back {
  background-color: var(--color-neutral-300);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.dash-res-card__visual-top-end,
.dash-res-card__visual-top-start {
  grid-column-gap: 0.25em;
  grid-row-gap: 0.25em;
  align-items: center;
  height: 100%;
  display: flex;
}

.dash-mobile-nav {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.5em 0.5em 1em;
  display: none;
  position: relative;
}

.dash-mobile-nav__logo {
  color: var(--color-dark);
  justify-content: space-between;
  align-items: center;
  width: 7em;
  display: flex;
  position: relative;
}

.dash-mobile-nav__hamburger {
  grid-column-gap: 0.25em;
  grid-row-gap: 0.25em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  padding: 0.5em;
  display: flex;
}

.dash-mobile-nav__hamburger-bar {
  background-color: var(--color-dark);
  width: 1.5em;
  height: 2px;
  position: relative;
}

.dash-mobile-nav__search {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  cursor: pointer;
  background-color: rgba(var(--color-rgb-dark), 0.06);
  border-radius: 0.25em;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin-left: auto;
  display: flex;
}

.dash-btn-info__slack-svg {
  width: 1.125em;
  margin-right: 0.25em;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— FLOW ——————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.flow-global {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.flow-main {
  flex-flow: column;
  display: flex;
}

.flow-content {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  background-color: var(--color-light);
  width: 100%;
  min-height: 100vh;
  margin-bottom: 0;
  padding: 0.5em;
  display: flex;
  position: relative;
  overflow: clip;
}

.flow-side {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  flex-shrink: 0;
  width: 30em;
  padding: 1.75em;
  display: flex;
}

.flow-visual {
  background-color: var(--color-dark);
  border-radius: 8px;
  width: 100%;
  height: calc(100vh - 1em);
  position: sticky;
  top: 0.5em;
  overflow: hidden;
}

.flow-side__top {
  flex-shrink: 0;
}

.flow-side__center {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  flex-grow: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.flow-side__bottom {
  flex-shrink: 0;
  order: 1;
}

.flow {
  background-color: var(--color-neutral-300);
  color: var(--color-neutral-800);
  font-family: PP Neue Montreal, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: var(--size-font);
}

.flow-side-logo {
  color: var(--color-dark);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.flow-side__logo-wordmark-wrap {
  flex-shrink: 0;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.flow-side__logo-wordmark {
  width: 4.4em;
  position: relative;
}

.flow-dash-side__logo-icon {
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  position: relative;
}

.flow-side__logo-icon-wrap {
  pointer-events: none;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
}

.flow-unicorn-bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.flow-unicorn-bg__wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.go-to-vault {
  color: var(--color-dark);
}

.flow__h2 {
  font-family: PP Neue Montreal, Arial, sans-serif;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1;
}

.flow-form__label {
  color: var(--color-neutral-500);
  text-transform: uppercase;
  margin-bottom: 0.75em;
  font-family: RM Mono, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1;
}

.flow-form__input {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--color-neutral-400);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--color-neutral-400);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--color-neutral-400);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--color-neutral-400);
  background-color: rgba(var(--color-ignore-rgb-dark), 0.06);
  border-radius: 0.25em;
  width: 100%;
  height: 3em;
  margin-bottom: 1em;
  padding: 0.75em 1em;
  font-size: 1em;
}

.flow-form__input:hover {
  border-color: var(--color-neutral-500);
}

.flow-form__input:focus {
  border-color: var(--color-neutral-800);
}

.flow-form__submit {
  background-color: var(--color-dark);
  border-radius: 0.25em;
  width: 100%;
  height: 3em;
}

.flow-testimonial__collection {
  color: var(--color-light);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

body.flow {
  position: relative;
  height: 100%;
  min-height: 100%;
  overscroll-behavior-y: none;
}

.flow svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.flow-side-logo .flow-side__logo-icon-wrap {
  transition: transform var(--animation-default);
  transform: rotate(0.001deg);
}

.flow-side-logo:hover .flow-side__logo-icon-wrap {
  transform: rotate(-180deg);
}

.flow .flow-unicorn-bg canvas {
  position: absolute;
}

.testimonial-item_blurry {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  border: 1px solid var(--card--border-color);
  border-radius: var(--card--radius-small);
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  background-color: #141414bf;
  flex-flow: column;
  flex: none;
  width: 21em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  padding: 1.25em;
  display: flex;
  position: relative;
}

.slider__section {
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
  position: relative;
  background-color: #000000;
}

.slider__main {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider__wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slider__list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.slider__slide {
  aspect-ratio: 3 / 2;
  flex: none;
  width: 36vw;
  padding-left: 1.25em;
  padding-right: 1.25em;
  transition: opacity 0.4s;
  position: relative;
}

.slider__slide-inner {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Make slide links display properly */
a.slider__slide-inner {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.slide__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Ensure videos and iframes fill the container */
video.slide__img,
iframe.slide__img {
  position: absolute;
  inset: 0;
  border: none;
}

/* Scale iframe to fill container (crop excess) */
iframe.slide__img {
  width: 130%;
  height: 130%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide__caption {
  z-index: 2;
  grid-column-gap: 0.4em;
  grid-row-gap: 0.4em;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  white-space: nowrap;
  background-color: #efeeec26;
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4em 0.75em 0.4em 0.5em;
  display: flex;
  position: absolute;
  top: 1.25em;
  left: 1.25em;
  overflow: hidden;
}

.slide__caption-dot {
  background-color: #ffffff;
  border-radius: 10em;
  flex: none;
  width: 0.5em;
  height: 0.5em;
}

.slide__caption-label {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75em;
  line-height: 1.5;
}

.slider__overlay {
  z-index: 2;
  color: #fff;
  background-image: linear-gradient(90deg, #000000 85%, #00000000);
  justify-content: flex-start;
  align-items: center;
  width: 36vw;
  height: 100%;
  padding-left: 2em;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slider__overlay-inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 28.125em;
  display: flex;
}

.slider__overlay-count {
  grid-column-gap: 0.2em;
  grid-row-gap: 0.2em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 4.5em;
  font-weight: 700;
  display: flex;
}

.slider__count-col {
  height: 1em;
  overflow: hidden;
}

.slider__count-heading {
  width: 2ch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.slider__count-divider {
  background-color: #efeeec;
  width: 2px;
  height: 0.75em;
  transform: rotate(15deg);
}

.slider__overlay-nav {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.slider__btn {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff3;
  border-radius: 0.4em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding: 0;
  display: flex;
  position: relative;
}

.slider__btn-arrow {
  flex: none;
  width: 1em;
  height: 0.75em;
}

.slider__btn-arrow.next {
  transform: rotate(180deg);
}

.slider__btn-overlay {
  z-index: 2;
  position: absolute;
  inset: -1px;
}

.slider__btn-overlay-corner {
  border-top: 1px solid #efeeec;
  border-left: 1px solid #efeeec;
  border-top-left-radius: 0.4em;
  width: 1em;
  height: 1em;
}

.slider__btn-overlay-corner.top-right {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(90deg);
}

.slider__btn-overlay-corner.bottom-right {
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.slider__btn-overlay-corner.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotate(-90deg);
}

/* Previous and next Button*/
.slider__btn,
.slider__btn-overlay {
  transition: transform 0.475s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.475s cubic-bezier(0.625, 0.05, 0, 1);
}

.slider__btn:hover .slider__btn-overlay {
  transform: scale(1.4);
}

.slider__overlay-nav:hover:has(.slider__btn:hover) .slider__btn {
  opacity: 0.4;
}

.slider__btn:hover {
  transform: scale(0.85);
  opacity: 1 !important;
}

/* Styling of active slide's caption */
.slide__caption {
  transition: transform 0.525s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.525s cubic-bezier(0.625, 0.05, 0, 1);
  transition-delay: 0s;
}

.slide__caption {
  opacity: 0;
  transform: translate(-25%, 0px);
}

[data-slider="slide"].active .slide__caption {
  opacity: 1;
  transform: translate(0%, 0px);
}

/* Styling of active slide */
[data-slider="slide"] {
  opacity: 0.2;
}
[data-slider="slide"].active {
  opacity: 1;
}
[data-slider="slide"].active .slide__caption {
  transition-delay: 0.3s;
}

@media screen and (max-width: 1200px) {
  .slider__section {
    min-height: auto;
    padding: 1em 0;
    flex-direction: column;
  }

  .slider__main {
    position: relative;
  }

  .slider__slide {
    width: 80vw;
  }

  .slider__overlay {
    width: 100%;
    position: relative;
    inset: auto;
    padding: 1.5em;
    padding-bottom: 1em;
    background-image: none;
  }

  .slider__overlay-inner {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

/* Hide corner decoration on regular iPad and smaller (up to 980px) */
@media screen and (max-width: 980px) {
  [data-slider="slide"]::after {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .slider__overlay {
    padding-left: 1.25em;
  }

  .slider__slide {
    width: 85vw;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  /* Hide corner decoration on phone - it gets clipped */
  [data-slider="slide"]::after {
    display: none;
  }

  .slide__caption {
    top: 0.5em;
    left: 0.5em;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— SLIDER ———————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.slider__section {
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
  position: relative;
  background-color: #000000;
}

.slider__main {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider__wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slider__list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.slider__slide {
  aspect-ratio: 3 / 2;
  flex: none;
  width: 36vw;
  padding-left: 1.25em;
  padding-right: 1.25em;
  transition: opacity 0.4s;
  position: relative;
}

.slider__slide-inner {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide__caption {
  z-index: 2;
  grid-column-gap: 0.4em;
  grid-row-gap: 0.4em;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  white-space: nowrap;
  background-color: #efeeec26;
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4em 0.75em 0.4em 0.5em;
  display: flex;
  position: absolute;
  top: 1.25em;
  left: 1.25em;
  overflow: hidden;
}

.slide__caption-dot {
  background-color: #ffffff;
  border-radius: 10em;
  flex: none;
  width: 0.5em;
  height: 0.5em;
}

.slide__caption-label {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75em;
  line-height: 1.5;
}

.slider__overlay {
  z-index: 2;
  color: #fff;
  background-image: linear-gradient(90deg, #000000 85%, #00000000);
  justify-content: flex-start;
  align-items: center;
  width: 36vw;
  height: 100%;
  padding-left: 2em;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slider__overlay-inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 28.125em;
  display: flex;
}

.slider__overlay-count {
  grid-column-gap: 0.2em;
  grid-row-gap: 0.2em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 4.5em;
  font-weight: 700;
  display: flex;
}

.slider__count-col {
  height: 1em;
  overflow: hidden;
}

.slider__count-heading {
  width: 2ch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.slider__count-divider {
  background-color: #efeeec;
  width: 2px;
  height: 0.75em;
  transform: rotate(15deg);
}

.slider__overlay-nav {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.slider__btn {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff3;
  border-radius: 0.4em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding: 0;
  display: flex;
  position: relative;
}

.slider__btn-arrow {
  flex: none;
  width: 1em;
  height: 0.75em;
}

.slider__btn-arrow.next {
  transform: rotate(180deg);
}

.slider__btn-overlay {
  z-index: 2;
  position: absolute;
  inset: -1px;
}

.slider__btn-overlay-corner {
  border-top: 1px solid #efeeec;
  border-left: 1px solid #efeeec;
  border-top-left-radius: 0.4em;
  width: 1em;
  height: 1em;
}

.slider__btn-overlay-corner.top-right {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(90deg);
}

.slider__btn-overlay-corner.bottom-right {
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.slider__btn-overlay-corner.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotate(-90deg);
}

/* Previous and next Button*/
.slider__btn,
.slider__btn-overlay {
  transition: transform 0.475s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.475s cubic-bezier(0.625, 0.05, 0, 1);
}

.slider__btn:hover .slider__btn-overlay {
  transform: scale(1.4);
}

.slider__overlay-nav:hover:has(.slider__btn:hover) .slider__btn {
  opacity: 0.4;
}

.slider__btn:hover {
  transform: scale(0.85);
  opacity: 1 !important;
}

/* Styling of active slide's caption */
.slide__caption {
  transition: transform 0.525s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.525s cubic-bezier(0.625, 0.05, 0, 1);
  transition-delay: 0s;
}

.slide__caption {
  opacity: 0;
  transform: translate(-25%, 0px);
}

[data-slider="slide"].active .slide__caption {
  opacity: 1;
  transform: translate(0%, 0px);
}

/* Styling of active slide */
[data-slider="slide"] {
  opacity: 0.2;
}
[data-slider="slide"].active {
  opacity: 1;
}
[data-slider="slide"].active .slide__caption {
  transition-delay: 0.3s;
}

@media screen and (max-width: 991px) {
  .slider__main {
    position: relative;
  }

  .slider__slide {
    width: 75vw;
  }

  .slider__overlay {
    width: 100%;
    position: relative;
    inset: auto;
    padding-bottom: 2em;
  }

  .slider__overlay-inner {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .slider__overlay {
    padding-left: 1.25em;
  }

  .slider__slide {
    width: 90vw;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .slide__caption {
    top: 0.5em;
    left: 0.5em;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— HERO ———————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.hero-col-title {
  grid-column-gap: var(--gap-xxlarge);
  grid-row-gap: var(--gap-xxlarge);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-inner-row {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-faces {
  width: 2.5em;
}

.hero-p__wrap {
  max-width: 25em;
}

.home-hero {
  padding-top: 10em;
  padding-bottom: var(--container-padding);
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.home-col-cta {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.home-hero-vid {
  padding: var(--gap-reg) var(--gap-reg) 2.75em;
  transform-origin: 50% 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  width: 20.25em;
  min-height: 15em;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(0, 65%);
}

.hero-col-info {
  grid-column-gap: var(--gap-xxlarge);
  grid-row-gap: var(--gap-xxlarge);
  opacity: 0.65;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.5em;
  display: flex;
}

/* Hero Service List - push to the right (services page only) */
[data-barba-namespace="services"] .hero-col-info {
  margin-left: 4rem;
}

/* Services page: tighten spacing for the left service list */
.hero-col-info.services-info {
  /* Reduce the top offset so the column sits higher */
  padding-top: 0.25em;
  /* Slightly reduce internal gaps between columns in this row */
  grid-column-gap: var(--gap-large);
}

.hero-vid-bg {
  z-index: 0;
  -webkit-backdrop-filter: blur(4em);
  backdrop-filter: blur(4em);
  background-color: #ffffff12;
  border-radius: 0.4em;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  position: absolute;
  inset: 0%;
  will-change: transform;
}

.home-hero__inner {
  grid-column-gap: 6.25em;
  grid-row-gap: max(5em, (35vh - 10em));
  grid-template-rows: auto auto;
  grid-template-columns: minmax(200px, 20.25em) 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 50vh;
  display: grid;
  position: relative;
}

.hero-vid-wrap {
  z-index: 1;
  aspect-ratio: 1.6;
  background-color: #000;
  border-radius: 0.25em;
  width: 100%;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.video-player .hero-vid-wrap {
  margin-bottom: 0em;
  inset: 0em;
  position: absolute;
}

.home-hero-vid .hero-vid-wrap {
  opacity: 1 !important;
}

.hero-vid-info {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
}

.home-vid-star {
  z-index: 5;
  pointer-events: none;
  width: 10em;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.home-vid-star path {
  opacity: 0;
  animation: drawHomeVidStar 2s ease-in-out forwards;
}

.home-vid-star path:first-child {
  animation-delay: 0.2s;
}

.home-vid-star path:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes drawHomeVidStar {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.inner-hero-col {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40em;
  padding-bottom: 4em;
  display: flex;
}

.inner-hero-col.centered {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.spacer {
  height: 10em;
}

.page-eyebrow {
  margin-bottom: var(--gap-small);
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— HOMEPAGE DASH PREVIEW ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.db-side__bottom {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1.25em;
  display: flex;
}

.db-card__visual {
  border-radius: 0.25em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.db-base {
  border-radius: var(--card--radius-reg);
  background-color: #000;
  border: 1px solid #2c2c2c;
  position: absolute;
  inset: 0%;
}

.db-side__inner {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.db-bottom__left {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.db-avatar {
  color: #131313;
  background-color: #e3e1de;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  padding: 0.3em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.user-dots {
  opacity: 0.6;
  width: 0.25em;
}

.db-content__card {
  padding-top: var(--gap-tiny);
  padding-right: var(--gap-tiny);
  padding-bottom: var(--gap-tiny);
  padding-left: var(--gap-tiny);
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--card--border-color);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--card--border-color);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--card--border-color);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--card--border-color);
  border-top-left-radius: var(--card--radius-small);
  border-top-right-radius: var(--card--radius-small);
  border-bottom-left-radius: var(--card--radius-small);
  border-bottom-right-radius: var(--card--radius-small);
  cursor: pointer;
  width: calc((100% - 2 * var(--gap-reg)) / 3);
  background-color: #0e0e0e;
  flex-flow: column;
  font-weight: 500;
  transition-property: border-color, background-color;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  display: flex;
}

.db-content__card:hover {
  background-color: #141414;
  border-color: #efeeec26;
}

.db-wrapper {
  perspective: 1000px;
  width: 100%;
  height: 52.5em;
  position: relative;
  will-change: transform, opacity;
}

.db-content {
  z-index: 3;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  perspective: 1000px;
  bottom: 0.75em;
  left: 24em;
  right: 1.5em;
  top: calc(var(--gap-large) * 4);
  flex-flow: wrap;
  place-content: flex-start;
  align-items: flex-start;
  font-size: 0.8em;
  display: flex;
  position: absolute;
}

.db-text-row {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 35em;
}

.db-side__logo {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 2.5em;
  margin-bottom: 1.6em;
  padding-top: 0.95em;
  display: flex;
}

.db-side__logo-wordmark {
  height: 2em;
  width: auto;
}

.db-side__logo-icon {
  height: 2em;
  width: auto;
  display: none;
}

/* Mobile: show icon, hide wordmark */
@media (max-width: 767px) {
  .db-side__logo-wordmark {
    display: none;
  }

  .db-side__logo-icon {
    display: block;
  }

  .db-side__logo {
    justify-content: center;
  }
}

.db-nav__badge {
  background-color: #efeeec0f;
  border-radius: 1em;
  padding: 0.4em 0.75em;
  font-size: 0.75em;
  position: absolute;
  right: 0.5em;
}

.db-container {
  perspective: 1000px;
  width: 100%;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.db-nav__icon {
  color: #818180;
  justify-content: center;
  align-items: center;
  width: 1.25em;
  height: 1.25em;
  transition: color 0.2s;
  display: flex;
}

.db-search {
  z-index: 2;
  border: 1px solid var(--card--border-color);
  background-color: #0e0e0e;
  border-radius: 0.25em;
  width: 24.25em;
  font-size: 0.8em;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
}

.db-side {
  z-index: 2;
  border: 1px solid var(--card--border-color);
  border-radius: var(--card--radius-small);
  background-color: #0e0e0e;
  width: 18em;
  position: absolute;
  inset: 0.5em auto 0.5em 0.5em;
}

.db-avatar__img {
  position: absolute;
}

.db-nav__item {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  background-color: #0000;
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
  transition: background-color 0.2s;
  display: flex;
  position: relative;
}

.db-nav__item:hover {
  background-color: #1f1f1f;
}

.db-nav__item:hover .db-nav__icon {
  color: var(--color-light);
}

.db-nav__item.soon {
  cursor: not-allowed;
}

.db-side__top {
  padding-left: 1em;
  padding-right: 1em;
}

.db-card__info {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  justify-content: space-between;
  margin-top: 0.5em;
  display: flex;
  position: relative;
}

.db-card__info.tiny {
  margin-top: 0.75em;
  font-size: 0.875em;
}

.db-card__info-start {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
  display: flex;
}

.db-card__info-end {
  justify-content: center;
  align-items: center;
  padding-right: 0.5em;
  display: flex;
}

.db-card__arrow-back {
  background-color: var(--color-neutral-900);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.db-card__arrow-svg {
  color: var(--color-light);
  width: 75%;
}

.db-card__arrow {
  justify-content: center;
  align-items: center;
  width: 1.625em;
  height: 1.625em;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .db-content__card:nth-of-type(1n + 7) {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .db-content__card:nth-of-type(1n + 4) {
    display: none;
  }
}
.db-content__card[data-video-src=""] .db-card__video-wrap {
  display: none;
}

.db-content__card[data-video-on-hover="not-active"]
  .dash-card-visual__video-wrap {
  transition: opacity var(--animation-ease);
  opacity: 0;
}

.db-content__card[data-video-on-hover="active"] .dash-card-visual__video-wrap {
  opacity: 1;
}

.db-content__card .db-card__arrow-svg {
  transition: transform var(--animation-default-half);
  transform: translateX(-75%) rotate(0.001deg);
}

@media (hover: hover) and (pointer: fine) {
  .db-content__card:hover .db-card__arrow-svg {
    transform: translateX(0%) rotate(0.001deg);
  }
}

@media (hover: none) and (pointer: coarse) {
  .db-content__card .db-card__arrow-svg {
    transform: translateX(0%) rotate(0.001deg);
  }
}

.db-content__card .db-card__arrow {
  transition: clip-path var(--animation-ease);
  clip-path: circle(0% at 50% 50%);
}

@media (hover: hover) and (pointer: fine) {
  .db-content__card:hover .db-card__arrow {
    transition: clip-path var(--animation-ease);
    clip-path: circle(50% at 50% 50%);
  }
}

@media (hover: none) and (pointer: coarse) {
  .db-content__card .dash-res-card__arrow {
    clip-path: circle(50% at 50% 50%);
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— TESTIMONIAL CARDS ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.testimonial-row {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.avatar {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  position: relative;
  overflow: hidden;
}

.testimonial-item-details {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.trusted-nav-item__tag {
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #1f1f1f;
  border-radius: 0.25em;
  padding: 0.33em 0.75em;
  font-family: RM Mono, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  transform: translate(0, 160%);
}

.divider {
  background-image: linear-gradient(
    90deg,
    #efeeec00,
    #efeeec 25% 75%,
    #efeeec00
  );
  width: 100%;
  height: 1px;
}

[data-about-divider="left"] {
  transform-origin: center right;
}
[data-about-divider="right"] {
  transform-origin: center left;
}

.divider.testimonials {
  opacity: 0.25;
  max-width: 22.5em;
}

.divider.is--dark {
  background-image: linear-gradient(
    90deg,
    #13131300,
    #131313 25% 75%,
    #13131300
  );
}

.testimonial-item {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  border: 1px solid var(--card--border-color);
  border-radius: var(--card--radius-small);
  background-color: var(--card--background-color);
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  width: 21em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  padding: 1.25em;
  transition: opacity 0.25s;
  display: flex;
  position: relative;
}

.trusted-nav-item {
  cursor: pointer;
  background-color: #1f1f1f;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: relative;
}

.trusted-nav-item:focus {
  outline-offset: 1px;
  outline: 1px solid #efeeec;
}

.testimonial-row__list {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.trusted-nav__collection {
  justify-content: center;
  display: flex;
}

.trusted-nav__list {
  grid-column-gap: var(--gap-tiny);
  grid-row-gap: var(--gap-tiny);
  justify-content: center;
  align-items: center;
  display: flex;
}

.trusted-nav-list:has(.trusted-nav-item.active) .trusted-nav-item.active {
  position: relative;
  z-index: 3;
}

.trusted-nav-item::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 100em;
  z-index: -1;
  border: 1px solid var(--color-primary);
  transition: all 0.5s var(--cubic-default);
}

.trusted-nav-item .trusted-nav-item__tag {
  transition: all 0.5s var(--cubic-default);
}

.trusted-nav-item:hover::after,
.trusted-nav-item.active::after {
  inset: -5px;
}

.trusted-nav-item.active .trusted-nav-item__tag {
  opacity: 1;
  transform: translate(0px, 140%);
}

.testimonial-row:has(.testimonial-item.active) .testimonial-item:not(.active) {
  opacity: 0.45;
}

/* https://css-tip.com/corner-only-border-image/ */
[data-slider="slide"]::after {
  --s: 1em; /* corner size */
  --b: 1px; /* border width */
  --g: 0.5em; /* gap */
  content: "";
  position: absolute;
  inset: calc(var(--g) * -1);
  z-index: 1;
  opacity: 0;
  padding: calc(var(--g) + var(--b));
  outline: var(--b) solid var(--color-primary);
  outline-offset: calc(var(--g) / -1);
  mask: conic-gradient(at var(--s) var(--s), #0000 75%, #000 0) 0 0 /
      calc(100% - var(--s)) calc(100% - var(--s)),
    linear-gradient(#000 0 0) content-box;
  transition: all 0.4s var(--cubic-default);
}

[data-slider="slide"].active::after {
  outline-offset: calc(-1 * var(--b));
  opacity: 1;
}

@media (max-width: 767.98px) {
  /* reduce the space above testimonials section on mobile */
  #dashboard + .section .container.c-pad-top {
    padding-top: 5em; /* reduced from 10em to 3em for mobile */
  }

  /* reduce the space below the cards */
  section:has(.testimonial-row) + .section .container.c-pad-top {
    padding-top: 6.5em; /* was much larger */
  }

  /* reduce spacing for "Show up better" section on mobile */
  section:has([data-start-wrap]) .container.c-pad-top {
    padding-top: 5em; /* reduced from 10em for mobile */
  }

  section:has([data-start-wrap]) .text-container {
    margin-bottom: 2em; /* reduced from 3em for mobile */
  }
}

@media (min-width: 768px) {
  /* reduce the space below the cards */
  .trusted-nav-item {
    width: 2.75em; /* adjust as you like */
    height: 2.75em;
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— LOGOS —————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.logo-wall {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo-wall__collection {
  width: 100%;
}

.logo-wall__list {
  display: flex;
  flex-flow: wrap;
}

.logo-wall__item {
  width: 25%;
  position: relative;
}

[data-logo-wall-list] [data-logo-wall-item]:nth-child(n + 9) {
  display: none;
}

.logo-wall__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-wall__logo-before {
  padding-top: 40%;
}

.logo-wall__logo-target {
  justify-content: center;
  align-items: center;
  width: 85%;
  height: auto;
  display: flex;
  position: absolute;
}

.logo-wall__logo-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .logo-wall__item {
    width: 33.333%;
  }

  [data-logo-wall-list] [data-logo-wall-item]:nth-child(n + 7) {
    display: none;
  }
}

.logo-wall {
  margin: 6em auto -2em;
}

/* Phones only (<=767px): more space above, tighter below */
@media (max-width: 767px) {
  .logo-wall {
    margin: 3em auto -6.25em; /* top | sides | bottom */
  }
}

.logo-wall__item {
  will-change: transform, opacity;
}

/* Desktop only — make the logos smaller */
@media (min-width: 992px) {
  .logo-wall__logo-target {
    width: 60%;
  } /* try 55–60%; smaller => smaller logo */
  .logo-wall__logo-img {
    height: auto;
  } /* keep aspect ratio inside the box */
}

/* (optional) Also make the tiles a bit shorter on desktop */
@media (min-width: 992px) {
  .logo-wall__logo-before {
    padding-top: 32%;
  } /* was 40%; lower = shorter tile */
}

/* (optional) extra-large screens, a touch smaller again */
@media (min-width: 1440px) {
  .logo-wall__logo-target {
    width: 48%;
  }
}

/* Phones only: increase tile height, nothing else */
@media (max-width: 767px) {
  .logo-wall__logo-before {
    padding-top: 56%; /* was 40% — try 50–60% until it looks right */
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— FEATURES BENTO GRID ———————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.f-grid__vid-wrap {
  flex: 1;
  width: 22em;
  position: relative;
  transform: translate(0, 1px);
}

.system-overlay {
  z-index: 5;
  grid-column-gap: 0.25em;
  grid-row-gap: 0.25em;
  border: 1px solid var(--card--border-color);
  background-color: #1b1b1b;
  border-top-left-radius: 0.375em;
  border-top-right-radius: 0.375em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0.375em;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  transform: translate(0, -85%);
}

.f-grid {
  grid-gap: var(--gap-large);
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  display: grid;
}

.f-grid-card {
  grid-column-gap: 3.75em;
  grid-row-gap: 3.75em;
  border-top-left-radius: var(--card--radius-reg);
  border-top-right-radius: var(--card--radius-reg);
  border-bottom-left-radius: var(--card--radius-reg);
  border-bottom-right-radius: var(--card--radius-reg);
  background-color: #efeeec0f;
  border: 1px solid #efeeec14;
  flex-flow: column;
  grid-column: span 2;
  height: 26em;
  padding: 2em 1.5em 1.5em;
  display: flex;
  overflow: hidden;
  will-change: transform;
}

.f-grid-card.basics {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-column: span 1;
  justify-content: space-between;
  align-items: stretch;
}

.f-grid-card.video {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  padding-bottom: 0;
}

.f-grid-card.components {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  padding-bottom: 0;
}

.f-grid-card.icons {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-column: span 1;
  justify-content: space-between;
  align-items: stretch;
}

.f-grid-card.full {
  grid-column: span 4;
}

.f-grid-card.full.end {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: auto;
  padding-top: 2em;
  padding-bottom: 2em;
}

.f-grid__icons-col {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  transform-style: preserve-3d;
  display: flex;
}

.icons-soon {
  background-color: #ff4c24;
  border-radius: 0.25em;
  padding: 0.3em 0.6em;
  font-size: 0.8em;
  position: absolute;
  top: 0.5em;
  left: 10.5em;
}

.f-grid__icons {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  perspective: 1000px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -1em;
  display: flex;
  position: relative;
}

.f-grid__icons-row {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  transform-style: preserve-3d;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -1em;
  display: flex;
  transform: rotateX(30deg) rotateY(-10deg) rotateZ(20deg);
}

.f-card__text {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.f-grid__basics {
  width: calc(100% + 3em);
  margin-left: -1.5em;
}

.f-grid-basics__list {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.f-grid-basics__item {
  padding: var(--gap-tiny);
  border: 1px solid var(--card--border-color);
  border-radius: var(--card--radius-small);
  cursor: pointer;
  background-color: #0e0e0e;
  flex-flow: column;
  flex: none;
  width: 18em;
  margin-left: 1em;
  margin-right: 1em;
  font-size: 0.65em;
  font-weight: 500;
  transition: border-color 0.2s, background-color 0.2s;
  display: flex;
  position: relative;
}

.f-grid-basics__item[data-video-src=""] .db-card__video-wrap {
  display: none;
}

.f-grid-basics__item[data-video-on-hover="not-active"]
  .dash-card-visual__video-wrap {
  transition: opacity var(--animation-ease);
  opacity: 0;
}

.f-grid-basics__item[data-video-on-hover="active"]
  .dash-card-visual__video-wrap {
  opacity: 1;
}

.f-grid-basics__item .db-card__arrow-svg {
  transition: transform var(--animation-default-half);
  transform: translateX(-75%) rotate(0.001deg);
}

@media (hover: hover) and (pointer: fine) {
  .f-grid-basics__item:hover .db-card__arrow-svg {
    transform: translateX(0%) rotate(0.001deg);
  }
}

@media (hover: none) and (pointer: coarse) {
  .f-grid-basics__item .db-card__arrow-svg {
    transform: translateX(0%) rotate(0.001deg);
  }
}

.f-grid-basics__item .db-card__arrow {
  transition: clip-path var(--animation-ease);
  clip-path: circle(0% at 50% 50%);
}

@media (hover: hover) and (pointer: fine) {
  .f-grid-basics__item:hover .db-card__arrow {
    transition: clip-path var(--animation-ease);
    clip-path: circle(50% at 50% 50%);
  }
}

@media (hover: none) and (pointer: coarse) {
  .f-grid-basics__item .dash-res-card__arrow {
    clip-path: circle(50% at 50% 50%);
  }
}

.f-grid-basics__item:hover {
  background-color: #141414;
  border-color: #efeeec26;
}

.f-grid__comps {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  perspective: 1000px;
  width: calc(100% + 2 * var(--gap-large));
  margin-left: calc(-1 * var(--gap-large));
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    0deg,
    #000 40%,
    #0000004d 70%,
    #00000026 79%,
    #00000013 85.3%,
    #00000009 89.71%,
    #00000005 92.8%,
    #0000 100%
  );
  mask-image: linear-gradient(
    0deg,
    #000 40%,
    #0000004d 70%,
    #00000026 79%,
    #00000013 85.3%,
    #00000009 89.71%,
    #00000005 92.8%,
    #0000 100%
  );
}

@media (max-width: 767px) {
  .f-grid__vid-box {
    display: none !important;
  }
}

.comps-row {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  transform-origin: 50%;
  transform-style: preserve-3d;
  flex-flow: row;
  display: flex;
  transform: rotateX(45deg) rotateY(20deg) rotateZ(-25deg)
    translate3d(0, 8em, 8em);
}

.comps-col {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  width: 8em;
  display: flex;
}

.comps-item {
  pointer-events: auto;
  transform-style: preserve-3d;
  background-color: #818180;
  border-radius: 0.25em;
  width: 100%;
  padding-top: 62%;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.65, 0.05, 0, 1);
  position: relative;
  overflow: hidden;
}

.system-overlay__dot {
  background-color: var(--color-light);
  border-radius: 2em;
  width: 0.375em;
  height: 0.375em;
}

.f-grid__vid-box {
  z-index: 2;
  grid-column-gap: 0.125em;
  grid-row-gap: 0.125em;
  color: #131313;
  background-color: #efeeec;
  border-radius: 0.375em;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1em 0.5em 1em 0.75em;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(75%, -50%);
}

.f-card__paragraph {
  width: 100%;
  max-width: 30em;
}

.f-grid__icon {
  color: var(--color-dark);
  transform-style: preserve-3d;
  border-radius: 0.25em;
  flex: none;
  width: 6em;
  height: 6em;
  position: relative;
}

.f-grid-icon__info {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0.25em;
  padding-bottom: 0.75em;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.f-grid-icon__buttons {
  grid-column-gap: 0.15em;
  grid-row-gap: 0.15em;
  pointer-events: none;
  justify-content: center;
  width: 100%;
  padding: 0.25em;
  font-size: 0.85em;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.f-grid-icon__download {
  width: 100%;
  height: 100%;
}

.dash-icon-card__svg svg {
  width: 100%;
  max-width: 100%;
}

.dash-icon-card__svg svg [fill] {
  fill: currentColor;
}

.dash-icon-card__svg svg [stroke] {
  stroke: currentColor;
  stroke-width: 1.5;
}

.dash-icon-card {
  transition: background-color var(--animation-ease);
}

.dash-icon-card .f-grid-icon__buttons {
  display: none;
}

/* Larger, centered Explore button */
.dash-command.is--explore {
  height: 2.4em;
  min-width: 60%;
  justify-content: center;
  font-size: 0.95em;
}

.f-grid-icon__download {
  color: var(--color-neutral-500);
}

/* Mobile: tighten the last card and the next section */
@media (max-width: 480px) {
  .f-grid-card.full.end {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: -4.5em; /* just in case */
  }
}

/* Mobile only */
@media (max-width: 767px) {
  /* If the card element itself has these classes */
  .f-grid-card.icons,
  .f-grid-card.basics {
    display: none !important;
  }

  /* If "icons"/"basics" are children inside the card, use this instead */
  .f-grid-card .icons,
  .f-grid-card .basics {
    display: none !important;
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— ABOUT SECTION ———————————————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.about-divider-logo {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  display: flex;
}

.about-divider-img {
  border-radius: 1100em;
  flex: none;
  width: 3em;
  height: 3em;
  overflow: hidden;
}

.moon-wrap-overlay {
  z-index: 2;
  background-image: linear-gradient(#00000080 50%, #000 100%, #000);
  position: absolute;
  inset: 0%;
}

.about-divider {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2.5em;
  display: flex;
}

.about-button-row {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  display: flex;
}

.moon-wrap {
  z-index: 0;
  width: 100%;
  height: 50em;
  position: absolute;
  inset: 60% 0% auto;
  overflow: hidden;
}

.moon-wrap.faq-page {
  top: 0;
}

.cover {
  position: absolute;
  inset: 0%;
}

/* Process Section Layout Spacing */
.layout.about {
  padding-top: 8em; /* Desktop/tablet spacing */
}

@media screen and (max-width: 767px) {
  .layout.about {
    padding-top: 4em; /* Mobile spacing */
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— TAB SYSTEM ————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.layout {
  z-index: 1;
  grid-row-gap: 3em;
  flex-flow: wrap;
  display: flex;
  position: relative;
}

.layout.c-pad-top {
  padding-top: 15em;
}

.filter-button {
  background-color: #0000;
  border: 1px solid #fff0;
  border-radius: 0.25em;
  padding: 1.125em 1.5em;
  transition: border-color 0.25s;
  position: relative;
}

.filter-button.small {
  padding: 0.375em 0.5em;
}

.filter-button.active {
  visibility: visible;
  border-color: #ffffff26;
}

.filter-bar {
  padding: var(--gap-tiny);
  border: 1px solid var(--card--border-color);
  border-radius: var(--card--radius-small);
  background-color: var(--card--background-color);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
}

.filter-bar.small {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  padding: 0.25em;
}

.filter-inner-link {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.tab-container {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100%;
  padding-top: 2em;
  padding-bottom: 3em;
  padding-right: 2.5em;
  display: flex;
}

.tab-content-item {
  z-index: 1;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  visibility: hidden;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.tab-content-item.active {
  visibility: visible;
}

.tab-content-wrap {
  width: 100%;
  min-width: 24em;
  position: relative;
}

.tab-visual-wrap {
  height: 46.875em;
  position: relative;
}

@media (max-width: 767px) {
  .tab-visual-wrap {
    margin-bottom: -5em;
  }
}

.layout-col {
  width: 50%;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.tab-visual-item {
  visibility: hidden;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
}

.tab-visual-item.active {
  visibility: visible;
}

.tab-button__bg {
  z-index: 0;
  background-color: var(--card--background-color);
  pointer-events: none;
  border: 1px solid #efeeec14;
  border-radius: 0.25em;
  position: absolute;
  inset: -1px;
}

.tab-container-top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tabs-vid-wrap-inner {
  aspect-ratio: 1.6;
  border-radius: 0.25em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tabs-vid-wrap {
  background-color: var(--color-neutral-900);
  border: 1px solid #efeeec33;
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  overflow: hidden;
}

/* Video and image styling for tabs */
.tabs-vid-wrap-inner video,
.tabs-vid-wrap-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
}

/* Mac window controls - red, yellow, green */
.tabs-vid-wrap-inner::after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.75em;
  z-index: 3;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 1em 0 0 #ffbd2e, 2em 0 0 #28ca42;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— CASE STUDY —————————————————————————————————————— */
/* -——————————————————————————————————————————————————————————————————————————- */
.flickity-slider-group {
  width: 100%;
  position: relative;
}

.flickity-viewport {
  overflow: visible;
  width: 100%;
}

.flickity-list {
  width: 100%;
  display: flex;
}

.flickity-item {
  width: calc(
    (99.99% / var(--flick-col)) -
      (var(--flick-gap) * ((var(--flick-col) - 1) / var(--flick-col)))
  );
  margin-right: var(--flick-gap);
  flex-shrink: 0;
}

.flickity-viewport {
  overflow: visible;
  width: 100%;
  outline: none;
}

.flickity-controls {
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.flickity-arrows {
  pointer-events: none;
  justify-content: space-between;
  align-items: center;
  width: calc(100% + 3em);
  display: flex;
  position: relative;
}

.flickity-arrow {
  pointer-events: auto;
  color: #efeeec;
  cursor: pointer;
  background-color: #131313;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  padding-left: 0.75em;
  padding-right: 0.75em;
  display: flex;
}

.flickity-arrow.is--flipped {
  transform: scaleX(-1);
}

[data-flickity-control][disabled] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.flickity-dots {
  width: 100%;
  padding-top: 4em;
  position: absolute;
  top: 100%;
  left: 0;
}

.flickity-dots-list {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flickity-dot {
  pointer-events: auto;
  background-color: #d0cfcd;
  border-radius: 50%;
  width: 0.75em;
  height: 0.75em;
  cursor: pointer;
}

/* ------------ Flickity Slider - Cards  ------------ */

/* Flickity Carousel Styles */

.case-study {
  padding-bottom: 5em;
}

.case-study .section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.case-study .flickity-prev-next-button {
  display: none;
}

.case-study .label {
  font-size: 1.13em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

.case-study .cases-heading {
  font-size: 4.9em;
  line-height: 1;
  text-align: center;
}

.case-study .carousel {
  overflow: visible;
  transition: opacity ease 0.35s;
  outline: none;
  opacity: 0;
  position: relative;
}

/* Black gradient fade on left and right sides of carousel */
.case-study .carousel::before,
.case-study .carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 10;
  pointer-events: none;
}

.case-study .carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.case-study .carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.case-study .flickity-viewport {
  overflow: visible;
}

.case-study-container {
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.case-study .carousel-content .card-bg {
  position: absolute;
  border-radius: 0.56em;
}

.case-study .carousel-content .card-container {
  position: relative;
  padding: 1em;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform ease 0.35s;
}

.case-study .carousel-content .card-header {
  /* height: 3em; */
  padding: 0.55em;
  padding-top: 0;
}

.case-study .carousel-content .card-header img {
  /* scale down internal logo to suit smaller cards */
  width: 5.5em;
  height: auto;
  opacity: 0.85;
  filter: brightness(1.1);
  transition: opacity ease 0.35s, filter ease 0.35s;
}

.case-study .carousel-cell.is-selected .card-header img {
  opacity: 1;
  filter: brightness(1);
}

.case-study .cases-heading em {
  font-weight: 500;
}

.case-study .flickity-slider {
  display: flex;
  align-items: center;
  height: 100%;
  outline: none;
}

.case-study .carousel-cell {
  /* slightly smaller cards so more fit on screen */
  width: 42%;
  margin-right: 1.5em;
  counter-increment: carousel-cell;
  height: 25em; /* increased from 20em */
  transition: height ease 0.35s;
  pointer-events: none; /* Disable click on non-selected cards */
}

.case-study .carousel-cell.is-selected {
  /* keep selected card slightly larger for emphasis */
  height: 30em; /* increased from 24em */
  pointer-events: auto; /* Re-enable click on selected card */
}

/* Video and iframe styling for case study cards - fills entire card */
.case-study .carousel-content .card-content .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 0.56em;
  /* Gradient loader background - visible until video loads */
  background: linear-gradient(
    135deg,
    var(--color-neutral-800) 0%,
    var(--color-neutral-700) 50%,
    var(--color-neutral-800) 100%
  );
  background-size: 200% 200%;
  animation: bgShimmer 2s ease-in-out infinite;
}

@keyframes bgShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.case-study .carousel-content .card-content .bg-image video,
.case-study .carousel-content .card-content .bg-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* Iframes need extra zoom to cover the card since they maintain aspect ratio */
.case-study .carousel-content .card-content .bg-image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.case-study .carousel .flickity-viewport {
  height: auto;
  min-height: 30em; /* increased from 24em */
}

@media (max-width: 767px) {
  /* preserve mobile-friendly stacking for small screens */
  .case-study .carousel-cell {
    width: 100%;
    height: auto;
    margin-right: 0.75em;
    pointer-events: auto; /* Enable clicking on mobile */
  }

  /* Hide gradient overlays on mobile */
  .case-study .carousel::before,
  .case-study .carousel::after {
    display: none;
  }

  .case-study .carousel-cell.is-selected {
    height: auto;
  }

  .case-study .carousel .flickity-viewport {
    min-height: auto;
  }

  /* Scale iframes more on mobile to fill the card */
  .case-study .carousel-content .card-content .bg-image iframe {
    transform: translate(-50%, -50%) scale(1.75);
  }
}

.case-study .carousel-content {
  width: 100%;
  height: 100%;
  border-radius: 0.56em;
  display: block;
}

.case-study .carousel-content .card-bg {
  background-color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  height: 100%;
  transition: transform ease 0.35s;
}

.case-study .carousel-content .card-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.case-study .carousel-content .card-content .bg-image {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: transform ease 0.35s;
  border-radius: 0.5em;
}

.case-study .carousel-content .card-content .card-stats {
  position: relative;
  display: flex;
  gap: 1em;
  align-items: flex-end;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  align-items: stretch;
}

.case-study .carousel-content .card-content .card-stats .card-stat {
  background-color: white;
  padding: 0.75em;
  color: #212121;
  border-radius: 0.5em;
  flex-grow: 1;
  width: 100%;
  height: fit-content;
}

.case-study .carousel-content .card-content .card-stats .card-stat-number {
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.case-study .carousel-content .card-content .card-stats .card-stat-text {
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* Modern Arrow Styles */
.case-study .carousel-content .card-content .card-results__arrow-box {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 0%;
  transition: width cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
  overflow: hidden;
}

.case-study
  .carousel-content
  .card-content
  .card-results__arrow-box
  .arrow-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
  color: #ffffff;
}

.case-study
  .carousel-content
  .card-content
  .card-results__arrow-box
  .arrow-modern__svg {
  width: 100%;
  height: 100%;
}

/* Stroke-dasharray animation setup */
.case-study .carousel-content .card-content .arrow-modern__svg .arrow-line {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-study .carousel-content .card-content .arrow-modern__svg .arrow-head-top {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  transition: stroke-dashoffset 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.case-study
  .carousel-content
  .card-content
  .arrow-modern__svg
  .arrow-head-side {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  transition: stroke-dashoffset 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Custom Navigation Bar */
.case-study .custom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 2.5em;
  padding: 0 1.25em;
}

.case-study .nav-number {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1.6;
  font-style: normal;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.case-study .nav-number.nav-current {
  color: #fff;
}

.case-study .nav-track {
  position: relative;
  width: 340px;
  max-width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  z-index: 1;
  cursor: pointer;
}

.case-study .nav-track::before {
  content: "";
  position: absolute;
  top: -12px; /* expands hit area above */
  bottom: -12px; /* expands hit area below */
  left: 0;
  right: 0;
  cursor: pointer;
  background: transparent; /* fully invisible */
}

.case-study .nav-line {
  display: none; /* replaced by the rounded .nav-track itself */
}

.case-study .nav-dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* removed .nav-line-segment (unused) */

.case-study .nav-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0;
  will-change: transform;
}

/* larger invisible hit area per dot */
.case-study .nav-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}

.case-study .nav-dot.is-active {
  background: #fff;
  opacity: 0;
}

.case-study .nav-indicator {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 3.2em;
  height: 4px;
  background: #fff;
  transform: translate(0%, -50%);
  transition: left 0.35s var(--cubic-default), transform 0.35s var(--cubic-default);
  z-index: 3;
  cursor: pointer;
  border-radius: 99px;
}

@media (min-width: 1220px) {
  .case-study .carousel-cell.is-selected:hover .card-results__arrow-box {
    width: 33%;
  }

  /* Arrow drawing animation on hover */
  .case-study .carousel-cell.is-selected:hover .arrow-modern__svg .arrow-line {
    stroke-dashoffset: 0;
  }

  .case-study
    .carousel-cell.is-selected:hover
    .arrow-modern__svg
    .arrow-head-top {
    stroke-dashoffset: 0;
  }

  .case-study
    .carousel-cell.is-selected:hover
    .arrow-modern__svg
    .arrow-head-side {
    stroke-dashoffset: 0;
  }

  .case-study .carousel-cell.is-selected:hover .card-bg {
    transform: scale(1.02);
  }
  .case-study .carousel-cell.is-selected:hover .card-content .bg-image {
    transform: scale(1.02);
  }
  .case-study .carousel-cell.is-selected:hover .card-container {
    transform: scale(1.02);
  }

  .case-study .nav-dot.is-hovered {
    transform: scale(1.6);
    background: #fff;
  }

  .case-study .nav-track:hover .nav-dots,
  .case-study .nav-dots.show-dots {
    pointer-events: all;
  }

  .case-study .nav-track:hover .nav-dot,
  .case-study .nav-dots.show-dots .nav-dot {
    opacity: 1;
  }
}

@media (max-width: 1220px) {
  .case-study .carousel-cell {
    width: 60%;
    margin-right: 2.25em;
    counter-increment: carousel-cell;
    height: 25em;
    transition: height ease 0.35s;
  }

  .case-study .carousel-cell.is-selected {
    height: 31.5em;
  }
  .case-study .custom-nav {
    /* nudge nav lower on narrower viewports so it doesn't sit behind cards */
    margin-top: 7.5em;
    padding: 0 1.25em;
    z-index: 3;
  }

  .case-study .nav-dots {
    opacity: 1;
  }

  /* touch devices have no hover — keep the step dots always visible */
  .case-study .nav-dot {
    opacity: 1;
  }
}

/* Tablet portrait (768px-991px) - smaller iPads */
@media (min-width: 768px) and (max-width: 991px) {
  .case-study .carousel-cell {
    width: 70%;
    margin-right: 1.5em;
    height: 22em;
  }

  .case-study .carousel-cell.is-selected {
    height: 28em;
  }

  .case-study .carousel .flickity-viewport {
    min-height: 28em;
  }

  .case-study .custom-nav {
    margin-top: 6em;
    padding: 0 1em;
  }
}

/* Responsive Design - Mobile only */
@media (max-width: 767px) {
  .case-study .label .leaf-icon {
    width: 1em;
    height: 1em;
  }

  .case-study .cases-heading {
    font-size: 3em;
  }
  .case-study {
    padding-top: 0;
    padding-bottom: 3em;
  }
  .case-study .section-heading {
    margin-bottom: 2.5em;
    padding-top: 8em;
    text-align: center;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .case-study .custom-nav {
    display: none;
  }
  .case-study .carousel {
    padding-inline: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    gap: 1.4em;
    opacity: 1;
  }
  .case-study .carousel-cell {
    width: 100%;
  }

  .case-study .carousel-content {
    position: relative;
  }
  .case-study .carousel-content .card-container {
    padding: 0.8em;
  }

  .case-study .carousel-content .card-content .card-stats {
    gap: 0.5em;
    padding: 0.8em;
  }

  .case-study .carousel-content .card-content .card-stats .card-stat-number {
    font-size: 1.75em;
  }
  .case-study .carousel-content .card-content .card-stats .card-stat-text {
    font-size: 0.75em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Demo Card */

.demo-card {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  background-color: #efeeec;
  border-radius: 1.5em;
  flex-flow: column;
  width: 100%;
  padding: 1em 1em 1.5em;
  display: flex;
  position: relative;
}

.before__125 {
  pointer-events: none;
  padding-top: 100%;
}

.demo-card__image {
  background-color: #e2e1df;
  border-radius: 0.5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.demo-card__h2 {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0.5em;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
}

.demo-card__emoji {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 500;
  line-height: 1;
  position: absolute;
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— CASE STUDY PREVIEW ————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.stacking-cards__collection {
  width: 100%;
  padding: 0 var(--container-padding);
  margin-top: 6em;
}

.stacking-cards__list {
  flex-flow: column;
  display: flex;
  gap: 2em;
}

.stacking-cards__item {
  display: flex;
  flex-direction: row;
  border-radius: 1em;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: 3em;
  position: relative;
  overflow: hidden;
  gap: 3em;
}

.stacking-cards__item.is--dark {
  background-color: #0a0a0a;
  color: #fff;
}

.stacking-cards__item.is--light {
  background-color: #f5f5f0;
  color: #0a0a0a;
}

.stacking-cards__item.is--blue {
  background-color: #000b2b;
  color: #fff;
}

/* Ivoura - Pure Black Theme */
.stacking-cards__item.is--ivoura {
  background-color: #000000;
  color: #fff;
}

/* e11even - Black to Peach Gradient */
.stacking-cards__item.is--e11even {
  background: linear-gradient(
    to right,
    #2a1a15 0%,
    #5a3530 25%,
    #8a6055 50%,
    #dea193 100%
  );
  color: #fff;
}

/* Left column - Content */
.stacking-cards__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.stacking-cards__title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1em 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.stacking-cards__tags {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.stacking-cards__tag {
  border: 1px solid currentColor;
  border-radius: 2em;
  padding: 0.4em 1em;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.stacking-cards__description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
  max-width: 40ch;
  flex-grow: 1;
}

.stacking-cards__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid currentColor;
  border-radius: 2em;
  padding: 0.75em 1.5em;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1.5em;
}

.stacking-cards__button:hover {
  background-color: currentColor;
}

.stacking-cards__item.is--dark .stacking-cards__button:hover {
  color: #0a0a0a;
  background-color: #fff;
}

.stacking-cards__item.is--light .stacking-cards__button:hover {
  color: #fff;
  background-color: #0a0a0a;
}

.stacking-cards__item.is--blue .stacking-cards__button:hover {
  color: #000b2b;
  background-color: #fff;
}

/* Ivoura button hover */
.stacking-cards__item.is--ivoura .stacking-cards__button:hover {
  color: #000000;
  background-color: #fff;
}

/* e11even button hover - White/Black like others */
.stacking-cards__item.is--e11even .stacking-cards__button:hover {
  color: #000000;
  background-color: #fff;
  border-color: #fff;
}

.stacking-cards__button-text {
  line-height: 1;
}

.stacking-cards__button-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.stacking-cards__button:hover .stacking-cards__button-icon {
  transform: translateX(0.25em);
}

/* Right column - Media */
.stacking-cards__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 1em 1em 0;
}

/* Fade overlay for video - fades to left on desktop */
.stacking-cards__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.stacking-cards__item.is--dark .stacking-cards__media::before {
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.stacking-cards__item.is--light .stacking-cards__media::before {
  background: linear-gradient(to right, #f5f5f0 0%, transparent 100%);
}

.stacking-cards__item.is--blue .stacking-cards__media::before {
  background: linear-gradient(to right, #000b2b 0%, transparent 100%);
}

/* Ivoura - Pure Black Media Gradient */
.stacking-cards__item.is--ivoura .stacking-cards__media::before {
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

/* e11even - Rose Gold Media Gradient */
.stacking-cards__item.is--e11even .stacking-cards__media::before {
  background: linear-gradient(to right, #8a6055 0%, transparent 100%);
}

.stacking-cards__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacking-cards__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Vimeo iframe - scale up to fill container */
.stacking-cards__vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .stacking-cards__item {
    aspect-ratio: auto;
    min-height: 500px;
    padding: 2em;
    gap: 2em;
  }

  .stacking-cards__title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .stacking-cards__collection {
    margin-top: 8.25em;
  }

  .stacking-cards__item {
    flex-direction: column;
    aspect-ratio: auto;
    min-height: auto;
    padding: 2em;
  }

  .stacking-cards__content {
    order: 2;
    text-align: center;
    align-items: center;
  }

  .stacking-cards__tags {
    justify-content: center;
  }

  .stacking-cards__button {
    align-self: center;
  }

  .stacking-cards__media {
    position: relative;
    order: 1;
    aspect-ratio: 16 / 9;
    width: calc(100% + 4em);
    height: auto;
    margin: -2em -2em 0 -2em;
    border-radius: 1em 1em 0 0;
  }

  .stacking-cards__vimeo {
    top: 50%;
    width: 150%;
    height: 150%;
  }

  /* On mobile, fade from top (transparent) to bottom (card color) */
  .stacking-cards__media::before {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .stacking-cards__item.is--dark .stacking-cards__media::before {
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
  }

  .stacking-cards__item.is--light .stacking-cards__media::before {
    background: linear-gradient(to bottom, transparent 0%, #f5f5f0 100%);
  }

  .stacking-cards__item.is--blue .stacking-cards__media::before {
    background: linear-gradient(to bottom, transparent 0%, #000b2b 100%);
  }

  .stacking-cards__item.is--ivoura .stacking-cards__media::before {
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  }

  .stacking-cards__item.is--e11even .stacking-cards__media::before {
    background: linear-gradient(to bottom, transparent 0%, #6a4a40 100%);
  }

  /* E11even card background on mobile - solid color through video area, then gradient */
  .stacking-cards__item.is--e11even {
    background: linear-gradient(
      to bottom,
      #6a4a40 0%,
      #6a4a40 40%,
      #8a6055 65%,
      #dea193 100%
    );
  }

  .stacking-cards__title {
    font-size: 1.75rem;
  }

  .stacking-cards__description {
    font-size: 0.9rem;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— STICKY TITLE —————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.sticky-title-wrapper {
  background-color: #000000;
  width: 100%;
  height: 250vh;
  position: relative;
}

/* Left gradient glow - WHITE */
.sticky-title-wrapper::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 40%;
  height: 100vh;
  background: radial-gradient(
    ellipse 100% 80% at 0% 50%,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateX(-30%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Right gradient glow - PURPLE */
.sticky-title-wrapper::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: 40%;
  height: 100vh;
  background: radial-gradient(
    ellipse 100% 80% at 100% 50%,
    rgba(150, 0, 255, 0.3) 0%,
    rgba(150, 0, 255, 0.15) 30%,
    rgba(100, 0, 200, 0.06) 60%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateX(30%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Show gradients when active - slower entrance, fast exit */
.sticky-title-wrapper.is-active::before {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-title-wrapper.is-active::after {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-title-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 2;
}

.sticky-title-inner {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.sticky-title-el {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 500;
  line-height: 1;
}

.sticky-title-el.is--stacked {
  visibility: hidden;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .sticky-title-el {
    font-size: 3.5em;
  }

  /* Smaller gradients on mobile */
  .sticky-title-wrapper::before,
  .sticky-title-wrapper::after {
    width: 50%;
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— INDUSTRIES SECTION ———————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.industries-section {
  margin-top: 8rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .industries-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem; /* reduced from 2rem */
  }

  /* Reduce gap between industries and slider section */
  .slider__section {
    margin-top: -0.5rem;
  }
}

/* Tablet - iPad Pro and similar (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .industries-section {
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— SERVICES FLOW —————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

/* Growing Cards */
.expertise {
  display: flex;
  justify-content: center;
  padding: 4rem var(--container-padding);
  position: relative;
  min-height: 80vh;
}

.expertise .container {
  border-radius: 1rem;
  padding: 3rem 4rem;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .expertise .container {
    margin-bottom: 3rem; /* extra space below expertise container on desktop */
  }
}

/* Tablet - reduce min-height to eliminate empty space */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .expertise {
    min-height: auto;
    padding: 2.5rem var(--container-padding);
  }

  .expertise .container {
    padding: 2rem 2.5rem;
  }
}

.expertise .label {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  font-family: Helvetica Now Display, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.expertise .title {
  font-size: 3.75em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 2.5rem;
  color: #ffffff;
  max-width: 50%;
}

.expertise .title em {
  font-style: italic;
  font-weight: 400;
}

/* FLEX LAYOUT */
.expertise .expertise-flex {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* tighter vertical spacing between rows */
  height: 26.25em;
  flex-grow: 1;
  flex-shrink: 1;
  transition: flex-grow 0.4s ease, flex-shrink 0.4s,
    height 0.45s cubic-bezier(0.35, 1.5, 0.6, 1);
}

.expertise .row {
  display: flex;
  /* Remove space-between so gap controls horizontal spacing precisely */
  justify-content: flex-start;
  gap: 0.25rem; /* tighter horizontal spacing between cards */
  flex-grow: 1;
  flex-shrink: 1;
  height: 100%;
  transition: height 0.45s cubic-bezier(0.35, 1.5, 0.6, 1);
}

/* CARD STYLES - Liquid Glass */
.expertise .card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: width 0.45s cubic-bezier(0.35, 1.5, 0.6, 1),
    box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2),
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* Liquid Glass Base */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Glass border highlight */
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.1), 0 6px 20px rgba(0, 0, 0, 0.15);

  /* Subtle border */
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Glass hover effect */
.expertise .card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.15), 0 8px 30px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.expertise .card h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* description hidden initially */
.expertise .card p {
  font-size: 0.84em;
  color: #ebebeb;
  max-width: 90%;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0;
  transform: translateY(15px);
  max-width: 18.38em;
  transition: all var(--animation-grow), color var(--animation-ease);
}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .expertise .row:hover {
    height: 125%;
  }

  .expertise .card:hover {
    width: 125%;
  }
}

/* Description hidden by default */
.expertise .card p {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

/* Fade in on hover */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .expertise .card:hover p {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PLUS ICON - Liquid Glass */
.expertise .plus-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  /* Liquid Glass Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 4px rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;
}

.expertise .plus-inner {
  width: 0.66em;
  height: 0.66em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise .bar {
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s ease;
}

/* default vertical bar */
.expertise .bar.vertical {
  transform: rotate(90deg);
}

/* Hover state — rotate bars to form minus */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .expertise .card:hover .bar.vertical {
    transform: rotate(360deg);
  }

  .expertise .card:hover .bar.horizontal {
    transform: rotate(360deg);
  }

  /* Glass hover - brighter white glass */
  .expertise .card:hover .plus-icon {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 0 8px rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(255, 255, 255, 0.15);
  }

  /* Make plus icon dark on hover */
  .expertise .card:hover .bar {
    background-color: #000;
  }
}

/* Tablet Click-to-Toggle - for touch devices like iPad Pro (821px to 1200px) */
@media (min-width: 821px) and (max-width: 1200px) {
  .expertise .card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Row expands when card inside is open */
  .expertise .row:has(.card.is-open) {
    height: 125%;
  }

  /* Open state - same as hover on desktop */
  .expertise .card.is-open {
    width: 125%;
  }

  .expertise .card.is-open .bar.vertical {
    transform: rotate(360deg);
  }

  .expertise .card.is-open .bar.horizontal {
    transform: rotate(360deg);
  }

  .expertise .card.is-open .plus-icon {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 0 8px rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(255, 255, 255, 0.15);
  }

  .expertise .card.is-open .bar {
    background-color: #000;
  }

  /* Show description when open */
  .expertise .card.is-open p {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile & Small Tablet Carousel - applies to screens up to 820px (excludes iPad Pro) */
@media (max-width: 820px) {
  .expertise .container {
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 2.7em 1.01em;
    overflow: visible;
  }

  .expertise .label {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-size: 0.98em;
    font-weight: 700;
    line-height: 1.2;
  }

  .expertise .title {
    font-size: 2.51em;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 100%;
  }

  .expertise .title em {
    font-style: italic;
    font-weight: 400;
  }

  .expertise .expertise-flex {
    height: auto;
    position: relative;
    overflow: visible;
  }

  /* Hide the rows, show cards in a carousel */
  .expertise .rows,
  .expertise .row {
    display: contents;
  }

  /* Carousel wrapper */
  .expertise .expertise-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Cards container - horizontal scrolling with fade masks */
  .expertise-cards-mobile {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 2rem;
    margin: 0 -2rem;
    position: relative;

    /* Gradient fade masks on edges */
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
  }

  .expertise-cards-mobile::-webkit-scrollbar {
    display: none;
  }

  .expertise .card {
    flex: 0 0 75%;
    scroll-snap-align: center;
    min-height: 180px;
    transform: scale(0.92);
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  }

  /* Active card in view */
  .expertise .card.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .expertise .card p {
    opacity: 1;
    transform: none;
  }

  .expertise .plus-icon {
    display: none;
  }

  /* Dot navigation */
  .expertise-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .expertise-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    /* Remove blue tap highlight */
    -webkit-tap-highlight-color: transparent;
    outline: none;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }

  .expertise-dot:focus {
    outline: none;
  }

  .expertise-dot.is-active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— Industry List ———————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.directional-list {
  color: #eeeeee;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 1.75em;
}

.directional-list__info {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  position: relative;
}

.directional-list__list {
  position: relative;
}

.directional-list__item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: inherit;
  justify-content: space-between;
  align-items: center;
  margin-top: -1px;
  padding: 2.25em 1.5em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.directional-list__col-award {
  width: 33.33%;
  position: relative;
}

.directional-list__col-client {
  width: 33.33%;
  position: relative;
  text-align: center;
}

.directional-list__col-year {
  width: 33.33%;
  position: relative;
  text-align: right;
}

.direcitonal-list__p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1;
}

.directional-list__border {
  z-index: 2;
  opacity: 0.3;
  background-color: #eee;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  /* Start collapsed from center */
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.directional-list__border.is--item {
  top: 0;
  bottom: auto;
}

/* Reveal animation - borders expand from center, staggered top to bottom */
.directional-list.is-revealed .directional-list__border {
  transform: scaleX(1);
}

/* Item borders reveal in order - top row first, then subsequent rows */
/* Using nth-of-type to correctly target items (nth-child would be off by 1 due to hover element) */
.directional-list.is-revealed
  .directional-list__item:nth-of-type(1)
  .directional-list__border {
  transition-delay: 0s;
}
.directional-list.is-revealed
  .directional-list__item:nth-of-type(2)
  .directional-list__border {
  transition-delay: 0.08s;
}
.directional-list.is-revealed
  .directional-list__item:nth-of-type(3)
  .directional-list__border {
  transition-delay: 0.16s;
}
.directional-list.is-revealed
  .directional-list__item:nth-of-type(4)
  .directional-list__border {
  transition-delay: 0.24s;
}
.directional-list.is-revealed
  .directional-list__item:nth-of-type(5)
  .directional-list__border {
  transition-delay: 0.32s;
}
.directional-list.is-revealed
  .directional-list__item:nth-of-type(6)
  .directional-list__border {
  transition-delay: 0.4s;
}

/* Bottom border of list reveals last */
.directional-list.is-revealed > .directional-list__border {
  transition-delay: 0.5s;
}

/* Services Directional Hover */
.directional-list__hover {
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-neutral-100);
  transform-origin: center;
  transition: transform 0.65s cubic-bezier(0.45, 0, 0.55, 1);
  transform: scaleY(0);
}

.directional-list__hover.active {
  transform: scaleY(1);
}

.directional-list__hover.smooth-transition {
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.directional-list__item.is-hovered {
  color: var(--color-neutral-900);
}

@media screen and (max-width: 1200px) {
  .directional-list__hover {
    display: none;
  }

  /* Ensure borders are visible on mobile without JS reveal animation */
  .directional-list__border {
    transform: scaleX(1);
  }
}

/* Phone only: show single-word text */
@media screen and (max-width: 479px) {
  /* Show mobile-only text, hide desktop-only text */
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline !important;
  }

  /* Ensure proper column alignment on mobile */
  .directional-list__info,
  .directional-list__item {
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .directional-list__col-award,
  .directional-list__col-client,
  .directional-list__col-year {
    display: flex;
    flex: 1;
    width: 33.33%;
  }
  .directional-list__col-award {
    justify-content: flex-start;
    text-align: left;
  }
  .directional-list__col-client {
    justify-content: center;
    text-align: center;
  }
  .directional-list__col-year {
    justify-content: flex-end;
    text-align: right;
  }
}

/* Desktop: show desktop-only, hide mobile-only */
.mobile-only {
  display: none;
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————BLOG—————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.preview-container {
  width: 100%;
  max-width: 76em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5em;
  padding-left: 1em;
  padding-right: 1em;
}

.preview-collection {
  width: 100%;
  margin-top: 0.5em;
}

.preview-item__row {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.preview-item__col {
  flex: 1;
}

.preview-item__col.is--large {
  max-width: 45%;
}

.preview-item__col.is--medium {
  max-width: 25%;
}

.preview-item__col.is--small {
  max-width: 15%;
}

.preview-container__label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 0.75em;
}

.preview-list {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.preview-item {
  width: 100%;
  transition: opacity 0.2s;
}

.preview-item__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  font-weight: 400;
  line-height: 1;
}

.preview-item__text {
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.2;
}

.preview-item__visual {
  aspect-ratio: 1 / 1.25;
  width: 20em;
  display: none;
  position: absolute;
  overflow: hidden;
}

.preview-follower [data-follower-visual] {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.preview-item__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.preview-item__visual-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.preview-follower {
  z-index: 100;
  aspect-ratio: 1 / 1.25;
  pointer-events: none;
  border-radius: 0.75em;
  justify-content: center;
  align-items: center;
  width: 20em;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.preview-follower__label {
  z-index: 2;
  position: absolute;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

.preview-follower__label-span {
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  padding: 0.75em 1.25em;
  font-size: 1em;
}

.preview-follower__inner {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

@media screen and (min-width: 992px) {
  .preview-item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (hover: hover) and (min-width: 992px) {
  body:has([data-follower-collection]:hover) .preview-follower__inner {
    opacity: 1;
    transform: scale(1);
  }
  body:has([data-follower-collection]:hover) .preview-follower__label {
    opacity: 1;
    transform: translate(0px, 0%);
  }
  body:has(.preview-item:hover) .preview-item:not(:hover) {
    opacity: 0.5;
  }
}

@media screen and (max-width: 991px) {
  .preview-item__row {
    grid-row-gap: 0.5em;
  }

  .preview-item__row.tablet--hide {
    display: none;
  }

  .preview-item__col.is--large {
    flex: none;
    order: -1;
    width: 100%;
    max-width: none;
  }

  .preview-item__col.is--medium {
    order: -1;
    max-width: 80%;
  }

  .preview-item__col.is--small {
    text-align: right;
    max-width: 20%;
  }

  .preview-item__col.is--small.tablet--hide {
    display: none;
  }

  .preview-list {
    grid-column-gap: 1em;
    grid-row-gap: 4em;
    flex-flow: wrap;
    justify-content: center;
  }

  .preview-item {
    width: calc(50% - 0.5em);
    flex-grow: 0;
    flex-shrink: 0;
  }

  .preview-item__heading {
    font-size: 2em;
  }

  .preview-item__visual {
    border-radius: 0.75em;
    order: -1;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 1em;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .preview-item__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .preview-item__inner {
    border: 1px #000;
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .preview-follower {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .preview-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .preview-list {
    grid-row-gap: 3em;
  }

  .preview-item {
    width: 100%;
  }
}
/*———————————————————————————————————————————————————————————————————————————*/
/*————————————————————————————CASES——————————————————————————————————————————*/
/*———————————————————————————————————————————————————————————————————————————*/
.background-zoom {
  color: #f4f4f4;
  background: linear-gradient(180deg, #000000 0%, #104285 50%, #0d3bbb 100%);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(50dvh - 15em);
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  overflow: clip;
}

.background-zoom__h {
  text-align: center;
  letter-spacing: -0.04em;
  max-width: 7em;
  margin-top: 0;
  margin-bottom: -0.375em;
  font-family: Haffer XH, Arial, sans-serif;
  font-size: 7.5em;
  font-weight: 400;
  line-height: 0.95;
}

.background-zoom__h.is--margin-top {
  margin-top: 33dvh;
}

.background-zoom__h1-span {
  color: #000000;
  font-size: 0.85em;
}

.background-zoom__start {
  aspect-ratio: 1;
  border-radius: 16em;
  width: 16em;
  position: relative;
}

.background-zoom__content {
  border-radius: inherit;
  will-change: width, height, transform;
  background-color: #aba994;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  overflow: hidden;
}

.background-zoom__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.background-zoom__pod {
  width: 7.5em;
  height: auto;
  position: absolute;
  top: 5em;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
}

.background-zoom__dark {
  opacity: 0;
  background-color: #0d0f0d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.background-zoom__end {
  width: 100vw;
  height: 100dvh;
}

.background-zoom__text {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-bottom: calc(50dvh - 12em);
  display: flex;
  position: relative;
}

.background-zoom-after {
  color: #353d35;
  font-size: var(--size-font);
  background-color: #000000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: relative;
}

.background-zoom-after__pod {
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  width: 100%;
  font-size: 1.25em;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  bottom: 1.25em;
}

@media screen and (max-width: 767px) {
  .background-zoom__h {
    font-size: 3.75em;
  }
}

/* Case F-Grid Section - reduce top spacing */
.section:has(.case-f-grid) .c-pad-top {
  padding-top: 3em;
}

/* Case F-Grid Text Colors */
.case-f-grid .h-small {
  color: #fff;
}
.case-f-grid .p-small {
  color: #fff;
}
.case-f-grid .p-small.opacity--60 {
  color: rgba(255, 255, 255, 0.6);
}

/* Case F-Grid Layout - Desktop - 4 column grid */
.case-f-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Top row: 50/50 (each spans 2 columns) */
.case-f-grid .f-grid-card.components {
  grid-column: span 2;
}
.case-f-grid .f-grid-card.video {
  grid-column: span 2;
}

/* Bottom row: 45/55 ratio using custom widths */
.case-f-grid .f-grid-card.basics {
  grid-column: 1 / 3;
  max-width: 90%;
}
.case-f-grid .f-grid-card.snippets {
  grid-column: 3 / 5;
  max-width: 110%;
  margin-left: -10%;
}

/* Case Visual Base */
.case-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1em;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 1.5em;
  height: 16rem;
  min-height: 16rem;
  max-height: 16rem;
}

/* ========== ANIMATION 1: Speed Particles ========== */
.case-visual--speed {
  overflow: hidden;
}

.speed-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.speed-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  border-radius: 2px;
  animation: speedLine 1.5s ease-out infinite;
}

.speed-line:nth-child(1) {
  top: 20%;
  width: 40%;
  left: -40%;
  animation-delay: 0s;
}
.speed-line:nth-child(2) {
  top: 35%;
  width: 60%;
  left: -60%;
  animation-delay: 0.2s;
}
.speed-line:nth-child(3) {
  top: 50%;
  width: 80%;
  left: -80%;
  animation-delay: 0.1s;
}
.speed-line:nth-child(4) {
  top: 65%;
  width: 50%;
  left: -50%;
  animation-delay: 0.3s;
}
.speed-line:nth-child(5) {
  top: 80%;
  width: 70%;
  left: -70%;
  animation-delay: 0.15s;
}
.speed-line:nth-child(6) {
  top: 45%;
  width: 30%;
  left: -30%;
  animation-delay: 0.25s;
}

@keyframes speedLine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(250%);
    opacity: 0;
  }
}

.speed-clock {
  position: relative;
  width: 4rem;
  height: 4rem;
  z-index: 2;
}

.clock-face {
  width: 100%;
  height: 100%;
  border: 0.2rem solid #22d3ee;
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(34, 211, 238, 0.6),
    inset 0 0 1rem rgba(34, 211, 238, 0.2);
  position: relative;
}

.clock-face::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #22d3ee;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0.5rem rgba(34, 211, 238, 0.8);
}

.clock-hand {
  position: absolute;
  width: 0.125rem;
  height: 1.25rem;
  background: #22d3ee;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  animation: clockSpin 0.6s linear infinite;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.75rem rgba(34, 211, 238, 1);
}

@keyframes clockSpin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* ========== ANIMATION 2: SVG Graph ========== */
.case-visual--graph {
  padding: 1rem;
}

.graph-svg {
  width: 100%;
  height: 80%;
  position: relative;
  z-index: 1;
}

.graph-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2s ease-out forwards, glowPulse 2s ease-in-out infinite 2s;
}

.graph-area {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0.5rem rgba(34, 197, 94, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 1rem rgba(22, 163, 74, 0.8));
  }
}

/* #1 Rank Badge for SEO card */
.rank-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #22c55e;
  text-shadow: 0 0 1.5rem rgba(34, 197, 94, 0.8);
  animation: badgeAppear 1s ease-out 1.5s forwards,
    badgePulse 2s ease-in-out infinite 2.5s;
  opacity: 0;
}

@keyframes badgeAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    text-shadow: 0 0 1.5rem rgba(34, 197, 94, 0.8);
  }
  50% {
    text-shadow: 0 0 2.5rem rgba(34, 197, 94, 1);
  }
}

/* ========== ANIMATION 4: Rising Arrows for Views ========== */
.case-visual--views {
  flex-direction: column;
  position: relative;
}

.rising-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3rem;
  overflow: hidden;
}

.arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.875rem solid rgba(236, 72, 153, 0.8);
  animation: arrowRise 3s ease-out infinite;
  opacity: 0;
}

/* Spread arrows - 10 arrows with varied colors and delays */
.arrow:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}
.arrow:nth-child(2) {
  left: 15%;
  animation-delay: 0.3s;
  border-bottom-color: rgba(139, 92, 246, 0.8);
}
.arrow:nth-child(3) {
  left: 25%;
  animation-delay: 0.6s;
  border-bottom-color: rgba(34, 197, 94, 0.8);
}
.arrow:nth-child(4) {
  left: 35%;
  animation-delay: 0.9s;
  border-bottom-color: rgba(245, 158, 11, 0.8);
}
.arrow:nth-child(5) {
  left: 45%;
  animation-delay: 0.15s;
  border-bottom-color: rgba(59, 130, 246, 0.8);
}
.arrow:nth-child(6) {
  left: 55%;
  animation-delay: 0.45s;
}
.arrow:nth-child(7) {
  left: 65%;
  animation-delay: 0.75s;
  border-bottom-color: rgba(139, 92, 246, 0.8);
}
.arrow:nth-child(8) {
  left: 75%;
  animation-delay: 1.05s;
  border-bottom-color: rgba(34, 197, 94, 0.8);
}
.arrow:nth-child(9) {
  left: 85%;
  animation-delay: 0.2s;
  border-bottom-color: rgba(245, 158, 11, 0.8);
}
.arrow:nth-child(10) {
  left: 95%;
  animation-delay: 0.5s;
  border-bottom-color: rgba(59, 130, 246, 0.8);
}

@keyframes arrowRise {
  0% {
    bottom: 0;
    opacity: 0;
  }
  15% {
    opacity: 0.5;
  }
  85% {
    opacity: 0.3;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}

/* ========== ANIMATION 3: Network Nodes ========== */
.case-visual--network {
  position: relative;
}

.network-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.network-line {
  stroke: rgba(245, 158, 11, 0.3);
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lineDraw 2s ease-out forwards, linePulse 3s ease-in-out infinite 2s;
}

.network-line:nth-child(1) {
  animation-delay: 0s;
}
.network-line:nth-child(2) {
  animation-delay: 0.2s;
}
.network-line:nth-child(3) {
  animation-delay: 0.4s;
}
.network-line:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes lineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes linePulse {
  0%,
  100% {
    stroke: rgba(245, 158, 11, 0.3);
  }
  50% {
    stroke: rgba(251, 191, 36, 0.7);
  }
}

.network-node {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: radial-gradient(circle, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  box-shadow: 0 0 1rem rgba(245, 158, 11, 0.6);
  animation: nodeAppear 0.5s ease-out forwards,
    nodePulse 2s ease-in-out infinite 0.5s;
  opacity: 0;
  transform: scale(0);
}

.network-node--center {
  width: 1.5rem;
  height: 1.5rem;
  top: calc(50% - 0.75rem);
  left: calc(50% - 0.75rem);
  animation-delay: 0s;
  z-index: 2;
}

.network-node--1 {
  top: 20%;
  left: 15%;
  animation-delay: 0.3s;
}
.network-node--2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}
.network-node--3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 0.7s;
}
.network-node--4 {
  bottom: 20%;
  right: 15%;
  animation-delay: 0.9s;
}

@keyframes nodeAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 1rem rgba(245, 158, 11, 0.6);
  }
  50% {
    box-shadow: 0 0 2rem rgba(251, 191, 36, 1);
  }
}
/* Removed old social icon CSS - now using rising arrows */

.social-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.counter-num {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.counter-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== Case F-Grid Responsive ========== */

/* iPad Pro 1024px - animation scaling */
@media screen and (max-width: 1024px) {
  .case-f-grid .f-grid-card {
    height: auto;
  }

  .case-visual {
    height: 12rem;
    min-height: 12rem;
    max-height: 12rem;
  }

  .speed-clock {
    width: 3rem;
    height: 3rem;
  }
  .clock-hand {
    height: 1rem;
  }
  .rank-badge {
    font-size: 1.5rem;
  }
  .network-node {
    width: 0.875rem;
    height: 0.875rem;
  }
  .network-node--center {
    width: 1.25rem;
    height: 1.25rem;
    top: calc(50% - 0.625rem);
    left: calc(50% - 0.625rem);
  }
  .arrow {
    border-left-width: 0.4rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.7rem;
  }
  .counter-num {
    font-size: 1.5rem;
  }
}

/* Regular iPad 768px */
@media screen and (max-width: 768px) {
  .case-f-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .case-f-grid .f-grid-card,
  .case-f-grid .f-grid-card.components,
  .case-f-grid .f-grid-card.video,
  .case-f-grid .f-grid-card.basics,
  .case-f-grid .f-grid-card.snippets {
    display: flex !important;
    grid-column: span 1 !important;
    height: auto;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .case-visual {
    height: 10rem;
    min-height: 10rem;
    max-height: 10rem;
    margin-bottom: 1rem;
  }

  .speed-clock {
    width: 2.5rem;
    height: 2.5rem;
  }
  .clock-hand {
    height: 0.875rem;
  }
  .rank-badge {
    font-size: 1.25rem;
  }
  .network-node {
    width: 0.75rem;
    height: 0.75rem;
  }
  .network-node--center {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
  }
  .arrow {
    border-left-width: 0.35rem;
    border-right-width: 0.35rem;
    border-bottom-width: 0.6rem;
  }
  .counter-num {
    font-size: 1.25rem;
  }
}

/* Mobile 478px */
@media screen and (max-width: 478px) {
  html,
  body {
    /* clip (not hidden): hidden turns body into a scroll container, which
       silently disables every position:sticky element on phones */
    overflow-x: clip !important;
    max-width: 100vw !important;
  }

  .case-f-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 1rem !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .case-f-grid .f-grid-card,
  .case-f-grid .f-grid-card.components,
  .case-f-grid .f-grid-card.video,
  .case-f-grid .f-grid-card.basics,
  .case-f-grid .f-grid-card.snippets {
    display: flex !important;
    grid-column: span 1 !important;
    height: auto;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .case-visual {
    height: 8rem;
    min-height: 8rem;
    max-height: 8rem;
    margin-bottom: 1rem;
  }

  .speed-clock {
    width: 2rem;
    height: 2rem;
  }
  .clock-hand {
    height: 0.65rem;
  }
  .rank-badge {
    font-size: 1rem;
  }
  .network-node {
    width: 0.5rem;
    height: 0.5rem;
  }
  .network-node--center {
    width: 0.75rem;
    height: 0.75rem;
    top: calc(50% - 0.375rem);
    left: calc(50% - 0.375rem);
  }
  .arrow {
    border-left-width: 0.3rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.5rem;
  }
  .counter-num {
    font-size: 1rem;
  }
}

/* Masonry Grid */
.masonry-wrap {
  padding-top: 4em;
  padding-bottom: 4em;
  padding-left: 2em;
  padding-right: 2em;
}

.masonry-list {
  grid-column-gap: var(--masonry-gap);
  grid-row-gap: var(--masonry-gap);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.masonry-item {
  width: calc(
    ((100% - 1px) - (var(--masonry-col) - 1) * var(--masonry-gap)) /
      var(--masonry-col)
  );
}

.masonry-item__visual {
  border-radius: 1.25em;
  width: 100%;
  overflow: hidden;
}

.masonry-item__visual.is--square {
  aspect-ratio: 1;
}

.masonry-item__visual.is--wide {
  aspect-ratio: 3 / 2;
}

.masonry-item__visual.is--tall {
  aspect-ratio: 2 / 3;
}

.masonry-item__visual-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[data-masonry-list] {
  --masonry-col: 4;
  --masonry-gap: 1em;
}

@media screen and (max-width: 991px) {
  [data-masonry-list] {
    --masonry-col: 3;
    --masonry-gap: 1em;
  }
}

@media screen and (max-width: 767px) {
  [data-masonry-list] {
    --masonry-col: 2;
    --masonry-gap: 0.5em;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— FOOTER ——————————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.footer.section {
  position: relative;
}

.footer-cta {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  padding-top: 4.5em;
  padding-bottom: 4.5em;
  display: flex;
  position: relative;
}

.proof-wrap {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.proof-img {
  z-index: 1;
  border: 2px solid #131313;
  border-radius: 100em;
  width: 1.5em;
  height: 1.5em;
  margin-right: -0.25em;
  position: relative;
}

.footer-main {
  padding-top: 3em;
  padding-bottom: 2em;
}

.footer-top-row {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
  display: flex;
}

.footer-content-row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 32.5em;
  display: flex;
}

.footer-link-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  display: flex;
}

.footer-link-col.full {
  grid-column: span 4;
}

.footer-form-col {
  width: 100%;
  max-width: 35em;
}

.footer-form {
  margin-bottom: 0;
  position: relative;
}

.footer-form-grid {
  gap: var(--gap-reg);
  grid-row-gap: 0px;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  display: grid;
}

.footer-form-field {
  color: #efeeec;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #efeeec80;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0 0 0.5em;
  font-size: 1em;
  transition: all 0.2s;
}

.footer-form-field:hover {
  color: #efeeeca6;
  border-bottom-color: #efeeeca6;
}

.footer-form-field:focus {
  border-bottom-color: #efeeec;
}

/* Footer form: error underline */
[data-validate].is--error .footer-form-field {
  border-bottom-color: var(--color-error);
}

.footer-form-field::placeholder {
  color: #efeeec80;
}

.footer-form-button {
  width: 100%;
}

.footer-logo {
  opacity: 0.08;
  display: flex;
}

.footer-bottom-row {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: -1rem;
  display: flex;
  position: relative;
}

.footer-bottom-col {
  grid-column-gap: 13.9em;
  grid-row-gap: 13.9em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-li {
  list-style: none;
  display: flex;
}

.footer-field-group {
  grid-column-gap: 0.75em;
  grid-row-gap: 0em;
  flex-flow: column;
  grid-column: span 2;
  align-self: end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

/* Expertise Section */
.expertise {
  padding-top: 0rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .expertise {
    padding-top: 0rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .expertise {
    padding-top: 0rem;
  }
}

@media (min-width: 1200px) {
  .expertise {
    padding-top: 0rem;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— CONTACT FORM —————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.contact-form-container {
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 3rem 4rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* Hide service numbers for cleaner design */
.service-number {
  display: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Form Steps */
.form-step {
  display: none;
  flex-direction: column;
  gap: 2rem;
  animation: fadeSlideIn 0.4s ease;
}

.form-step.is-active {
  display: flex;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.25s var(--cubic-default);
}

.service-option:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.service-option:has(input:checked) {
  background: #fff;
  border-color: #fff;
}

.service-option:has(input:checked) .service-number {
  background: #131313;
  color: #fff;
}

.service-option:has(input:checked) .service-text {
  color: #131313;
  font-weight: 600;
}

.service-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s var(--cubic-default);
}

/* Investment Grid */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.investment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.25s var(--cubic-default);
}

.investment-option:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.investment-option:has(input:checked) {
  background: #fff;
  border-color: #fff;
}

.investment-option:has(input:checked) .investment-text {
  color: #131313;
  font-weight: 600;
}

.investment-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s var(--cubic-default);
}

/* Form Grid (2x2) */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #fff;
}

/* Form Buttons */
.form-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s var(--cubic-default);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s var(--cubic-default);
}

.form-btn span,
.form-btn svg {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--cubic-default);
}

.form-btn:hover {
  border-color: #fff;
}

.form-btn:hover::before {
  transform: translateY(0);
}

.form-btn:hover span,
.form-btn:hover svg {
  color: #131313;
}

.form-submit-wrap {
  position: relative;
}

/* File Upload */
.file-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 2.5rem 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s var(--cubic-default);
  position: relative;
}

.file-upload-zone:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.file-upload-icon {
  color: rgba(255, 255, 255, 0.5);
  width: 2rem;
  height: 2rem;
}

.file-upload-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.file-upload-preview.is-active {
  display: flex;
}

.file-upload-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.file-upload-remove {
  background: none;
  border: none;
  color: #ff4c24;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

/* Form Labels Override for Dark Container */
.contact-form-container .form-label {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 100%;
}

.contact-form-container .form-field-group {
  width: 100%;
  align-items: center;
}

.contact-form-container .form-required {
  color: #ff4c24;
}

.contact-form-container .form-inactive-text {
  color: rgba(255, 255, 255, 0.4);
}

/* Contact Form Text Standardization */
.contact-form-container .service-text,
.contact-form-container .investment-text,
.contact-form-container .form-input {
  font-size: 1.11rem !important;
  font-weight: 500 !important;
}

.contact-form-container .form-input::placeholder {
  font-size: 1.11rem !important;
  color: rgba(239, 238, 236, 0.5) !important;
}

/* Tablet (iPad Pro) */
@media screen and (max-width: 1024px) {
  .contact-form-container .form-label {
    font-size: 1.1rem !important;
  }
}

@media screen and (max-width: 479px) {
  .contact-form-container .form-inactive-text {
    display: block;
    text-align: center;
  }
}

/* Tablet */
@media screen and (max-width: 991px) {
  .contact-form-container {
    padding: 2rem;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .contact-form-container {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .service-grid,
  .investment-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— CODE EMBED ————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
/* HTML */
/* Comments */
code.language-htmlbars
  :is([style="color:#d4d0ab"], [style="color: rgb(212, 208, 171);"]) {
  color: var(--color-code-gray) !important;
}

/* Tags: [<div>, <span>] Purple (or Blue) - indicates structure */
code.language-htmlbars
  :is([style="color:#ffa07a"], [style="color: rgb(255, 160, 122);"]) {
  color: var(--color-code-purple) !important;
}

/* Attributes: [class, src, data-attr] Orange (or Light Blue) */
code.language-htmlbars
  .hljs-attr:is([style="color:#ffa07a"], [style="color: rgb(255, 160, 122);"]) {
  color: var(--color-code-orange) !important;
}

/* Attributes Values: [class name & id's] Blue (or Green) - string values stand out */
code.language-htmlbars
  :is([style="color:#abe338"], [style="color: rgb(171, 227, 56);"]) {
  color: var(--color-code-blue) !important;
}

/* CSS */
/* Comments */
code.language-css
  :is([style="color:#d4d0ab"], [style="color: rgb(212, 208, 171);"]) {
  color: var(--color-code-gray) !important;
}

/* Selectors: [.dash, .h2] - Green */
code.language-css
  :is([style="color:#ffa07a"], [style="color: rgb(255, 160, 122);"]) {
  color: var(--color-code-orange) !important;
}

/* Properties: [width, z-index, min-height] Blue - consistent with HTML attributes */
code.language-css
  :is([style="color:#ffd700"], [style="color: rgb(255, 215, 0);"]) {
  color: var(--color-code-blue) !important;
}

/* Numbers or variables: [100%, 2, var, 0] Orange (stand out) */
code.language-css
  :is([style="color:#f5ab35"], [style="color: rgb(245, 171, 53);"]) {
  color: var(--color-code-purple) !important;
}

/* @Font Face */
code.language-css
  :is([style="color:#dcc6e0"], [style="color: rgb(220, 198, 224);"]) {
  color: var(--color-code-red) !important;
}

/* Values of URL */
code.language-css
  :is([style="color:#abe338"], [style="color: rgb(171, 227, 56);"]) {
  color: var(--color-code-green) !important;
}

/* Javascript */
/* Comments */
code.language-javascript
  :is([style="color:#d4d0ab"], [style="color: rgb(212, 208, 171);"]) {
  color: var(--color-code-gray) !important;
}

/* Keywords: [] indicates language constructs */
code.language-javascript
  :is([style="color:#f5ab35"], [style="color: rgb(245, 171, 53);"]) {
  color: var(--color-code-purple) !important;
}

/* Variables: [] general text visibility */
code.language-javascript
  :is([style="color:#dcc6e0"], [style="color: rgb(220, 198, 224);"]) {
  color: var(--color-code-blue) !important;
}

/* Variables: [] general text visibility */
code.language-javascript
  :is([style="color:#abe338"], [style="color: rgb(171, 227, 56);"]) {
  color: var(--color-code-orange) !important;
}

/* Attributes: [] */
code.language-javascript .hljs-attr {
  color: var(--color-code-purple) !important;
}

/* Function: [] */
code.language-javascript .hljs-function {
  color: var(--color-code-blue) !important;
}

/* Function: [] */
code.language-javascript
  .hljs-function:is(
    [style="color:#f5ab35"],
    [style="color: rgb(245, 171, 53);"]
  ) {
  color: var(--color-code-green) !important;
}

/* Function: [] */
code.language-javascript
  .hljs-function:is(
    [style="color:#00e0e0"],
    [style="color: rgb(0, 224, 224);"]
  ) {
  color: inherit !important;
}

/* Function: [] */
code.language-javascript
  .hljs-subst:is([style="color:#abe338"], [style="color: rgb(171, 227, 56);"]) {
  color: var(--color-code-red) !important;
}

/* <script> [] */
code.language-javascript
  :is([style="color:#ffa07a"], [style="color: rgb(255, 160, 122);"]) {
  color: var(--color-code-blue) !important;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— RICH TEXT —————————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */
.rich-text p {
  font-size: 1em;
  line-height: 1.4;
}

.rich-text h2 {
  margin-bottom: 0.5em;
  font-size: 3em;
  font-weight: 500;
  line-height: 1;
}

.rich-text h3 {
  margin-bottom: 0.75em;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1;
}

.rich-text h4 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.33em;
  font-weight: 500;
  line-height: 1;
}

.rich-text h5,
.rich-text h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.rich-text ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 1.25em;
  list-style-type: disc;
}

.rich-text li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.rich-text a {
  position: relative;
}

.bg__unicorn-dark-overlay {
  pointer-events: none;
  background-image: linear-gradient(0deg, #000, #0000);
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Top dark overlay - gradient from top going down */
.bg__unicorn-dark-overlay--top {
  top: 0;
  bottom: auto;
  background-image: linear-gradient(180deg, #000, #0000);
  height: 30%;
}

.dont-delete-classes,
.dash-code-styles,
.f-grid-icon__styles {
  display: none;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— RESPONSIVENESS ———————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

@media screen and (max-width: 991px) {
  .h-display {
    font-size: 5em;
  }

  .button.is--dark {
    color: var(--color-neutral-200);
  }

  .flow-side {
    width: 100%;
  }

  .flow-visual {
    display: none;
  }

  .flow-side__center {
    justify-content: center;
    align-items: center;
  }

  .md--hide {
    display: none;
  }

  .home-hero-vid {
    position: relative;
    transform: none;
  }

  .home-hero__inner {
    grid-row-gap: calc(25vh - 10em);
  }

  .db-content {
    left: 22em;
  }

  .db-side {
    width: 16em;
  }

  .divider.is--dark {
    color: var(--color-neutral-200);
  }

  .trusted-nav-item {
    width: 3em;
    height: 3em;
  }

  .f-grid__vid-wrap {
    width: 21em;
  }

  .f-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .f-grid-card {
    grid-column: span 3;
  }

  .f-grid-card.basics {
    grid-column: 5 / 7;
    grid-row-start: 1;
  }

  .f-grid-card.video,
  .f-grid-card.components {
    grid-column: span 4;
  }

  .f-grid-card.icons {
    grid-column: 1 / 3;
    grid-row-start: 2;
  }

  .f-grid-card.full.end {
    grid-column: span 2;
  }

  .f-grid-card.snippets {
    grid-column: span 4;
  }

  .tab-container {
    grid-column-gap: calc(var(--gap-xxlarge) * 2);
    grid-row-gap: calc(var(--gap-xxlarge) * 2);
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 0;
    padding-left: 2em;
  }

  .tab-content-wrap {
    min-width: auto;
    max-width: 40em;
    min-height: 10em;
  }

  .tab-visual-wrap {
    height: 39.6em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .layout-col.md--full {
    width: 100%;
  }

  .tab-visual-item {
    overflow: hidden;
  }

  .container-large.is-half {
    max-width: none;
  }

  .tab-container-top {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .price-card {
    aspect-ratio: 1 / 1.25;
    padding: 3em 2em;
  }

  .price-card-button {
    bottom: 2em;
    left: 2em;
    right: 2em;
  }

  .footer-content-row {
    max-width: 26em;
  }

  .footer-form-col {
    max-width: 31em;
  }

  .footer-bottom-col {
    grid-column-gap: 7.25em;
    grid-row-gap: 7.25em;
  }

  /* Slack search UI removed */
}

/* Mobile: tighten hero bottom spacing */
@media (max-width: 767px) {
  .home-hero {
    /* had padding-bottom: var(--container-padding) */
    padding-bottom: 0em; /* tweak this number to taste */
  }
}

@media screen and (max-width: 767px) {
  .nav-logo-row {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    width: auto;
  }

  .h-display {
    font-size: 4em;
  }

  .button.small {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }

  .sidebar {
    left: calc(var(--container-padding) / 2);
    width: auto;
  }

  .sidebar-title {
    padding-right: 0;
  }

  .video-player {
    width: 90vw;
  }

  .video-player__wrap {
    padding: 0.5em;
  }

  .sm--hide {
    display: none;
  }

  .form-group {
    width: 100%;
  }

  .form-split {
    flex-flow: column;
  }

  .dash-side {
    background-color: var(--color-light);
    flex-flow: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .dash-side__bottom {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .dash-side__row-logo {
    display: none;
  }

  .dash-type-btn__inner,
  .dash-type-btn__inner.is--soon,
  .dash-cat-dropdown__collection,
  .dash-user-btn__inner {
    width: 100%;
  }

  .dash-main-top__title {
    font-size: 1.3125em;
  }

  .dash-search {
    justify-content: center;
    align-items: flex-start;
  }

  .dash-notifcations {
    justify-content: center;
  }

  .flow-main {
    width: 100vw;
  }

  .flow-content {
    padding: 0;
  }

  .dash-mobile-nav {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(var(--color-rgb-dark), 0.12);
    width: 100%;
    margin-bottom: 0.25em;
    padding: 1.25em 0 1.25em 0.125em;
    display: flex;
  }

  .dash-mobile-nav__logo {
    width: 7em;
    font-size: 1.0625em;
  }

  .dash-mobile-nav__hamburger {
    width: 3em;
    padding-left: 0;
    padding-right: 0;
  }

  .dash-side__mobile-nav {
    padding-bottom: 0.75em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .nav-menu {
    z-index: 3;
    color: #131313;
    background-color: #efeeec;
    border-radius: 0.25em;
    width: calc(100vw - 1em);
    max-height: calc(100dvh - 1em);
    padding: 8em 2em 2em;
    display: none;
    position: fixed;
    top: -0.75em;
    left: 50%;
    right: 0;
    overflow: scroll;
  }

  .nav-menu-eyebrow {
    display: block;
    position: absolute;
    top: 1.6em;
    left: 2em;
  }

  .nav-menu__links {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .link.nav-link {
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    display: flex;
  }

  .nav-link-text {
    font-size: 1.5em;
    text-shadow: none !important;
  }

  .nav-link-arrow {
    width: 0.75em;
    height: 1em;
    display: flex;
  }

  .nav-menu-divider {
    opacity: 0.25;
    background-image: linear-gradient(
      90deg,
      #13131300,
      #131313 25% 75%,
      #13131300
    );
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .nav-menu-divider.bottom {
    inset: auto 0 0;
  }

  .nav-menu-buttons {
    grid-column-gap: 0.75em;
    grid-row-gap: 0.75em;
    flex-flow: column;
    margin-top: 2em;
    display: flex;
  }

  .nav-button-row {
    z-index: 4;
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    position: relative;
  }

  .login-wrap {
    margin-right: 1em;
  }

  .menu-button {
    color: #131313;
    padding: 0.75em;
    display: flex;
  }

  .hero-col-title {
    margin-top: var(--gap-xxlarge);
    order: -1;
  }

  .home-hero {
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    min-height: auto;
    padding-top: 8.75em;
  }

  .home-col-cta {
    order: -1;
    padding-left: 0;
  }

  .home-hero-vid {
    padding-top: var(--gap-small);
    padding-right: var(--gap-small);
    padding-left: var(--gap-small);
    transform: translate(0, 20%);
  }

  .hero-col-info {
    margin-top: 3em;
  }

  .home-hero__inner {
    grid-row-gap: calc(var(--gap-xxlarge) * 2);
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .user-dots {
    display: none;
  }

  .db-content__card {
    width: calc((100% - 2 * var(--gap-tiny)) / 2);
  }

  .db-wrapper {
    height: 40.5em;
  }

  .db-content {
    left: 6.25em;
    right: 0.75em;
    top: calc(var(--gap-large) * 3.25);
  }

  .db-side__logo {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    width: auto;
    margin-bottom: 0;
    padding-top: 0;
  }

  .db-search {
    width: auto;
    font-size: 0.8em;
    top: 0.75em;
    left: 6.25em;
    right: 0.75em;
  }

  .h-medium {
    font-size: 2.8em;
  }

  .db-side {
    width: 4em;
  }

  .db-side__top {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .f-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .f-grid-card.basics {
    grid-column: auto;
    grid-row-start: auto;
  }

  .f-grid-card.video,
  .f-grid-card.components {
    grid-column: span 1;
  }

  .f-grid-card.icons {
    grid-column: auto;
    grid-row-start: auto;
  }

  .f-grid-card.full.end,
  .f-grid-card.snippets {
    grid-column: span 1;
  }

  .comps-row {
    transform: rotateX(45deg) rotateY(20deg) rotateZ(-25deg)
      translate3d(-6em, 8em, 8em);
  }

  .f-grid__basics {
    order: 1;
  }

  .about-divider-img {
    width: 2.5em;
    height: 2.5em;
  }

  .h-large {
    font-size: 4em;
  }

  .layout {
    grid-row-gap: 2em;
  }

  .filter-button {
    padding: 0.75em 1.25em;
  }

  .filter-bar {
    padding: 0.375em;
    gap: 1.15em;
  }

  .tab-container {
    padding-right: 2em;
  }

  .tab-visual-wrap {
    height: 20em;
  }

  .layout-col {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .layout-col.sm--sticky {
    z-index: 2;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin-left: calc(-1 * var(--container-padding));
    flex: none;
    width: 100vw;
    position: sticky;
    top: 0;
  }

  .tab-visual-item {
    border-radius: 0.25em;
  }

  .price-card {
    aspect-ratio: 1 / 1.5;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .price-card-button {
    bottom: 1.25em;
    left: 1.25em;
    right: 1.25em;
  }

  .price-card-tag {
    top: 1.25em;
  }

  .price-card__overlay {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .price-bottom {
    padding-bottom: 0;
  }

  .u--abs.bottom {
    inset: auto 0 0;
  }

  .footer-main {
    flex-flow: column;
    display: flex;
  }

  .footer-top-row {
    grid-column-gap: calc(var(--gap-xxlarge) * 1.5);
    grid-row-gap: calc(var(--gap-xxlarge) * 1.5);
    margin-bottom: calc(var(--gap-xxlarge) * 2);
    flex-flow: column;
  }

  .footer-content-row {
    grid-row-gap: 2em;
    flex-flow: wrap;
    max-width: none;
  }

  .footer-link-col {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 50%;
  }

  .footer-link-col.sm--show {
    display: flex;
  }

  .footer-link-col.full {
    width: 100%;
  }

  .footer-form-col {
    order: -1;
    max-width: none;
  }

  .footer-form-grid {
    grid-row-gap: var(--gap-reg);
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-form-field {
    grid-column: span 1;
  }

  .footer-form-button {
    width: 100%;
    margin-top: 1.5em;
  }

  .footer-logo {
    order: 1;
    width: 34em;
    margin-top: -7.5em;
  }

  .footer-bottom-row {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    margin-top: 0;
  }

  .footer-bottom-col {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    order: 1;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    order: 1;
  }

  .faq-left-sticky {
    position: relative;
    top: auto;
  }

  /* Slack search UI removed */

  .vimeo-player__btn {
    width: 4em;
    height: 4em;
  }

  .rich-text {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .trusted-nav__list {
    flex-flow: wrap;
  }

  /* Slack notifications removed */

  .f-grid-basics__item {
    width: 25em;
  }

  .footer-field-group {
    grid-column: span 1;
  }

  .layout-sold-out {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .nav-logo-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .button.xs--full {
    width: 100%;
  }

  .p-med {
    font-size: 1em;
  }

  .sidebar {
    top: calc(var(--container-padding) * 4);
  }

  .form-group {
    margin-bottom: 0;
    padding-bottom: 2em;
  }

  .form-notification-p {
    font-size: 1em;
  }

  .login-wrap {
    margin-right: 0.75em;
  }

  .p-large {
    font-size: 1.25em;
  }

  .rotate-card {
    width: 8em;
  }

  .hero-col-title {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .home-hero-vid {
    width: 100%;
    transform: none;
  }

  .hero-col-info {
    display: none;
  }

  .home-hero__inner {
    grid-row-gap: calc(var(--gap-xxlarge) * 2);
  }

  .db-content__card {
    width: 100%;
  }

  .db-wrapper {
    height: 46.5em;
  }

  .h-medium {
    font-size: 3em;
  }

  .comps-row {
    transform: rotateX(45deg) rotateY(20deg) rotateZ(-25deg)
      translate3d(-6em, 4em, 8em);
  }

  .h-large {
    font-size: 3.5em;
  }

  .about-button-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    width: 100%;
    margin-top: 3em;
  }

  .moon-wrap.faq-page {
    height: 50em;
    top: 0;
  }

  .layout.c-pad-top {
    padding-top: 10em;
  }

  .filter-button {
    white-space: nowrap;
    padding: 1em 0.75em;
  }

  .tab-container {
    grid-column-gap: calc(var(--gap-xxlarge) * 1.25);
    grid-row-gap: calc(var(--gap-xxlarge) * 1.25);
  }

  .tab-content-item {
    grid-column-gap: var(--gap-tiny);
    grid-row-gap: var(--gap-tiny);
  }

  .tab-content-wrap {
    min-height: 14em;
  }

  .tab-visual-wrap {
    height: 14.25em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .layout-col.sm--sticky {
    position: sticky;
    padding-bottom: 2em;
  }

  .layout-col.sm--sticky::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#000, #000000d9 85%, #0000);
    opacity: var(--sticky-bg-opacity, 0);
    z-index: -1;
    pointer-events: none;
  }

  .tab-visual-item {
    left: 1em;
    right: 1em;
  }

  .price-card {
    padding-top: 1em;
  }

  .footer-content-row {
    grid-row-gap: 2em;
    flex-flow: wrap;
  }

  .footer-link-col {
    width: 50%;
  }

  .tabs-vid-wrap {
    padding: 0;
  }

  /* Slack search UI removed */

  .rich-text h3 {
    font-size: 2em;
  }

  .f-grid-basics__item {
    width: 22em;
  }

  .tabs-vid-wrap-inner {
    aspect-ratio: auto;
  }

  /* Mobile positioning for Mac controls */
  .tabs-vid-wrap-inner::after {
    top: 0.15em;
    left: 0.5em;
    width: 0.2em;
    height: 0.2em;
    box-shadow: 0.5em 0 0 #ffbd2e, 1em 0 0 #28ca42;
  }
}

#w-node-_2aacde1c-7b79-249f-2926-1a8bf2560dff-7bb365f8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_2aacde1c-7b79-249f-2926-1a8bf2560e03-7bb365f8 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RM Mono";
  src: url("../fonts/RMMono-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————— CONTACT FORM — simple modern —————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.contact-form-container {
  background: #161616;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2.75rem 3rem 3rem;
  text-align: left;
}

/* Step indicator: small, quiet, left aligned */
.form-step-eyebrow {
  text-align: left;
  width: 100%;
  font-size: 0.7rem;
  color: rgba(239, 238, 236, 0.4);
  margin-bottom: -0.75rem;
}

/* Labels: plain sentence case, left aligned */
.contact-form-container .form-label {
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  font-size: 1.05rem !important;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.contact-form-container .form-field-group {
  align-items: flex-start;
}

/* Chips: content-sized, small radius, wrap naturally */
.service-grid,
.investment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  grid-template-columns: none;
}

.service-option,
.investment-option {
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.service-option:hover,
.investment-option:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.service-option:has(input:checked),
.investment-option:has(input:checked) {
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.contact-form-container .service-text,
.contact-form-container .investment-text {
  font-size: 0.9rem !important;
  white-space: nowrap;
}

/* Inputs: subtle fill, monochrome focus */
.contact-form-container .form-input {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  font-size: 1rem !important;
  transition: border-color 0.25s var(--cubic-default),
    background-color 0.25s var(--cubic-default);
}

.contact-form-container .form-input::placeholder {
  font-size: 1rem !important;
}

.contact-form-container .form-input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  outline: none;
}

.contact-form-container .form-field-group[data-validate].is--error .form-input {
  border-color: rgba(224, 62, 62, 0.7);
}

.contact-form-container .is--textarea {
  min-height: 9em;
}

.form-grid {
  gap: 0.875rem;
}

/* Proceed: compact white button, right aligned */
.form-btn {
  width: auto;
  align-self: flex-end;
  padding: 0.85rem 2rem;
  background: #fff;
  color: #131313;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  font-weight: 600;
}

.form-btn::before {
  display: none;
}

.form-btn span,
.form-btn svg {
  color: #131313;
}

.form-btn:hover {
  background: #e6e5e2;
  border-color: #e6e5e2;
}

.form-btn:hover span,
.form-btn:hover svg {
  color: #131313;
}

/* Submit: same compact button, right aligned */
.form-submit-wrap {
  display: flex;
  justify-content: flex-end;
}

.file-upload-zone {
  padding: 1.75rem 1.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

/* Keyboard accessibility */
.service-option:focus-within,
.investment-option:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

@media screen and (max-width: 991px) {
  .contact-form-container {
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-container {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  /* Chips grow to fill each row on phones */
  .service-option,
  .investment-option {
    flex: 1 1 auto;
    padding: 0.6rem 0.75rem;
  }

  .contact-form-container .service-text,
  .contact-form-container .investment-text {
    font-size: 0.875rem !important;
  }

  .form-btn {
    width: 100%;
  }
}

/* ——————————————————————————————————————————————————————————————————————————— */
/* ——————————————————————— BLOG CARD GRID ————————————————————————————————————— */
/* ——————————————————————————————————————————————————————————————————————————— */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
  padding-top: 3em;
  padding-bottom: 2em;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.56em;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--cubic-default), border-color 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-0.35em);
  border-color: rgba(128, 0, 255, 0.45);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--cubic-default);
}

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

.blog-card__chip {
  position: absolute;
  top: 1em;
  left: 1em;
  padding: 0.35em 0.8em;
  background: rgba(19, 19, 19, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  color: #fff;
  font-size: 0.72em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 1.5em;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.blog-card__title {
  margin: 0;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.blog-card__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95em;
  line-height: 1.5;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: auto;
  padding-top: 0.5em;
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
}

.blog-card__arrow {
  width: 1.1em;
  height: 1.1em;
  transition: transform 0.35s var(--cubic-default);
}

.blog-card:hover .blog-card__arrow {
  transform: translateX(0.3em);
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25em;
    padding-top: 2em;
  }

  .blog-card__body {
    padding: 1.25em;
  }

  .blog-card__title {
    font-size: 1.35em;
  }
}
