:root {
  --primary-dark: #0f1d5c;
  --primary: #1c2a7c;
  --primary-soft: #4f6cf7;
  --accent: #12c5a7;
  --muted: #5b617d;
  --surface: #ffffff;
  --panel: #f9faff;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 22px 55px -35px rgba(15, 23, 42, 0.3),
    0 10px 22px -18px rgba(15, 23, 42, 0.12);
  --focus: rgba(79, 108, 247, 0.55);

  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --section-pad: 72px;
  --section-gap: 40px;
  --container: 1180px;
  --page-gutter: clamp(16px, 4vw, 40px);
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 56px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 44px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(79, 108, 247, 0.22), transparent 40%),
    radial-gradient(circle at 25% 20%, rgba(18, 197, 167, 0.14), transparent 45%),
    #f5f6fb;
  color: var(--primary-dark);
  line-height: 1.45;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: translateY(-200%);
  transition: transform 200ms ease;
  z-index: 999;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  color: inherit;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  background: rgba(79, 108, 247, 0.1);
  color: var(--primary-dark);
}

.nav a.is-active {
  background: rgba(79, 108, 247, 0.16);
  color: var(--primary-dark);
}

.actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle__lines {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
}

.nav-toggle__lines::before {
  top: -6px;
}

.nav-toggle__lines::after {
  top: 6px;
}

@media (max-width: 920px) {
  .site-header__inner {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .actions {
    margin-left: 10px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-nav-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
  }
}

.hero {
  padding: 96px 0 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(79, 108, 247, 0.18), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(18, 197, 167, 0.12), transparent 44%),
    radial-gradient(circle at 40% 85%, rgba(79, 108, 247, 0.1), transparent 40%);
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 12px;
  display: inline-block;
}

.lede {
  max-width: 54ch;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.82);
  margin: 0;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fineprint {
  margin: 18px 0 0;
  color: rgba(15, 23, 42, 0.7);
  max-width: 60ch;
}

.hero__panel {
  background: linear-gradient(180deg, var(--surface), var(--panel));
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 108, 247, 0.18), rgba(18, 197, 167, 0.1));
  opacity: 0.65;
  pointer-events: none;
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 18px;
  z-index: 1;
}

.panel__badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.panel__badge::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background-color: var(--accent);
  /* Use shorthand + URL-encoded SVG to avoid browser-specific mask quirks. */
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M3%2011l9-9%209%209-2%202-7-7-7%207z%27%2F%3E%3C%2Fsvg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M3%2011l9-9%209%209-2%202-7-7-7%207z%27%2F%3E%3C%2Fsvg%3E")
    no-repeat center / contain;
}

.panel__header strong {
  font-size: 1.9rem;
  color: var(--primary-dark);
  margin-left: auto;
}

.panel__chart {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 140px;
  position: relative;
  z-index: 1;
}

.chart__bar {
  flex: 1;
  height: var(--h, 0%);
  background: linear-gradient(180deg, var(--primary-soft), var(--primary));
  border-radius: 10px;
  transform-origin: bottom;
  transform: scaleY(0.06);
}

.hero__panel.is-revealed .chart__bar {
  animation: barGrow 900ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.hero__panel.is-revealed .chart__bar:nth-child(1) {
  animation-delay: 0ms;
}

.hero__panel.is-revealed .chart__bar:nth-child(2) {
  animation-delay: 60ms;
}

.hero__panel.is-revealed .chart__bar:nth-child(3) {
  animation-delay: 120ms;
}

.hero__panel.is-revealed .chart__bar:nth-child(4) {
  animation-delay: 180ms;
}

.hero__panel.is-revealed .chart__bar:nth-child(5) {
  animation-delay: 240ms;
}

@keyframes barGrow {
  to {
    transform: scaleY(1);
  }
}

.panel__stats {
  margin: 18px 0 0;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.panel__stats li {
  display: flex;
  flex-direction: column;
}

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

@media (max-width: 1024px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__panel {
    padding: 32px;
  }
}

.section {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

main > section + section {
  margin-top: 0;
}

.section--card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .section--card {
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  .section--card {
    padding: 28px 20px;
  }
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

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

@media (min-width: 901px) {
  .split--reverse > :first-child {
    order: 2;
  }

  .split--reverse > :last-child {
    order: 1;
  }
}

.split__panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 2.6vw, 2.8rem);
  letter-spacing: -0.02em;
}

.split__panel p {
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.65;
}

.split__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.frame {
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.frame--padded {
  padding: 32px;
}

@media (max-width: 640px) {
  .frame--padded {
    padding: 22px;
  }
}

.mock-card {
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(79, 108, 247, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-title {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.features__header p,
.faq__header p {
  margin: 6px 0 0;
  color: var(--muted);
}

.features__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.feature {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(249, 250, 255, 1));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 20px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: rgba(15, 23, 42, 0.78);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), rgba(79, 108, 247, 0.9));
}

.shot {
  margin: 0;
}

.shot__placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 108, 247, 0.12), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(18, 197, 167, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.7);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.shot__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.shot__tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 108, 247, 0.12);
  border: 1px solid rgba(79, 108, 247, 0.18);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline__header p {
  color: var(--muted);
  margin: 8px 0 0;
}

.timeline__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  list-style: none;
  padding: 0;
}

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

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

.timeline__item {
  text-align: center;
  padding: 18px 14px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

.timeline__item h3 {
  margin: 0;
  font-size: 1.05rem;
}

.timeline__item p {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.55;
}

.step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(79, 108, 247, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.analytics__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.analytics__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.analytics__card li {
  padding: 6px 14px;
  background: rgba(18, 197, 167, 0.12);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.chart-svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.security {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

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

.security__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}

.pill {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.faq__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.faq__item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(249, 250, 255, 1));
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 18px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(79, 108, 247, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

.faq__item p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(15, 23, 42, 0.76);
  line-height: 1.6;
}

.cta {
  padding: 64px 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  border-radius: var(--radius-xl);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0% {
    transform: translate3d(-8%, -6%, 0) rotate(-6deg);
  }
  50% {
    transform: translate3d(8%, 6%, 0) rotate(6deg);
  }
  100% {
    transform: translate3d(-8%, -6%, 0) rotate(-6deg);
  }
}

.cta__content h2 {
  margin: 0;
  font-size: clamp(2.0rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  position: relative;
}

.cta__content p {
  margin: 10px 0 0;
  opacity: 0.88;
  position: relative;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

footer {
  color: rgba(15, 23, 42, 0.72);
}

.footer__inner {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.btn {
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--surface);
  color: var(--primary-dark);
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.btn:active {
  transform: translateY(0);
}

.btn.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  border: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.btn.btn--soft {
  background: rgba(79, 108, 247, 0.12);
  border-color: rgba(79, 108, 247, 0.18);
}

.btn.btn--soft:hover {
  background: rgba(79, 108, 247, 0.18);
  border-color: rgba(79, 108, 247, 0.28);
}

.btn.btn--outline {
  background: transparent;
}

.btn.btn--outline:hover {
  background: rgba(79, 108, 247, 0.08);
  border-color: rgba(79, 108, 247, 0.22);
}

.btn.btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.btn.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.modal h3 {
  margin: 0 0 12px;
}

.modal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js .hero__panel[data-reveal] {
  transition-delay: 120ms;
}

@keyframes cardRiseIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.js .features.is-revealed .feature,
.js .timeline.is-revealed .timeline__item,
.js .faq.is-revealed .faq__item,
.js .security.is-revealed .pill {
  opacity: 0;
  animation: cardRiseIn 520ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.js .features.is-revealed .feature:nth-child(1),
.js .timeline.is-revealed .timeline__item:nth-child(1),
.js .faq.is-revealed .faq__item:nth-child(1),
.js .security.is-revealed .pill:nth-child(1) {
  animation-delay: 40ms;
}

.js .features.is-revealed .feature:nth-child(2),
.js .timeline.is-revealed .timeline__item:nth-child(2),
.js .faq.is-revealed .faq__item:nth-child(2),
.js .security.is-revealed .pill:nth-child(2) {
  animation-delay: 110ms;
}

.js .features.is-revealed .feature:nth-child(3),
.js .timeline.is-revealed .timeline__item:nth-child(3),
.js .faq.is-revealed .faq__item:nth-child(3),
.js .security.is-revealed .pill:nth-child(3) {
  animation-delay: 180ms;
}

.js .features.is-revealed .feature:nth-child(4),
.js .timeline.is-revealed .timeline__item:nth-child(4),
.js .faq.is-revealed .faq__item:nth-child(4) {
  animation-delay: 250ms;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__panel.is-revealed .chart__bar {
    animation: none;
    transform: scaleY(1);
  }

  .cta::before {
    animation: none;
  }

  .js .features.is-revealed .feature,
  .js .timeline.is-revealed .timeline__item,
  .js .faq.is-revealed .faq__item,
  .js .security.is-revealed .pill {
    opacity: 1;
    animation: none;
  }
}



.panel__badge {
display: none;
}