html {
  font-size: 10px;
  margin: 0;
  scroll-behavior: smooth;
}
body {
  font-size: 1.8rem;
  font-variation-settings: "opsz" 18, "wght" 400;
  line-height: 1.4em;
  font-family: "Sana Sans", sans-serif;
  margin: 0;
  width: 100%;
  min-height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-font-feature-settings: "kern" 1;
  -ms-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  transition: background-color 0.6s ease, color 0.6s ease;
  will-change: background-color, color;
}
body.noscroll {
  height: 100vh;
  overflow-y: hidden;
}
@media screen and (max-width: 950px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 370px) {
  html {
    font-size: 2.6vw;
  }
}

@font-face {
  font-family: "Sana Sans";
  src: url("../fonts/DugN9BnSGhhc.woff2") format("woff2-variations");
  font-weight: 400 700;
  /* ascent-override: 100%; */
}
@font-face {
  font-family: "SanaSerif";
  src: url("../fonts/ysAM2UR54mrE.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "SanaSerif";
  src: url("../fonts/xVZiXAnkQza1.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "JetBrainsMono";
  src: url("../fonts/baJVMJodKkrQ.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  /* ascent-override: 120%; */
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
:root {
  /*Base colors*/
  --black: #000000;
  --blackish: #0a0a0a;
  --black-05: rgba(0, 0, 0, 0.05);
  --black-08: rgba(0, 0, 0, 0.08);
  --off-black: #0a0a0a;
  --white: #ffffff;
  --darkgrey: #a2a2a2;
  --darkergrey: #666666;
  --lightgrey: #f9f9fb;
  --grey: #b8b7c3;

  /*Artificial colors*/
  --iceblue: #e4eff7;
  --blue: #0057f3;
  --lightblue: #6acde3;
  --darkblue: #09102b;
  --neon: #cdfe00;
  --green: #00dd00;
  --neonpink: #ff8cfd;

  /*Human colors*/
  --maroon: #401220;
  --red: #fa0019;
  --darkred: #9b0018;
  --pink: #ef029f;
  --lightpink: #ff8cfd;
  --orange: #ff5102;
  --brown: #402517;

  --sky: #6acde3;

  /* misc */
  --easeOut: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOut: cubic-bezier(0.83, 0, 0.17, 1);
}
/*Base colors*/
.bg-black {
  background-color: var(--black) !important;
}
.bg-blackish {
  background-color: var(--blackish) !important;
}
.bg-black-05 {
  background-color: var(--black-05) !important;
}
.bg-black-08 {
  background-color: var(--black-08) !important;
}
.bg-off-black {
  background-color: var(--off-black) !important;
}
.bg-white {
  background-color: var(--white) !important;
}
.bg-darkgrey {
  background-color: var(--darkgrey) !important;
}
.bg-darkergrey {
  background-color: var(--darkergrey) !important;
}
.bg-lightgrey {
  background-color: var(--lightgrey) !important;
}
.bg-grey {
  background-color: var(--grey) !important;
}
.bg-sky {
  background-color: var(--sky) !important;
}
.black {
  color: var(--black) !important;
}
.blackish {
  color: var(--blackish) !important;
}
.color-black-80 {
  color: rgba(0, 0, 0, 0.8);
}
.white {
  color: var(--white) !important;
}
.lightgrey {
  color: var(--lightgrey) !important;
}
.darkgrey {
  color: var(--darkgrey) !important;
}
.darkergrey {
  color: var(--darkergrey) !important;
}
.grey {
  color: var(--grey) !important;
}
.sky {
  color: var(--sky) !important;
}
/*Artificial colors*/
.bg-blue {
  background-color: var(--blue) !important;
}
.bg-lightblue {
  background-color: var(--lightblue) !important;
}
.bg-iceblue {
  background-color: var(--iceblue) !important;
}
.bg-darkblue {
  background-color: var(--darkblue) !important;
}
.bg-neon {
  background-color: var(--neon) !important;
}
.bg-neonpink {
  background-color: var(--neonpink) !important;
}
.bg-green {
  background-color: var(--green) !important;
}
.blue {
  color: var(--blue) !important;
}
.lightblue {
  color: var(--lightblue) !important;
}
.iceblue {
  color: var(--iceblue) !important;
}
.darkblue {
  color: var(--darkblue) !important;
}
.neon {
  color: var(--neon) !important;
}
.neonpink {
  color: var(--neonpink) !important;
}
.green {
  color: var(--green) !important;
}
/*Human colors*/
.maroon {
  color: var(--maroon) !important;
}
.darkred {
  color: var(--darkred) !important;
}
.red {
  color: var(--red) !important;
}
.pink {
  color: var(--pink) !important;
}
.lightpink {
  color: var(--lightpink) !important;
}
.orange {
  color: var(--orange) !important;
}
.brown {
  color: var(--brown) !important;
}
.bg-maroon {
  background-color: var(--maroon) !important;
}
.bg-darkred {
  background-color: var(--darkred) !important;
}
.bg-red {
  background-color: var(--red) !important;
}
.bg-pink {
  background-color: var(--pink) !important;
}
.bg-lightpink {
  background-color: var(--lightpink) !important;
}
.bg-orange {
  background-color: var(--orange) !important;
}
.bg-brown {
  background-color: var(--brown) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}
.serif {
  font-family: "SanaSerif";
}
.serif i {
  font-style: italic;
}
img,
.video {
  max-width: 100%;
}

body {
  font-family: "Sana Sans", sans-serif;
}

.flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}

.super {
  font-size: 18rem;
  line-height: 1em;
  letter-spacing: -0.02em;

  font-variation-settings: "opsz" 100, "wght" 400;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 950px) {
  .super {
    font-size: 8rem;
    line-height: 1em;
    letter-spacing: -0.02em;

    font-variation-settings: "opsz" 80, "wght" 400;
    margin-bottom: 0.1em;
  }
}
.maxi {
  font-size: 14rem;
  line-height: 1em;
  letter-spacing: -0.02em;

  font-variation-settings: "opsz" 100, "wght" 400;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 950px) {
  .maxi {
    font-size: 8rem;
    line-height: 1em;
    letter-spacing: -0.02em;

    font-variation-settings: "opsz" 80, "wght" 400;
    margin-bottom: 0.1em;
  }
}

h1,
.h1 {
  font-family: "SanaSerif", serif;
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 950px) {
  h1,
  .h1 {
    font-size: 4.4rem;
  }
}

h2,
.h2 {
  font-family: "SanaSerif", serif;
  font-size: 4rem;
  line-height: 107%;
  letter-spacing: -0.005em;
  font-weight: 400;
}

@media screen and (max-width: 950px) {
  h2,
  .h2 {
    line-height: 100%;
    font-size: 3.4rem;
    letter-spacing: -0.01em;
  }
  .small-h2 {
    font-family: "SanaSerif", serif;
    font-size: 3.4rem;
    line-height: 100%;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
}

h3,
.h3 {
  font-family: "Sana Sans", sans-serif;
  font-size: 2.2rem;
  line-height: 120%;
  letter-spacing: 0;
  font-variation-settings: "opsz" 18, "wght" 450;
}

a.h3 {
  display: inline-block;
}

h4,
.h4 {
  font-family: "SanaSerif", serif;
  font-size: 2.8rem;
  line-height: 115%;
  letter-spacing: 0;
  font-weight: 400;
}

/* .p-16 {
  font-size: 1.6rem;
  line-height: 1.4em;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.type-t1, .h5 {
  font-size: 1.8rem;
  line-height: 130%;
  font-variation-settings: 'opsz' 19, 'wght' 450;
}
.h5 {
  margin-bottom: 1em;
}
.type-t2 {
  font-size: 1.6rem;
  line-height: 140%;
  font-variation-settings: 'opsz' 20, 'wght' 400;
}
.p-margin-m{
  margin-bottom: 1em;
}
.p-margin-l{
  margin-bottom: 2em;
}
  */

.type-mono {
  font-family: "JetBrainsMono", monospace;
}

.quote-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 54rem;
}
.quote {
  margin-bottom: 1em;
  text-align: left;
}
.quote-id {
  padding-left: 6rem;
  text-align: left;
}
.quote-id-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  background-color: red;
  position: absolute;
  left: 0;
  top: 0;
}
.quote-id-name {
  margin-bottom: 1.2em;
  opacity: 0.7;
}

p,
.p,
ul:not(.detail) li,
ol:not(.detail) li,
body {
  font-family: "Sana Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 400, "opsz" 14, "ital" 0;
}

@media all and (max-width: 950px) {
  p,
  .p,
  ul:not(.detail) li,
  ol:not(.detail) li {
    font-size: 1.6rem;
  }
}

.type-serif {
  font-family: "SanaSerif", serif;
}

.detail,
details p {
  font-family: "Sana Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 400, "opsz" 14, "ital" 0;
}

@media all and (max-width: 950px) {
  .mobile-detail {
    font-size: 1.4rem !important;
  }
  .detail {
    font-size: 1.4rem;
  }
  .detail.mobile-small {
    font-size: 1.4rem;
  }
}

.sana-sans-vf-regular-product {
  font-variation-settings: "wght" 400, "opsz" 14, "ital" 0;
}

.sana-sans-vf-book-product {
  font-variation-settings: "wght" 450, "opsz" 14, "ital" 0;
}

.sana-sans-vf-medium-product {
  font-variation-settings: "wght" 500, "opsz" 14, "ital" 0;
}

.sana-sans-vf-semibold-product {
  font-variation-settings: "wght" 600, "opsz" 14, "ital" 0;
}

.sana-sans-vf-bold-product {
  font-variation-settings: "wght" 700, "opsz" 14, "ital" 0;
}

.sana-sans-vf-regular-product-italic {
  font-variation-settings: "wght" 400, "opsz" 14, "ital" 1;
}

.sana-sans-vf-book-product-italic {
  font-variation-settings: "wght" 450, "opsz" 14, "ital" 1;
}

.sana-sans-vf-medium-product-italic {
  font-variation-settings: "wght" 500, "opsz" 14, "ital" 1;
}

.sana-sans-vf-semibold-product-italic {
  font-variation-settings: "wght" 600, "opsz" 14, "ital" 1;
}

.sana-sans-vf-bold-product-italic {
  font-variation-settings: "wght" 700, "opsz" 14, "ital" 1;
}

.sana-sans-vf-regular {
  font-variation-settings: "wght" 400, "opsz" 18, "ital" 0;
}

.sana-sans-vf-book {
  font-variation-settings: "wght" 450, "opsz" 18, "ital" 0;
}

.sana-sans-vf-medium {
  font-variation-settings: "wght" 500, "opsz" 18, "ital" 0;
}

.sana-sans-vf-semibold {
  font-variation-settings: "wght" 600, "opsz" 18, "ital" 0;
}

.sana-sans-vf-bold {
  font-variation-settings: "wght" 700, "opsz" 18, "ital" 0;
}

.sana-sans-vf-regular-italic {
  font-variation-settings: "wght" 400, "opsz" 18, "ital" 1;
}

.sana-sans-vf-book-italic {
  font-variation-settings: "wght" 450, "opsz" 18, "ital" 1;
}

.sana-sans-vf-medium-italic {
  font-variation-settings: "wght" 500, "opsz" 18, "ital" 1;
}

.sana-sans-vf-semibold-italic {
  font-variation-settings: "wght" 600, "opsz" 18, "ital" 1;
}

.sana-sans-vf-bold-italic {
  font-variation-settings: "wght" 700, "opsz" 18, "ital" 1;
}

.sana-sans-vf-regular-display {
  font-variation-settings: "wght" 400, "opsz" 24, "ital" 0;
}

.sana-sans-vf-book-display {
  font-variation-settings: "wght" 450, "opsz" 24, "ital" 0;
}

.sana-sans-vf-medium-display {
  font-variation-settings: "wght" 500, "opsz" 24, "ital" 0;
}

.sana-sans-vf-semibold-display {
  font-variation-settings: "wght" 600, "opsz" 24, "ital" 0;
}

.sana-sans-vf-bold-display {
  font-variation-settings: "wght" 700, "opsz" 24, "ital" 0;
}

.btn {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 1.6rem;
  /* Center text better: tighter line-height + balanced vertical padding */
  line-height: 1.25; /* was 140% causing optical drop */
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering for single-line & icon combos */
  position: relative;
  padding: 0.85rem 1.9rem; /* equal top/bottom (was 1rem / 0.7rem) */
  /* letter-spacing: -0.01em; */
  max-height: 3.8rem; /* keep pill height constraint */
  border-radius: 3.2rem;
  font-variation-settings: "wght" 450, "opsz" 14, "ital" 0;
}

.btn:hover {
  opacity: 0.6;
}

.btn.secondary::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid;
  opacity: 1;
  content: "";
  top: 0;
  left: 0;
  border-radius: 2em;
}
.video-wrap-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 3rem 0;
}
@media screen and (max-width: 950px) {
  .video-wrap-inner {
    padding: 1.5rem 0.5rem;
  }
}
video.fullscreen {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center center;
  background-size: cover;
}

video.fullscreen::-webkit-media-controls {
  display: none !important;
}
.typewrap::after {
  content: "|";
  position: relative;
  animation-name: blinker;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 0.8s;
}
@keyframes blinker {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blinker {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
.chat-bar {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 7rem;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 16px 16px 0px rgba(0, 0, 0, 0.04);
  text-align: left;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 1);
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #000;
  margin-bottom: 6rem;
}
.chat-mobile-wrap {
  width: auto;
  max-width: calc(100% - 8rem);
  position: relative;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .chat-bar {
    margin-bottom: 2rem;
  }
}
.chat-plus {
  font-size: 2.4rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.6rem 0 2.4rem;
  position: relative;
}
.chat-plus:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 950px) {
  .chat-plus {
    display: none;
  }
}
.chat-bar-btn {
  background-color: #000;
  color: #fff;
  border-radius: 4rem;
  padding: 1rem 4.4rem 0.7rem 1.6rem;
  position: absolute;
  right: 1.8rem;
  pointer-events: none;

  font-variation-settings: "opsz" 20, "wght" 460;
  transition: background-color 0.3s var(--easeOut);
}
.chat-bar-btn.no-icon {
  padding: 1rem 1.6rem 0.7rem 1.6rem;
}
.chat-bar-btn-icon {
  height: 2rem;
  width: 2rem;
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  transition: transform 0.3s var(--easeOut);
}
/* .chat-bar-btn:hover {
  cursor: pointer;
  background-color: var(--blue);
}
.chat-bar-btn:hover .chat-bar-btn-icon {
  transform: rotate(-90deg);
} */
@media screen and (max-width: 950px) {
  .chat-bar-btn {
    right: 1rem;
  }
}
.chat-bar-text {
  font-size: 1.6rem;
  height: 7.7rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.15em 2.5rem 0 1.6rem;
}
@media screen and (max-width: 950px) {
  .chat-bar-text {
    font-size: 1.6rem;
    height: 6rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2.5rem 0 2rem;
    top: 0.05em;
  }
}
.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
}
@media all and (max-width: 950px) {
  .mobile-text-l {
    text-align: left;
    align-items: flex-start;
  }
}
.wrap {
  width: 100%;
  max-width: 1394px; /* updated from 140rem (~1400px) to requested fixed max width */
  margin-left: auto;
  margin-right: auto;
  padding: 0 4rem;
}
.wrap.narrow {
  max-width: 84.6rem;
}
.wrap.wide {
  max-width: 163.2rem;
}
.wrap.extra-wide {
  max-width: 220rem;
}
.wrap.no-padding {
  padding: 0;
}
@media screen and (max-width: 950px) {
  .wrap {
    padding: 0 2.5rem;
  }
}

/*********** HS *************/
.input {
  margin-bottom: 1.5rem;
}
.hbspt-form {
  text-align: left;
}
input[type="text"],
input[type="email"],
select {
  position: relative;
  outline: 0;
  border: 0;
  font-family: inherit;
  font-variation-settings: "opsz" 0, "wght" 420;
  width: 100%;
  margin: 0 0 1.5rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: text;
  display: block;
  font-size: 1.6rem;
  line-height: 1em;
  border-radius: 0;
  background-color: var(--white);
  color: var(--black);
  padding: 1rem 1.4rem;
  border: 1px solid;
  border-radius: 0.6rem;
}
input[type="text"],
input[type="email"] {
  margin: 0 0 1.5rem 0;
  background-color: transparent;
  color: inherit;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
}
select {
  background-image: url(../images/VABSMaMJy2Sh.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  min-height: 4.3rem;
  border-radius: 1.2rem;
  cursor: pointer;
}
label {
  font-size: 1.6rem;
  font-variation-settings: "opsz" 0, "wght" 420;
  padding-bottom: 0.4rem;
  display: block;
}
.hs-error-msgs label {
  font-size: 1.4rem;
  background-color: #fff;
  padding: 0;
  line-height: 1em;
  color: #ff4343;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
}
.hbspt-form ul,
.hbspt-form li {
  list-style: none;
  padding: 0;
  margin: 0;
}
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  border: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  padding: 0;
  margin-right: 1rem;
  border: 1px solid;
}
input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  background-color: transparent;
}
input[type="checkbox"]:checked:before {
  background-color: #000;
}
input[type="checkbox"]:checked:after {
  content: "";
  left: 0;
  top: 0em;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/N0DV3St7aSrf.svg);
  background-size: 1.8rem;
  position: absolute;
}
input[type="submit"] {
  border: 0;
  outline: 0;
  font-size: 2rem;
  line-height: 1.3em;
  letter-spacing: 0em;
  font-family: inherit;
  font-weight: normal;
  font-variation-settings: "opsz" 14, "wght" 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  line-height: 1em;
  transition: 0.3s ease transform;
  display: inline-flex;
  position: relative;
  padding: 1.8rem 1.8rem;
  border-radius: 3rem;
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.4rem;
  background: linear-gradient(-45deg, #000000, #000000);
  background-size: 400% 400%;
  animation: gradient 4s ease infinite;
  grid-column: 1 / 3;
}
input[type="submit"]:hover {
  opacity: 0.9;
}

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

/*********** HS *************/

.pop-up {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pop-up.visible {
  display: flex;
}
.backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(90, 90, 90, 0.2);
  backdrop-filter: saturate(115%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  opacity: 1;
  animation-name: opacity;
  animation-fill-mode: both;
  animation-timing-function: ease;
  animation-duration: 0.3s;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dialouge {
  display: block;
  width: 100%;
  max-width: 70rem;
  padding: 0 4rem 4rem;
  border-radius: 1.5rem;
  max-height: calc(100% - 2rem);
  background-color: #fff;
  box-shadow: 0 4px 3px 2px rgba(26, 21, 89, 0.02), 0 18px 26px 2px rgba(26, 21, 89, 0.02);
  animation-name: popup;
  animation-fill-mode: both;
  animation-timing-function: ease;
  animation-duration: 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
  flex-direction: column;
  text-align: center;
  color: #0e0e0e;
}
.dialouge .hbspt-form {
  margin-top: 2rem;
}
.dialouge-in {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 950px) {
  .dialouge {
    padding: 0 1.5rem 1.5rem;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.dialouge-top {
  width: calc(100% + 8rem);
  min-height: 5rem;
  border-bottom: 1px solid var(--black-5);
  padding: 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 440;
  position: sticky;
  top: 0rem;
  z-index: 10;
  margin-left: -4rem;
  margin-right: -4rem;
  background-color: var(--white);
}
@media screen and (max-width: 950px) {
  .dialouge-top {
    width: calc(100% + 3rem);
    min-height: 5rem;
    border-bottom: 1px solid var(--black-5);
    padding: 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 440;
    position: sticky;
    top: 0rem;
    z-index: 10;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    background-color: var(--white);
  }
}
.d-close {
  position: absolute;
  right: 1rem;
  border: 0;
  outline: 0;
  font-family: var(--deafult-font);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1em;
  transition: 0.2s ease opacity;
  display: inline-flex;
  font-weight: 440;
  padding: 0.9rem 1.4rem 0.9rem;
  border-radius: 1.6rem;
  border: 1px solid var(--black-10);
  opacity: 0.65;
}
.d-close:hover {
  opacity: 1;
}

.inline-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.btn + .btn {
  margin-left: 0.6rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  row-gap: 2.2rem;
  width: 100%;
}

.image-grid-col {
  grid-column: auto / span var(--span, 5);
  align-self: start;
  display: flex;
  flex-direction: column;
  row-gap: 2.2rem;
}

@media all and (max-width: 950px) {
  .image-grid-col {
    grid-column: auto / span 12;
  }
}

.image-grid-card {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  width: 100%;
}

.image-grid-card.narrow {
  width: 60%;
}

.image-grid-card.narrow-l {
  width: 80%;
}

@media all and (max-width: 950px) {
  .image-grid-card.narrow,
  .image-grid-card.narrow-l {
    width: 100%;
  }
}

.image-grid-card.end {
  align-self: flex-end;
}

.image-grid-card img {
  display: block;
  width: 100%;
  height: auto;
}

.image-grid-card .card-content-top {
  position: relative;
  padding: 2rem 3rem;
  width: 100%;
  max-width: 31.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  z-index: 10;
}

.image-grid-card:not(.no-overlay) .card-content-top {
  position: absolute;
  top: 0;
  left: 0;
}

/* @media screen and (max-width: 950px) {
  .image-grid-card .card-content-top {
    max-width: 100%;
  }
} */

.image-grid-card .card-content-top .h5 {
  margin-bottom: 0;
}

.image-grid-card .card-content-top .card-content-tagline {
  opacity: 0.7;
  margin-bottom: 0;
}

.appear {
  transition: transform 0.8s var(--easeInOut), opacity 0.8s var(--easeInOut);
  transition-delay: calc(var(--i) * 0.08s);
  transform: translateY(20px);
  opacity: 0;
}

.appear.has-been-seen {
  transform: translateY(0px);
  opacity: 1;
}

.appear.appeared {
  transform: none;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.two-col {
  --gutter: 2rem;
  display: grid;
  grid-template-columns: repeat(2, calc((100% - var(--gutter) * 1) / 2));
  column-gap: var(--gutter);
  width: 100%;
  position: relative;
}

@media all and (max-width: 950px) {
  .two-col {
    grid-template-columns: 1fr;
    row-gap: var(--gutter);
  }
}

.two-col.separator:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 950px) {
  .two-col.separator:after {
    display: none;
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 4rem 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

@media all and (max-width: 950px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (max-width: 480px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.icon-grid .cell img {
  display: block;
  width: 100%;
}

.icon-grid .cell > * + * {
  margin-top: 1.7rem;
}

.text-l {
  text-align: left;
}

ul.checklist {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

ul.checklist.horizontal {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-around;
}

@media all and (max-width: 950px) {
  ul.checklist.horizontal.mobile-left {
    align-items: flex-start;
    justify-content: flex-start !important;
  }
}

p:has(.inline-icon) {
  display: inline-flex;
  align-items: center;
  column-gap: 0.6rem;
}

ul.checklist li {
  display: grid;
  align-items: start;
  gap: 1.6rem;
}
ul.checklist li:has(.inline-icon) {
  grid-template-columns: 3.2rem 1fr;
}

ul.checklist.type-body-big li .inline-icon {
  font-size: 1.6rem;
}
ul.checklist.type-body-big li:has(.inline-icon) {
  grid-template-columns: 1.6rem 1fr;
}

ul.checklist li .inline-icon {
  font-size: 2.4rem;
}

ul.checklist:not(.horizontal) li:not(:last-child) {
  margin-bottom: 13px;
}

@media all and (max-width: 950px) {
  ul.checklist li:has(.inline-icon) {
    grid-template-columns: 2rem 1fr;
    align-items: center;
  }
  ul.checklist li .inline-icon {
    font-size: 2rem;
    transform: translateY(6%);
  }
}

hr {
  border: 0;
  outline: 0;
  border-bottom: 2px solid var(--black);
}

.full-width-media {
  width: 100%;
}

.full-width-media img,
.full-width-media video {
  display: block;
  width: 100%;
  height: auto;
}

.show-mobile {
  display: none !important;
}
@media all and (max-width: 950px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}

.stat-blocks {
  display: flex;
  gap: 20px;
}
@media all and (max-width: 950px) {
  .stat-blocks {
    flex-direction: column;
  }
}
.stat-blocks .stat-block {
  flex: 1;
}

.stat-block.white {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-block.black {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.stat-block {
  padding-top: 3.2rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.flex-cols {
  display: flex;
  gap: var(--vertical, 1.8rem) var(--gutter, 1.8rem);
}
.flex-cols .flex-col {
  flex: 1;
}

@media all and (max-width: 950px) {
  .flex-cols {
    flex-direction: column;
  }
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, calc(((100% - var(--gutter, 1.8rem)) / 2)));
  gap: 4rem var(--gutter, 1.8rem);
}

@media all and (max-width: 950px) {
  .two-cols {
    grid-template-columns: 100%;
  }
}

.three-cols {
  display: grid;
  grid-template-columns: repeat(3, calc(((100% - (var(--gutter, 1.8rem) * 2)) / 3)));
  gap: 4rem var(--gutter, 1.8rem);
}

.three-cols.reduced-row-gap {
  row-gap: 2.4rem;
}

@media all and (max-width: 950px) {
  .three-cols {
    grid-template-columns: 100%;
  }
}

.cols-row {
  display: grid;
  grid-template-columns: repeat(12, calc(((100% - var(--gutter, 2rem) * 11) / 12)));
  column-gap: var(--gutter, 2rem);
  row-gap: 4rem;
}

.cols-row .col:not(.one-third):not(.two-thirds) {
  grid-column: auto / span 6;
}
.cols-row .col.one-third {
  grid-column: auto / span 4;
}
.cols-row .col.two-thirds {
  grid-column: auto / span 8;
}

@media all and (max-width: 950px) {
  .cols-row {
    grid-template-columns: 100%;
  }
  .cols-row .col,
  .cols-row .col.one-third,
  .cols-row .col.two-thirds {
    grid-column: auto;
  }
}

.with-inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.with-inline-icon .inline-icon {
  font-size: 1.25em;
}

.media {
  width: 100%;
  margin-inline: auto;
}

.media.with-embed {
  position: relative;
  cursor: pointer;
}

.media.with-embed .embed-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
}

.media.with-embed .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-size: 4.4rem;
}

.media.with-embed:hover .play-icon {
  opacity: 0.6;
}

.media.with-embed .embed-content.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.media.with-embed .embed-content iframe {
  width: 100%;
  height: 100%;
}

.media.natural {
  height: auto;
}

.media.natural img,
.media.natural video {
  display: block;
  width: 100%;
  height: auto;
}

.media:not(.natural) {
  position: relative;
}
.media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.media:not(.natural) img,
.media:not(.natural) video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}
.media.landscape {
  aspect-ratio: 16 / 9;
}
.media.hero {
  aspect-ratio: 668 / 375;
}
.media.landscape-tall {
  aspect-ratio: 41 / 30;
}
.media.square {
  aspect-ratio: 1 / 1;
}
.media.portrait {
  aspect-ratio: 9 / 16;
}

.media.rounded {
  overflow: hidden;
  border-radius: 4px;
}
.media.rounded-32 {
  overflow: hidden;
  border-radius: 3.2rem;
}
.media.rounded.hero,
.media.rounded-8 {
  overflow: hidden;
  border-radius: 8px;
}

footer {
  overflow: hidden;
}

section .wrap ul:not([class]) {
  margin-left: 0;
  padding-left: 1em;
  list-style: none;
}
section .wrap ul:not([class]) li {
  position: relative;
}
section .wrap ul:not([class]) li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 100%;
  position: absolute;
  top: 0.5em;
  right: calc(100% + 0.4em);
}

.features-list-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  line-height: 1em;
}

.features-list-row:not(:has(.col-title)) {
  padding-block: 0.8rem;
}

.features-list-row:not(:has(.col-title)):nth-child(odd) {
  background-color: rgba(104, 103, 126, 0.1);
}

.features-list .col-title {
  border-top: 1px solid #68677e;
  padding-top: 2.3rem;
  margin-bottom: 3rem;
}

@media all and (max-width: 950px) {
  .features-list {
    margin-left: -2.5rem;
    width: calc(100% + 5rem);
  }
  .features-list .col-title {
    border-top: 0;
    padding-top: 0;
  margin-bottom: 1.6rem;
    opacity: 0.6;
  }
  .features-list .col-title p.type-t1 {
    font-size: 12px;
  }
  .features-list-row {
    grid-template-columns: repeat(6, 1fr);
    padding-right: 2.5rem;
  }
  .features-list-row:not(:has(.col-title)):nth-child(odd) {
    background-color: #100f13;
  }
}

.features-list .features-list-col:first-child {
  padding-left: 1.6rem;
}

@media all and (max-width: 950px) {
  .features-list .features-list-col:first-child {
    padding-left: 2.5rem;
  }
  .features-list .features-list-col .type-t1 {
    font-size: 1.4rem;
  }
}

.features-list .features-list-col {
  line-height: 0;
}

.features-list .features-list-col.wide {
  grid-column: auto / span 3;
}

@media all and (max-width: 950px) {
  .features-list .features-list-col.wide {
    grid-column: auto / span 4;
  }
  .hide-small {
    display: none !important;
  }
}

.show-small {
  display: none;
}

@media all and (max-width: 950px) {
  .show-small {
    display: block;
  }
}

.features-list-row .inline-icon-sana-symbol {
  font-size: 3.4rem;
}

.features-list-col:not(.col-title) .inline-icon {
  font-size: 2.5rem;
}

@media all and (max-width: 950px) {
  .features-list-col:not(.col-title) .inline-icon {
    font-size: 1.6rem;
  }
}

section.with-quote-slider,
section.with-roi-slider,
section:has(.roi-slider),
section:has(.quote-slider) {
  overflow: hidden;
}

@media all and (max-width: 950px) {
  .quote-slider .flickity-viewport,
  .roi-slider .flickity-viewport {
    overflow: visible;
  }
}

.quote-slider,
.roi-slider {
  opacity: 0;
  transition: opacity 0.4s;
  padding-bottom: 8rem;
}

.quote-slider.is-hidden,
.roi-slider.is-hidden {
  display: none;
}

.quote-slider.flickity-enabled,
.roi-slider.flickity-enabled {
  opacity: 1;
}

.quote-slider .quote-slide {
  width: calc((100% - var(--gap, 2rem)) / 2);
  margin-right: var(--gap, 2rem);
  padding-right: 13rem;
}

@media all and (max-width: 950px) {
  .quote-slider .quote-slide {
    --gap: 4rem;
    width: calc((100% - var(--gap, 2rem)) / 1.1);
    padding-right: 0;
  }
}

.roi-slider .roi-card {
  width: calc((100% - (var(--gap, 2rem) * 3)) / 4);
  margin-right: var(--gap, 2rem);
}

@media all and (max-width: 950px) {
  .roi-slider .roi-card {
    width: calc((100% - var(--gap, 2rem)) / 1.2);
  }
}

.quote-slider .quote-slide .quote-logo {
  height: 3rem;
  width: auto;
}
.quote-slider .quote-slide .blockquote {
  border-top: 0;
  padding-top: 3.2rem;
}

.quote-slider .flickity-button {
  background: var(--white);
}

/* .roi-slider-wrap.dark .roi-slider .flickity-button {
  background: var(--white);
} */
.roi-slider-wrap .roi-slider .flickity-button {
  background: rgba(210, 210, 215, 0.64);
}

.quote-slider .flickity-button:disabled {
  opacity: 0.2;
}

.roi-slider .flickity-button:disabled {
  opacity: 0.4;
}

.quote-slider .flickity-prev-next-button,
.roi-slider .flickity-prev-next-button {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 100%;
  top: calc(100% - 4rem);
  transform: translateY(0);
}

.quote-slider .flickity-prev-next-button.next,
.roi-slider .flickity-prev-next-button.next {
  right: 0;
}

.quote-slider .flickity-prev-next-button.previous,
.roi-slider .flickity-prev-next-button.previous {
  left: auto;
  right: 6rem;
}

.quote-slider .flickity-button-icon,
.roi-slider .flickity-button-icon {
  fill: var(--black);
  top: 29.5%;
  left: 29.5%;
  width: 41%;
  height: 41%;
}

/* .roi-slider-wrap.light .roi-slider .flickity-button {
  fill: rgba(0,0,0, .56);
} */

.bg-black hr {
  border: 0;
  outline: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #68677e;
  margin-top: 1.8rem;
  margin-bottom: 1.3rem;
}

.fade,
.fade-6 {
  opacity: 0.6;
}
.fade-8 {
  opacity: 0.8;
}
.fade-5 {
  opacity: 0.5;
}
.fade-4 {
  opacity: 0.4;
}

/* NEW TYPE */

.type-headline-01 {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 5.6rem;
  font-variation-settings: "opsz" 100, "wght" 400;
  line-height: 107%;
  letter-spacing: -0.5px;
}

.type-heading-medium {
  font-family: "SanaSerif", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 5.6rem;
  line-height: 107%;
  letter-spacing: -0.5px;
}

.type-heading-small {
  font-family: "Sana Sans";
  font-style: normal;
  font-weight: 450;
  font-size: 3.2rem;
  line-height: 112%;
  letter-spacing: -0.5px;
  font-variation-settings: "opsz" 56, "wght" 450;
}

.type-headline-02 {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 3.2rem;
  font-variation-settings: "opsz" 32, "wght" 400;
  line-height: 112%;
  letter-spacing: -0.5px;
}

@media all and (max-width: 950px) {
  .type-headline-01 {
    font-size: 3.4rem;
    letter-spacing: -0.01em;
    line-height: 105%;
  }
  .type-heading-medium {
    font-size: 3.4rem;
  }
  .type-heading-small {
    font-size: 2.4rem;
    font-variation-settings: "opsz" 24, "wght" 400;
    line-height: 117%;
  }
}

.type-body-01 {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.6rem;
  font-variation-settings: "opsz" 16, "wght" 400;
  line-height: 150%;
}

.btn.type-body-01 {
  font-variation-settings: "opsz" 16, "wght" 500;
}

.type-body-big {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.8rem;
  font-variation-settings: "opsz" 18, "wght" 400;
  line-height: 133%;
}

@media all and (max-width: 950px) {
  .type-body-big {
    font-size: 1.6rem;
    font-variation-settings: "opsz" 16, "wght" 400;
    line-height: 125%;
  }
}

.type-body-small {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.6rem;
  font-variation-settings: "opsz" 16, "wght" 400;
  line-height: 125%;
}

.type-subhead-01 {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.6rem;
  font-variation-settings: "opsz" 16, "wght" 500;
  line-height: 150%;
}

.case-study-content p strong {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.6rem;
  font-variation-settings: "opsz" 16, "wght" 500;
  line-height: 150%;
}

.type-subheading-large {
  font-family: "Sana Sans";
  font-weight: 450;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.5px;
  font-variation-settings: "opsz" 24, "wght" 450;
}
.type-subheading-big {
  font-family: "Sana Sans";
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  font-variation-settings: "opsz" 18, "wght" 500;
}

@media all and (max-width: 950px) {
  .type-subheading-big {
    font-size: 16px;
    font-variation-settings: "opsz" 16, "wght" 500;
    line-height: 150%;
  }
}

.type-subhead-02 {
  font-family: "Sana Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.504px;
}

.type-quote-01 {
  font-family: "SanaSerif";
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  line-height: 120%;
  letter-spacing: -0.01em;
}

@media all and (max-width: 950px) {
  .type-quote-01 {
    font-size: 2.6rem;
  }
}

.type-detail-01 {
  font-family: "Sana Sans";
  font-style: normal;
  font-size: 1.4rem;
  font-variation-settings: "opsz" 14, "wght" 400;
  line-height: 1.8rem;
}
strong {
  font-variation-settings: "wght" 700;
}

/* END NEW TYPE */

.case-study-title {
  max-width: 91rem;
  text-wrap: balance;
}
.case-study-tagline {
  --flow-space: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.8rem;
  opacity: 0.7;
  flex-wrap: wrap;
}
.case-study-tagline + .case-study-tagline {
  --flow-space: 0.4rem;
}
.case-study-image {
  width: 100%;
}
.case-study-content {
  width: 100%;
  max-width: 111rem;
}
.case-study-content-mid {
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
}
.key-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.key-stats.space-around {
  justify-content: space-around;
}
@media all and (max-width: 950px) {
  .key-stats {
    flex-direction: column;
    row-gap: 3.2rem;
    align-items: center;
  }
}
.key-stat {
  flex: 1;
  max-width: 30rem;
}
.key-stat .type-body-01,
.key-stat .type-detail-01,
.key-stat .detail {
  opacity: 0.6;
  margin-top: 0.2em;
  max-width: 20.7rem;
  margin-inline: auto;
}
.case-study-content {
  display: flex;
  flex-direction: column;
  row-gap: 6.4rem;
}
.case-study-content-small {
  width: 100%;
  max-width: 66rem;
  margin-inline: auto;
  text-align: left;
}
.case-study-content-small p.type-subhead-01 + * {
  --flow-space: 0.8rem;
}
.case-study-content-small p + p.type-subhead-01 {
  --flow-space: 4.8rem;
}
.business-infos {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
  padding: 2.4rem;
  display: flex;
}
@media all and (max-width: 950px) {
  .business-infos {
    flex-direction: column;
    row-gap: 2.4rem;
    align-items: flex-start;
    text-align: left;
  }
}
.business-info {
  flex: 1;
}
.business-info p.type-body-01 {
  opacity: 0.6;
}
.case-study-content-large {
  width: 100%;
}

.reveal-after-full-scroll {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.8s var(--easeOut);
}

.reveal-after-full-scroll.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.book-an-intro-title {
  text-align: center;
  margin-top: 8rem;
  padding-inline: 2.5rem;
}

section:has(.fixed-cta) {
  overflow: visible;
}

.fixed-cta {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  padding: 2.4rem;
  /* right: 0; */
  width: 100%;
  z-index: 50;
}
.fixed-cta:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1.6rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  z-index: -1;
}
.fixed-cta .btn {
  transition: 0.4s var(--easeOut);
}
.fixed-cta .btn:hover {
  background-color: #2e2e2e !important;
}

/* NEW EVENTS STUFF */

.events-listing-row {
  display: grid;
  grid-template-columns: repeat(12, calc((100% - (2rem * 11)) / 12));
  column-gap: 2rem;
  row-gap: 2.4rem;
  margin-bottom: 4rem;
  transition: opacity 0.6s var(--easeOut);
}

.events-listing-row:last-child {
  margin-bottom: 0;
}

.events-listing-row .media {
  background-color: rgba(0, 0, 0, 0.03);
}

.events-listing-row:hover {
  opacity: 0.6;
}

.events-listing-row-image {
  grid-column: 1 / span 2;
  grid-row: 1 / span 3;
}

.events-listing-row-city {
  grid-column: 4 / span 3;
  grid-row: 1 / span 1;
}
.events-listing-row-times {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;
}

.events-listing-row-title {
  grid-column: 7 / span 6;
  grid-row: 1 / span 1;
}
.events-listing-row-content {
  grid-column: 7 / span 6;
  grid-row: 2 / span 1;
}

@media all and (max-width: 950px) {
  .events-listing-row {
    grid-template-columns: 100%;
  }
  .events-listing-row-image,
  .events-listing-row-city,
  .events-listing-row-times,
  .events-listing-row-title,
  .events-listing-row-content {
    grid-column: auto;
    grid-row: auto;
  }
  .events-listing-row-times br {
    display: none;
  }
}
.events-listing-row-tag {
  padding: 0.7rem 1rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4rem;
  display: inline-flex;
  max-height: 3.2rem;
}

.single-event-content {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: repeat(12, calc((100% - (2rem * 11)) / 12));
}

.single-event-content .left {
  grid-column: 1 / span 6;
}

.single-event-content .right {
  grid-column: 9 / span 4;
}

@media all and (max-width: 950px) {
  .single-event-content {
    grid-template-columns: 100%;
  }
  .single-event-content .left,
  .single-event-content .right {
    grid-column: auto;
  }
}

.media.event-image {
  height: 48rem;
  margin-bottom: 6.4rem;
}
@media all and (max-width: 950px) {
  .media.event-image {
    height: 41rem;
  }
}
.speakers {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.speaker {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  column-gap: 2rem;
}
.speaker-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
}
.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hero {
  height: 100vh;
  height: calc(100svh + 1px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-hero-content {
  width: 100%;
}

.image-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.image-hero-bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.2;
}

body.bg-off-black .image-hero:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 17%;
  background: linear-gradient(0deg, #0e0e0e 0%, rgba(14, 14, 14, 0) 100%);
}

.image-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hero-headline {
  display: flex;
  column-gap: 2rem;
  flex-wrap: wrap;
}

.image-hero-headline .left {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  column-gap: 2rem;
}

@media all and (max-width: 950px) {
  .image-hero-headline .left,
  .image-hero-headline .right {
    width: 100%;
  }
}

.image-hero-headline .left h1 {
  min-width: 30%;
}

.stat-card {
  background-color: #f7f7f7;
  color: #111111;
  padding: 3.2rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 11.14rem;
  min-height: 100%;
}

.stat-card .bottom:has(.right) {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
}

@media all and (max-width: 950px) {
  .stat-card .bottom:has(.right) .right {
    width: 100%;
  }
}

.bg-white .btn.ghost {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.bg-black .btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
a.type-heading-small {
  display: inline-block;
}
a.type-heading-small:hover,
a.h3:hover {
  opacity: 0.6;
}

.form-wrap .hs-error-msgs label {
  background-color: transparent;
}

.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap select {
  border: 0;
  outline: 0;
  border-radius: 3.2rem;
  padding: 1.4rem 2rem 1.1rem;
  color: inherit;
  min-height: 4.8rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s var(--easeOut);
  margin: 0;
}

.form-wrap .field {
  margin-bottom: 1.8rem;
}

.form-wrap input::placeholder {
  color: rgba(17, 17, 17, 0.5);
}

.form-wrap .field:hover input[type="text"]:not(:focus),
.form-wrap .field:hover input[type="email"]:not(:focus),
.form-wrap .field:hover select:not(:focus) {
  border-color: rgba(0, 0, 0, 0.3);
}

.form-wrap input[type="text"]:focus,
.form-wrap input[type="email"]:focus,
.form-wrap select:focus {
  border-color: rgba(0, 0, 0, 1);
}

.form-wrap input[type="text"]:not(:focus):not(:placeholder-shown),
.form-wrap input[type="email"]:not(:focus):not(:placeholder-shown),
.form-wrap select:not(:focus):not(.is-placeholder) {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-black .form-wrap input[type="text"],
.bg-black .form-wrap input[type="email"],
.bg-black .form-wrap select,
.bg-off-black .form-wrap input[type="text"],
.bg-off-black .form-wrap input[type="email"],
.bg-off-black .form-wrap select {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-black .form-wrap .field:hover input[type="text"]:not(:focus),
.bg-black .form-wrap .field:hover input[type="email"]:not(:focus),
.bg-black .form-wrap .field:hover select:not(:focus),
.bg-off-black .form-wrap .field:hover input[type="text"]:not(:focus),
.bg-off-black .form-wrap .field:hover input[type="email"]:not(:focus),
.bg-off-black .form-wrap .field:hover select:not(:focus) {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-black .form-wrap input[type="text"]:focus,
.bg-black .form-wrap input[type="email"]:focus,
.bg-black .form-wrap select:focus,
.bg-off-black .form-wrap input[type="text"]:focus,
.bg-off-black .form-wrap input[type="email"]:focus,
.bg-off-black .form-wrap select:focus {
  border-color: rgba(255, 255, 255, 1);
}

.bg-black .form-wrap input[type="text"]:not(:focus):not(:placeholder-shown),
.bg-black .form-wrap input[type="email"]:not(:focus):not(:placeholder-shown),
.bg-black .form-wrap select:not(:focus):not(.is-placeholder),
.bg-off-black .form-wrap input[type="text"]:not(:focus):not(:placeholder-shown),
.bg-off-black .form-wrap input[type="email"]:not(:focus):not(:placeholder-shown),
.bg-off-black .form-wrap select:not(:focus):not(.is-placeholder) {
  border-color: rgba(255, 255, 255, 0.3);
}

.form-wrap select {
  background-image: none;
}

.form-wrap select.is-placeholder {
  color: rgba(17, 17, 17, 0.5);
}
.form-wrap .input:has(select):after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M4.75317 6.2182C4.96077 6.0106 5.2822 6.01729 5.46969 6.21152L8.06792 8.96373L10.6527 6.21152C10.8402 6.0106 11.175 6.01729 11.3692 6.22489C11.55 6.41237 11.5433 6.72043 11.3491 6.92803L8.71746 9.71373C8.36923 10.0954 7.75317 10.0954 7.40494 9.71373L4.77323 6.92803C4.59917 6.74049 4.58574 6.39232 4.75317 6.2182Z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100%;
  position: absolute;
  pointer-events: none;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.bg-black .form-wrap .input:has(select):after,
.bg-off-black .form-wrap .input:has(select):after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M4.75317 6.2182C4.96077 6.0106 5.2822 6.01729 5.46969 6.21152L8.06792 8.96373L10.6527 6.21152C10.8402 6.0106 11.175 6.01729 11.3692 6.22489C11.55 6.41237 11.5433 6.72043 11.3491 6.92803L8.71746 9.71373C8.36923 10.0954 7.75317 10.0954 7.40494 9.71373L4.77323 6.92803C4.59917 6.74049 4.58574 6.39232 4.75317 6.2182Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
}

.bg-black .form-wrap select.is-placeholder,
.bg-off-black .form-wrap select.is-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.bg-black .form-wrap select {
  background-color: var(--black);
}

.bg-off-black .form-wrap select {
  background-color: var(--off-black);
}

.bg-black .form-wrap select option,
.bg-off-black .form-wrap select option {
  color: white;
}

.form-wrap form {
  display: grid;
  column-gap: 1.2rem;
  grid-template-columns: repeat(2, calc((100% - 1.2rem) / 2));
}

.form-wrap form .field,
.form-wrap form .legal-consent-container,
.form-wrap form .hs_submit {
  grid-column: auto / span 2;
}

.form-wrap form .field.hs_firstname,
.form-wrap form .field.hs_lastname,
.form-wrap form .field.hs_company,
.form-wrap form .field.hs_jobtitle,
.form-wrap form .field.hs_platform_users_sana_ai,
.form-wrap form .field.hs_company_hq,
.hs_platform_users.hs-platform_users.hs-fieldtype-select.hs-form-field {
  grid-column: auto / span 1;
}

.form-wrap form .field.hs_firstname .hs-error-msgs,
.form-wrap form .field.hs_lastname .hs-error-msgs,
.form-wrap form .field.hs_company .hs-error-msgs,
.form-wrap form .field.hs_jobtitle .hs-error-msgs,
.form-wrap form .field.hs_platform_users_sana_ai .hs-error-msgs,
.form-wrap form .field.hs_company_hq .hs-error-msgs {
  position: static;
  text-align: left;
  margin-top: 0.6rem;
}

.form-wrap form .field.hs_firstname .hs-error-msgs label,
.form-wrap form .field.hs_lastname .hs-error-msgs label,
.form-wrap form .field.hs_company .hs-error-msgs label,
.form-wrap form .field.hs_jobtitle .hs-error-msgs label,
.form-wrap form .field.hs_platform_users_sana_ai .hs-error-msgs label,
.form-wrap form .field.hs_company_hq .hs-error-msgs label {
  margin-bottom: 0;
}

@media all and (max-width: 950px) {
  .form-wrap form .field.hs_firstname,
  .form-wrap form .field.hs_lastname,
  .form-wrap form .field.hs_company,
  .form-wrap form .field.hs_jobtitle,
  .form-wrap form .field.hs_platform_users_sana_ai,
  .form-wrap form .field.hs_company_hq,
  .form-wrap form .hs-dependent-field {
    grid-column: auto / span 2;
  }
  .form-wrap form .field.hs_firstname,
  .form-wrap form .field.hs_lastname,
  .form-wrap form .field.hs_company,
  .form-wrap form .field.hs_jobtitle,
  .form-wrap form .field.hs_platform_users_sana_ai,
  .form-wrap form .field.hs_company_hq,
  .hs_platform_users.hs-platform_users.hs-fieldtype-select.hs-form-field {
    grid-column: auto / span 2;
  }
}

.form-wrap .field {
  position: relative;
}

.form-wrap .field > label,
.form-wrap .field label p,
.form-wrap .field legend,
.form-wrap .hs-richtext {
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  padding-bottom: 0;
  margin-bottom: 0.6rem;
  font-variation-settings: "wght" 400, "opsz" 14, "ital" 0;
}

.form-wrap .field legend.hs-field-desc {
  opacity: 0.6;
}
/* .form-wrap .field:has(input:placeholder-shown) > label,
.form-wrap .field:has(select.is-placeholder) > label {
  opacity: 0.4;
  pointer-events: all;
  visibility: visible;
} */
.form-wrap .field:has(select.is-placeholder) > label {
  pointer-events: none;
}
.form-wrap .field > label,
.form-wrap input[type="text"],
.form-wrap input[type="email"] {
  font-size: 1.4rem;
  line-height: 140%;
}
.form-wrap input[type="checkbox"] {
  border: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}
.form-wrap input[type="checkbox"]:before {
  background-color: transparent;
  border: 1.25px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}
.bg-black .form-wrap input[type="checkbox"]:before,
.bg-off-black .form-wrap input[type="checkbox"]:before {
  border-color: rgba(255, 255, 255, 0.16);
}
.form-wrap input[type="checkbox"]:hover:before {
  border: 1.25px solid rgba(0, 0, 0, 0.3);
}
.bg-black .form-wrap input[type="checkbox"]:hover:before,
.bg-off-black .form-wrap input[type="checkbox"]:hover:before {
  border-color: rgba(255, 255, 255, 0.3);
}
.form-wrap input[type="checkbox"]:checked:before {
  background-color: var(--black);
}
.form-wrap input[type="checkbox"]:checked:after {
  background-image: url("../images/N0DV3St7aSrf.svg");
}
.bg-black .form-wrap input[type="checkbox"]:checked:before,
.bg-off-black .form-wrap input[type="checkbox"]:checked:before {
  background-color: var(--white);
}
.bg-black .form-wrap input[type="checkbox"]:checked:after,
.bg-off-black .form-wrap input[type="checkbox"]:checked:after {
  background-image: url("../images/PhlEa5IhkG6q.svg");
}
.form-wrap .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 2.8rem;
  line-height: 1.5em;
}
.form-wrap label {
  cursor: pointer;
}
.form-wrap label a {
  text-decoration: underline;
}
.form-wrap input[type="submit"] {
  background: var(--black);
  color: var(--white);
  width: auto;
  font-size: 1.6rem;
  line-height: 1.6rem;
  max-height: 3.8rem;
  font-variation-settings: "opsz" 16, "wght" 500;
  padding: 1.3rem 1.6rem 1.2rem;
  transition: opacity 0.2s var(--easeOut);
}
.form-wrap input[type="submit"]:hover {
  opacity: 0.8;
}

.bg-black .form-wrap input[type="submit"] {
  background: var(--white);
  color: var(--black);
}
.bg-off-black .form-wrap input[type="submit"] {
  background: var(--white);
  color: var(--off-black);
}
.form-wrap .legal-consent-container .hs-error-msgs {
  position: static;
}
.form-wrap .hs-error-msgs {
  position: absolute;
  top: 0.1em;
  right: 0;
  text-wrap: nowrap;
  text-align: right;
}
.form-wrap .hs-error-msgs.inputs-list {
  position: static;
  margin-top: 0.2rem;
  text-align: left;
}
.form-wrap .hs-error-msgs label {
  color: #fa0019;
  font-variation-settings: "opsz" 14, "wght" 450;
  font-size: 14px;
  line-height: 143%;
}
.form-wrap .legal-consent-container .hs-error-msgs label {
  color: #fa0019;
}
.bg-black .form-wrap .hs-error-msgs label,
.bg-off-black .form-wrap .hs-error-msgs label,
.bg-black .form-wrap .legal-consent-container .hs-error-msgs label,
.bg-off-black .form-wrap .legal-consent-container .hs-error-msgs label {
  color: #ff5454;
}
.form-wrap .input {
  margin-bottom: 0;
}

section.top {
  padding-top: 10rem;
}

/* App page FOUT trial */

.app-page .hero-devices {
  width: 100%;
  aspect-ratio: 17 / 12;
  position: relative;
  perspective: 50vw;
}
.app-page .hero-devices img {
  position: absolute;
}
.app-page .hero-devices .device-1 {
  position: absolute;
  top: 37%;
  left: 28%;
  transform: translate(-50%, -50%) rotateX(-3deg) rotateZ(2deg) rotateY(-3deg);
}
.app-page .hero-devices .device-2 {
  position: absolute;
  top: 45.46%;
  left: 47.98%;
  transform: translate(-50%, -50%) rotateX(5deg) rotateZ(-4deg) rotateY(5deg);
}
.app-page .hero-devices .device-3 {
  position: absolute;
  top: 60%;
  left: 70%;
  transform: translate(-50%, -50%) rotateX(3deg) rotateZ(-2deg) rotateY(3deg);
}

@media all and (max-width: 950px) {
  section:has(.hero-devices) {
    overflow: hidden;
  }
  .app-page .hero-devices {
    margin-left: -1rem;
    width: calc(100% + 20rem);
  }
}

.app-page section {
  padding: 4rem 0;
}
.app-page section.extra-padding {
  padding: 8rem 0 12rem;
}
.app-page section.first {
  padding-top: 10rem;
}
.app-page .margin-xs {
  margin-bottom: 1.2rem;
}
.app-page .margin-s {
  margin-bottom: 3.2rem;
}
.app-page .margin-m {
  margin-bottom: 6.4rem;
}
.app-page .margin-l {
  margin-bottom: 7.2rem;
}
.app-page .margin-xl {
  margin-bottom: 12rem;
}
@media all and (max-width: 950px) {
  .app-page .margin-l {
    margin-bottom: 6.4rem;
  }
  .app-page .margin-m {
    margin-bottom: 2.4rem;
  }
  .app-page .margin-xl {
    margin-bottom: 8rem;
  }
}
.app-page .with-border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 3.2rem;
}

.app-page .blockquote .quote-text {
  font-size: 3.6rem;
  line-height: 120%;
}
@media all and (max-width: 950px) {
  .app-page .blockquote .quote-text {
    font-size: 2.9rem;
  }
}
.app-page h1 {
  font-size: 7.2rem;
  letter-spacing: -0.01em;
  line-height: 100%;
}
@media all and (max-width: 950px) {
  .app-page h1 {
    font-size: 4.2rem;
  }
}
.app-page .btns a {
  display: inline-block;
}
@media all and (max-width: 950px) {
  .app-page .btns a svg {
    max-width: 13rem;
  }
}
.app-page .scroll-to-reveal-text .word {
  opacity: 0;
}

.app-page .scroll-animations {
  text-align: center;
  height: 100vh;
  /* height: 100svh; */
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.app-page .animation-frame {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  position: relative;
  max-height: 100vh;
  /* max-height: 100svh; */
  opacity: 0;
  visibility: hidden;
}

.app-page .animation-frame.active {
  opacity: 1;
  visibility: visible;
}

.app-page .animation-frame .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.app-page .animation-frame .bg img,
.app-page .animation-frame .bg video {
  width: 100%;
  height: 103%;
  top: -3%;
  object-fit: cover;
}
@media all and (max-width: 1950px) {
  .animation-frame .bg video.spi {
    width: 100%;
    height: 110%;
    top: -10%;
    object-fit: cover;
  }
}
@media all and (max-width: 950px) {
  .animation-frame .bg video.spi {
    width: 100%;
    height: 105%;
    top: -5%;
    object-fit: cover;
  }
}

.app-page .scroll-animations .scroll-to-reveal-text {
  position: absolute;
  top: 8.8rem;
  left: 0;
  width: 100%;
  padding-inline: 2rem;
  font-size: 2rem;
  line-height: 110%;
  letter-spacing: -0.01em;
  font-weight: 450;
  font-variation-settings: "opsz" 20, "wght" 450;
  z-index: 10;
}
.app-page .scroll-animations .scroll-to-reveal-text.text-bottom {
  top: auto;
  bottom: 10%;
}

@media all and (max-width: 950px) {
  .app-page .scroll-animations .scroll-to-reveal-text {
    padding-inline: 6rem;
    font-size: 1.6rem;
    font-variation-settings: "opsz" 16, "wght" 450;
  }
  .app-page .scroll-animations .scroll-to-reveal-text p {
    max-width: 25rem;
    margin-inline: auto;
  }
  .app-page .scroll-animations .scroll-to-reveal-text.text-bottom {
    bottom: 4rem;
  }
}

.app-page .scroll-animations-phone {
  height: 90vh;
  height: 90svh;
  width: 100%;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.app-page .animation-frame-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4.8rem);
  overflow: hidden;
}

.app-page .animation-frame-media > img,
.app-page .animation-frame-media > video {
  width: 102%;
  height: 102%;
  transform: translate(-1%, -1%);
  object-fit: contain;
}

.app-page .radial-mask {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80rem;
  mask-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 1) 100%);
  background: radial-gradient(circle, rgba(205, 254, 0, 0) 0%, rgba(205, 254, 0, 0) 50%, rgba(205, 254, 0, 1) 90%);
  /* filter: blur(2rem); */
  z-index: 11;
  pointer-events: none;
}

.app-page .scroll-animations-phone .device > img {
  position: relative;
  z-index: 5;
  height: 100%;
  width: auto;
  max-width: none;
}
.app-page .scroll-animations-phone .device {
  position: relative;
  height: 100%;
  width: auto;
  max-width: none;
  mask-image: url("../images/3hiUtC2mOg2g.png");
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: var(--black);
}
@media all and (max-width: 950px) {
  .app-page .scroll-animations-phone .device {
    height: 90%;
  }
}
.app-page .scroll-animations-phone .screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.app-page .scroll-animations-phone .screen-content img,
.app-page .scroll-animations-phone .screen-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.app-page .scroll-animations-phone .screen-content img {
  position: absolute;
  width: 85%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.app-page .scroll-animations-phone .screen-content.active {
  opacity: 1;
  visibility: visible;
}

/* .app-page .scroll-to-reveal-text {
  visibility: hidden;
}
.app-page .scroll-to-reveal-text.text-1 {
  visibility: visible;
} */

.app-page .animation-icons {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  mask-image: url("../images/DQjOQHDqIXG8.png");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center bottom;
  z-index: 2;
}

@media all and (max-width: 950px) {
  .app-page .animation-icons {
    width: 230%;
    left: -65%;
  }
}

.app-page .scroll-animations .app-icon,
.app-page .scroll-animations .file-icon {
  position: absolute;
  opacity: 1;
  z-index: 5;
  opacity: 0;
}

.app-page .scroll-animations .app-icon:after {
  content: "";
  display: block;
  width: 160%;
  position: absolute;
  top: -68%;
  left: -80%;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 1.6rem;
}

.app-page .scroll-animations .app-icon img,
.app-page .scroll-animations .file-icon img {
  transform: translate(-50%, -50%);
}

.app-page .app-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.4rem;
}

@media all and (max-width: 950px) {
  section:has(.scroll-animations) {
    overflow: hidden;
  }
  .app-page .app-badges {
    gap: 2rem;
  }
  .app-page .app-badges .badge img {
    max-width: 8rem;
    margin-bottom: 0.2rem;
  }
  .app-page .app-badges .badge p {
    font-size: 1.2rem;
  }
  .app-page .qr-code-link {
    max-width: 10rem;
  }
}

.app-page .bento-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 2rem;
  width: 100%;
}

@media all and (max-width: 950px) {
  .app-page .bento-box {
    gap: 1.6rem;
    grid-template-columns: 100%;
  }
}
.app-page .bento-box-cell {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.2rem;
  font-size: 1.4rem;
  line-height: 130%;
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.app-page .bento-box-cell.dark-bg {
  background-color: rgba(0, 0, 0, 0.05);
}
.app-page .bento-box-cell.has-been-seen {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.app-page .bento-box-cell > p {
  position: relative;
  z-index: 1;
}
.app-page .bento-box-cell > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.app-page .bento-box-cell > img.i-2 {
  top: 5rem;
  left: 20%;
  width: 60%;
  height: auto;
}
.app-page .bento-box-cell > img.i-3 {
  top: 5rem;
  left: -30%;
  width: 160%;
  max-width: none;
  height: auto;
}
.app-page .bento-box-cell > img.i-4 {
  top: 6rem;
  left: 10%;
  width: 80%;
  height: auto;
}
.app-page .bento-box-cell > img.i-5 {
  top: 5rem;
  left: 15%;
  width: 70%;
  height: auto;
}
.app-page .bento-box-cell > img.i-6 {
  bottom: 1rem;
  left: 0%;
  width: 100%;
  height: auto;
  top: auto;
}
.app-page .bento-box-cell > img.i-7 {
  top: 0rem;
  left: 0%;
  width: 100%;
  height: auto;
}
.app-page .bento-box-cell > img.i-8 {
  top: 7rem;
  left: 10%;
  width: 80%;
  height: auto;
}
.app-page .bento-box-cell > img.i-9 {
  top: 6rem;
  left: 20%;
  width: 60%;
  height: auto;
}
@media all and (max-width: 950px) {
  .app-page .bento-box-cell > img.i-3 {
    top: 0rem;
    left: 0;
    width: 100%;
    max-width: none;
    height: auto;
  }
  .app-page .bento-box-cell > img.i-7 {
    top: 22%;
    left: 0%;
    width: 100%;
    height: auto;
  }
}
.app-page .bento-box-cell:not(.wide):not(.tall) {
  aspect-ratio: 1;
}
.app-page .bento-box-cell.wide {
  grid-column: auto / span 2;
}
.app-page .bento-box-cell.tall {
  grid-row: auto / span 2;
}
@media all and (max-width: 950px) {
  .app-page .bento-box-cell {
    padding: 0;
    aspect-ratio: 1;
  }
  .app-page .bento-box-cell > p {
    padding: 2rem;
  }
  .app-page .bento-box-cell.dark-bg > p {
    padding: 2rem;
  }
  .app-page .bento-box-cell.wide {
    grid-column: auto / span 1;
  }
  .app-page .bento-box-cell.tall {
    grid-row: auto / span 1;
  }
}

.app-page header.site-header {
  background: transparent;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: none;
}

.app-page .progress-bars {
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 4px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 0.4s var(--easeOut);
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  opacity: 0;
  z-index: 15;
}

@media all and (max-width: 950px) {
  .app-page .progress-bars {
    right: 2rem;
    height: 40vh;
  }
}

.app-page .progress-bars.show {
  opacity: 1;
}

.app-page .progress-bars .progress-bar {
  height: 2.8rem;
  border-radius: 1rem;
  color: var(--black);
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}

.app-page .progress-bars .progress-bar span {
  position: absolute;
  right: 100%;
  padding-right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  opacity: 0;
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  transition: 0.4s var(--easeOut);
  white-space: nowrap;
}

.app-page .progress-bars .progress-bar:hover span {
  opacity: 1;
}

.app-page .progress-bars .progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 1rem;
  background-color: var(--black);
  /* transition: height .4s var(--easeOut); */
}

.app-page .page-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  opacity: 0;
}

.app-page .page-intro .word {
  opacity: 0;
}

/* AI Tutor Page */

.tutor-page section {
  padding: 6.4rem 0;
}
.tutor-page section.extra-padding {
  padding: 8rem 0 12rem;
}
.tutor-page section.first {
  padding-top: 10rem;
}
.tutor-page .margin-xs {
  margin-bottom: 1.2rem;
}
.tutor-page .margin-s {
  margin-bottom: 3.2rem;
}
.tutor-page .margin-m {
  margin-bottom: 6.4rem;
}
.tutor-page .margin-l {
  margin-bottom: 7.2rem;
}
.tutor-page .margin-xl {
  margin-bottom: 12rem;
}
@media all and (max-width: 950px) {
  .tutor-page .margin-l {
    margin-bottom: 6.4rem;
  }
  .tutor-page .margin-m {
    margin-bottom: 2.4rem;
  }
  .tutor-page .margin-xl {
    margin-bottom: 8rem;
  }
}
.tutor-page .with-border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 3.2rem;
}

.tutor-page .blockquote .quote-text {
  font-size: 3.6rem;
  line-height: 120%;
}
@media all and (max-width: 950px) {
  .tutor-page .blockquote .quote-text {
    font-size: 2.9rem;
  }
}
.tutor-page h1 {
  font-size: 7.2rem;
  letter-spacing: -0.02em;
  line-height: 100%;
}
.fade-in {
  opacity: 0;
  animation-name: fade-in;
  -webkit-animation-name: fade-in;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
}
.a-1 {
  animation-delay: 0.1s;
}
.a-2 {
  animation-delay: 0.2s;
}
.a-3 {
  animation-delay: 0.3s;
}
.a-4 {
  animation-delay: 0.4s;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media all and (max-width: 950px) {
  .tutor-page h1 {
    font-size: 4.2rem;
  }
}
.tutor-page .btns a {
  display: inline-block;
}
@media all and (max-width: 950px) {
  .tutor-page .btns a svg {
    max-width: 13rem;
  }
}
.tutor-page .scroll-to-reveal-text .word {
  opacity: 0;
}

.tutor-page .scroll-animations {
  text-align: center;
  height: 100vh;
  height: 100svh;
  padding: 0 4rem;
  position: relative;
}

.tutor-page .scroll-animations .scroll-to-reveal-text {
  position: absolute;
  top: 8.8rem;
  left: 0;
  width: 100%;
  padding-inline: 2rem;
  font-size: 2rem;
  line-height: 110%;
  letter-spacing: -0.01em;
  font-weight: 450;
  font-variation-settings: "opsz" 20, "wght" 450;
}
.tutor-page .scroll-animations .scroll-to-reveal-text.text-bottom {
  top: auto;
  bottom: 8%;
}

@media all and (max-width: 950px) {
  .tutor-page .scroll-animations .scroll-to-reveal-text {
    padding-inline: 6rem;
    font-size: 1.6rem;
    font-variation-settings: "opsz" 16, "wght" 450;
  }
  .tutor-page .scroll-animations .scroll-to-reveal-text p {
    max-width: 25rem;
    margin-inline: auto;
  }
  .tutor-page .scroll-animations .scroll-to-reveal-text.text-bottom {
    bottom: 3rem;
  }
}

.tutor-page .scroll-animations-devices {
  height: 90vh;
  width: 100%;
  position: absolute;
  bottom: 5%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

.tutor-page .radial-mask {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80rem;
  mask-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 1) 100%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 80%);
  /* filter: blur(2rem); */
  z-index: 11;
  pointer-events: none;
}

.tutor-page .scroll-animations-devices .device {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: center;
  justify-self: center;
  opacity: 0;
  visibility: hidden;
  position: relative;
}

.tutor-page .scroll-animations-devices .device.device-phone.phone-1 {
  z-index: 10;
}

.tutor-page .scroll-animations-devices .device.active {
  opacity: 1;
  visibility: visible;
}

.tutor-page .scroll-animations-devices .device.device-phone > img {
  position: relative;
  z-index: 5;
  height: 100%;
  width: auto;
  max-width: 90vw;
  object-fit: contain;
}
.tutor-page .scroll-animations-devices .device.device-phone {
  position: relative;
  height: 100%;
  width: auto;
  max-width: none;
  mask-image: url("../images/3hiUtC2mOg2g.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--white);
}
@media all and (max-width: 950px) {
  .tutor-page .scroll-animations-devices .device.device-phone {
    height: 90%;
  }
}
.tutor-page .scroll-animations-devices .device.device-tablet > img {
  position: relative;
  z-index: 5;
  height: 100%;
  width: auto;
  max-width: 80vw;
  object-fit: contain;
}
.tutor-page .scroll-animations-devices .device.device-tablet {
  position: relative;
  height: 100%;
  width: auto;
  max-width: none;
  mask-image: url("../images/commenting.png");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: var(--white);
}
@media all and (max-width: 950px) {
  .tutor-page .scroll-animations-devices .device.device-tablet {
    height: 90%;
  }
}
.tutor-page .scroll-animations-devices .screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.tutor-page .scroll-animations-devices .screen-content img,
.tutor-page .scroll-animations-devices .screen-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tutor-page .scroll-animations-devices .screen-content img,
.tutor-page .scroll-animations-devices .screen-content video {
  position: absolute;
  width: 86%;
  height: 96%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tutor-page .scroll-animations-devices .device.device-tablet .screen-content img,
.tutor-page .scroll-animations-devices .device.device-tablet .screen-content video {
  width: 92%;
  height: 89%;
}
.tutor-page .scroll-animations-devices .screen-content.active {
  opacity: 1;
  visibility: visible;
}

.tutor-page .scroll-to-reveal-text {
  visibility: hidden;
}
.tutor-page .scroll-to-reveal-text.text-1 {
  visibility: visible;
}

.tutor-page .animation-icons {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
}

@media all and (max-width: 950px) {
  .tutor-page .animation-icons {
    width: 230%;
    left: -65%;
  }
}

.tutor-page .scroll-animations .app-icon,
.tutor-page .scroll-animations .file-icon {
  position: absolute;
  opacity: 1;
  z-index: 5;
  opacity: 0;
}

.tutor-page .scroll-animations .app-icon:after {
  content: "";
  display: block;
  width: 160%;
  position: absolute;
  top: -68%;
  left: -80%;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 1.6rem;
}

.tutor-page .scroll-animations .app-icon img,
.tutor-page .scroll-animations .file-icon img {
  transform: translate(-50%, -50%);
}

.tutor-page .app-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.4rem;
}

@media all and (max-width: 950px) {
  section:has(.scroll-animations) {
    overflow: hidden;
  }
  .tutor-page .app-badges {
    gap: 2rem;
  }
  .tutor-page .app-badges .badge img {
    max-width: 8rem;
    margin-bottom: 0.2rem;
  }
  .tutor-page .app-badges .badge p {
    font-size: 1.2rem;
  }
  .tutor-page .qr-code-link {
    max-width: 10rem;
  }
}

.tutor-page .bento-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 2rem;
  width: 100%;
}

@media all and (max-width: 950px) {
  .tutor-page .bento-box {
    gap: 1.6rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.tutor-page .bento-box-cell {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.2rem;
  font-size: 1.4rem;
  line-height: 130%;
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media all and (max-width: 950px) {
  .tutor-page .bento-box-cell {
    min-height: 30rem;
  }
}
.tutor-page .bento-box-cell.has-been-seen {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.tutor-page .bento-box-cell > p {
  position: relative;
  z-index: 1;
}
.tutor-page .bento-box-cell > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.tutor-page .bento-box-cell:not(.wide):not(.tall) {
  aspect-ratio: 1;
}
.tutor-page .bento-box-cell.wide {
  grid-column: auto / span 2;
}
.tutor-page .bento-box-cell.tall {
  grid-row: auto / span 2;
}
@media all and (max-width: 950px) {
  .tutor-page .bento-box-cell {
    padding: 0;
  }
  .tutor-page .bento-box-cell > p {
    padding: 2rem;
  }
  .tutor-page .bento-box-cell.wide {
    grid-column: auto / span 1;
  }
  .tutor-page .bento-box-cell.tall {
    grid-row: auto / span 1;
    overflow: hidden;
    height: 50rem;
  }

  .tutor-page .bento-box-cell.tall img {
    position: relative;
    width: 30rem;
  }
}

.tutor-page header.site-header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: none;
}

.tutor-page .btn {
  font-size: 1.6rem;
  font-variation-settings: "opsz" 14, "wght" 450;
  padding-inline: 1.6rem;
}

.tutor-page .progress-bars {
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 3px;
  height: 25vh;
  transform: translateY(-50%);
  transition: opacity 0.4s var(--easeOut);
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  opacity: 0;
  z-index: 15;
}

@media all and (max-width: 950px) {
  .tutor-page .progress-bars {
    right: 2rem;
    height: 40vh;
  }
}

.tutor-page .progress-bars.show {
  opacity: 1;
}

.tutor-page .progress-bars .progress-bar {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.tutor-page .progress-bars .progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--pink);
  /* transition: height .4s var(--easeOut); */
}

.tutor-page .quote-slider {
  width: 100%;
}

.tutor-page .quote-slider .quote-slide {
  width: 100%;
  padding-right: 0;
}

.tutor-page .quote-slider .quote-slide .media {
  width: 21rem;
}

.tutor-page .quote-slider .quote-slide .type-quote-01,
.tutor-page .quote-slider .quote-slide .h4 {
  max-width: 76rem;
  margin-inline: auto;
}

.tutor-page .quote-slider .flickity-prev-next-button.next {
  right: 50%;
  transform: translate(calc(50% + 3rem), 0);
}

.tutor-page .quote-slider .flickity-prev-next-button.previous {
  left: 50%;
  right: auto;
  transform: translate(calc(-50% - 3rem), 0);
}

html:has(body.tutor-page),
html:has(.pin-spacer) {
  scroll-behavior: unset !important;
}

.tutor-page .process-icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 8rem;
  position: relative;
}

.tutor-page .process-icons:before {
  content: "";
  display: block;
  width: 88%;
  height: 1px;
  border-top: 1px dotted rgb(0, 0, 0);
  position: absolute;
  top: 3.2rem;
  left: 6%;
}

.tutor-page .process-icons .process-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tutor-page .process-icons .process-icon > img {
  width: 6.4rem;
  height: 6.4rem;
}

.tutor-page .process-icons .process-step {
  color: #ff5102;
  margin-top: 1.8rem;
}

.tutor-page .process-icons p:not(.process-step) {
  font-weight: 450;
  font-size: 1.6rem;
  line-height: 110%;
  font-variation-settings: "opsz" 14, "wght" 450;
}

@media all and (max-width: 950px) {
  .tutor-page .process-icons {
    flex-direction: column;
    row-gap: 2.4rem;
  }
  .tutor-page .process-icons:before {
    width: 1px;
    height: 92%;
    left: 3.2rem;
    border-top: 0;
    border-left: 1px dotted rgb(0, 0, 0);
  }
  .tutor-page .process-icons .process-step {
    margin-top: 0;
  }
  .tutor-page .process-icons .process-icon {
    display: grid;
    grid-template-columns: 6.4rem 1fr;
    column-gap: 2.4rem;
  }
  .tutor-page .process-icons .process-icon .process-content {
    text-align: left;
  }
}
.tutor-swirl {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  left: 0;
  overflow: hidden;
}
.tutor-swirl video {
  position: absolute;
  width: 102%;
  left: -1%;
  height: auto;
  bottom: 0;
}
@media all and (max-width: 950px) {
  .tutor-swirl {
    display: none;
  }
}

/* Careers page */

.careers-page section {
  padding: 4rem 0;
}
.careers-page section.extra-padding {
  padding: 8rem 0 12rem;
}
.careers-page section.first {
  padding-top: 10rem;
}
.careers-page .margin-xs {
  margin-bottom: 1.2rem;
}
.careers-page .margin-s {
  margin-bottom: 3.2rem;
}
.careers-page .margin-m {
  margin-bottom: 6.4rem;
}
.careers-page .margin-l {
  margin-bottom: 7.2rem;
}
.careers-page .margin-xl {
  margin-bottom: 12rem;
}
@media all and (max-width: 950px) {
  .careers-page .margin-l {
    margin-bottom: 6.4rem;
  }
  .careers-page .margin-m {
    margin-bottom: 2.4rem;
  }
}
.careers-page .with-border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 3.2rem;
}

.careers-page .blockquote .quote-text {
  font-size: 3.6rem;
  line-height: 120%;
}
@media all and (max-width: 950px) {
  .careers-page .blockquote .quote-text {
    font-size: 2.9rem;
  }
}
.careers-page .blockquote .quote-author {
  margin-top: 4.4rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2rem;
  align-items: center;
}
.careers-page .blockquote .quote-author .quote-author-image {
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
}
.careers-page .blockquote .quote-author .quote-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.careers-page .blockquote .quote-author .quote-author-name-role {
  font-size: 1.6rem;
  line-height: 137%;
}
@media (hover: hover) {
  .careers-page .btn:hover {
    opacity: 0.6;
  }
}

.careers-page .careers-image-wrap {
  height: 47.98vw;
}
.careers-page .careers-images {
  position: relative;
  height: 47.98vw;
  padding: 0;
  transition: 0.3s var(--easeOut);
}
.careers-page .careers-images .careers-image {
  position: absolute;
  opacity: 0;
  transform: scale(1.1);
  animation: fadeIn 0.3s forwards ease-in-out;
  animation-delay: calc(var(--i) * 0.035s);
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media all and (max-width: 950px) {
  .careers-page .careers-image-wrap {
    overflow: hidden;
    height: calc(47.98vw * 1.5);
  }
  .careers-page .careers-images {
    transform-origin: 50% 0%;
    transform: scale(1.5);
  }
}

.careers-page .value {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 1.6rem;
}
.careers-page .value > * + * {
  margin-top: 0.8rem;
}
.careers-page .value .type-body-big {
  max-width: 54rem;
}
.careers-page .value + .value {
  margin-top: 2.4rem;
}

.careers-page .standalone-quote {
  font-weight: 400;
  font-size: 27px;
  line-height: 104%;
  font-style: italic;
}

.careers-page .quote-section {
  background-size: cover;
  background-position: center center;
  padding: 19.2rem 0;
  position: relative;
}

.careers-page .quote-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.careers-page .quote-section .wrap {
  position: relative;
  z-index: 5;
}

.careers-page .quote-section:after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.careers-page .quote-section .quote-text {
  max-width: 65.7rem;
}

@media all and (max-width: 950px) {
  .careers-page .quote-section {
    padding: 0;
    /* max-height: calc(100svh - 10.8rem);
    overflow: hidden; */
  }
  .careers-page .quote-section .wrap {
    position: absolute;
    bottom: 3.8rem;
    left: 0;
    width: 100%;
  }
  .careers-page .quote-section .bg {
    position: relative;
  }
}

.careers-page .office-locations {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  position: relative;
}

.careers-page .office-locations:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
}

.careers-page .office-locations .office-locations-nav,
.careers-page .office-locations .office-locations-thumbs {
  position: absolute;
  z-index: 10;
}

.careers-page .office-locations .office-locations-nav {
  top: 4.6rem;
  left: 5.6rem;
  color: var(--white);
}

.careers-page .office-locations .office-locations-nav a {
  transition: 0.4s var(--easeOut);
}

.careers-page .office-locations .office-locations-nav a:not(.active) {
  opacity: 0.4;
}

.careers-page .office-locations .office-locations-nav a:not(.active):hover {
  opacity: 1;
}

.careers-page .office-locations .office-locations-thumbs {
  padding: 3.2rem;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.careers-page .office-locations .office-locations-thumbs a {
  display: block;
  width: 12.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s var(--easeOut);
}

.careers-page .office-locations .office-locations-thumbs a.active,
.careers-page .office-locations .office-locations-thumbs a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.careers-page .office-locations .office {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--easeOut);
  position: relative;
  z-index: 5;
}
.careers-page .office-locations .media.office-thumb {
  aspect-ratio: 16 / 9;
}
.careers-page .office-locations .office.active {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 950px) {
  .careers-page .office-locations .office-locations-nav {
    top: 2rem;
    left: 2.5rem;
  }
  .careers-page .office-locations .office-locations-thumbs a {
    width: 8rem;
  }
  .careers-page .office-locations .media.office-thumb {
    aspect-ratio: 9 / 12;
  }
}
.careers-page .border-top {
  border-top: 1px solid #d9d9d9;
  padding-top: 2.6rem;
}

.careers-page .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: auto;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s var(--easeOut);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
}

.careers-page .modal.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.careers-page .modal-body {
  width: 100%;
  max-width: 144rem;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;
  box-shadow: 0px -3px 2px rgba(0, 0, 0, 0.03);
  overflow-y: scroll;
}

.careers-page .modal-body-content {
  flex: 1;
}

.careers-page .modal-body-content p {
  max-width: 65rem;
}

.careers-page .close-modal {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 3.2rem;
  background-color: transparent;
  color: black;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  appearance: none;
  cursor: pointer;
  transition: color 0.3s var(--easeOut);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 10;
}

body.careers-page.modal-open {
  overflow: hidden;
}

.careers-page .play-video {
  position: relative;
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
}
.careers-page .play-video span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  z-index: 5;
  display: inline-flex;
  width: 80%;
  gap: 0.8rem;
}
.careers-page .play-video span .inline-icon {
  font-size: 2rem;
}
@media all and (max-width: 950px) {
  .careers-page .play-video:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .careers-page .play-video span {
    color: var(--white);
    top: auto;
    bottom: 3.2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
  }
  .careers-page .play-video .media.landscape {
    aspect-ratio: unset;
    height: calc(100svh - 10.8rem);
  }
}

.careers-page .careers-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

@media all and (max-width: 950px) {
  .careers-page .careers-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.careers-page .careers-logos img {
  display: block;
  width: 100%;
}

.hanging-puncutation {
  margin-left: -0.35em;
  display: inline-block;
}

.page section {
  padding-block: 4rem;
}
.page section.extra-padding {
  padding-block: 14rem;
}
.page section.first {
  padding-top: 10rem;
}
.page .page-intro {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 6rem;
  padding-block-end: 2.2rem;
}
.page .page-intro.page-intro-with-logos {
  min-height: calc(100vh - 7rem);
  min-height: calc(100svh - 7rem);
}
@media all and (max-width: 950px) {
  .page section {
    padding-block: 2.4rem;
  }
  .page section.extra-padding {
    padding-block: 8rem;
  }
  .page .page-intro.page-intro-with-logos {
    min-height: 100vh;
    min-height: 100svh;
  }
}
.page .page-intro > *:not(.page-intro-bg):not(.page-intro-device-ticker) {
  position: relative;
  z-index: 10;
}
.page .page-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.page .page-intro-bg img,
.page .page-intro-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.page .page-intro .page-intro-device-ticker {
  --speed: 1;
  --duration: 80s;
  --scroll-start: 0;
  --scroll-end: -100%;
  position: absolute;
  bottom: 6rem;
  width: 100%;
  left: 0;
  z-index: 5;
  display: flex;
  overflow: hidden;
  user-select: none;
  /* mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  ); */
}

.page .page-intro .page-intro-device-ticker .devices-inner {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  /* animation: scroll-x calc(var(--speed) * var(--duration)) linear infinite; */
}

.page .page-intro .page-intro-device-ticker.reverse .devices-inner {
  animation-direction: reverse;
}

.page .page-intro .page-intro-device-ticker .devices-inner img {
  min-height: 26.2rem;
  height: calc(100vh - 47rem);
  width: auto;
}

.page .page-intro .page-intro-device-ticker .devices-inner img.short {
  min-height: 20rem;
  height: calc(100vh - 55rem);
}

@media all and (max-width: 950px) {
  .page .page-intro .page-intro-device-ticker {
    bottom: 4rem;
  }
  .page .page-intro .page-intro-device-ticker .devices-inner img {
    height: calc(100svh - 40rem);
    min-height: 0;
  }
  .page .page-intro .page-intro-device-ticker .devices-inner img.short {
    height: calc(100svh - 45rem);
  }
}

/* @media (prefers-reduced-motion: reduce) {
  .page .page-intro .page-intro-device-ticker .devices-inner {
    animation-play-state: paused;
  }
}

@keyframes scroll-x {
  from {
    transform: translate3d(var(--scroll-start), 0, 0);
  }
  to {
    transform: translate3d(var(--scroll-end), 0, 0);
  }
} */

.site-header.transparent {
  background: transparent;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.black.transparent,
.site-header.blackish.transparent {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.site-header.transparent.inverted-on-scroll.black.scrolled {
  --bg: var(--black);
}
.site-header.transparent.inverted-on-scroll.blackish.scrolled {
  --bg: var(--blackish);
}

.site-header.transparent.scrolled {
  color: black;
  border-color: rgba(0, 0, 0, 0.17);
}

.site-header.transparent.inverted-on-scroll.black.scrolled,
.site-header.transparent.inverted-on-scroll.blackish.scrolled {
  color: white !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page .partners-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(var(--numCells, 3), calc((100% - (1px * (var(--numCells, 3) - 1))) / var(--numCells, 3)));
  gap: 1px;
  border: 1px solid #e6e6e6;
  background-color: #e6e6e6;
  width: 100%;
}
@media all and (max-width: 1200px) {
  .learn-grid {
    grid-template-columns: repeat(2, 50%);
  }
}
@media all and (max-width: 950px) {
  .learn-grid {
    grid-template-columns: 100%;
  }
}
.learn-grid .grid-cell {
  position: relative;
  aspect-ratio: 10 / 11;
  overflow: hidden;
}
@media all and (max-width: 950px) {
  .learn-grid .grid-cell {
    aspect-ratio: 75 / 88;
  }
}
.learn-grid .grid-cell > img {
  width: 102%;
  height: 102%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: -1%;
  left: -1%;
  max-width: 102%;
}

.learn-grid .grid-cell .grid-cell-text {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 5;
  text-align: left;
  width: calc(100% - 4rem);
}
@media all and (max-width: 950px) {
  .learn-grid .grid-cell .grid-cell-text {
    top: 1.2rem;
    left: 1.2rem;
    width: calc(100% - 2.4rem);
  }
}
.learn-grid .grid-cell:has(.grid-cell-content) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16rem 3rem;
}

.learn-grid .grid-cell-content {
  font-style: normal;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 115%;
  max-width: 48rem;
  text-align: left;
}

@media all and (max-width: 950px) {
  .learn-grid .grid-cell:has(.grid-cell-content) {
    padding: 8rem 3rem;
  }
  .learn-grid .grid-cell-content {
    font-size: 2rem;
  }
}

.learn-grid .grid-cell .grid-cell-text .tag {
  font-size: 0.9rem;
  line-height: 140%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.6rem 1rem 0.4rem;
  border-radius: 3.2rem;
  max-height: 2.1rem;
  margin-bottom: 0.8rem;
}

@media all and (max-width: 950px) {
  .learn-grid .grid-cell .grid-cell-text .tag {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(var(--numCells, 3), calc((100% - (2rem * (var(--numCells, 3) - 1))) / var(--numCells, 3)));
  gap: 4rem 2rem;
  width: 100%;
}

@media all and (max-width: 1200px) {
  .agents-grid {
    grid-template-columns: repeat(2, 50%);
  }
}
@media all and (max-width: 950px) {
  .agents-grid {
    grid-template-columns: 100%;
  }
}

.page .blockquote {
  padding-top: 5.6rem;
}
.page .blockquote .quote-author {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.6rem;
}
.page .blockquote .quote-author:has(.quote-author-image) {
  grid-template-columns: 40px 1fr;
}
.page .blockquote .quote-author .quote-author-image {
  border-radius: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.page .blockquote .quote-author .quote-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page .blockquote .quote-author .quote-author-name-role {
  opacity: 0.65;
  line-height: 137%;
}

@media all and (max-width: 950px) {
  .page .partner-logo-grid .partner-logo:nth-child(4),
  .page .partner-logo-grid .partner-logo:nth-child(5),
  .page .partner-logo-grid .partner-logo:nth-child(6) {
    display: none;
  }
}

.page .blockquote-slider {
  width: 100%;
  margin-bottom: 4.3rem;
}

.page .blockquote-slider .flickity-viewport {
  overflow: visible;
}

.page .blockquote-slider .blockquote-slide {
  padding: 0 8rem;
  display: flex;
  justify-content: center;
}

.page .blockquote-slider .blockquote-slide:not(.is-selected) {
  opacity: 0.2;
}

@media all and (max-width: 950px) {
  .page .blockquote-slider {
    margin-bottom: 6rem;
  }
  .page .blockquote-slider .blockquote-slide {
    padding: 0;
    margin-right: 4rem;
  }
}

.page .blockquote-slider .blockquote {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page .blockquote-slider .flickity-button {
  background: black;
}

.page .blockquote-slider .flickity-button:disabled {
  opacity: 0.2;
}

.page .blockquote-slider .flickity-prev-next-button {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  top: calc(100% + 4.3rem);
  transform: translate(0, 0);
}

.page .blockquote-slider .flickity-prev-next-button.next {
  right: 50%;
  transform: translate(calc(100% + 0.5rem), 0);
}

.page .blockquote-slider .flickity-prev-next-button.previous {
  left: auto;
  right: 50%;
  transform: translate(calc(0% - 0.5rem), 0);
}

.page .blockquote-slider .flickity-prev-next-button:focus {
  box-shadow: none;
}

.page .blockquote-slider .flickity-button-icon {
  fill: var(--white);
  top: 29.5%;
  left: 29.5%;
  width: 41%;
  height: 41%;
}

.medals {
  padding-block: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.border-top-subtle {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-subtle {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-bottom-subtle {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-black .border-bottom-subtle,
.bg-blackish .border-bottom-subtle,
.bg-off-black .border-bottom-subtle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.case-studies-slider-wrap {
  text-align: left;
  width: 100%;
}

section:has(.case-studies-slider-wrap) {
  overflow: hidden;
}

.case-studies-slider {
  opacity: 0;
  transition: opacity 0.4s;
}

.case-studies-slider.is-hidden {
  display: none;
}

.case-studies-slider.flickity-enabled,
.case-studies-slider.show {
  opacity: 1;
}

.case-studies-slider.show {
  display: flex;
  column-gap: 2rem;
}

@media all and (max-width: 950px) {
  .case-studies-slider.show {
    flex-direction: column;
    row-gap: 2rem;
  }
}

.case-studies-slider.show .case-studies-slide {
  margin-right: 0;
}

.case-studies-slider-wrap > .top {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 140%;
  margin-bottom: 1.5rem;
  padding-right: 12rem;
}

.case-studies-slider .flickity-viewport {
  overflow: visible;
}

.case-studies-slider .case-studies-slide {
  width: calc((100% - 2rem) / 2.6);
  margin-right: 1rem;
}

.case-studies-slider.three-across .case-studies-slide {
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
}

@media all and (max-width: 950px) {
  .case-studies-slider-wrap > .top {
    padding-right: 0;
  }
  .case-studies-slider .case-studies-slide {
    width: calc((100% - 1rem) / 1.1);
  }
  .case-studies-slider.show .case-studies-slide {
    width: 100%;
  }
  .case-studies-slider.three-across .case-studies-slide {
    width: calc((100% - 2rem) / 1.1);
  }
}

.case-study-slide-card {
  aspect-ratio: 10 / 13;
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 3rem;
  padding: 3rem;
}

.case-study-slide-card:hover .bg {
  transform: scale(1.03);
}

.case-study-slide-card > *:not(.bg) {
  position: relative;
  z-index: 10;
}

.case-study-slide-card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s var(--easeOut);
}

.case-study-slide-card .bg.with-filter:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.case-study-slide-card .bg img,
.case-study-slide-card .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.case-study-slide-card-logo {
  line-height: 0;
}

.case-study-slide-card-logo svg {
  display: block;
}

.case-studies-slider .flickity-button {
  background: black;
}

.case-studies-slider .flickity-button:disabled {
  opacity: 0.2;
}

.case-studies-slider .flickity-prev-next-button {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  top: -5.4rem;
  transform: translateY(0);
}

@media all and (max-width: 950px) {
  .case-studies-slider {
    padding-bottom: 4rem;
  }
  .case-studies-slider:not(.arrows-top-mobile) .flickity-prev-next-button {
    top: calc(100% - 2rem);
  }
}

.case-studies-slider .flickity-prev-next-button.next {
  right: 0;
}

.case-studies-slider .flickity-prev-next-button.previous {
  left: auto;
  right: 5rem;
}

.case-studies-slider .flickity-prev-next-button:focus {
  box-shadow: none;
}

.case-studies-slider .flickity-button-icon {
  fill: var(--white);
  top: 29.5%;
  left: 29.5%;
  width: 41%;
  height: 41%;
}

.learn-comparisons {
  width: 100%;
}

.comp-row-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  width: 100%;
}

.comp-row {
  padding-block: 4rem;
  padding-inline: 4rem;
  display: grid;
  column-gap: 2rem;
  align-items: center;
  grid-template-columns: 0.4fr 0.2fr 0.4fr;
  max-width: 111rem;
  width: 100%;
}

@media all and (max-width: 950px) {
  .comp-row {
    padding-inline: 2.5rem;
  }
  .comp-row:not(.comp-row-header) {
    grid-template-columns: 100%;
    text-align: left;
    row-gap: 1.2rem;
    padding-block: 2rem;
  }
}

.comp-row .left {
  color: rgba(0, 0, 0, 0.6);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 950px) {
  .comp-row:not(.comp-row-header) .left {
    justify-content: flex-start;
  }
}

.comp-row .left p {
  max-width: 33.7rem;
}

.comp-row .right {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

@media all and (max-width: 950px) {
  .comp-row:not(.comp-row-header) .right {
    justify-content: flex-start;
  }
}

.comp-row .right p {
  max-width: 37.2rem;
}

.comp-row.comp-row-header {
  padding-block: 1.8rem;
  color: rgba(0, 0, 0, 0.6);
}

.learn-tag {
  font-size: 0.9rem;
  line-height: 140%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.6rem 1rem 0.4rem;
  border-radius: 3.2rem;
  max-height: 2.1rem;
  margin-bottom: 0.8rem;
}

@media all and (max-width: 950px) {
  .learn-tag {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }
}

.page details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
  position: relative;
}

.page details[open] {
  padding-bottom: 2.4rem;
}
.page details p {
  max-width: 70rem;
  opacity: 0.6;
}

.page details p + p {
  margin-top: 1em;
}

.page details p a {
  text-decoration: underline;
}

.page summary {
  cursor: pointer;
  list-style: none;
  padding: 2.4rem 0;
  padding-right: 4rem;
}

.page summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  pointer-events: none;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10C2 10.4752 2.39758 10.863 2.86303 10.863H9.13698V17.137C9.13698 17.6025 9.52486 18 10 18C10.4752 18 10.8728 17.6025 10.8728 17.137V10.863H17.137C17.6025 10.863 18 10.4752 18 10C18 9.52486 17.6025 9.12729 17.137 9.12729H10.8728V2.86303C10.8728 2.39758 10.4752 2 10 2C9.52486 2 9.13698 2.39758 9.13698 2.86303V9.12729H2.86303C2.39758 9.12729 2 9.52486 2 10Z' fill='white' fill-opacity='1'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: var(--black);
  transition: transform 0.5s var(--easeOut);
  border-radius: 100%;
}

.page details[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
}

.page summary::-webkit-details-marker {
  display: none;
}

@media all and (max-width: 950px) {
  .page summary {
    padding: 1.6rem 0;
    padding-right: 4rem;
  }
}

.margin-xs {
  margin-bottom: 1.2rem;
}
.margin-s {
  margin-bottom: 2rem;
}
.margin-sm {
  margin-bottom: 3rem;
}
.margin-m {
  margin-bottom: 6.4rem;
}
.margin-l {
  margin-bottom: 7.2rem;
}
.margin-xl {
  margin-bottom: 10rem;
}

@media all and (max-width: 950px) {
  .margin-small-s {
    margin-bottom: 2rem;
  }
  .margin-l {
    margin-bottom: 5rem;
  }
  .margin-xl {
    margin-bottom: 6rem;
  }
}

.full-height {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.full-height .bottom {
  position: absolute;
  bottom: 4rem;
}

.full-height:has(.bg) > *:not(.bg) {
  z-index: 5;
}

.full-height .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.full-height .bg img,
.full-height .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-height .bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lighten {
  mix-blend-mode: lighten;
}

.reform-sections {
  position: relative;
}

.reform-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media all and (max-width: 950px) {
  .reform-section {
    height: auto !important;
    min-height: 75vh;
  }
  .page .reform-section .blockquote {
    padding-top: 0;
  }
}

.reform-section .fixed-content {
  height: 100vh;
  height: 100svh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}

@media all and (max-width: 950px) {
  .reform-section .fixed-content {
    height: auto;
    top: 3rem;
  }
  .reform-section .fixed-content.mobile-no-sticky {
    position: relative;
    height: auto;
    /* min-height: 100vh; */
    /* min-height: 100svh; */
  }
}

.fixed-content-wrap {
  max-width: 70.7rem;
  padding-inline: 2.5rem;
}

.reform-section .fixed-content .fixed-content-wrap {
  opacity: 0;
  transition: 1s var(--easeOut);
  /* position: sticky;
  top: 50%;
  transform: translateY(-50%); */
}

@media all and (max-width: 950px) {
  .reform-section .fixed-content .fixed-content-wrap {
    opacity: 1;
  }
}

.reform-section .fixed-content.active .fixed-content-wrap {
  opacity: 1;
}

.reform-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1;
  padding-inline: 3.2rem;
  opacity: 0;
  transition: opacity 1s var(--easeOut);
}

.reform-section.active .reform-images {
  opacity: 1;
}

.reform-section.active .fixed-content-wrap {
  opacity: 0.7;
}

@media all and (max-width: 950px) {
  .reform-section.active .fixed-content-wrap {
    opacity: 1;
  }
  .reform-section.active .reform-images {
    opacity: 0.25;
  }
}

.reform-image {
  width: 100%;
  max-width: 26.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 0.9rem;
}

@media all and (max-width: 950px) {
  .reform-image {
    max-width: 15rem;
  }
}

.media-caption p {
  font-size: 1.2rem;
}

.reform-image.right {
  align-self: flex-end;
}

.reform-sections-nav-wrap {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  padding-inline: 3.2rem;
}

.reform-sections-nav {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.4rem;
  transition: all 1s var(--easeOut);
}

.reform-sections-nav.hide {
  transform: translateX(-200%);
}

.reform-sections-nav-wrap:hover .reform-sections-nav.hide {
  transform: translateX(0);
}

@media all and (max-width: 950px) {
  .reform-sections-nav {
    display: none;
  }
}

.reform-sections-nav a {
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.4rem);
  transition: all 0.4s var(--easeOut);
}

.reform-sections-nav a:hover,
.reform-sections-nav a.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.page .underline {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 0.05rem;
}

@media all and (max-width: 950px) {
  .reform-page,
  .reform-page p,
  .reform-page .p,
  .reform-page ul:not(.detail) li,
  .reform-page ol:not(.detail) li {
    font-size: 1.6rem;
  }
  .reform-page h2 {
    font-size: 2.8rem;
  }
  .reform-page h4 {
    font-size: 2.2rem;
  }
}

.tabs-nav.inline-tabs-nav {
  display: flex;
  align-items: flex-end;
  column-gap: 2.7rem;
  transform: translateY(1px);
}

.tabs-nav.inline-tabs-nav a {
  padding: 0.8rem;
  display: block;
  opacity: 0.4;
  border-bottom: 1px solid transparent;
  font-variation-settings: "wght" 500, "opsz" 14, "ital" 0;
  font-size: 1.4rem;
}

.tabs-nav.inline-tabs-nav a.active {
  border-color: currentColor;
  opacity: 1;
}

.page .tabs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}

.page .tabs .tab {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
}

.page .tabs .tab.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  position: relative;
  height: auto;
}

.page hr {
  opacity: 0.2;
  outline: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  margin-block: 3.6rem;
}

.page table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.page table thead {
  border-bottom: 1px solid rgb(0, 0, 0, 0.07);
}

.page table th {
  font-weight: bold;
  font-variation-settings: "wght" 700, "opsz" 14, "ital" 0;
}

.page table tr:not(:last-child) {
  border-bottom: 1px solid rgb(0, 0, 0, 0.07);
}

.page table tr td:not(:last-child),
.page table tr th:not(:last-child) {
  border-right: 1px solid rgb(0, 0, 0, 0.07);
}

.page table tr td,
.page table tr th {
  padding: 1rem;
}

.page .table-wrap {
  width: 100%;
  overflow: scroll;
}

.announcement-bar {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 1.6rem 2.5rem 1.3rem;
  text-align: center;
  z-index: 150;
  bottom: 0;
}

.announcement-bar p span {
  text-decoration: underline;
  font-weight: bold;
  font-variation-settings: "wght" 700, "opsz" 14, "ital" 0;
  margin-inline-start: 2.4rem;
}

.announcement-bar .detail {
  font-size: 1.5rem;
}

@media all and (max-width: 950px) {
  .announcement-bar .detail {
    font-size: 1.2rem;
  }
}

.announcement-bar.top {
  bottom: auto;
  top: 0;
}

body:has(.announcement-bar.top) {
  padding-top: 5.3rem;
}
body:has(.announcement-bar:not(.top)) {
  padding-bottom: 5.3rem;
}
body:has(.announcement-bar.top) .site-header {
  top: 5.3rem;
}

@media all and (max-width: 950px) {
  .announcement-bar p span {
    margin-inline-start: 0.8rem;
  }
  body:has(.announcement-bar.top) {
    padding-top: 6.7rem;
  }
  body:has(.announcement-bar.top) .site-header {
    top: 6.7rem;
  }
}

@media all and (max-width: 420px) {
  body:has(.announcement-bar.top) {
    padding-top: 8.4rem;
  }
  body:has(.announcement-bar.top) .site-header {
    top: 8.4rem;
  }
}

.page .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: auto;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s var(--easeOut);
  cursor: pointer;
  background-color: rgba(10, 10, 10, 0.95);
}

.page .modal.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.page .modal-body {
  width: auto;
  height: calc(100svh - 10rem);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;
  padding-inline: 2.5rem;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.page .modal-body-video {
  height: 100%;
}

.page .modal-body video {
  width: auto;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

/* .page .modal-body-content {
  flex: 1;
  height: 100%;
} */

.page .modal-body-content {
  pointer-events: all;
}

.page .modal-body-content p {
  max-width: 65rem;
}

.page .close-modal {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 3.2rem;
  background-color: transparent;
  color: black;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  appearance: none;
  cursor: pointer;
  transition: color 0.3s var(--easeOut);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 10;
}

body.page.modal-open {
  overflow: hidden;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 3.4rem;
}

.podcast-hero-wrap {
  height: calc(100vh - 6.4rem);
  height: calc(100svh - 6.4rem);
  background-color: var(--black);
}

.podcast-hero {
  position: static;
  top: 0;
  right: 0;
  bottom: 6.4rem;
  left: 0;
  display: flex;
  align-items: flex-end;
  z-index: 12;
}

.podcast-hero.fixed {
  position: fixed;
}

/* .podcast-hero.pip {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: auto;
  width: 30rem;
  aspect-ratio: 16 / 9;
  z-index: 50;
} */

/* .podcast-hero.pip + .pip-holder {
  height: calc(100vh - 6.4rem);
  height: calc(100svh - 6.4rem);
} */

/* .podcast-hero.pip .play-icon {
  right: 50%;
  transform: translateX(50%);
} */

.podcast-hero.start .podcast-hero-media {
  cursor: pointer;
}

.podcast-hero:not(.start) .play-icon {
  display: none;
}

.podcast-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.podcast-hero-media img,
.podcast-hero-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--easeOut);
}

.podcast-hero-media img.active,
.podcast-hero-media iframe.active {
  opacity: 1;
  pointer-events: all;
}

.podcast-hero .play-icon {
  position: absolute;
  top: 50%;
  right: 8.8rem;
  transform: translateY(-50%);
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 1.4rem;
}

.podcast-hero .play-icon .inline-icon {
  font-size: 1.2rem;
}

.podcast-hero-meta {
  width: 100%;
  background-color: var(--off-black);
  position: sticky;
  top: 0;
  z-index: 10;
  font-family: "JetBrainsMono", monospace;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.podcast-hero-meta-inner {
  display: grid;
  min-height: 6.4rem;
  align-items: center;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  transition: 0.4s var(--easeOut);
  transition-delay: 0.1s;
  gap: 2rem;
}

body:has(.site-header.scrolled:not(.hide)) .podcast-hero-meta {
  top: 5.5rem;
}

.podcast-hero-meta-inner > div {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}

.podcast-hero-meta-inner p {
  font-family: "JetBrainsMono", monospace;
  font-size: 1.2rem;
  line-height: 110%;
  letter-spacing: 0.04em;
  min-width: calc(((100vw - 17.6rem) - (2rem * 11)) / 12);
}

.podcast-hero-meta-inner .title {
  grid-column: auto / span 3;
}

.podcast-hero-meta-inner .podcast-meta {
  grid-column: auto / span 3;
}
.podcast-hero-meta-inner .podcast-title {
  grid-column: auto / span 4;
}
.podcast-hero-meta-inner .podcast-length {
  grid-column: auto / span 2;
  justify-content: flex-end;
  text-align: right;
}

@media all and (max-width: 1300px) {
  .podcast-hero-meta-inner .title {
    grid-column: auto / span 5;
  }
  .podcast-hero-meta-inner .podcast-meta {
    grid-column: auto / span 2;
  }
  .podcast-hero-meta-inner .podcast-title {
    grid-column: auto / span 3;
  }
}

@media all and (max-width: 950px) {
  .podcast-hero-wrap {
    height: calc(100vh - 11.2rem);
    height: calc(100svh - 11.2rem);
  }
  /* .podcast-hero {
    height: calc(100vh - 11.2rem);
    height: calc(100svh - 11.2rem);
  } */
  .podcast-hero {
    bottom: 11.2rem;
  }
  /* .podcast-hero.pip + .pip-holder {
    height: calc(100vh - 11.2rem);
    height: calc(100svh - 11.2rem);
  } */
  .podcast-hero .play-icon {
    right: 2.5rem;
  }
  .podcast-hero-meta-inner {
    padding-block: 2rem;
  }
  .podcast-hero-meta-inner .title {
    grid-column: auto / span 12;
  }
  .podcast-hero-meta-inner .podcast-meta {
    grid-column: auto / span 12;
  }
  .podcast-hero-meta-inner .podcast-title {
    grid-column: auto / span 12;
    margin-top: -2rem;
  }
  .podcast-hero-meta-inner .podcast-length {
    display: none;
  }
  .podcast-hero-meta-inner p {
    min-width: calc(((100vw - 5rem) - (2rem * 11)) / 12);
  }
}

.podcast-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: 0.4s var(--easeOut);
  transition-delay: 0.4s;
  font-family: "JetBrainsMono", monospace;
  font-size: 1.4rem;
  text-transform: uppercase;
}

body:has(.podcast-grid .grid-block:hover) .podcast-header {
  transition-delay: 0s;
  background-color: transparent;
}

.podcast-header-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 6.4rem;
  gap: var(--gutter);
  align-items: center;
  gap: 2rem;
}

.podcast-header-inner p {
  font-family: "JetBrainsMono", monospace;
  font-size: 1.2rem;
  line-height: 110%;
  letter-spacing: 0.04em;
}

.podcast-header-inner .left,
.podcast-header-inner .right {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  justify-content: flex-start;
}

.podcast-header-inner .left {
  grid-column: auto / span 8;
}

.podcast-header-inner .right {
  grid-column: auto / span 4;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.podcast-header-inner .right a:not(.active) {
  text-decoration: line-through;
  opacity: 0.3;
  transition: opacity 0.3s var(--easeOut);
}

.podcast-header-inner .right a:not(.active):hover {
  opacity: 1;
}

@media all and (max-width: 950px) {
  .podcast-header {
    background-color: var(--off-black);
  }
  .podcast-header-inner {
    padding-block: 2rem;
  }
  .podcast-header-inner .left {
    grid-column: auto / span 12;
  }
  .podcast-header-inner .right {
    grid-column: auto / span 12;
    justify-content: flex-start;
  }
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 4rem) / 3));
  gap: 4.8rem 2rem;
  min-height: calc(100vh - 6.4rem);
  min-height: calc(100svh - 6.4rem);
  align-content: end;
  padding-block: 4.8rem;
  padding-block-start: 20rem;
}

@media all and (max-width: 950px) {
  .podcast-grid {
    padding-block-start: 4.8rem;
  }
}

.podcast-grid .grid-block {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

.podcast-grid .grid-block .bg-video {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.6s var(--easeOut);
}

.podcast-grid .grid-block:hover .bg-video {
  opacity: 1;
  visibility: visible;
}

.podcast-grid:has(.grid-block:hover) .grid-block:not(:hover) .grid-block-image {
  opacity: 0;
}

.podcast-grid .grid-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-grid .grid-block-image {
  display: block;
  aspect-ratio: 252 / 155;
  transition: 0.6s var(--easeOut);
}

.podcast-grid .grid-block-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-grid .grid-block-meta {
  display: grid;
  grid-template-columns: calc((100% - 2rem) * 0.25) calc((100% - 2rem) * 0.75);
  gap: 2rem;
}

.podcast-grid .grid-block-meta p {
  font-family: "JetBrainsMono", monospace;
  font-size: 1.2rem;
  line-height: 110%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media all and (max-width: 1200px) {
  .podcast-grid {
    grid-template-columns: repeat(2, calc((100% - 2rem) / 2));
  }
}

@media all and (max-width: 768px) {
  .podcast-grid {
    grid-template-columns: 100%;
  }
}

.changelog-row {
  display: grid;
  grid-template-columns: calc((100% - 2rem) * 0.25) calc((100% - 2rem) * 0.75);
  grid-template-areas: "date content";
  margin-bottom: 6rem;
}

@media all and (max-width: 950px) {
  .changelog-row {
    grid-template-columns: 100%;
    grid-template-areas:
      "date"
      "content";
  }
  .changelog-date {
    margin-bottom: 2.4rem;
  }
}

.changelog-date {
  grid-area: date;
}
.changelog-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}

.changelog-content p a {
  text-decoration: underline;
  opacity: 0.6;
}

.change-tags {
  margin-top: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.change-tags > span {
  display: inline-flex;
  background-color: rgba(10, 10, 10, 0.03);
  padding: 0.4rem 0.8rem;
  align-items: center;
  justify-content: center;
  column-gap: 0.6rem;
  border-radius: 0.8rem;
  color: #9a9a9a;
}

.bg-black .change-tags > span {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
}

.change-tags > span .circle {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100%;
}

.changelog-pagination {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 2rem) * 0.5));
  grid-template-areas: "prev next";
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: calc((100% - 2rem) * 0.75);
  margin-left: calc((100% - 2rem) * 0.25);
}

.bg-black .changelog-pagination {
  border-color: rgba(255, 255, 255, 0.17);
}

@media all and (max-width: 950px) {
  .changelog-pagination {
    width: 100%;
    margin-left: 0;
  }
}

.changelog-pagination .prev-link,
.changelog-pagination .next-link {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  padding-block: 3.3rem;
}

.changelog-pagination .prev-link {
  grid-area: prev;
}
.changelog-pagination .next-link {
  grid-area: next;
  text-align: right;
}

.page .quote-wall-wrap {
  position: relative;
  clip-path: inset(0px 0px 0px 0px);
  padding-block: 2%;
}

.page .quote-wall-wrap .left-overlay,
.page .quote-wall-wrap .right-overlay {
  display: block;
  width: 5%;
  position: absolute;
  top: 0;
  left: -2px;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.page .quote-wall-wrap .left-overlay {
  transform: scaleX(var(--hide));
  transform-origin: top left;
}

.page .quote-wall-wrap .right-overlay {
  left: auto;
  right: -2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  transform: scaleX(var(--hide));
  transform-origin: top right;
}

.page .quote-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 150%;
  /* transform: translate3d(-12.5%, 0, 0); */
  gap: 1.5rem;
  padding-block: 1.5rem;
  padding-inline: 10%;
  /* transition: transform 0.05s linear; */
}

.page .quote-wall.no-hover {
  width: 100%;
  /* max-width: 135rem;
  margin-inline: auto; */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

@media all and (max-width: 1024px) {
  .page .quote-wall-wrap {
    overflow-y: scroll;
  }
  .page .quote-wall {
    width: 100%;
    transform: none !important;
    grid-template-columns: repeat(7, 50vw);
    grid-template-rows: repeat(2, 1fr);
    padding-inline: 2.5rem;
    width: fit-content;
  }
  .page .quote-wall-wrap .left-overlay,
  .page .quote-wall-wrap .right-overlay {
    display: none;
  }
  .page .quote-wall .blockquote:last-child {
    display: none;
  }
  /* .page .quote-wall .blockquote:nth-child(7) {
    margin-right: 2.5rem;
  }
  .page .quote-wall .blockquote:nth-last-child(2) {
    margin-right: 2.5rem;
  } */
}

@media all and (max-width: 650px) {
  .page .quote-wall {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
  }
  .page .quote-wall .blockquote {
    width: 80vw;
    flex: 0 0 auto;
  }
  .page .quote-wall .blockquote:last-child {
    margin-right: 2.5rem;
    display: flex;
  }
}

.page .quote-wall .blockquote {
  margin-top: 0;
  padding: 3rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 3.5rem;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  transition: 0.3s cubic-bezier(0.534, 0.315, 0.104, 0.999);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.page .quote-wall .blockquote .quote-author {
  margin-top: 2.5rem;
}

@media (hover: hover) {
  @media all and (min-width: 1023px) {
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover) {
      opacity: 0.05;
      z-index: 4;
      transform: scale(1.008);
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).top-left {
      translate: -14% -14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).top-right {
      translate: 14% -14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).bottom-left {
      translate: -14% 14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).bottom-right {
      translate: 14% 14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-1 {
      opacity: 0.4;
      scale: 1.08;
      z-index: 8;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-1.left {
      translate: -14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-1.right {
      translate: 14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-1.top {
      translate: 0 -14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-1.bottom {
      translate: 0 14%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2 {
      opacity: 0.2;
      scale: 1.03;
      z-index: 6;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.left {
      translate: -20%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.right {
      translate: 20%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.top {
      translate: 0 -20%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.bottom {
      translate: 0 20%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.top-left {
      translate: -8% -8%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.top-right {
      translate: 8% -8%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.bottom-left {
      translate: -8% 8%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-2.bottom-right {
      translate: 8% 8%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3 {
      opacity: 0.05;
      z-index: 4;
      scale: 1.008;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.left {
      translate: -23%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.right {
      translate: 23%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.top-left {
      translate: -10% -10%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.top-right {
      translate: 10% -10%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.bottom-left {
      translate: -10% 10%;
    }
    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:not(:hover).ripple-3.bottom-right {
      translate: 10% 10%;
    }

    .page .quote-wall:not(.no-hover):has(.blockquote:hover) .blockquote:hover {
      opacity: 1;
      transform: scale(1.18);
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 10;
    }
  }
}

/* Candyland */

/* div.main:has(.landing-polaroids) {
  overflow: hidden;
} */
.landing-polaroids {
  width: 100%;
  aspect-ratio: 23 / 10;
  position: relative;
  z-index: 100;
  transition: aspect-ratio 0.6s var(--easeOut);
  --dropEase: cubic-bezier(0.327, 0.023, 0.988, 0.015);
  --duration: 0.7s;
  --stagger: 0.07s;
}
@media all and (max-width: 950px) {
  .landing-polaroids {
    aspect-ratio: 1;
    margin-left: -3rem;
    width: calc(100% + 6rem);
  }
}
.landing-polaroids .landing-polaroid {
  perspective: 70rem;
  position: absolute;
  translate: -50% -50%;
  width: 100%;
  rotate: var(--rotate-start);
}
@media all and (max-width: 950px) {
  .landing-polaroids .landing-polaroid {
    scale: 1.3;
  }
}
.landing-polaroids .landing-polaroid img {
  filter: blur(0.5vw);
  translate: 0 0 30rem;
  position: relative;
  z-index: 4;
}
.landing-polaroids .landing-polaroid:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(2rem);
  scale: 1.3;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.landing-polaroids.animate .landing-polaroid {
  animation: rotate var(--duration) calc(var(--i) * var(--stagger) + 0.05s) forwards var(--dropEase);
}
.landing-polaroids.animate .landing-polaroid:after {
  animation: sharpenShadow var(--duration) calc(var(--i) * var(--stagger)) forwards var(--dropEase);
}
.landing-polaroids.animate .landing-polaroid img {
  animation: drop var(--duration) calc(var(--i) * var(--stagger)) forwards var(--dropEase);
}

@keyframes rotate {
  from {
    rotate: var(--rotate-start);
  }
  to {
    rotate: var(--rotate-end);
  }
}
@keyframes sharpenShadow {
  from {
    filter: blur(2rem);
    background: rgba(0, 0, 0, 0.3);
    scale: 1.3;
    opacity: 1;
  }
  to {
    filter: blur(1rem);
    background: rgba(0, 0, 0, 0.1);
    scale: 1;
    opacity: 0.5;
  }
}
@keyframes drop {
  from {
    filter: blur(0.5vw);
    translate: 0 0 30rem;
  }
  to {
    filter: blur(0);
    translate: 0 0 0;
  }
}
