@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --hero-bg: #ff3b0a;
  --ink: #111111;
  --grid-max: 1440px;
  --grid-side: 40px;
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-duration-lg: 760ms;
  --motion-duration-md: 440ms;
  --motion-distance: 16px;
  --motion-blur: 8px;
  --motion-stagger: 100ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: clip;
}

.pageSkeleton {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 44px);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 130, 84, 0.2), transparent 42%),
    radial-gradient(circle at 84% 18%, rgba(255, 88, 28, 0.18), transparent 44%),
    linear-gradient(180deg, #0f1013 0%, #111217 36%, #121318 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms var(--motion-ease), visibility 360ms var(--motion-ease);
}

.pageSkeleton__inner {
  width: min(1060px, 100%);
  display: grid;
  gap: clamp(24px, 3.6vw, 38px);
}

.pageSkeleton__hero {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(22px, 4vw, 34px);
}

.pageSkeleton__brand {
  display: block;
  width: 136px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 26px;
}

.pageSkeleton__line {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.pageSkeleton__line + .pageSkeleton__line {
  margin-top: 12px;
}

.pageSkeleton__line--xl {
  width: min(82%, 720px);
}

.pageSkeleton__line--md {
  width: min(64%, 520px);
}

.pageSkeleton__pill {
  width: 180px;
  height: 42px;
  border-radius: 999px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.16);
}

.pageSkeleton__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.pageSkeleton__card {
  height: clamp(132px, 20vw, 184px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.pageSkeleton__brand,
.pageSkeleton__line,
.pageSkeleton__pill,
.pageSkeleton__card {
  position: relative;
  overflow: hidden;
}

.pageSkeleton__brand::after,
.pageSkeleton__line::after,
.pageSkeleton__pill::after,
.pageSkeleton__card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(95deg, transparent 0%, rgba(255, 255, 255, 0.32) 52%, transparent 100%);
  animation: skeleton-shimmer 1.35s linear infinite;
}

body.is-loaded .pageSkeleton {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(120%);
  }
}

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

.container {
  width: min(var(--grid-max), calc(100% - (var(--grid-side) * 2)));
  margin: 0 auto;
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
  filter: blur(var(--motion-blur));
  transition:
    opacity var(--motion-duration-lg) var(--motion-ease),
    transform var(--motion-duration-lg) var(--motion-ease),
    filter var(--motion-duration-lg) var(--motion-ease);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform, opacity, filter;
}

[data-animate="fade-left"] {
  transform: translate3d(calc(var(--motion-distance) * -1), 0, 0);
}

[data-animate="fade-right"] {
  transform: translate3d(var(--motion-distance), 0, 0);
}

[data-animate="scale-in"] {
  transform: scale(0.98);
}

[data-animate].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hero {
  height: 100vh;
  height: 100dvh;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 140px;
}

.heroParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 48%,
    rgba(0, 0, 0, 0.72) 72%,
    rgba(0, 0, 0, 0.18) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 48%,
    rgba(0, 0, 0, 0.72) 72%,
    rgba(0, 0, 0, 0.18) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  padding: 78px 0 28px;
}

.headerBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  padding: 12px 0;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform 460ms var(--motion-ease),
    opacity 300ms ease,
    border-color 340ms var(--motion-ease),
    backdrop-filter 300ms var(--motion-ease),
    box-shadow 320ms var(--motion-ease);
  will-change: transform, opacity;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.headerBar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 18, 0.64);
  opacity: 0;
  transition: opacity 340ms var(--motion-ease);
  pointer-events: none;
}

.headerBar.header--hidden {
  transform: translate3d(0, -110%, 0);
  opacity: 0;
  pointer-events: none;
}

.headerBar.header--visible,
.headerBar.header--pinned {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.headerBar.header--pinned {
  backdrop-filter: none;
}

.headerBar.header--visible {
  backdrop-filter: none;
}

.headerBar.header--scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.headerBar.header--scrolled::before {
  opacity: 1;
}

.headerRevealZone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 1150;
  pointer-events: auto;
  background: transparent;
}

.headerBar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
}

.brand {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: 0.16em;
  font-weight: 700;
  line-height: 1.05;
  text-transform: lowercase;
  color: #ffffff;
}

.top-nav {
  position: relative;
  background: #0f0f0f;
  color: #f4f4f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 8px 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-nav > a:not(.nav-cta) {
  position: relative;
  padding: 6px 2px;
  border-radius: 6px;
  transition:
    color 220ms var(--motion-ease),
    transform 220ms var(--motion-ease),
    text-shadow 240ms var(--motion-ease);
}

.top-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #ffd6c9 100%);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 260ms var(--motion-ease),
    opacity 220ms var(--motion-ease);
}

.top-nav > a:not(.nav-cta):hover,
.top-nav > a:not(.nav-cta):focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.24);
  outline: none;
}

.top-nav > a:not(.nav-cta):hover::after,
.top-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  background: #ffffff;
  color: #111;
  border-radius: 5px;
  padding: 6px 10px;
  font-weight: 700;
  transition:
    background-color 220ms var(--motion-ease),
    color 220ms var(--motion-ease),
    box-shadow 220ms var(--motion-ease),
    transform 220ms var(--motion-ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ffe5dc;
  color: #0f0f0f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.menu-button {
  width: 32px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 6px;
  transition:
    background-color 220ms var(--motion-ease),
    transform 220ms var(--motion-ease),
    box-shadow 220ms var(--motion-ease);
}

.menu-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
}

.menu-button:hover,
.menu-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  outline: none;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
  transition: transform 220ms var(--motion-ease), opacity 180ms var(--motion-ease);
}

.menu-button:hover span:first-child,
.menu-button:focus-visible span:first-child {
  transform: translateY(-1px);
}

.menu-button:hover span:last-child,
.menu-button:focus-visible span:last-child {
  transform: translateY(1px);
}

.header-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  padding: 8px;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 4px;
  z-index: 1300;
}

.header-menu[hidden] {
  display: none;
}

.header-menu a {
  display: block;
  color: #f4f4f4;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-menu a:hover,
.header-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.hero-content {
  align-self: center;
  width: min(980px, 100%);
  padding-left: 0;
  margin-left: 56px;
  padding-bottom: 72px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  white-space: pre-line;
  max-width: 10ch;
  color: #f2f2f2;
  text-wrap: balance;
}

.heroMarquee {
  position: relative;
  width: min(700px, 100%);
  margin-top: 38px;
  opacity: 0.52;
  color: #f4f4f4;
}

.heroMarquee__clip {
  width: 100%;
  overflow: hidden;
  position: relative;
  contain: paint;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.heroMarquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  transition: animation-duration var(--motion-duration-md) var(--motion-ease);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.heroMarquee:hover .heroMarquee__track {
  animation-play-state: paused;
}

.heroMarquee__content {
  white-space: nowrap;
  padding-right: 60px;
  text-transform: uppercase;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.heroMarquee__sep {
  display: inline-block;
  margin: 0 22px;
  opacity: 0.78;
}

.hero-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  color: #f3f3f3;
  backdrop-filter: blur(2px);
  font-size: 0.9rem;
  font-weight: 700;
  padding-left: 14px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.arrow-box {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  color: #101010;
  margin-left: 10px;
  font-size: 1.22rem;
  line-height: 1;
}

.hero-note {
  position: absolute;
  right: 56px;
  bottom: clamp(150px, 18vh, 230px);
  transform: translateY(200px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: min(520px, 38vw);
  padding-bottom: 0;
}

.note-line {
  width: 2px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hero-note p {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: pre-line;
  color: rgba(245, 245, 245, 0.92);
}

.overlay {
  margin-top: -120px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.card {
  display: block;
  width: 100%;
  max-width: 1360px;
  min-height: clamp(430px, 34vw, 500px);
  margin: 0 auto;
  background: #000000;
  color: #f4f4f4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  padding: clamp(28px, 3vw, 42px);
  padding-top: clamp(58px, 5vw, 78px);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(120px, 10vw, 156px);
  height: clamp(62px, 5vw, 80px);
  transform: translateX(-50%);
  background: var(--hero-bg);
  border-radius: 0 0 999px 999px;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.12);
}

.card-scroll-cue {
  position: absolute;
  left: 50%;
  top: 4px;
  width: clamp(98px, 8vw, 126px);
  height: clamp(50px, 4.2vw, 66px);
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  display: grid;
  place-items: start center;
  pointer-events: none;
}

.card-scroll-cue::before,
.card-scroll-cue::after {
  content: "";
  position: absolute;
}

.card-scroll-cue::before {
  inset: 6px 16px 12px;
  background:
    radial-gradient(circle at 50% -8px, transparent 16px, rgba(255, 255, 255, 0.62) 17px, transparent 18px),
    radial-gradient(circle at 50% -8px, transparent 24px, rgba(255, 255, 255, 0.42) 25px, transparent 26px),
    radial-gradient(circle at 50% -8px, transparent 32px, rgba(255, 255, 255, 0.26) 33px, transparent 34px);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
  animation: scroll-cue-pulse 2.7s ease-in-out infinite;
}

.card-scroll-cue::after {
  left: 50%;
  top: 14px;
  width: 20px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0 45%,
    transparent 45% 100%
  );
  clip-path: polygon(45% 0, 55% 0, 55% 52%, 76% 52%, 50% 100%, 24% 52%, 45% 52%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
  animation: scroll-cue-arrow 1.8s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
}

@keyframes scroll-cue-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes scroll-cue-arrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -6px);
  }
  25% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  75% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.card-header {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 40px;
}

.card-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 3.8vw, 58px);
  align-items: start;
}

.card-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-column + .card-column {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: clamp(22px, 2.5vw, 36px);
}

.card-main-title {
  margin: 0;
  color: #ff4e0d;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.card-intro {
  margin: 16px 0 28px;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
  color: #e3e7ef;
  max-width: 33ch;
  margin-left: auto;
  margin-right: auto;
}

.card-subtitle {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1.25;
}

.card-text {
  margin: 18px 0 0;
  font-size: clamp(0.98rem, 1.06vw, 1.12rem);
  line-height: 1.62;
  color: #d9dee8;
}

.components {
  background: transparent;
  padding: 0 0 130px;
}

.components-card {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  border-radius: 18px;
  background: transparent;
  color: #141414;
  box-shadow: none;
  padding: clamp(28px, 3vw, 42px);
}

.components-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 3.2vw, 52px);
  align-items: start;
}

.components-copy h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.1rem, 3.1vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.components-copy p {
  margin: 18px 0 0;
  color: #373c44;
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.56;
  max-width: 58ch;
}

.components-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff4e0d;
  color: #141414;
  border-radius: 10px;
  border: 2px solid #ff4e0d;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 16px;
}

.components-cta__icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: #121212;
  color: #ffffff;
  font-size: 1.05rem;
}

.components-list {
  border-left: 2px solid #1f2023;
  padding-left: 20px;
}

.components-row {
  position: relative;
  padding: 2px 0 18px;
}

.components-row + .components-row {
  margin-top: 14px;
}

.components-row h3 {
  margin: 0;
  color: #111;
  font-size: clamp(1.03rem, 1.1vw, 1.2rem);
  line-height: 1.3;
}

.components-row p {
  margin: 8px 0 0;
  color: #4f5560;
  font-size: clamp(0.85rem, 0.86vw, 0.92rem);
  line-height: 1.45;
  max-width: 40ch;
}

.components-row__icon {
  margin-top: 10px;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #ff4e0d;
}

.components-row__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contentBlock {
  background: #ffffff;
  padding: 0 0 130px;
}

.contentBlock__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}

.contentBlock__head h2 {
  margin: 0;
  color: #ff4e0d;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.contentBlock__head p {
  margin: 14px auto 0;
  color: #2d3138;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.48;
  max-width: 62ch;
}

.contentBlock__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contentTile {
  background: linear-gradient(130deg, #202228 0%, #181a1f 70%, #202228 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 18px;
  color: #f4f4f4;
  min-height: 216px;
}

.contentTile__icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: inline-grid;
  place-items: center;
  color: #ff4e0d;
}

.contentTile__icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contentTile h3 {
  margin: 14px 0 0;
  font-size: 1.3rem;
  line-height: 1.24;
}

.contentTile p {
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.54;
  color: #d8deea;
}

.contentBlock__footnote {
  margin: 22px auto 0;
  max-width: 82ch;
  text-align: center;
  color: #2f343b;
  font-size: clamp(1rem, 1.02vw, 1.1rem);
  line-height: 1.5;
}

.boSplit {
  background: #ffffff;
  padding: 0 0 130px;
}

.boSplit__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 30px;
  background: transparent;
  border-radius: 14px;
  border: 1px solid #dfdfdf;
  overflow: hidden;
}

.boSplit__lead {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid #dddddd;
}

.boSplit__lead h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.boSplit__lead p {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.54;
  color: #32363d;
  max-width: 56ch;
}

.boSplit__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 12px;
  background: #ff4e0d;
  color: #111;
  border-radius: 7px;
  border: 2px solid #ff4e0d;
  font-size: 0.86rem;
  font-weight: 700;
}

.boSplit__ctaIcon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
}

.boSplit__list {
  padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 24px);
}

.boSplit__item + .boSplit__item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
}

.boSplit__item h3 {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  line-height: 1.3;
}

.boSplit__item p {
  margin: 8px 0 0;
  color: #464c57;
  font-size: clamp(0.85rem, 0.88vw, 0.93rem);
  line-height: 1.45;
}

.boSplit__icon {
  margin-top: 10px;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #ff4e0d;
}

.boSplit__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apiDark {
  background: #111317;
  color: #f3f4f7;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.apiDark::before {
  content: none;
}

.apiDark .container {
  position: relative;
  z-index: 1;
}

.apiDark__head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.apiDark__head p {
  margin: 14px 0 0;
  color: #b7bdcb;
  max-width: 74ch;
  line-height: 1.55;
}

.apiDark__rows {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.apiDark__row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.apiDark__row h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.apiDark__row p {
  margin: 0;
  color: #afb6c5;
  font-size: 0.95rem;
  line-height: 1.45;
}

.apiDark__row a {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.integrationNote {
  background: #111317;
  padding: 0 0 120px;
}

.integrationNote__card {
  max-width: 1240px;
  margin: 0 auto;
  background: #111317;
  border-top: 2px solid #ff4e0d;
  border-radius: 0 0 14px 14px;
  padding: clamp(28px, 3vw, 44px);
  color: #f4f6fb;
}

.integrationNote__card h2 {
  margin: 0;
  color: #ff4e0d;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  max-width: 17ch;
  line-height: 1.04;
}

.integrationNote__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff4e0d;
  color: #111;
  border-radius: 7px;
  border: 2px solid #ff4e0d;
  padding: 8px 10px 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.integrationNote__ctaIcon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
}

.integrationNote__card p {
  margin: 24px 0 0;
  color: #d9dfec;
  line-height: 1.58;
  max-width: 72ch;
}

.roadmap {
  background: #ffffff;
  padding: 56px 0 130px;
}

.roadmap__head {
  text-align: center;
  margin-bottom: 30px;
}

.roadmap__head h2 {
  margin: 0;
  color: #ff4e0d;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
}

.roadmap__head p {
  margin: 12px 0 0;
  color: #3d434d;
}

.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.roadmap__step {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 16px;
}

.roadmap__step span {
  color: #ff4e0d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.roadmap__step h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
}

.roadmap__step p {
  margin: 10px 0 0;
  color: #4a505a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ctaCards {
  background: #ff4e0d;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.ctaCards::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 46%);
  animation: bg-shift 12s var(--motion-ease) infinite alternate-reverse;
  pointer-events: none;
}

.ctaCards .container {
  position: relative;
  z-index: 1;
}

.ctaCards__head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 24px;
}

.ctaCards__head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.02;
  color: #111;
}

.ctaCards__head p {
  margin: 12px 0 0;
  color: #181818;
  line-height: 1.54;
}

.ctaCards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ctaCards__card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid #e3e3e3;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ctaCards__card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #111111;
}

.ctaCards__contactMeta {
  margin: 12px 0 0;
  color: #3f444d;
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  line-height: 1.2;
}

.ctaCards__card a {
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #ffffff;
  color: #111111;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.faqBlock {
  background: #ffffff;
  padding: 120px 0 130px;
}

.faqBlock h2 {
  margin: 0 0 20px;
  color: #ff4e0d;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.faqBlock__list {
  border-top: 1px solid #e4e4e4;
}

.faqBlock__item {
  border-bottom: 1px solid #e4e4e4;
}

.faqBlock__trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faqBlock__trigger span:first-child {
  font-size: 1.12rem;
  font-weight: 500;
}

.faqBlock__plus {
  font-size: 1.2rem;
  color: #ff4e0d;
  transition: transform 380ms var(--motion-ease);
}

.faqBlock__item.is-open .faqBlock__plus {
  transform: rotate(45deg);
}

.faqBlock__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 540ms var(--motion-ease),
    opacity 420ms var(--motion-ease);
}

.faqBlock__panel p {
  margin: 10px 0 0;
  color: #4d535d;
  line-height: 1.55;
}

.faqBlock__item.is-open .faqBlock__panel {
  max-height: 420px;
  opacity: 1;
  padding-bottom: 16px;
}

@keyframes bg-shift {
  from {
    transform: translate3d(-1.2%, 0, 0);
  }
  to {
    transform: translate3d(1.2%, -0.8%, 0);
  }
}

.flipCard,
.contentTile,
.roadmap__step,
.ctaCards__card,
.boSplit__item,
.card,
.components-card {
  transition:
    transform var(--motion-duration-md) var(--motion-ease),
    box-shadow var(--motion-duration-md) var(--motion-ease),
    filter var(--motion-duration-md) var(--motion-ease);
}

.flipCard:hover,
.contentTile:hover,
.roadmap__step:hover,
.ctaCards__card:hover,
.boSplit__item:hover {
  transform: translateY(-6px);
}

.contentTile,
.roadmap__step,
.ctaCards__card,
.boSplit__item {
  position: relative;
  overflow: hidden;
}

.hero-cta,
.promoGrid__cta,
.components-cta,
.boSplit__cta,
.integrationNote__cta,
.ctaCards__card a,
.siteFooter__contact {
  position: relative;
  overflow: hidden;
  transition:
    transform 360ms var(--motion-ease),
    box-shadow 360ms var(--motion-ease),
    filter 360ms var(--motion-ease);
}

.hero-cta:hover,
.promoGrid__cta:hover,
.components-cta:hover,
.boSplit__cta:hover,
.integrationNote__cta:hover,
.ctaCards__card a:hover,
.siteFooter__contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-cta:active,
.promoGrid__cta:active,
.components-cta:active,
.boSplit__cta:active,
.integrationNote__cta:active,
.ctaCards__card a:active,
.siteFooter__contact:active {
  transform: translateY(-1px);
}

.siteFooter {
  background: #050505;
  color: #f3f3f3;
  border-top: none;
  padding: 26px 0 20px;
}

.siteFooter__top,
.siteFooter__middle,
.siteFooter__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.siteFooter__top {
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.siteFooter__brand {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.siteFooter__motto {
  margin: 0;
  color: #d7d7d7;
  font-size: 0.82rem;
  white-space: nowrap;
}

.siteFooter__middle {
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.siteFooter__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.siteFooter__contact,
.siteFooter__social {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.siteFooter__contact {
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.siteFooter__social {
  width: 32px;
  font-size: 0.86rem;
  font-weight: 700;
}

.siteFooter__social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: #f3f3f3;
}

.siteFooter__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.siteFooter__links a {
  font-size: 0.72rem;
  color: #d7d7d7;
}

.siteFooter__bottom {
  align-items: flex-end;
  padding-top: 14px;
}

.siteFooter__bottom p {
  margin: 0;
  color: #8b8b8b;
  font-size: 0.68rem;
}

.siteFooter__bottomLinks {
  display: flex;
  align-items: center;
  gap: 14px;
}

.siteFooter__bottomLinks a {
  color: #8b8b8b;
  font-size: 0.68rem;
}

.siteFooter__toTop {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #f3f3f3;
  color: #111;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
}

.siteFooter__toTop::before {
  content: "\2197";
  font-size: 1.12rem;
  font-weight: 700;
  color: #111;
}

.platform {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 130px;
}

.promoGrid {
  position: relative;
}

.promoGrid__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.promoGrid__head h2 {
  margin: 0;
  font-size: clamp(2.9rem, 6.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.promoGrid__head h2 span {
  display: block;
}

.promoGrid__head p {
  margin: 28px auto 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: #313131;
  max-width: 48ch;
}

.promoGrid__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #ff4e0d;
  border-radius: 8px;
  background: #ff4e0d;
  color: #141414;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 10px 12px 10px 18px;
  box-shadow: 0 14px 28px rgba(255, 78, 13, 0.28);
}

.promoGrid__cta .arrow-box {
  margin-left: 12px;
  width: 34px;
  height: 34px;
  background: #121212;
  color: #fff;
}

.promoGrid__stage {
  position: relative;
  width: min(1240px, 100%);
  height: 520px;
  margin: 56px auto 0;
}

.flipCard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --flip-y: 0deg;
  position: absolute;
  width: clamp(210px, 16.5vw, 258px);
  height: clamp(222px, 17.5vw, 276px);
  perspective: 1400px;
  outline: none;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transform-origin: center;
  transition:
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 560ms ease;
  filter: drop-shadow(0 18px 44px rgba(15, 20, 30, 0.12));
  z-index: 1;
}

.flipCard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(var(--flip-y));
  transition: transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 16px;
}

.flipCard:hover,
.flipCard:focus-within,
.flipCard.is-flipped {
  transform: translateY(-6px) scale(1.02) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  filter: drop-shadow(0 28px 62px rgba(15, 20, 30, 0.2));
  z-index: 4;
}

.flipCard:hover .flipCard__inner,
.flipCard:focus-within .flipCard__inner,
.flipCard.is-flipped .flipCard__inner {
  --flip-y: 180deg;
  transform: rotateY(var(--flip-y));
}

.flipCard__face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #ffffff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.flipCard__front {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 14px;
  color: #ef5a1e;
  border: 1px solid rgba(20, 20, 20, 0.04);
}

.flipCard__front::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.58) 50%, transparent 60%);
  transform: translateX(-130%) rotate(8deg);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.flipCard:hover .flipCard__front::after,
.flipCard:focus-within .flipCard__front::after,
.flipCard.is-flipped .flipCard__front::after {
  transform: translateX(130%) rotate(8deg);
}

.flipCard__front svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  justify-self: center;
}

.flipCard__front h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.flipCard__back {
  transform: rotateY(180deg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  background: linear-gradient(140deg, #ffffff 0%, #f6f8fb 100%);
  border: 1px solid rgba(20, 20, 20, 0.05);
}

.flipCard__backTitle {
  margin: 0;
  color: #ef5a1e;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.flipCard__back p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #2a2f38;
}

.card--speed {
  left: 6%;
  top: 10%;
}

.card--cost {
  left: 37%;
  top: 20%;
}

.card--stability {
  left: 68%;
  top: 12%;
}

@media (max-width: 980px) {
  :root {
    --grid-side: 20px;
  }

  .hero {
    padding-bottom: 120px;
  }

  .overlay {
    margin-top: -96px;
  }

  .card {
    min-height: auto;
    padding-top: 66px;
  }

  .card-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .components {
    padding-bottom: 104px;
  }

  .components-wrap {
    grid-template-columns: 1fr;
  }

  .components-copy h2 {
    max-width: none;
  }

  .contentBlock {
    padding-bottom: 102px;
  }

  .contentBlock__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boSplit {
    padding-bottom: 104px;
  }

  .boSplit__wrap {
    grid-template-columns: 1fr;
  }

  .boSplit__lead {
    border-right: none;
    border-bottom: 1px solid #dddddd;
  }

  .apiDark {
    padding: 84px 0;
  }

  .apiDark__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .roadmap__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctaCards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faqBlock {
    padding-top: 96px;
    padding-bottom: 102px;
  }

  .siteFooter__top,
  .siteFooter__middle,
  .siteFooter__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .siteFooter__links {
    align-items: flex-start;
  }

  .card-column + .card-column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
  }

  .card::before {
    width: 126px;
    height: 66px;
  }

  .card-scroll-cue {
    width: 102px;
    height: 56px;
  }

  .promoGrid__stage {
    height: auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .flipCard {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    height: 220px;
  }

  .flipCard__front h3 {
    font-size: 1.85rem;
  }
}

@media (max-width: 760px) {
  :root {
    --grid-side: 12px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 90px;
  }

  .hero__inner {
    min-height: 100svh;
    padding-top: 116px;
  }

  .headerBar {
    padding: 10px 0;
  }

  .headerBar__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 12px;
  }

  .top-nav {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .top-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .header-menu {
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    width: min(320px, calc(100vw - 24px));
    max-height: min(72vh, 520px);
    overflow-y: auto;
  }

  .hero-content {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .heroMarquee {
    margin-top: 20px;
  }

  .heroMarquee__content {
    font-size: 0.9rem;
    padding-right: 34px;
  }

  .heroMarquee__sep {
    margin: 0 10px;
    opacity: 0.72;
  }

  .hero-note {
    position: relative;
    left: 0;
    right: auto;
    bottom: auto;
    top: -50px;
    transform: none;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 36px;
    width: min(310px, 82vw);
  }

  .overlay {
    margin-top: -50px;
  }

  .card {
    padding-top: 58px;
  }

  .card::before {
    width: 110px;
    height: 58px;
  }

  .card-scroll-cue {
    top: 3px;
    width: 90px;
    height: 48px;
  }

  .platform {
    padding-top: 96px;
    padding-bottom: 88px;
  }

  .components {
    padding-bottom: 86px;
  }

  .components-card {
    padding: 22px 16px;
  }

  .components-copy h2 {
    font-size: clamp(1.8rem, 9.2vw, 2.5rem);
  }

  .components-copy p {
    font-size: 0.95rem;
  }

  .components-cta {
    margin-top: 18px;
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .components-list {
    border-left: none;
    padding-left: 14px;
  }

  .components-row + .components-row {
    margin-top: 10px;
  }

  .components-row p {
    font-size: 0.9rem;
  }

  .contentBlock {
    padding-bottom: 86px;
  }

  .contentBlock__head {
    margin-bottom: 24px;
  }

  .contentBlock__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contentTile {
    min-height: 0;
    padding: 18px 16px;
  }

  .contentTile h3 {
    font-size: 1.2rem;
  }

  .contentTile p {
    font-size: 0.95rem;
  }

  .boSplit {
    padding-bottom: 86px;
  }

  .boSplit__lead {
    padding: 20px 16px;
  }

  .boSplit__list {
    padding: 16px;
  }

  .apiDark {
    padding: 68px 0;
  }

  .integrationNote {
    padding-bottom: 86px;
  }

  .roadmap {
    padding-top: 44px;
    padding-bottom: 86px;
  }

  .roadmap__grid {
    grid-template-columns: 1fr;
  }

  .ctaCards {
    padding: 70px 0;
  }

  .ctaCards__grid {
    grid-template-columns: 1fr;
  }

  .ctaCards__card h3 {
    font-size: clamp(1.8rem, 8.2vw, 2.4rem);
  }

  .ctaCards__contactMeta {
    font-size: clamp(1.1rem, 5.4vw, 1.45rem);
  }

  .ctaCards__card a {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    padding: 12px 14px;
  }

  .faqBlock {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .siteFooter {
    padding-top: 20px;
  }

  .siteFooter__middle,
  .siteFooter__actions {
    width: 100%;
  }

  .siteFooter__actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .siteFooter__brand {
    font-size: clamp(1.8rem, 11vw, 2.5rem);
  }

  .siteFooter__contact {
    font-size: 0.74rem;
    padding: 0 10px;
    min-height: 34px;
    flex: 1 1 auto;
  }

  .siteFooter__bottom {
    align-items: flex-start;
  }

  .promoGrid__head h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .promoGrid__stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flipCard {
    height: 252px;
  }

  .flipCard:not(.is-flipped):hover,
  .flipCard:not(.is-flipped):focus-within {
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    filter: drop-shadow(0 18px 44px rgba(15, 20, 30, 0.12));
    z-index: 1;
  }

  .flipCard:not(.is-flipped):hover .flipCard__inner,
  .flipCard:not(.is-flipped):focus-within .flipCard__inner {
    --flip-y: 0deg;
    transform: rotateY(var(--flip-y));
  }

  .flipCard:not(.is-flipped):hover .flipCard__front::after,
  .flipCard:not(.is-flipped):focus-within .flipCard__front::after {
    transform: translateX(-130%) rotate(8deg);
  }

  .flipCard__back {
    padding: 16px 14px;
  }

  .flipCard__back p {
    font-size: 0.95rem;
  }
}

@media (max-width: 760px) {
  .pageSkeleton__grid {
    grid-template-columns: 1fr;
  }
}

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

  .headerBar {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .headerRevealZone {
    display: none !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .contentTile,
  .roadmap__step,
  .ctaCards__card,
  .boSplit__item,
  .hero-cta,
  .promoGrid__cta,
  .components-cta,
  .boSplit__cta,
  .integrationNote__cta,
  .ctaCards__card a,
  .siteFooter__contact,
  .flipCard,
  .flipCard__inner,
  .flipCard__front::after {
    transition: none !important;
    animation: none !important;
  }

  .flipCard__inner,
  .flipCard:hover .flipCard__inner,
  .flipCard:focus-within .flipCard__inner,
  .flipCard.is-flipped .flipCard__inner {
    transform: none !important;
  }

  .top-nav > a:not(.nav-cta),
  .top-nav > a:not(.nav-cta)::after,
  .nav-cta,
  .menu-button,
  .menu-button span {
    transition: none !important;
    animation: none !important;
  }

  .flipCard__back {
    display: none;
  }

  .heroMarquee__track {
    animation: none;
  }

  .contentTile::after,
  .roadmap__step::after,
  .ctaCards__card::after,
  .boSplit__item::after,
  .hero-cta::before,
  .promoGrid__cta::before,
  .components-cta::before,
  .boSplit__cta::before,
  .integrationNote__cta::before,
  .ctaCards__card a::before,
  .siteFooter__contact::before,
  .apiDark::before,
  .ctaCards::before,
  .card-scroll-cue::before,
  .card-scroll-cue::after {
    animation: none;
    transition: none !important;
    transform: none !important;
  }

  .faqBlock__panel {
    transition: none !important;
  }

  .pageSkeleton__brand::after,
  .pageSkeleton__line::after,
  .pageSkeleton__pill::after,
  .pageSkeleton__card::after {
    animation: none !important;
  }
}

