/* Experience layer: one owner for route, intro and content motion. */
:root {
  --motion-fast: 180ms;
  --motion-ui: 280ms;
  --motion-enter: 680ms;
  --motion-scene: 880ms;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --experience-ink: #080d10;
  --experience-ink-2: #10171b;
  --experience-paper: #f4f5f2;
  --experience-green: #55e3ad;
  --experience-blue: #6485ff;
}

html {
  scroll-behavior: smooth;
}

html.route-preload:not(.intro-pending) body {
  opacity: 0;
}

html.intro-pending body,
html:not(.route-preload) body {
  opacity: 1;
}

html.intro-pending body > :not(.site-intro):not(script) {
  visibility: visible !important;
}

html:not(.intro-pending) .site-intro {
  display: none !important;
}

body {
  transition: opacity .34s ease, background-color .44s ease, color .36s ease;
}

/* Cross-page curtain. */
.route-curtain {
  position: fixed;
  inset: 0;
  z-index: 4800;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--experience-ink);
  color: #f8faf8;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: transform .72s var(--motion-ease);
}

.route-curtain::before,
.route-curtain::after {
  position: absolute;
  content: "";
}

.route-curtain::before {
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.route-curtain::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--experience-green);
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .5s var(--motion-ease);
}

.route-curtain.is-clear {
  transform: translate3d(0, -102%, 0);
}

.route-curtain.is-clear::after {
  transform: scaleX(1);
}

.route-curtain__brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-curtain__brand b {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  place-items: center;
  color: var(--experience-green);
  font-size: .9rem;
}

body.is-page-leaving .route-curtain {
  transform: translate3d(0, 0, 0);
}

body.is-page-leaving main,
body.is-page-leaving .site-header,
body.is-page-leaving .topline {
  opacity: .42;
  transform: translate3d(0, 10px, 0);
  transition: opacity .36s ease, transform .42s var(--motion-ease);
}

/* Cinematic scroll intro. */
.site-intro.site-intro--story {
  --intro-p: 0;
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  background: var(--experience-ink);
  color: #f7faf8;
  clip-path: inset(0);
  animation: none;
  transition: clip-path .82s var(--motion-ease), transform .82s var(--motion-ease), opacity .5s ease;
}

.site-intro--story[hidden] {
  display: none;
}

.site-intro--story .site-intro__scroller {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  overscroll-behavior: none;
}

.site-intro--story .intro-story {
  position: relative;
  height: 100dvh;
}

.site-intro--story .intro-stage {
  position: sticky;
  top: 0;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  min-height: 620px;
  background: var(--experience-ink);
}

.site-intro--story .intro-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4,8,10,.9) 0%, rgba(4,8,10,.66) 44%, rgba(4,8,10,.12) 78%), linear-gradient(180deg, rgba(4,8,10,.1), rgba(4,8,10,.64));
  pointer-events: none;
  content: "";
  transition: opacity .75s ease;
}

.site-intro--story.is-phase-2 .intro-stage::after,
.site-intro--story.is-phase-3 .intro-stage::after {
  opacity: .32;
}

.site-intro--story .site-intro__skip {
  top: max(28px, env(safe-area-inset-top));
  right: max(28px, env(safe-area-inset-right));
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(8,13,16,.56);
  color: #fff;
  backdrop-filter: blur(14px);
}

.site-intro--story .site-intro__skip:hover,
.site-intro--story .site-intro__skip:focus-visible {
  border-color: var(--experience-green);
  background: rgba(8,13,16,.92);
  color: var(--experience-green);
  transform: rotate(90deg);
}

.site-intro--story .site-intro__progress {
  z-index: 35;
  height: 4px;
  background: rgba(255,255,255,.08);
}

.site-intro--story .site-intro__progress span {
  background: linear-gradient(90deg, var(--experience-green), var(--experience-blue));
  box-shadow: 0 0 30px rgba(85,227,173,.55);
}

.intro-slices {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #080d10;
  transition: opacity .62s ease, transform .9s var(--motion-ease), filter .62s ease;
}

.intro-slices::after {
  position: absolute;
  inset: 0;
  background: rgba(5,10,12,.36);
  content: "";
}

.intro-slice {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 33.5%;
  border-right: 1px solid rgba(255,255,255,.12);
  animation: introSliceIn 1.05s var(--motion-ease) both;
  animation-delay: 0ms;
  transform-origin: center;
  transition: transform .95s var(--motion-ease), opacity .62s ease;
}

.intro-slice:nth-child(2) {
  left: 33.333%;
  animation-delay: 110ms;
}

.intro-slice:nth-child(3) {
  left: 66.666%;
  animation-delay: 220ms;
}

.intro-slice:nth-child(even) {
  animation-name: introSliceInReverse;
}

.intro-slice img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.78) contrast(1.08) brightness(.8);
  transform: scale(1.08);
  animation: introImageSettle 7s ease-out both;
}

.intro-slice:nth-child(2) img {
  left: -33.333vw;
}

.intro-slice:nth-child(3) img {
  left: -66.666vw;
}

.site-intro--story.is-phase-2 .intro-slices,
.site-intro--story.is-phase-3 .intro-slices {
  opacity: .08;
  filter: blur(3px);
  transform: scale(1.1);
}

.site-intro--story.is-phase-2 .intro-slice:nth-child(1),
.site-intro--story.is-phase-3 .intro-slice:nth-child(1) {
  transform: translate3d(-36%, -8%, 0) rotate(-4deg);
}

.site-intro--story.is-phase-2 .intro-slice:nth-child(2),
.site-intro--story.is-phase-3 .intro-slice:nth-child(2) {
  transform: translate3d(0, 18%, 0) scale(.92);
}

.site-intro--story.is-phase-2 .intro-slice:nth-child(3),
.site-intro--story.is-phase-3 .intro-slice:nth-child(3) {
  transform: translate3d(36%, -10%, 0) rotate(4deg);
}

.intro-workbench {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.intro-workbench__photo,
.intro-browser {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: #11191e;
  box-shadow: 0 38px 100px rgba(0,0,0,.46);
  opacity: 0;
  transition: opacity .62s ease, transform .95s var(--motion-ease), width .95s var(--motion-ease), height .95s var(--motion-ease), inset .95s var(--motion-ease);
}

.intro-workbench__photo img,
.intro-browser > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.intro-workbench__photo--wide {
  top: 13vh;
  right: 6vw;
  width: 46vw;
  height: 68vh;
  transform: translate3d(24vw, 8vh, 0) rotate(7deg) scale(.8);
}

.intro-workbench__photo--small {
  right: 39vw;
  bottom: 8vh;
  width: 23vw;
  height: 31vh;
  transform: translate3d(-18vw, 12vh, 0) rotate(-10deg) scale(.72);
}

.intro-browser {
  top: 20vh;
  right: 4vw;
  z-index: 4;
  width: 40vw;
  height: 55vh;
  transform: translate3d(26vw, 0, 0) rotate(5deg) scale(.78);
}

.intro-browser__bar {
  display: flex;
  height: 38px;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  background: #e9ede9;
  color: #1a252b;
}

.intro-browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9aa5aa;
}

.intro-browser__bar span:first-child {
  background: #f16d68;
}

.intro-browser__bar span:nth-child(2) {
  background: #e4b44e;
}

.intro-browser__bar span:nth-child(3) {
  background: #51bb82;
}

.intro-browser__bar b {
  margin-left: 8px;
  font-size: .68rem;
  font-weight: 700;
}

.intro-browser > img {
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: top;
}

.site-intro--story.is-phase-2 .intro-workbench__photo--wide img,
.site-intro--story.is-phase-2 .intro-browser > img {
  animation: introMediaSweep 3.65s var(--motion-ease) both;
}

.site-intro--story.is-phase-2 .intro-workbench__photo--small img {
  animation: introMediaSweepReverse 3.65s var(--motion-ease) both;
}

.site-intro--story.is-phase-3 .intro-browser > img {
  animation: introBrowserSettle 3.2s var(--motion-ease) both;
}

.site-intro--story.is-phase-2 .intro-workbench__photo,
.site-intro--story.is-phase-2 .intro-browser,
.site-intro--story.is-phase-3 .intro-browser {
  opacity: 1;
}

.site-intro--story.is-phase-2 .intro-workbench__photo--wide {
  transform: translate3d(0, 0, 0) rotate(1.5deg) scale(1);
}

.site-intro--story.is-phase-2 .intro-workbench__photo--small {
  transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
}

.site-intro--story.is-phase-2 .intro-browser {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.site-intro--story.is-phase-3 .intro-workbench__photo {
  opacity: 0;
  transform: translate3d(0, 12vh, 0) scale(.86);
}

.site-intro--story.is-phase-3 .intro-browser {
  top: 11vh;
  right: 4vw;
  width: 52vw;
  height: 74vh;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.intro-stage__topbar {
  position: absolute;
  top: 28px;
  right: 96px;
  left: 7vw;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.9);
}

.intro-stage__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.05;
}

.intro-stage__brand > b {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  place-items: center;
  color: var(--experience-green);
}

.intro-stage__brand small {
  color: rgba(255,255,255,.46);
  font-size: .58rem;
  font-weight: 650;
  text-transform: uppercase;
}

.intro-stage__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}

.intro-stage__count b {
  color: var(--experience-green);
  font-size: 1.15rem;
}

.intro-stage__count i {
  color: rgba(255,255,255,.35);
  font-style: normal;
}

.site-intro--story .intro-scene {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  min-height: 0;
  align-items: center;
  overflow: visible;
  padding: 92px 7vw 70px;
  scroll-snap-align: none;
  pointer-events: none;
  background: transparent !important;
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(.985);
  transition: opacity .52s ease, transform .82s var(--motion-ease);
}

.site-intro--story .intro-scene::before,
.site-intro--story .intro-scene::after {
  display: none !important;
  content: none !important;
}

.site-intro--story .intro-scene.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-intro--story .intro-scene__content {
  width: min(46vw, 720px);
  opacity: 1;
  transform: none;
}

.site-intro--story .intro-scene__kicker,
.site-intro--story .intro-scene h1,
.site-intro--story .intro-scene h2,
.site-intro--story .intro-scene p,
.site-intro--story .intro-scene__services {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .58s ease, transform .78s var(--motion-ease);
}

.site-intro--story.is-playing .intro-scene.is-active .intro-scene__kicker,
.site-intro--story.is-playing .intro-scene.is-active h1,
.site-intro--story.is-playing .intro-scene.is-active h2,
.site-intro--story.is-playing .intro-scene.is-active p,
.site-intro--story.is-playing .intro-scene.is-active .intro-scene__services {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-intro--story.is-playing .intro-scene.is-active h1,
.site-intro--story.is-playing .intro-scene.is-active h2 {
  transition-delay: 90ms;
}

.site-intro--story.is-playing .intro-scene.is-active p {
  transition-delay: 190ms;
}

.site-intro--story.is-playing .intro-scene.is-active .intro-scene__services {
  transition-delay: 280ms;
}

.site-intro--story .intro-scene--opening .intro-scene__content {
  width: min(58vw, 880px);
}

.site-intro--story .intro-scene__kicker {
  margin-bottom: 20px;
  color: var(--experience-green);
  font-size: .72rem;
  font-weight: 850;
}

.site-intro--story .intro-scene__kicker::before {
  width: 36px;
}

.site-intro--story .intro-scene h1,
.site-intro--story .intro-scene h2 {
  margin: 0;
  color: #f8faf8;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.site-intro--story .intro-scene h1 {
  font-size: clamp(4.4rem, 7.6vw, 8.7rem);
  line-height: .84;
}

.site-intro--story .intro-scene h1 em {
  color: var(--experience-green);
  font-style: normal;
  font-weight: 780;
}

.site-intro--story .intro-scene h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  line-height: .94;
}

.site-intro--story .intro-scene p {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(247,250,248,.68);
  font-size: 1.02rem;
  line-height: 1.55;
}

.site-intro--story .intro-scene__services {
  margin-top: 28px;
}

.site-intro--story .intro-scene__services span {
  border-radius: 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}

.site-intro--story .intro-final__button {
  display: inline-flex;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  align-items: center;
  gap: 18px;
  background: var(--experience-green);
  color: #07120e;
  font-weight: 850;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .42s ease, transform .62s var(--motion-ease), background .2s ease, color .2s ease;
}

.site-intro--story.is-ready .intro-final__button {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-intro--story .intro-final__button:hover,
.site-intro--story .intro-final__button:focus-visible {
  background: #fff;
  color: #07120e;
  transform: translate3d(0, -4px, 0);
}

.site-intro--story .intro-final__button svg {
  width: 21px;
  height: 21px;
  transition: transform .25s var(--motion-ease);
}

.site-intro--story .intro-final__button:hover svg {
  transform: translateX(5px);
}

.site-intro--story.is-static .intro-story {
  height: 100dvh;
}

.site-intro--story.is-static .site-intro__scroller {
  overflow: hidden;
}

.site-intro--story.is-exiting {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  pointer-events: none;
  transform: scale(1.018);
  animation: none;
}

/* Page entrance and scroll motion. */
.load-item {
  opacity: 0 !important;
  filter: blur(5px);
  transform: translate3d(0, 38px, 0) !important;
  transition: none !important;
}

.page-loaded .load-item {
  opacity: 1 !important;
  filter: blur(0);
  transform: translate3d(0, 0, 0) !important;
  transition: opacity var(--motion-enter) ease, filter var(--motion-enter) ease, transform var(--motion-enter) var(--motion-ease) !important;
  transition-delay: calc(var(--load-i, 0) * 85ms) !important;
}

.js .motion-reveal {
  --reveal-x: 0px;
  --reveal-y: 44px;
  opacity: 0 !important;
  filter: saturate(.88);
  translate: none !important;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.985) !important;
  animation: none !important;
  transition: opacity .66s ease, filter .75s ease, transform .78s var(--motion-ease), box-shadow .3s ease, border-color .3s ease !important;
  transition-delay: var(--reveal-delay, 0ms) !important;
  will-change: opacity, transform;
}

.js .motion-reveal.motion-from-left {
  --reveal-x: -42px;
  --reveal-y: 8px;
}

.js .motion-reveal.motion-from-right {
  --reveal-x: 42px;
  --reveal-y: 8px;
}

.js .motion-reveal.is-visible,
.js .motion-reveal.is-inview {
  opacity: 1 !important;
  filter: saturate(1);
  transform: translate3d(0, 0, 0) scale(1) !important;
  will-change: auto;
}

.js .media-motion {
  clip-path: inset(0 0 18% 0);
  opacity: .01;
  transform: translate3d(0, 22px, 0) scale(.98);
  transition: clip-path .92s var(--motion-ease), opacity .68s ease, transform .92s var(--motion-ease) !important;
}

.js .media-motion.is-media-visible {
  clip-path: inset(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.media-motion > img:first-child {
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.055) !important;
  transition: transform 1.15s var(--motion-ease), filter .5s ease !important;
}

.media-motion.is-media-visible > img:first-child {
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.002) !important;
}

/* A visibly different home hero: product canvas instead of a repeated photo hero. */
body[data-page="home"] .hero-command {
  min-height: calc(100dvh - 132px);
  background: #090f13;
}

body[data-page="home"] .hero-backdrop {
  opacity: .2;
  object-position: 68% center;
  filter: grayscale(.45) saturate(.7) contrast(1.12);
  animation: experienceBackdrop 16s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-backdrop-shade {
  background: linear-gradient(90deg, rgba(7,12,15,.98) 0%, rgba(7,12,15,.92) 42%, rgba(7,12,15,.62) 68%, rgba(7,12,15,.86) 100%);
}

body[data-page="home"] .hero-command__grid {
  grid-template-columns: minmax(0, .8fr) minmax(500px, 1.04fr);
  gap: clamp(48px, 6vw, 92px);
}

body[data-page="home"] .hero-command h1 {
  max-width: 760px;
  font-size: clamp(3.55rem, 4.4vw, 5.1rem);
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
}

body[data-page="home"] .hero-command .lead {
  max-width: 660px;
  font-size: 1.18rem;
}

body[data-page="home"] .command-stage {
  perspective: 1200px;
}

body[data-page="home"] .hero-photo-composition {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center;
  animation: experienceStageFloat 7s ease-in-out infinite !important;
}

body[data-page="home"] .hero-photo-composition > img {
  opacity: .62;
  filter: saturate(.75) contrast(1.12) brightness(.65);
}

body[data-page="home"] .hero-photo-ui {
  inset: 7% 5% 7% 5%;
  width: auto;
  border-radius: 3px;
  background: rgba(8,17,23,.72);
  transform: translateZ(36px);
}

body[data-page="home"] .command-stage .float-chip {
  border-radius: 2px;
  animation: experienceChipFloat 5.5s ease-in-out infinite !important;
  animation-delay: calc(var(--chip-i, 0) * -680ms) !important;
}

body[data-page="home"] .terminal-mini {
  overflow: hidden;
  border-radius: 3px;
  animation: experienceTerminal 3.8s ease-in-out infinite;
}

body[data-page="home"] .trust-ribbon {
  margin-top: 0;
  background: #0f181d;
}

body[data-page="home"] .trust-ribbon__grid {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .trust-item {
  border-color: rgba(255,255,255,.12);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

body[data-page="home"] .trust-item strong {
  color: var(--experience-green);
}

body[data-page="home"] .trust-item span {
  color: rgba(255,255,255,.62);
}

.page-hero {
  overflow: hidden;
  background-size: 108%;
  animation: experiencePageHero 1.2s var(--motion-ease) both;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(5,11,14,.95), rgba(5,11,14,.7) 58%, rgba(5,11,14,.24));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .page-title {
  font-size: clamp(3.5rem, 5.5vw, 6.1rem);
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
}

/* Cards and media react, without moving the layout. */
.card,
.bento-card,
.showcase-card,
.quick-price,
.pipeline-step,
.feature-card {
  transition: background-color .38s ease, color .32s ease, border-color .28s ease, box-shadow .35s ease, transform .4s var(--motion-ease);
}

@media (hover: hover) and (pointer: fine) {
  .card.is-visible:hover,
  .bento-card.is-visible:hover,
  .showcase-card.is-visible:hover,
  .quick-price:hover,
  .feature-card.is-visible:hover {
    border-color: rgba(53,112,255,.4);
    box-shadow: 0 24px 64px rgba(13,30,40,.14);
    transform: translate3d(0, -7px, 0) !important;
  }

  .showcase-card:hover .showcase-media img:first-child,
  .image-frame:hover > img:first-child,
  .photo-card:hover > img:first-child {
    transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.035) !important;
  }
}

.pricing-card.is-price-counting {
  border-color: rgba(85,227,173,.72) !important;
  box-shadow: 0 24px 74px rgba(25,135,96,.16) !important;
}

.pricing-card .price {
  display: flex;
  max-width: 100%;
  width: fit-content;
  font-size: clamp(2rem, 2.75vw, 3.15rem);
  line-height: 1;
}

.pricing-card .price .price-counter {
  max-width: 100%;
}

html[lang="en"] .pricing-card .price {
  font-size: clamp(1.7rem, 2vw, 2.45rem);
}

.pricing-card .price::after,
.quick-price strong::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--experience-green), var(--experience-blue));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--motion-ease);
}

.pricing-card.is-price-counting .price::after,
.quick-price.is-price-counting strong::after {
  transform: scaleX(1);
}

/* Theme and language state changes. */
html.theme-transition-fallback body,
html.theme-transition-fallback .site-header,
html.theme-transition-fallback .topline,
html.theme-transition-fallback main,
html.theme-transition-fallback .card,
html.theme-transition-fallback .band,
html.theme-transition-fallback .quick-pricing,
html.theme-transition-fallback .site-footer {
  transition: background-color .48s ease, color .38s ease, border-color .4s ease, box-shadow .4s ease !important;
}

html.theme-transition-fallback body {
  animation: experienceThemePulse .48s ease both;
}

.theme-toggle.is-switching .theme-toggle__icon {
  animation: experienceThemeIcon .58s var(--motion-ease);
}

body.lang-transition-out main,
body.lang-transition-out .topline,
body.lang-transition-out .site-footer {
  opacity: .2;
  filter: none;
  transform: translate3d(0, 7px, 0);
}

body.lang-transition-in main,
body.lang-transition-in .topline,
body.lang-transition-in .site-footer {
  animation: experienceLanguageIn .36s var(--motion-ease) both;
}

html[data-theme="dark"] body[data-page="home"] .quick-pricing,
html[data-theme="dark"] .quick-pricing {
  background: #11191e;
}

.cta-panel--photo,
html[data-theme="dark"] .cta-panel--photo {
  background-image: linear-gradient(90deg, rgba(7,14,18,.96), rgba(7,14,18,.6)), url("../img/photos/developer-laptop-960.webp") !important;
  background-position: center !important;
  background-size: cover !important;
}

html[data-theme="dark"] .route-curtain {
  background: #050809;
}

/* Keyframes. */
@keyframes introSliceIn {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes introSliceInReverse {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes introImageSettle {
  from { transform: scale(1.17); }
  to { transform: scale(1.06); }
}

@keyframes introMediaSweep {
  from { transform: scale(1.12) translate3d(2.5%, 2%, 0); }
  to { transform: scale(1.02) translate3d(0, 0, 0); }
}

@keyframes introMediaSweepReverse {
  from { transform: scale(1.13) translate3d(-3%, -2%, 0); }
  to { transform: scale(1.02) translate3d(0, 0, 0); }
}

@keyframes introBrowserSettle {
  from { filter: saturate(.72); transform: scale(1.06) translate3d(0, 12px, 0); }
  to { filter: saturate(1); transform: scale(1) translate3d(0, 0, 0); }
}

@keyframes experienceBackdrop {
  from { transform: scale(1.04) translate3d(-.6%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.2%, -.8%, 0); }
}

@keyframes experienceStageFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(1.5deg) translate3d(0, 0, 0); }
  50% { transform: rotateY(-2deg) rotateX(.5deg) translate3d(0, -10px, 0); }
}

@keyframes experienceChipFloat {
  0%, 100% { transform: translate3d(0, 0, 34px); }
  50% { transform: translate3d(0, -9px, 48px); }
}

@keyframes experienceTerminal {
  0%, 100% { box-shadow: 0 22px 64px rgba(0,0,0,.35); }
  50% { box-shadow: 0 22px 76px rgba(85,227,173,.2); }
}

@keyframes experiencePageHero {
  from { background-size: 116%; }
  to { background-size: 108%; }
}

@keyframes experienceThemePulse {
  0% { filter: brightness(.88); }
  100% { filter: brightness(1); }
}

@keyframes experienceThemeIcon {
  0% { transform: rotate(0) scale(1); }
  45% { transform: rotate(160deg) scale(.7); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes experienceLanguageIn {
  from { opacity: .2; transform: translate3d(0, -7px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1239px) {
  body[data-page="home"] .hero-command__grid {
    grid-template-columns: minmax(0, .88fr) minmax(400px, .78fr);
    gap: 38px;
  }

  body[data-page="home"] .hero-command h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 900px) {
  .site-intro--story .intro-scene__content {
    width: min(52vw, 620px);
  }

  .site-intro--story.is-phase-3 .intro-browser {
    right: 3vw;
    width: 49vw;
  }

  body[data-page="home"] .hero-command__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .command-stage {
    width: min(100%, 720px);
    max-width: none;
  }
}

@media (max-width: 767px) {
  html.route-preload:not(.intro-pending) body {
    opacity: 0;
  }

  .route-curtain__brand b {
    width: 42px;
    height: 42px;
  }

  .site-intro--story .intro-stage {
    min-height: 100dvh;
  }

  .site-intro--story .intro-story {
    height: 100dvh;
  }

  .site-intro--story .site-intro__skip {
    top: max(16px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
  }

  .intro-stage__topbar {
    top: 18px;
    right: 70px;
    left: 18px;
  }

  .intro-stage__brand > b {
    width: 36px;
    height: 36px;
  }

  .intro-stage__brand > span {
    display: none;
  }

  .site-intro--story .intro-scene {
    align-items: flex-start;
    padding: 18vh 18px 72px;
  }

  .site-intro--story .intro-scene__content,
  .site-intro--story .intro-scene--opening .intro-scene__content {
    width: 100%;
    max-width: 540px;
  }

  .site-intro--story .intro-scene h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.5rem);
    line-height: .9;
  }

  .site-intro--story .intro-scene h2 {
    max-width: 94%;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .site-intro--story .intro-scene p {
    max-width: 92%;
    margin-top: 18px;
    font-size: .94rem;
  }

  .site-intro--story .intro-scene__kicker {
    margin-bottom: 14px;
  }

  .site-intro--story .intro-scene--craft {
    padding-top: 11vh;
  }

  .intro-workbench__photo--wide {
    top: 42vh;
    right: 5vw;
    width: 90vw;
    height: 43vh;
  }

  .intro-workbench__photo--small {
    right: auto;
    bottom: 8vh;
    left: 4vw;
    width: 42vw;
    height: 22vh;
  }

  .intro-browser {
    top: 47vh;
    right: 4vw;
    width: 82vw;
    height: 36vh;
  }

  .site-intro--story.is-phase-3 .intro-browser {
    top: 9vh;
    right: 4vw;
    width: 92vw;
    height: 37vh;
  }

  .site-intro--story .intro-scene--final {
    padding-top: 50vh;
  }

  .site-intro--story .intro-scene--final h2 {
    font-size: clamp(2.35rem, 10.7vw, 3.5rem);
  }

  .site-intro--story .intro-scene--final p {
    display: none;
  }

  .site-intro--story .intro-final__button {
    min-height: 54px;
    margin-top: 22px;
  }

  body[data-page="home"] .hero-command {
    min-height: auto;
    padding-top: 56px;
  }

  body[data-page="home"] .hero-command h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  body[data-page="home"] .command-stage {
    display: block;
    min-height: 360px;
    margin-top: 12px;
  }

  body[data-page="home"] .hero-photo-composition,
  body[data-page="home"] .hero-photo-frame {
    min-height: 350px;
  }

  body[data-page="home"] .hero-photo-ui {
    inset: 6%;
  }

  body[data-page="home"] .command-stage .float-chip {
    display: block;
    max-width: 44%;
    font-size: .68rem;
  }

  body[data-page="home"] .terminal-mini {
    display: block;
    max-width: 74%;
  }

  .page-hero .page-title {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .js .motion-reveal {
    --reveal-x: 0px !important;
    --reveal-y: 32px !important;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .site-intro--story .intro-scene--final {
    padding-top: 46vh;
  }

  .site-intro--story.is-phase-3 .intro-browser {
    height: 32vh;
  }

  .site-intro--story .intro-scene--final h2 {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.route-preload:not(.intro-pending) body {
    opacity: 1;
  }

  .route-curtain {
    display: none;
  }

  .load-item,
  .page-loaded .load-item,
  .js .motion-reveal,
  .js .motion-reveal.is-visible,
  .js .media-motion,
  .js .media-motion.is-media-visible,
  .hero-backdrop,
  .hero-photo-composition,
  .float-chip,
  .terminal-mini,
  body.lang-transition-in main,
  html.theme-transition-fallback body {
    animation: none !important;
    transition: none !important;
  }

  .load-item,
  .page-loaded .load-item,
  .js .motion-reveal,
  .js .motion-reveal.is-visible,
  .js .media-motion,
  .js .media-motion.is-media-visible {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}
