:root {
  --violet-950: #151028;
  --violet-900: #1f1538;
  --violet-800: #281d45;
  --violet-700: #3d2a63;
  --violet-600: #4f3a7a;
  --violet-500: #6d4dc4;
  --violet-400: #8b72d4;
  --violet-300: #a894e0;
  --violet-200: #c4b8e8;
  --violet-100: #dcd4f0;
  --violet-50: #ebe6f7;
  --ink: #07040e;
  /* ~4.6:1+ on ink for small body text (WCAG AA) */
  --muted: #9a92b4;
  --surface: rgba(22, 16, 40, 0.72);
  --border: rgba(120, 100, 170, 0.16);
  --text-bright: #e2ddf0;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --focus-ring: #ebe3ff;
  --focus-ring-contrast: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroGlowDrift {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -30%) scale(1);
  }
  50% {
    opacity: 0.58;
    transform: translate(-48%, -31%) scale(1.035);
  }
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--violet-200);
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -25%, rgba(109, 77, 196, 0.14), transparent 58%),
    radial-gradient(ellipse 85% 55% at 100% 35%, rgba(79, 58, 122, 0.1), transparent 52%),
    radial-gradient(ellipse 55% 45% at 0% 85%, rgba(61, 42, 99, 0.08), transparent 48%),
    linear-gradient(180deg, var(--violet-950) 0%, var(--ink) 42%, #0a0612 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: radial-gradient(circle at 1px 1px, rgba(168, 148, 224, 0.09) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 95% 75% at 50% 18%, black 0%, transparent 72%);
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

html.js-motion body {
  animation: pageEnter 0.6s ease-out both;
}

a {
  color: var(--violet-300);
  text-decoration: none;
}

a:hover {
  color: var(--violet-100);
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn--primary:focus-visible {
  outline-color: var(--focus-ring-contrast);
}

.menu-toggle:focus-visible {
  outline-offset: 4px;
  border-radius: 8px;
}

.logo:focus-visible {
  border-radius: 12px;
  outline-offset: 4px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 2.5rem);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  max-width: min(560px, calc(100% - 2rem));
  padding: 1rem 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar:not([hidden]).cookie-bar--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 200px;
  font-size: 0.9rem;
  color: var(--violet-200);
}

.cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 4, 14, 0.82);
  backdrop-filter: blur(14px);
}

html.js-motion .header {
  animation: fadeDown 0.7s var(--ease-out) both;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--violet-100);
}

.logo__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  border-radius: 9px;
  box-shadow: 0 0 20px rgba(109, 77, 196, 0.18);
}

.logo--footer .logo__mark {
  width: 28px;
  height: 28px;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--violet-100);
}

.header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--violet-200);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn--primary {
  color: var(--text-bright);
  background: linear-gradient(135deg, var(--violet-600), var(--violet-800));
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(109, 77, 196, 0.2);
}

.btn--outline {
  color: var(--violet-100);
  background: transparent;
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: rgba(139, 114, 212, 0.35);
  background: rgba(109, 77, 196, 0.08);
}

.btn--ghost {
  color: var(--violet-200);
  background: transparent;
  border: 1px solid transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(900px, 140vw);
  height: min(500px, 80vh);
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(109, 77, 196, 0.1) 0%, transparent 72%);
  pointer-events: none;
}

html.js-motion .hero__glow {
  animation: heroGlowDrift 16s ease-in-out infinite;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.38;
  will-change: transform;
}

.hero__orb--a {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  top: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(109, 77, 196, 0.55) 0%, transparent 68%);
}

.hero__orb--b {
  width: min(240px, 42vw);
  height: min(240px, 42vw);
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(79, 58, 122, 0.5) 0%, transparent 70%);
}

.hero__orb--c {
  width: min(180px, 32vw);
  height: min(180px, 32vw);
  top: 42%;
  right: 18%;
  background: radial-gradient(circle, rgba(165, 243, 252, 0.12) 0%, transparent 72%);
}

html.js-motion .hero__orb--a {
  animation: heroOrbA 22s ease-in-out infinite;
}

html.js-motion .hero__orb--b {
  animation: heroOrbB 26s ease-in-out infinite;
}

html.js-motion .hero__orb--c {
  animation: heroOrbC 19s ease-in-out infinite;
}

@keyframes heroOrbA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6%, 4%) scale(1.08);
  }
}

@keyframes heroOrbB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, -5%) scale(1.06);
  }
}

@keyframes heroOrbC {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.32;
  }
  50% {
    transform: translate(-12%, 10%);
    opacity: 0.48;
  }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--violet-200);
  background: rgba(109, 77, 196, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
}

html.js-motion .hero__content > * {
  animation: fadeUp 0.78s var(--ease-out) both;
}

html.js-motion .hero__content > *:nth-child(1) {
  animation-delay: 0.08s;
}

html.js-motion .hero__content > *:nth-child(2) {
  animation-delay: 0.18s;
}

html.js-motion .hero__content > *:nth-child(3) {
  animation-delay: 0.26s;
}

html.js-motion .hero__content > *:nth-child(4) {
  animation-delay: 0.34s;
}

html.js-motion .hero__content > *:nth-child(5) {
  animation-delay: 0.42s;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.stats {
  display: flex;
  gap: 2.5rem;
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-bright);
  font-variant-numeric: tabular-nums;
}

html.js-motion .hero__panel {
  animation: fadeInRight 0.92s var(--ease-out) 0.28s both;
}

.stat__value--live {
  display: inline-block;
  min-width: 5.5ch;
  font-variant-numeric: tabular-nums;
  transform-origin: left center;
}

.stat__value--live.stat__value--bump {
  animation: statValueBump 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes statValueBump {
  0% {
    transform: scale(1);
    text-shadow: none;
    color: var(--text-bright);
  }
  35% {
    transform: scale(1.05);
    text-shadow:
      0 0 16px rgba(168, 148, 224, 0.45),
      0 0 28px rgba(109, 77, 196, 0.25);
    color: var(--violet-100);
  }
  100% {
    transform: scale(1);
    text-shadow: none;
    color: var(--text-bright);
  }
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Code window */
.code-window {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(8, 5, 16, 0.92);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(109, 77, 196, 0.06) inset;
}

.code-window__tabs {
  display: flex;
  gap: 0;
  background: rgba(30, 11, 61, 0.9);
  border-bottom: 1px solid var(--border);
}

.code-window__tab {
  padding: 0.6rem 0.85rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.code-window__tab:hover:not(.is-active) {
  color: var(--violet-200);
  background: rgba(109, 77, 196, 0.06);
}

.code-window__tab.is-active {
  color: var(--violet-100);
  background: rgba(109, 77, 196, 0.12);
}

.code-window__body {
  position: relative;
  margin: 0;
  padding: 1.1rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.65;
  overflow-x: auto;
  color: var(--violet-200);
}

.code-window__body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 70% at 100% 0%, rgba(109, 77, 196, 0.12), transparent 58%),
    radial-gradient(ellipse 75% 55% at 0% 100%, rgba(79, 58, 122, 0.09), transparent 52%);
}

.code-window__body > code {
  position: relative;
  z-index: 1;
}

.code-window__body .c { color: #9287a8; }
.code-window__body .k { color: #c4b5fd; }
.code-window__body .s { color: #a5f3fc; }
.code-window__body .fn { color: #e9d5ff; }

.hero-typewriter {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}

.hero-typewriter__text {
  color: var(--violet-200);
}

.hero-typewriter__caret {
  display: inline-block;
  width: 0.5ch;
  min-height: 1.15em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: var(--violet-400);
  border-radius: 1px;
  animation: typewriterCaret 0.95s steps(1, end) infinite;
}

@keyframes typewriterCaret {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter__caret {
    animation: none;
    opacity: 0.85;
  }

  html.js-motion .hero__orb--a,
  html.js-motion .hero__orb--b,
  html.js-motion .hero__orb--c {
    animation: none;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  text-align: center;
  color: var(--text-bright);
}

.section__subtitle {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.section--features {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(31, 21, 56, 0.35) 50%, transparent);
}

.section--features::before {
  content: "";
  display: block;
  width: min(520px, 86%);
  height: 2px;
  margin: 0 auto 0.25rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(109, 77, 196, 0.15),
    rgba(168, 148, 224, 0.35),
    rgba(109, 77, 196, 0.15),
    transparent
  );
  box-shadow: 0 0 24px rgba(109, 77, 196, 0.2);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(139, 114, 212, 0.28);
  transform: translateY(-2px);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  color: var(--violet-300);
  background: linear-gradient(145deg, rgba(109, 77, 196, 0.12), rgba(61, 42, 99, 0.1));
  border: 1px solid rgba(120, 100, 170, 0.14);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.feature-card__icon svg {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
}

.feature-card:hover .feature-card__icon {
  color: var(--violet-100);
  border-color: rgba(139, 114, 212, 0.28);
  background: linear-gradient(145deg, rgba(109, 77, 196, 0.2), rgba(79, 58, 122, 0.14));
  box-shadow: 0 0 18px rgba(109, 77, 196, 0.12);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--violet-100);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section--faq {
  border-top: 1px solid var(--border);
}

/* FAQ */
.faq__item {
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--violet-100);
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--violet-400);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Download */
.section--download {
  padding-bottom: 5rem;
}

.download-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(79, 58, 122, 0.22), rgba(22, 16, 40, 0.65));
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.download-card.is-preparing-download {
  border-color: rgba(168, 148, 224, 0.45);
  animation: downloadCardGlow 1.4s ease-in-out infinite;
}

.download-card.is-preparing-download .download-password-banner {
  animation: downloadBannerPulse 1.2s ease-in-out infinite;
}

@keyframes downloadBannerPulse {
  0%,
  100% {
    border-color: rgba(139, 114, 212, 0.25);
    opacity: 1;
  }
  50% {
    border-color: rgba(196, 181, 253, 0.5);
    opacity: 0.95;
  }
}

@keyframes downloadCardGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(109, 77, 196, 0.15),
      0 12px 40px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(139, 114, 212, 0.4),
      0 16px 56px rgba(109, 77, 196, 0.28);
  }
}

.download-card.is-preparing-download .section__title,
.download-card.is-preparing-download .section__subtitle {
  animation: downloadTextPulse 2s ease-in-out infinite;
}

@keyframes downloadTextPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.88;
  }
}

.download-card.is-preparing-download .btn {
  position: relative;
  pointer-events: none;
  gap: 0.55rem;
}

.download-card.is-preparing-download .btn::before {
  content: "";
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  animation: downloadBtnSpin 0.65s linear infinite;
}

@keyframes downloadBtnSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-card.is-preparing-download {
    animation: none;
  }

  .download-card.is-preparing-download .download-password-banner,
  .download-card.is-preparing-download .section__title,
  .download-card.is-preparing-download .section__subtitle {
    animation: none;
  }

  .download-card.is-preparing-download .btn::before {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
  }
}

.download-card .section__title {
  margin-bottom: 0.35rem;
}

.download-password-banner {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  color: var(--violet-100);
  background: rgba(109, 77, 196, 0.12);
  border: 1px solid rgba(139, 114, 212, 0.25);
  border-radius: var(--radius-sm);
}

.password-mono {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.06em;
}

.download-setup-row {
  margin: 0.5rem 0 0;
  text-align: center;
}

.download-card .btn {
  margin-top: 0.35rem;
}

/* Footer */
.footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(15, 5, 24, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open {
    display: flex;
  }

  .header__inner {
    flex-wrap: wrap;
  }

  .header .nav {
    order: 10;
    width: 100%;
    margin-left: 0;
  }

  .header__cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Scroll / enter reveals */
html.js-motion [data-reveal]:not(.is-revealed) {
  opacity: 0;
  transform: translateY(2rem);
}

html.js-motion [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

html.js-motion [data-reveal].is-revealed .feature-card {
  animation: fadeUp 0.55s var(--ease-out) both;
}

html.js-motion [data-reveal].is-revealed .feature-card:nth-child(1) {
  animation-delay: 0.05s;
}

html.js-motion [data-reveal].is-revealed .feature-card:nth-child(2) {
  animation-delay: 0.12s;
}

html.js-motion [data-reveal].is-revealed .feature-card:nth-child(3) {
  animation-delay: 0.19s;
}

html.js-motion [data-reveal].is-revealed .feature-card:nth-child(4) {
  animation-delay: 0.26s;
}

html.js-motion [data-reveal].is-revealed .faq__item {
  animation: fadeUp 0.5s var(--ease-out) both;
}

html.js-motion [data-reveal].is-revealed .faq__item:nth-child(1) {
  animation-delay: 0.06s;
}

html.js-motion [data-reveal].is-revealed .faq__item:nth-child(2) {
  animation-delay: 0.12s;
}

html.js-motion [data-reveal].is-revealed .faq__item:nth-child(3) {
  animation-delay: 0.18s;
}

html.js-motion [data-reveal].is-revealed .faq__item:nth-child(4) {
  animation-delay: 0.24s;
}

html.js-motion [data-reveal].is-revealed .download-card .btn {
  animation: fadeUp 0.55s var(--ease-out) 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  html.js-motion body,
  html.js-motion .header,
  html.js-motion .hero__content > *,
  html.js-motion .hero__panel,
  html.js-motion .hero__glow,
  html.js-motion [data-reveal].is-revealed .feature-card,
  html.js-motion [data-reveal].is-revealed .faq__item,
  html.js-motion [data-reveal].is-revealed .download-card .btn,
  .stat__value--live.stat__value--bump {
    animation: none !important;
  }

  html.js-motion [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cookie-bar {
    transition: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}
