:root {
  --page-min-width: 24.375rem;
  --page-width: max(var(--page-min-width), 100vw);
  --dark: #181d27;
  --navy: #0f2a5a;
  --blue-a: #102a8c;
  --blue-b: #2d2da8;
  --blue-c: #4040cc;
  --blue-d: #6060e8;
  --yellow: #ffb72b;
  --white: #fff;
  --muted-white: rgba(255, 255, 255, 0.7);
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  font-size: min(16px, calc(100vw * 16 / 390));
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-width: var(--page-min-width);
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  background: #f5f7ff;
  font-family: var(--font-body);
  overflow-x: hidden;
}

body>main {
  flex: 1;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #fff;
  box-shadow: 0 0.5rem 1.15rem rgba(44, 45, 165, 0.12);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 4rem;
  padding: 0.8125rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.brand img {
  width: 2.3125rem;
  height: 2.3125rem;
  flex: 0 0 auto;
}

.brand span {
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 1.33rem;
  font-weight: 500;
  line-height: 1;
}

.nav-links,
.nav-actions {
  display: none;
}

.menu-button {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.375rem;
  height: 2.375rem;
  align-items: center;
  border-radius: 0.75rem;
}

.menu-button span {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 62.4375rem;
  background: var(--navy);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-button:focus-visible {
  outline: 0.125rem solid rgba(75, 112, 254, 0.45);
  outline-offset: 0.25rem;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  width: 100%;
  height: calc(100dvh - 4rem);
  padding: 0.5rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  box-shadow: 0 1.125rem 2.25rem rgba(44, 45, 165, 0.14);
  transform: translateY(-1.125rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__links {
  display: grid;
  gap: 0.25rem;
  padding: 0.625rem 0 1rem;
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 0.875rem;
  border-radius: 0.75rem;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__links a:hover,
.mobile-menu__links a:focus-visible {
  background: #f0f3ff;
  color: var(--blue-a);
}

.mobile-menu__features {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-top: 0.0625rem solid rgba(15, 42, 90, 0.09);
}

.mobile-menu__features-title {
  margin: 0 0 0.25rem;
  padding: 0 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8fb3;
}

.mobile-menu__features a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 0.875rem;
  border-radius: 0.75rem;
  color: #757afd;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__features a:hover,
.mobile-menu__features a:focus-visible {
  background: #f0f3ff;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(15, 42, 90, 0.09);
}

.mobile-language-switcher {
  display: grid;
  gap: 0.625rem;
}

.mobile-language-switcher__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.625rem 0.75rem 0.625rem 0.875rem;
  border: 0.0625rem solid rgba(16, 42, 140, 0.08);
  border-radius: 0.875rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  color: var(--dark);
  box-shadow: 0 0.75rem 1.75rem rgba(44, 45, 165, 0.08);
  text-align: left;
}

.mobile-language-switcher__trigger span:first-child {
  display: grid;
  gap: 0.125rem;
  min-width: 0;
}

.mobile-language-switcher__trigger small {
  color: rgba(24, 29, 39, 0.48);
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-language-switcher__trigger strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-language-switcher__badge {
  display: inline-grid;
  place-items: center;
  width: 2.625rem;
  height: 2rem;
  border-radius: 999rem;
  background: rgba(75, 112, 254, 0.12);
  color: #4b70fe;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.mobile-language-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.375rem);
  transition: max-height 0.34s ease, opacity 0.22s ease, transform 0.24s ease;
}

.mobile-language-switcher.is-open .mobile-language-menu {
  max-height: 20rem;
  opacity: 1;
  transform: translateY(0);
}

.mobile-language-menu__item {
  display: grid;
  gap: 0.1875rem;
  min-height: 4rem;
  padding: 0.75rem;
  border: 0.0625rem solid rgba(24, 29, 39, 0.07);
  border-radius: 0.875rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.25rem rgba(44, 45, 165, 0.06);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-language-menu__item span {
  color: #4b70fe;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-language-menu__item strong {
  overflow: hidden;
  color: rgba(24, 29, 39, 0.74);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-language-menu__item.is-active {
  border-color: rgba(75, 112, 254, 0.34);
  background: #f3f6ff;
  box-shadow: inset 0 0 0 0.0625rem rgba(75, 112, 254, 0.14);
}

.mobile-language-menu__item:hover,
.mobile-language-menu__item:focus-visible {
  border-color: rgba(75, 112, 254, 0.42);
  transform: translateY(-0.0625rem);
}

.mobile-menu__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  min-height: 3rem;
  border-radius: 2.8125rem;
  background: rgba(75, 112, 254, 0.1);
  color: #4b70fe;
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.hero-section {
  position: relative;
  min-height: 41.75rem;
  overflow: hidden;
  color: var(--white);
  /* background:
    radial-gradient(circle at 18% 34%, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0) 38%),
    radial-gradient(circle at 68% 22%, rgba(108, 99, 255, 0.35), rgba(108, 99, 255, 0) 35%),
    linear-gradient(105deg, var(--blue-a) 0%, var(--blue-a) 35%, var(--blue-b) 60%, var(--blue-c) 80%, var(--blue-d) 100%); */
  padding: 3.5rem 1.25rem 4rem;
  background: linear-gradient(119deg, #102A8C 30.95%, #2D2DA8 52.87%, #4040CC 70.42%, #6060E8 87.96%);
  border-radius: 0 0 1.25rem 1.25rem;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/bg_lines.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 90rem 46.6875rem;
  opacity: 0.85;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-a {
  top: -7rem;
  right: 8%;
  width: 31.25rem;
  height: 31.25rem;
  background: rgba(108, 99, 255, 0.18);
  filter: blur(5rem);
}

.hero-glow-b {
  left: 3%;
  bottom: 18%;
  width: 24.375rem;
  height: 17.5rem;
  background: rgba(255, 183, 43, 0.08);
  filter: blur(5.625rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 80rem;
  min-width: 0;
  margin: 0 auto;
  gap: 2.625rem;
}

.hero-copy {
  min-width: 0;
  max-width: 38.125rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  min-height: 2.125rem;
  padding: 0.375rem 0.75rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 62.4375rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
}

.hero-copy h1 {
  margin: 1rem 0 0;
  max-width: 38.125rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 29.375rem;
  margin: 1rem 0 0;
  color: var(--muted-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.cta-stack {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.primary-cta,
.open-button,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-cta {
  min-height: 3.5rem;
  gap: 0.375rem;
  padding: 1.25rem 3.3rem;
  border-radius: 2.625rem;
  background: var(--yellow);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.secondary-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  min-height: 3.5rem;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #272f9d;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.62rem 1.75rem rgba(255, 255, 255, 0.4);
}

.secondary-cta:focus-visible {
  outline: 0.1875rem solid rgba(255, 255, 255, 0.64);
  outline-offset: 0.25rem;
  background: rgba(255, 255, 255, 0.5);
  color: #272f9d;
  box-shadow: 0 0.62rem 1.75rem rgba(255, 255, 255, 0.4);
}

.secondary-cta:active {
  background: rgba(255, 255, 255, 0.42);
  color: #272f9d;
  transform: translateY(0);
  box-shadow: 0 0.375rem 1.125rem rgba(255, 255, 255, 0.28);
}

.cta-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.8062rem;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background:
    linear-gradient(currentColor, currentColor) 0.1875rem 0.4375rem / 0.625rem 0.125rem no-repeat;
  position: relative;
}

.arrow-icon::after {
  position: absolute;
  top: 0.25rem;
  right: 0.125rem;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 0.125rem solid currentColor;
  border-right: 0.125rem solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.gift-icon,
.globe {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.gift-icon {
  border: 0.0938rem solid currentColor;
  border-radius: 0.1875rem;
}

.gift-icon::before {
  position: absolute;
  inset: 0.375rem 0 auto;
  height: 0.0938rem;
  background: currentColor;
  content: "";
}

.gift-icon::after {
  position: absolute;
  top: -0.25rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 1.25rem;
  border-left: 0.0938rem solid currentColor;
  border-right: 0.0938rem solid currentColor;
  content: "";
}

.hero-demo {
  position: relative;
  min-width: 0;
  transform-origin: center top;
}

.demo-card {
  position: relative;
  width: 100%;
  max-width: 38.125rem;
  margin: 0 auto;
  padding: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  color: var(--white);
  overflow: hidden;
}

.assistant-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.assistant-id {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.assistant-avatar {
  width: 1.875rem;
  height: 1.875rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  background: #f0f6ff;
  object-fit: cover;
}

.assistant-avatar-sm {
  width: 1.75rem;
  height: 1.75rem;
}

.status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.125rem 0.625rem;
  border: 0.0625rem solid rgba(108, 99, 255, 0.4);
  border-radius: 1.25rem;
  background: rgba(110, 231, 183, 0.1);
  color: #6ee7b7;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.125rem;
}

.demo-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-line-question {
  justify-content: flex-end;
}

.demo-line-answer {
  align-items: flex-start;
}

.user-avatar {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  object-fit: cover;
}

.question-bubble,
.table-request {
  display: inline-block;
  max-width: calc(100% - 2.5rem);
  padding: 0.625rem 0.875rem;
  border-radius: 0.875rem 0.875rem 0.25rem 0.875rem;
  background: var(--yellow);
  color: #1a1a6e;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.125rem;
  word-break: break-word;
}

.result-card {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.8125rem 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
}

.result-label {
  padding-bottom: 0.5rem;
  color: rgba(245, 197, 24, 0.9);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.0312rem;
  line-height: 1.125rem;
  text-transform: uppercase;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.result-tag {
  flex: 0 0 auto;
  padding: 0.125rem 0.5625rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.0625rem;
  white-space: nowrap;
}

.result-tag-neutral {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.result-tag-alert {
  background: rgba(251, 113, 133, 0.25);
  color: #fda4af;
}

.data-table {
  display: grid;
  gap: 0.1875rem;
  margin-top: 0.75rem;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  color: #fff;
}

.table-head {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.125rem;
}

.table-row {
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.float-pill {
  position: absolute;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.375rem;
  padding: 0.8125rem 1.125rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.17);
  border-radius: 0.875rem;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.375rem;
  will-change: transform;
}

.float-pill img {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .nav-shell {
    padding-inline: 2.5rem;
  }

  .hero-section {
    padding: 4.5rem 2.5rem 4.875rem;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
    line-height: 3.375rem;
    letter-spacing: -0.1rem;
  }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-lines,
.hero-glow {
  z-index: 0;
}

@media (min-width: 1024px) {
  .nav-shell {
    min-height: 4rem;
    padding: 0.8125rem 5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 90rem;
  }

  body.menu-open {
    overflow: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5rem;
    opacity: .6;
  }

  .nav-links a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    height: 1.5rem;
    padding: 0;
    flex: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .language-switcher {
    position: relative;
  }

  .lang-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    padding: 0 0.75rem;
    border: 0.0625rem solid transparent;
    border-radius: 999rem;
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.5rem;
    opacity: .68;
    transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .lang-button:hover,
  .lang-button:focus-visible,
  .language-switcher.is-open .lang-button {
    border-color: rgba(75, 112, 254, 0.16);
    background: rgba(75, 112, 254, 0.08);
    color: var(--blue-a);
    opacity: 1;
    transform: translateY(-0.0625rem);
  }

  .lang-button:focus-visible {
    outline: 0.125rem solid rgba(75, 112, 254, 0.34);
    outline-offset: 0.1875rem;
  }

  .lang-button__globe {
    position: relative;
    width: 1.125rem;
    height: 1.125rem;
    border: 0.0875rem solid currentColor;
    border-radius: 50%;
    flex: 0 0 auto;
  }

  .lang-button__globe::before,
  .lang-button__globe::after {
    position: absolute;
    content: "";
  }

  .lang-button__globe::before {
    inset: 0.1875rem 0.375rem;
    border-left: 0.0875rem solid currentColor;
    border-right: 0.0875rem solid currentColor;
    border-radius: 50%;
  }

  .lang-button__globe::after {
    inset: 0.5rem 0.125rem auto;
    height: 0;
    border-top: 0.0875rem solid currentColor;
  }

  .lang-button__label {
    min-width: 1.375rem;
  }

  .lang-button__chevron {
    width: 0.75rem;
    height: 0.75rem;
    opacity: 0.62;
    transition: transform 0.24s ease;
  }

  .language-switcher.is-open .lang-button__chevron {
    transform: rotate(180deg);
  }

  .language-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    z-index: 30;
    width: 18rem;
    padding: 0.625rem;
    border: 0.0625rem solid rgba(16, 42, 140, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1.5rem 4rem rgba(15, 42, 90, 0.18);
    backdrop-filter: blur(1.125rem);
    -webkit-backdrop-filter: blur(1.125rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.24s ease;
  }

  .language-switcher.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .language-menu::before {
    position: absolute;
    top: -0.375rem;
    right: 1.125rem;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 0.0625rem solid rgba(16, 42, 140, 0.1);
    border-left: 0.0625rem solid rgba(16, 42, 140, 0.1);
    background: #f5f7ff;
    transform: rotate(45deg);
    content: "";
  }

  .language-menu__current {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 0.625rem 0.75rem;
    border-bottom: 0.0625rem solid rgba(15, 42, 90, 0.08);
    color: rgba(24, 29, 39, 0.56);
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .language-menu__current strong {
    display: none;
    place-items: center;
    min-width: 2.375rem;
    height: 1.75rem;
    border-radius: 999rem;
    background: rgba(75, 112, 254, 0.12);
    color: #4b70fe;
    font-size: 0.75rem;
    font-weight: 800;
  }

  .language-menu__list {
    display: grid;
    gap: 0.1875rem;
    padding-top: 0rem;
  }

  .language-menu__item {
    position: relative;
    display: grid;
    grid-template-columns: 2.625rem minmax(0, 1fr) 1rem;
    align-items: center;
    gap: 0.625rem;
    min-height: 2.875rem;
    padding: 0 0.625rem;
    border-radius: 0.75rem;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .language-menu__item:hover,
  .language-menu__item:focus-visible {
    background: #4b70fe1a;
    color: var(--blue-a);
    outline: none;
  }

  .language-menu__item.is-active {
    background: rgba(75, 112, 254, 0.1);
    color: var(--blue-a);
  }

  .language-menu__code {
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 1.75rem;
    border-radius: 999rem;
    background: rgba(15, 42, 90, 0.06);
    color: #4b70fe;
    font-size: 0.75rem;
    font-weight: 800;
  }

  .language-menu__name {
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu__check {
    position: relative;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
  }

  .language-menu__check::after {
    position: absolute;
    top: 0.25rem;
    left: 0.3125rem;
    width: 0.3125rem;
    height: 0.5rem;
    border-right: 0.125rem solid #fff;
    border-bottom: 0.125rem solid #fff;
    transform: rotate(45deg);
    content: "";
  }

  .open-button {
    width: 8rem;
    height: 2.5rem;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    border: 0;
    border-radius: 2.8125rem;
    background: rgba(75, 112, 254, 0.1);
    color: #4b70fe;
    font-family: var(--font-brand);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2788rem;
  }

  .open-button .arrow-icon {
    display: none;
  }

  .hero-section {
    min-height: 46.6613rem;
    padding: 5rem;
  }

  .hero-inner {
    grid-template-columns: minmax(26.25rem, 1fr) minmax(0, 1fr);
    align-items: center;
    min-height: 36.6613rem;
    gap: 3.75rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .demo-card {
    max-width: none;
    margin: 0;
  }

  .float-pill {
    display: inline-flex;
  }

  .float-fast {
    top: -1.5rem;
    right: 9.3rem;
    animation: float-pill-bob 2.2s ease-in-out infinite alternate;
  }

  .float-voice {
    left: -1.875rem;
    bottom: -1.875rem;
    animation: float-pill-bob 2.8s ease-in-out 0.9s infinite alternate;
  }
}

@keyframes float-pill-bob {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -0.625rem, 0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .float-fast,
  .float-voice {
    animation: none;
  }
}

.js-motion .reveal-item {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 1rem), 0);
  transition:
    opacity var(--reveal-duration, 700ms) var(--reveal-ease, ease),
    transform var(--reveal-duration, 700ms) var(--reveal-ease, ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-motion [data-animate] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 0), 0);
  transition:
    opacity var(--reveal-duration, 700ms) var(--reveal-ease, ease),
    transform var(--reveal-duration, 700ms) var(--reveal-ease, ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-motion .reveal-item.reveal-left {
  transform: translate3d(-1rem, 0, 0);
}

.js-motion .reveal-item.reveal-right {
  transform: translate3d(1rem, 0, 0);
}

.js-motion .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-motion .manual-card.reveal-item.is-visible:hover,
.js-motion .questions-card.reveal-item.is-visible:hover {
  transform: translateY(-0.3125rem);
}

.js-motion .reports-item.reveal-item.is-visible:hover,
.js-motion .training-item.reveal-item.is-visible:hover {
  transform: translateX(0.3125rem);
}

.js-motion .check-metric.reveal-item.is-visible:hover {
  transform: scale(1.025);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav-wrap.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.07), 0 0.25rem 1rem rgba(44, 45, 165, 0.08);
}

.primary-cta,
.open-button,
.try-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-cta:hover,
.try-cta:hover {
  transform: translateY(-0.125rem);
}

.primary-cta:hover,
.try-cta:hover {
  box-shadow: 0 0.625rem 1.75rem rgba(255, 183, 43, 0.45);
}

.primary-cta:focus-visible,
.try-cta:focus-visible {
  outline: 0.1875rem solid rgba(255, 183, 43, 0.42);
  outline-offset: 0.25rem;
  box-shadow: 0 0.625rem 1.75rem rgba(255, 183, 43, 0.45);
}

.primary-cta:active,
.try-cta:active {
  transform: translateY(0);
  box-shadow: 0 0.375rem 1.125rem rgba(255, 183, 43, 0.34);
}

.open-button:hover {
  opacity: 0.85;
  transform: translateY(-0.0625rem);
}

.manual-card,
.questions-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.manual-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.16);
}

.questions-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.875rem 2.25rem rgba(0, 0, 0, 0.13);
}

.reports-item,
.training-item {
  transition: transform 0.22s ease;
}

.reports-item:hover,
.training-item:hover {
  transform: translateX(0.3125rem);
}

.check-metric {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.check-metric:hover {
  transform: scale(1.025);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {

  .nav-wrap,
  .lang-button,
  .lang-button__chevron,
  .language-menu,
  .language-menu__item,
  .mobile-language-menu,
  .mobile-language-menu__item,
  .primary-cta,
  .secondary-cta,
  .open-button,
  .try-cta,
  .manual-card,
  .questions-card,
  .reports-item,
  .training-item,
  .check-metric {
    transition: none;
  }

  .js-motion .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1023px) {
  .hero-inner {
    gap: 3.5rem;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-stack {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 1.1875rem;
  }

  .hero-section {
    min-height: auto;
    padding-inline: 1.25rem;
  }

  .hero-inner,
  .hero-copy,
  .hero-demo {
    width: 100%;
    max-width: calc(var(--page-width) - 2.5rem);
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .hero-copy h1 {
    max-width: 21.25rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.75rem;
    line-height: 1.18;
  }

  .lead {
    max-width: 20.625rem;
  }

  .demo-card {
    padding: 0.875rem;
    border-radius: 1.25rem;
  }

  .question-bubble,
  .table-request {
    overflow-wrap: anywhere;
    font-size: 0.75rem;
  }

  .result-row {
    gap: 0.5rem;
    font-size: 0.6875rem;
  }

  .result-tag {
    font-size: 0.6875rem;
    padding: 0.125rem 0.5rem;
  }

  .table-head,
  .table-row {
    gap: 0.375rem;
    padding: 0.5rem 0.625rem;
  }

  .table-head {
    font-size: 0.6875rem;
  }

  .table-row {
    font-size: 0.75rem;
  }
}

.manual-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 4.5rem 1.25rem 5.75rem;
}

.manual-section * {
  min-width: 0;
}

.manual-heading {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.manual-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.875rem;
  margin: 0;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  background: rgba(45, 70, 224, 0.08);
  color: #4b70fe;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.2375rem;
  text-transform: uppercase;
}

.manual-heading h2 {
  margin: 0.75rem 0 0;
  color: #1e1e3a;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.manual-mobile-break {
  display: none;
}

.manual-heading>p:last-child {
  margin: 0.875rem 0 0;
  color: #6e6e9a;
  font-size: 1rem;
  line-height: 1.45;
}

.manual-workflow {
  position: relative;
  display: grid;
  max-width: 61.625rem;
  margin: 2.625rem auto 0;
  gap: 1.5rem;
  border-radius: 1.75rem;
  background: #f7f8ff;
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
}

.manual-blur {
  position: absolute;
  z-index: 0;
  border-radius: 62.4375rem;
  pointer-events: none;
}

.manual-blur-blue {
  left: -2.625rem;
  bottom: -5.375rem;
  width: 22.5rem;
  height: 13.125rem;
  background: rgba(75, 112, 254, 0.22);
  filter: blur(4.5rem);
}

.manual-blur-amber {
  top: -2rem;
  right: -2.125rem;
  width: 19.375rem;
  height: 13.125rem;
  background: rgba(255, 183, 43, 0.18);
  filter: blur(4.25rem);
}

.manual-card {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
  padding: 1.5rem;
}

.manual-workflow.manual-workflow--css-ready .manual-card {
  opacity: 0;
  transform: translate3d(0, 0.75rem, 0);
}

.manual-workflow.is-visible .manual-card {
  animation: manual-card-reveal 0.75s ease forwards;
}

.manual-workflow.is-visible .manual-card+.manual-card {
  animation-delay: 0.12s;
}

@keyframes manual-card-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-workflow.manual-workflow--css-ready .manual-card {
    opacity: 1;
    transform: none;
  }

  .manual-workflow.is-visible .manual-card {
    animation: none;
  }
}

.manual-card h3 {
  margin: 0 0 1.5rem;
  color: #1e1e3a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.0625rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.manual-list {
  display: grid;
  gap: 0.75rem;
}

.manual-item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 1.125rem;
  align-items: center;
  gap: 0.5rem;
  min-height: 4.5rem;
  border-radius: 4.0625rem;
  background: #f7f8ff;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
}

.manual-item>span:not(.manual-icon) {
  min-width: 0;
  color: #1e1e3a;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.9594rem;
  white-space: nowrap;
}

.manual-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 3.625rem;
  background: #fff;
}

.manual-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.manual-state {
  width: 1.125rem;
  height: 1.125rem;
}

.manual-summary {
  position: relative;
  display: flex;
  align-items: center;
  width: min(24.375rem, calc(var(--page-width) - 2.5rem));
  min-height: 5.875rem;
  margin: -3rem auto 0;
  overflow: hidden;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 85% 70%, rgba(96, 96, 232, 0.82), rgba(96, 96, 232, 0) 44%),
    linear-gradient(105deg, #102a8c 0%, #102a8c 35%, #2d2da8 60%, #4040cc 80%, #6060e8 100%);
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12), 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  padding: 1.125rem 1.5rem;
  gap: 1rem;
  isolation: isolate;
}

.summary-lines,
.logic-summary-lines,
.reports-summary-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  background-image: url("/assets/img/net.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  mix-blend-mode: screen;
  pointer-events: none;
}

.manual-summary img {
  position: relative;
  z-index: 2;
  width: 2.375rem;
  height: 2.375rem;
  flex: 0 0 auto;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  background: #f0f6ff;
}

.manual-summary>div:not(.summary-lines) {
  position: relative;
  z-index: 2;
  display: grid;
}

.manual-summary strong {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8062rem;
}

.manual-summary span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.125rem;
}

@media (min-width: 768px) {
  .manual-section {
    padding: 5rem 2.5rem 6.25rem;
  }

  .manual-heading h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }

  .manual-heading>p:last-child {
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .manual-workflow {
    grid-template-columns: repeat(2, minmax(0, 27.5rem));
    justify-content: center;
    margin-top: 1rem;
    padding: 2rem;
    gap: 2.625rem;
    border-radius: 1.75rem;
  }

  .manual-summary {
    margin-left: max(3.375rem, calc((100vw - 80rem) / 2 + 3.375rem));
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .manual-section {
    min-height: 50.125rem;
  }

  .manual-workflow {
    max-width: 61.625rem;
    min-height: 25.5625rem;
  }
}

@media (max-width: 520px) {
  .manual-section {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .manual-kicker {
    max-width: 100%;
    font-size: 0.6875rem;
  }

  .manual-heading {
    width: 100%;
    max-width: calc(var(--page-width) - 2.5rem);
    margin-left: 0;
    margin-right: 0;
  }

  .manual-heading h2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 1.22;
  }

  .manual-mobile-break {
    display: block;
  }

  .manual-heading>p:last-child {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.9375rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .manual-heading>p:last-child br {
    display: none;
  }

  .manual-workflow {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1.125rem;
  }

  .manual-card {
    padding: 1.25rem 0.875rem;
  }

  .manual-card h3 {
    margin-bottom: 1.125rem;
    font-size: 1.1875rem;
    line-height: 1.3;
  }

  .manual-card:nth-child(4) h3 {
    max-width: 17.5rem;
    margin-inline: auto;
  }

  .manual-item {
    grid-template-columns: 3rem minmax(0, 1fr) 1.125rem;
    min-height: 4rem;
    padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  }

  .manual-icon {
    width: 3rem;
    height: 3rem;
  }

  .manual-item>span:not(.manual-icon) {
    font-size: 0.9375rem;
    line-height: 1.35;
    white-space: normal;
  }

  .manual-summary {
    width: 100%;
    /* max-width: 21.875rem; */
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.25rem;
    padding: 1rem 1.125rem;
  }

  .manual-summary span {
    line-height: 1.35;
    overflow-wrap: break-word;
  }
}

.logic-section {
  position: relative;
  overflow: hidden;
  border-bottom: 0.0625rem solid rgba(16, 42, 141, 0.12);
  background: #f7f8ff;
  padding: 4.5rem 1.25rem 5.375rem;
}

.logic-section * {
  min-width: 0;
}

.logic-inner {
  display: grid;
  max-width: 80rem;
  margin: 0 auto;
  gap: 2.75rem;
}

.logic-copy {
  max-width: 30.9375rem;
}

.logic-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.875rem;
  margin: 0;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  background: rgba(45, 70, 224, 0.08);
  color: #4b70fe;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.2375rem;
  text-transform: uppercase;
}

.logic-copy h2 {
  margin: 0.75rem 0 0;
  color: #1e1e3a;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.logic-copy>p:last-child {
  margin: 0.875rem 0 0;
  color: #6e6e9a;
  font-size: 1rem;
  line-height: 1.5;
}

.logic-desktop-break {
  display: none;
}

.logic-demo {
  position: relative;
  width: 100%;
  max-width: 35.9375rem;
  margin: 0 auto;
  padding-bottom: 0;
}

.logic-panel {
  position: relative;
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1.5rem 5rem rgba(45, 70, 224, 0.08);
  padding: 1.5rem;
}

.logic-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8125rem;
}

.logic-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.375rem;
  border-radius: 4.0625rem;
  background: #fff;
  color: #1e1e3a;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3125rem;
}

.logic-tabs .is-active {
  background: #4b70fe;
  color: #fff;
}

.logic-results {
  display: grid;
  gap: 1.125rem;
}

.logic-question {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8125rem;
}

.logic-question span {
  display: inline-flex;
  align-items: center;
  min-height: 2.375rem;
  border-radius: 0.875rem 0.875rem 0.25rem 0.875rem;
  background: #ffb72b;
  color: #1e1e3a;
  padding: 0.75rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.125rem;
}

.logic-question img,
.logic-stat img,
.logic-summary img {
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.logic-question img {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
}

.logic-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.logic-stat {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 5.125rem;
  border-radius: 0.75rem;
  background: #f7f8ff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
  padding: 0.6875rem 0.875rem 0.75rem;
}

.logic-stat-alert {
  background: #fff1f1;
}

.logic-stat img {
  position: absolute;
  top: 0.6875rem;
  left: 0.875rem;
  width: 1.875rem;
  height: 1.875rem;
}

.logic-stat strong {
  color: #1a1a6e;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2.475rem;
}



.logic-stat span {
  color: #1a1a6e;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.1344rem;
}

.logic-stat-alert strong,
.logic-stat-alert span {
  color: #e94b58;
}

.logic-summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 5.875rem;
  margin: 1.375rem auto 0;
  overflow: hidden;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 88% 72%, rgba(96, 96, 232, 0.82), rgba(96, 96, 232, 0) 45%),
    linear-gradient(105deg, #102a8c 0%, #102a8c 35%, #2d2da8 60%, #4040cc 80%, #6060e8 100%);
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12), 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  padding: 1.125rem 1.375rem;
  gap: 1rem;
  isolation: isolate;
}

.logic-summary img {
  position: relative;
  z-index: 2;
  width: 2.375rem;
  height: 2.375rem;
  flex: 0 0 auto;
  border: 0.125rem solid #fff;
  background: #f0f6ff;
}

.logic-summary>div:not(.logic-summary-lines) {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
}

.logic-summary strong {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8062rem;
}

.logic-summary span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.125rem;
}

@media (min-width: 768px) {
  .logic-section {
    padding: 5.25rem 2.5rem 6.875rem;
  }

  .logic-inner {
    gap: 3.25rem;
  }

  .logic-copy h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }

  .logic-copy>p:last-child {
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }



  .logic-tabs {
    grid-template-columns: 1fr;
  }

  .logic-results {
    gap: 1.25rem;
  }

  .logic-stats {
    gap: 0.75rem;
  }

  .logic-summary,
  .check-callout {
    max-width: 26.4375rem;
  }

  .check-callout {
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .logic-section {
    min-height: 35.6875rem;
    padding: 6.25rem 5rem 4rem;
  }

  .logic-inner {
    grid-template-columns: minmax(0, 30.9375rem) minmax(0, 35.9375rem);
    align-items: center;
    justify-content: center;
    gap: 3.125rem;
  }

  .logic-copy {
    transform: translateY(-0.25rem);
  }

  .logic-desktop-break {
    display: block;
  }

  .logic-demo {
    min-height: 25.4375rem;
    margin: 0;
  }

  .logic-panel {
    width: 35.9375rem;
    padding-right: 2.25rem;
  }

  .logic-question {
    margin-bottom: 0.625rem;
  }

  .logic-question span {
    min-height: 2.375rem;
    padding-inline: 1.3125rem;
  }

  .logic-stats {
    grid-template-columns: repeat(2, 10.125rem);
    justify-content: end;
    gap: 1rem 0.5rem;
  }

  .logic-stat {
    width: 100%;
  }

  .logic-summary {
    position: absolute;
    right: -1.625rem;
    bottom: 0;
    width: 26.4375rem;
    margin: 0;
    padding-inline: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .logic-copy {
    max-width: 30.9375rem;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .logic-section {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .logic-copy {
    max-width: calc(var(--page-width) - 2.5rem);
  }

  .logic-kicker {
    font-size: 0.6875rem;
  }

  .logic-copy h2 {
    max-width: 20.625rem;
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .logic-copy>p:last-child {
    max-width: 20.625rem;
    font-size: 0.9375rem;
    line-height: 1.45;
  }

  .logic-demo {
    width: 100%;
    /* max-width: 20.625rem; */
    margin-left: 0;
    margin-right: 0;
  }

  .logic-panel {
    width: 100%;
    max-width: 100%;
    padding: 1.125rem;
  }

  .logic-tabs {
    gap: 0.625rem;
  }

  .logic-tabs span {
    min-width: 0;
    min-height: 3rem;
    padding-inline: 0.625rem;
  }

  .logic-question {
    justify-content: flex-start;
  }

  .logic-question span {
    max-width: calc(100% - 2.5625rem);
    padding-inline: 0.875rem;
    overflow-wrap: break-word;
  }

  .logic-stats {
    grid-template-columns: 1fr;
  }
  

  .logic-summary {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.125rem;
  }

  .logic-summary strong {
    font-size: 1.0625rem;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .logic-summary span {
    line-height: 1.35;
    overflow-wrap: break-word;
  }
}

.questions-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 4.5rem 1.25rem 5.75rem;
  background: #f7f8ff;
}

.questions-section * {
  min-width: 0;
}

.questions-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.questions-heading {
  max-width: 51.25rem;
  margin: 0 auto;
  text-align: center;
}

.questions-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.875rem;
  margin: 0;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  background: rgba(45, 70, 224, 0.08);
  color: #4b70fe;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.2375rem;
  text-transform: uppercase;
}

.questions-heading h2 {
  margin: 0.75rem 0 0;
  color: #1e1e3a;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.questions-heading>p:not(.questions-kicker) {
  margin: 0.875rem 0 0;
  color: #6e6e9a;
  font-size: 1rem;
  line-height: 1.5;
}

.questions-flow {
  position: relative;
  width: 100%;
  max-width: 70rem;
  margin: 2.625rem auto 0;
}

.questions-bot {
  position: relative;
  width: min(100%, 32.5rem);
  min-height: 23.75rem;
  margin: 0 auto -8.25rem;
}

.questions-robot,
.questions-cloud {
  position: absolute;
  display: block;
  pointer-events: none;
}

.questions-robot {
  z-index: 2;
  left: 50%;
  top: 0;
  width: 19.6875rem;
  height: auto;
  max-width: 75vw;
  transform: translateX(-50%);
}

.questions-cloud {
  z-index: 2;
  left: 50%;
  bottom: 3.625rem;
  width: 28.625rem;
  height: auto;
  max-width: 100%;
  transform: translateX(-50%);
}

.questions-callout {
  position: absolute;
  z-index: 5;
  top: 2.5rem;
  right: -3.6875rem;
  display: grid;
  min-width: 12.75rem;
  min-height: 4.625rem;
  max-width: 14.4rem;
  justify-content: start;
  border-radius: 0.625rem 0.625rem 0.625rem 0.125rem;
  border-bottom-left-radius: 0.1875rem;
  background: linear-gradient(119deg, #102A8C 30.95%, #2D2DA8 52.87%, #4040CC 70.42%, #6060E8 87.96%);
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.18);
  padding: 0.75rem 1rem;
}

.questions-callout strong {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5625rem;
}

.questions-callout span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.questions-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 3rem;
}

.questions-card {
  position: relative;
  display: grid;
  min-height: 13.0625rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(60, 60, 180, 0.1);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
  padding: 1.5625rem;
}

.questions-card-admin {
  margin-top: 2.5rem;
}

.questions-icon {
  position: relative;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
}

.questions-icon-manager {
  background: #ebebfe;
  color: #4b70fe;
}

.questions-icon-admin {
  background: #fff9e4;
  color: #ffb72b;
}

.questions-icon-employees {
  background: #e9fff1;
  color: #5edd97;
}

.questions-number {
  position: absolute;
  top: 1.125rem;
  right: 1.5625rem;
  color: #f1f2ff;
  font-size: 5rem;
  font-weight: 800;
  line-height: 5rem;
}

.questions-card-copy {
  align-self: end;
  margin-top: 1.5rem;
}

.questions-card h3 {
  margin: 0;
  color: #1e1e3a;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.9594rem;
}

.questions-card p {
  margin: 0;
  color: #1e1e3a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4438rem;
}

.questions-card-subtext {
  margin-top: 1.125rem !important;
  border-top: 0.0625rem solid rgba(60, 60, 180, 0.12);
  padding-top: 1.125rem;
  color: #6e6e9a!important;
  font-size: 0.875rem!important;
}

@media (min-width: 768px) {
  .questions-section {
    padding: 5rem 2.5rem 6.25rem;
  }

  .questions-heading h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }

  .questions-heading>p:not(.questions-kicker) {
    font-size: 1.0625rem;
    line-height: 1.8062rem;
  }
}

@media (min-width: 1024px) {
  .questions-section {
    min-height: 52.925rem;
    padding: 5rem;
  }

  .questions-flow {
    margin-top: 1rem;
  }

  .questions-bot {
    min-height: 23.75rem;
  }
}

@media (max-width: 1130px) {
  .questions-callout {
    right: -4.375rem;
  }
}

@media (max-width: 900px) {
  .questions-bot {
    margin-bottom: 1.5rem;
  }

  .questions-callout {
    top: auto;
    left: 0;
    right: auto;
    bottom: 2.25rem;
    min-width: 0;
    width: min(22.5rem, 90%);
    /*transform: translateX(-50%);*/
  }

  .questions-cards {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }

  .questions-card,
  .questions-card-admin {
    min-height: 11.75rem;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .questions-section {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .questions-inner,
  .questions-heading,
  .questions-flow {
    max-width: calc(var(--page-width) - 2.5rem);
  }

  .questions-kicker {
    font-size: 0.6875rem;
  }

  .questions-heading h2 {
    max-width: 20rem;
    margin-inline: auto;
    font-size: 1.4375rem;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .questions-heading h2 br {
    display: block;
  }

  .questions-heading>p:not(.questions-kicker) {
    max-width: 21.875rem;
    margin-inline: auto;
    font-size: 0.9375rem;
    line-height: 1.45;
  }

  .questions-bot {
    min-height: 22.5rem;
    margin-top: 1.875rem;
  }

  .questions-robot {
    width: 16.5625rem;
  }

  .questions-cloud {
    width: 22.5rem;
    bottom: 3.875rem;
  }

  .questions-callout {
    width: 100%;
    max-width: 20rem;
    bottom: 1.875rem;
    padding: 0.875rem 1.125rem;
  }

  .questions-callout strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .questions-callout span {
    line-height: 1.35;
  }

  .questions-card {
    width: 100%;
    max-width: 20.625rem;
    margin-inline: auto;
    padding: 1.375rem;
    overflow-wrap: break-word;
  }

  .questions-card-copy {
    max-width: 15.3125rem;
  }

  .questions-number {
    top: 1.125rem;
    right: 1.375rem;
    font-size: 4.25rem;
    line-height: 4.25rem;
  }

  .questions-card h3 {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .questions-card p {
    font-size: 0.9375rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }
}

.picture-section {
  background: #fff;
  padding: 0 1.25rem 8.5rem;
}

.picture-section * {
  box-sizing: border-box;
}

.picture-inner {
  display: grid;
  max-width: 80rem;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
}

.picture-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.picture-kicker {
  display: inline-flex;
  min-height: 1.875rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  background: rgba(45, 70, 224, 0.08);
  color: #3d5af1;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2375rem;
  letter-spacing: 0.05rem;
}

.picture-heading h2 {
  max-width: 48.875rem;
  margin: 0;
  color: #1e1e3a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.picture-heading>p:not(.picture-kicker) {
  margin: 0;
  color: #6e6e9a;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8062rem;
}

.picture-workspace {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.125rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f7f8ff;
  padding: 1.25rem;
}

.picture-blur {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(75, 112, 254, 0.15);
  filter: blur(5.125rem);
  pointer-events: none;
}

.picture-blur-left {
  left: -6.25rem;
  bottom: -11.25rem;
  width: 23.5625rem;
  height: 23.5rem;
}

.picture-blur-right {
  top: -8.1875rem;
  right: -12.5rem;
  width: 36.0625rem;
  height: 36rem;
}

.picture-answer-card,
.picture-insights {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
}

.picture-answer-card {
  display: grid;
  min-width: 0;
  gap: 1rem;
  border: 0.125rem solid #fff;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.125rem;
}

.picture-question-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

.picture-question-bubble {
  max-width: min(100%, 18.5625rem);
  background: #ffb72b;
  border-radius: 0.875rem 0.875rem 0.25rem 0.875rem;
  color: #1a1a6e;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.125rem;
}

.picture-question-avatar {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.picture-answer-row {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem;
  min-width: 0;
}

.picture-assistant-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  background: #f0f6ff;
  object-fit: cover;
}

.picture-table-wrap {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.picture-table {
  width: 100%;
  min-width: 31.125rem;
  border-collapse: separate;
  border-spacing: 0 0.1875rem;
  color: #1e1e3a;
}

.picture-table th,
.picture-table td {
  padding: 0 0.5rem;
  text-align: left;
  white-space: nowrap;
}

.picture-table th {
  color: #6e6e9a;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1875rem;
}

.picture-table td {
  height: 3.375rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.picture-table td:first-child {
  border-radius: 0.875rem 0 0 0.875rem;
}

.picture-table td:last-child {
  border-radius: 0 0.875rem 0.875rem 0;
}

.picture-status {
  display: inline-flex;
  min-height: 1.3125rem;
  align-items: center;
  padding: 0.125rem 0.5625rem;
  border-radius: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.0312rem;
}

.picture-status-blue {
  background: rgba(75, 112, 254, 0.08);
  color: #4b70fe;
}

.picture-status-green {
  background: rgba(36, 187, 140, 0.08);
  color: #24bb8c;
}

.picture-status-yellow {
  background: rgba(255, 183, 43, 0.08);
  color: #ffb72b;
}

.picture-arrow {
  display: none;
}

.picture-insights {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  padding: 1.375rem;
}

.picture-insights h3 {
  margin: 0;
  color: #1e1e3a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.0625rem;
  text-align: center;
}

.picture-insights ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.picture-insights li {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4.0625rem;
  background: #f7f8ff;
  padding: 0.625rem 0.75rem;
  color: #1e1e3a;
  font-size: 1rem;
  line-height: 1.9594rem;
}

.picture-insights svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .picture-section {
    padding: 0 2.5rem 5.625rem;
  }

  .picture-inner {
    padding-inline: 2.5rem;
  }

  .picture-heading h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }
}

@media (min-width: 1024px) {
  .picture-section {
    padding: 0 5rem 8.6rem;
  }

  .picture-inner {
    padding-inline: 5rem;
  }

  .picture-workspace {
    grid-template-columns: minmax(0, 36.625rem) 2.625rem minmax(0, 24.25rem);
    align-items: center;
    justify-content: center;
    min-height: 22.3125rem;
    gap: 1rem;
    padding: 2rem;
  }

  .picture-answer-card {
    min-height: 18.3125rem;
    padding: 1.5rem;
  }

  .picture-arrow {
    position: relative;
    display: grid;
    width: 2.625rem;
    height: 2.625rem;
    place-items: center;
    border-radius: 4.25rem;
    background: #4b70fe;
  }

  .picture-arrow::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 0.0625rem;
    height: 18.25rem;
    background: linear-gradient(180deg, rgba(75, 112, 254, 0) 0%, #4b70fe 50%, rgba(75, 112, 254, 0) 100%);
    transform: translate(-50%, -50%);
  }

  .picture-insights {
    min-height: 18.1875rem;
    align-content: start;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 520px) {
  .picture-section {
    padding: 0 1.25rem 4rem;
  }

  .picture-heading h2 {
    max-width: 21.875rem;
    font-size: 1.5625rem;
    line-height: 1.2;
  }

  .picture-workspace {
    padding: 1rem;
  }

  .picture-answer-card,
  .picture-insights {
    border-radius: 1.25rem;
  }

  .picture-answer-card {
    padding: 1rem;
  }

  .picture-answer-row {
    grid-template-columns: 1fr;
  }

  .picture-assistant-avatar {
    display: none;
  }

  .picture-insights li {
    border-radius: 1.25rem;
    line-height: 1.35;
  }
}

.check-section {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  padding: 1rem 1.25rem 6.4rem;
}

.check-section * {
  box-sizing: border-box;
}

.check-inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  gap: 1rem;
}

.check-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.check-kicker {
  display: inline-flex;
  min-height: 1.875rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  background: rgba(45, 70, 224, 0.08);
  color: #3d5af1;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.2375rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.check-heading h2 {
  max-width: 38.75rem;
  margin: 0;
  color: #1e1e3a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.check-heading>p:not(.check-kicker) {
  max-width: 40.125rem;
  margin: 0;
  color: #6e6e9a;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8062rem;
}

.check-stage {
  position: relative;
  overflow: hidden;
  min-height: 26.25rem;
  border: 0.125rem solid #fff;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
}

.check-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f7f8ff 0%, rgba(247, 248, 255, 0) 22%);
  pointer-events: none;
}

.check-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
}

.check-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(100%, 21.3125rem);
  margin-left: auto;
  padding: 3.5rem 1.875rem 1.875rem;
}

.check-metric {
  overflow: hidden;
  margin: 0;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12);
}

.check-metric p {
  display: flex;
  min-height: 4.375rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #f7f8ff;
  color: #6e6e9a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4438rem;
  text-align: center;
}

.check-metric div {
  display: grid;
  min-height: 5.125rem;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.check-metric span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.7856rem;
  background: #ebebfe;
  color: #4b70fe;
  font-size: 0.9725rem;
  font-weight: 600;
  line-height: 1.6044rem;
}

.check-metric strong {
  color: #4b70fe;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.9594rem;
}

.check-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.125rem;
  align-items: center;
}

.check-callout {
  display: flex;
  align-items: flex-start;
  position: absolute;
  bottom: -1.6rem;
  left: -1.6rem;
  gap: 1rem;
  margin: 0;
  border-radius: 1rem;
  background:
    url("/assets/img/net.svg") center / 100% 100% no-repeat,
    linear-gradient(135deg, #102a8c 35%, #2d2da8 60%, #4040cc 80%, #6060e8 100%);
  box-shadow: 0 1rem 3rem rgba(45, 70, 224, 0.12), 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  padding: 1.125rem 1.5rem;
}

.check-callout img {
  width: 2.375rem;
  height: 2.375rem;
  flex: 0 0 auto;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  background: #f0f6ff;
  object-fit: cover;
}

.check-callout div {
  display: grid;
}

.check-callout strong {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8062rem;
}

.check-callout span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8062rem;
}

.check-note {
  align-self: end;
  margin: 0;
  color: #6e6e9a;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  position: absolute;
  right: 0;
  bottom: -2.2rem;
}

@media (min-width: 768px) {
  .check-section {
    padding-inline: 2.5rem;
  }

  .check-inner {
    padding-inline: 2.5rem;
  }

  .check-heading h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }

  .check-stage {
    min-height: 37.5625rem;
  }

  .check-metrics {
    padding: 3.5rem 1.9375rem 1.875rem 0;
  }
}

@media (min-width: 1024px) {
  .check-section {
    padding-inline: 5rem;
  }

  .check-inner {
    padding-inline: 5rem;
  }

  .check-footer {
    grid-template-columns: 32.5rem minmax(0, 31.9375rem);
    justify-content: space-between;
    margin-top: -2.9375rem;
    padding-inline: max(0, calc((100% - 70rem) / 2 - 1.625rem)) max(0, calc((100% - 70rem) / 2 + 1.1875rem));
  }
}

@media (max-width: 767px) {
  .check-section {
    padding: 0 1.25rem 4rem;
  }

  .check-heading h2 {
    width: min(100%, 21.25rem);
    max-width: 21.25rem;
    font-size: 1.5625rem;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .check-heading>p:not(.check-kicker) {
    width: min(100%, 21.25rem);
    max-width: 21.25rem;
  }

  .check-heading br,
  .check-heading>p br {
    display: none;
  }

  .check-stage {
    min-height: 35rem;
    width: 100%;
  }

  .check-background {
    object-position: 12% center;
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }

  .check-metrics {
    width: min(100%, 20.625rem);
    margin-inline: auto;
    padding: 11.25rem 1rem 1.125rem;
  }

  .check-metric {
    border-radius: 1.25rem;
  }

  .check-metric p {
    min-height: 3.375rem;
    padding: 0.625rem;
    font-size: 0.875rem;
  }

  .check-metric div {
    min-height: 4.25rem;
    grid-template-columns: 2.375rem minmax(0, 1fr);
    padding: 0.75rem;
  }

  .check-metric span {
    width: 2.375rem;
    height: 2.375rem;
  }

  .check-metric strong {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .check-footer {
    margin-top: 1rem;
  }

  .check-callout {
    position: static;
    width: 100%;
    padding: 1rem;
  }

  .check-note {
    position: static;
    text-align: center;
    margin: 0 auto;
  }
}

.try-section {
  position: relative;
  display: grid;
  min-height: 23.75rem;
  place-items: center;
  overflow: hidden;
  padding: 2.1rem 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 56% 52%, rgba(108, 99, 255, 0.4) 0, rgba(108, 99, 255, 0) 46%),
    linear-gradient(105deg, #1a1a8a 0%, #2d46e0 50%, #6c63ff 100%);
}

.try-section * {
  box-sizing: border-box;
}

.try-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 0.0625rem, transparent 0.0625rem 5.1875rem);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 33.173%, transparent 72.115%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 33.173%, transparent 72.115%, #000 100%);
  pointer-events: none;
}

.try-glow {
  position: absolute;
  top: -7.5rem;
  right: 12%;
  width: 32.5rem;
  height: 32.5rem;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.22);
  filter: blur(5rem);
  pointer-events: none;
}

.try-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: 80rem;
  max-width: 100%;
  grid-template-columns: 31.875rem 1fr;
  align-items: center;
  gap: 2rem;
}

.try-image {
  width: 14.75rem;
  height: 14.75rem;
  object-fit: contain;
}

.try-copy {
  display: grid;
  gap: 0.8125rem;
  width: 100%;
  min-width: 0;
}

.try-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 3.1625rem;
  letter-spacing: -0.0938rem;
}

.try-copy>p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7rem;
}

.try-action {
  display: grid;
  justify-items: start;
  margin-top: 0;
}

.try-cta {
  display: inline-flex;
  width: 16.75rem;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2.625rem;
  background: #ffb72b;
  color: #181d27;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1rem;
}

.try-action>span,
.final-cta-action>span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8062rem;
  margin-right: 0 auto;
}

@property --cta-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.primary-cta,
.try-cta {
  border: 0.0625rem solid transparent;
  background:
    linear-gradient(var(--yellow), var(--yellow)) padding-box,
    conic-gradient(from var(--cta-border-angle),
      rgba(255, 255, 255, 0.92),
      rgba(252, 245, 28, 0.35),
      #ffb72b,
      rgba(243, 248, 197, 0.92)) border-box;
  animation: cta-border-glow 4.8s linear infinite;
}

@keyframes cta-border-glow {
  to {
    --cta-border-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {

  .primary-cta,
  .try-cta {
    animation: none;
  }
}

@media (min-width: 768px) {
  .try-copy h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  .try-section {
    min-height: auto;
    padding: 3.5rem 1.25rem 4rem;
  }

  .try-content {
    width: min(100%, 24.375rem);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .try-image {
    width: 11.75rem;
    height: 11.75rem;
  }

  .try-copy {
    justify-items: center;
  }

  .try-copy h2 {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: 0;
  }

  .try-copy>p {
    max-width: 21.25rem;
  }

  .try-copy>p br {
    display: none;
  }

  .try-action {
    justify-items: center;
  }

  .try-cta {
    width: min(100%, 16.75rem);
  }
}

/* ============================================================
   11. FINAL CTA SECTION
   ============================================================ */

.final-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 22.125rem;
  padding: 4.5rem 1.25rem;
  background: linear-gradient(119deg, #1A1A8A 0%, #2D46E0 50%, #6C63FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-lines {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/bg_lines.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 90rem 46.6875rem;
  opacity: 0.85;
  pointer-events: none;
}

.final-cta-glow {
  position: absolute;
  top: -3.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 37.5rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, rgba(108, 99, 255, 0) 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 45rem;
  margin: 0 auto;
  gap: 1rem;
}

.final-cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3.85rem;
  letter-spacing: -0.125rem;
}

.final-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8062rem;
}

.final-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 0.75rem;
}

.final-cta-action .cta-stack {
  justify-content: center;
  margin-top: 0;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 3.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2.625rem;
  background: var(--yellow);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-button:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 183, 43, 0.3);
}

.final-cta-button svg {
  flex-shrink: 0;
}


/* Tablet */
@media (min-width: 768px) {
  .final-cta-section {
    padding: 4.5rem 2.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .final-cta-section {
    padding: 4.5rem 5rem;
    min-height: 22.125rem;
  }

  .final-cta-inner h2 {
    font-size: 2.25rem;
    line-height: 3.85rem;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .final-cta-section {
    padding: 3.5rem 1rem;
    min-height: auto;
  }

  .final-cta-inner h2 {
    font-size: 1.625rem;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .final-cta-inner p {
    font-size: 0.9375rem;
    line-height: 1.45;
  }
}

/* ---- shimmer pulse ---- */
.placeholder-pulse {
  position: relative;
  overflow: hidden;
}

.placeholder-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(24, 29, 39, 0.04) 50%,
      transparent 100%);
  animation: shimmer 1.6s ease-in-out infinite;
}

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

  100% {
    transform: translateX(100%);
  }
}

/* ---- reusable cookie consent ---- */
.cookie-consent {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: min(80rem, calc(100vw - 2rem));
  pointer-events: none;
  transform: translate3d(-50%, 130%, 0);
  opacity: 0;
  visibility: hidden;
}

.cookie-consent__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: min(80rem, 100%);
  padding: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #dae8ff;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2rem 4rem -0.75rem rgba(45, 54, 67, 0.14);
  pointer-events: auto;
}

.cookie-consent__card::after {
  content: '';
  position: absolute;
  left: 4.5rem;
  bottom: -12.1875rem;
  width: 12.3125rem;
  height: 12.3125rem;
  border-radius: 62.4375rem;
  background: rgba(75, 112, 254, 0.14);
  filter: blur(4.375rem);
  pointer-events: none;
}

.cookie-consent__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}

.cookie-consent__icon {
  position: relative;
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  overflow: hidden;
}

.cookie-consent__icon img {
  position: absolute;
  top: 0.25rem;
  left: 0.3125rem;
  display: block;
  width: 2.6875rem;
  height: 2.6875rem;
  object-fit: contain;
}

.cookie-consent__copy {
  display: grid;
  gap: 0.625rem;
  min-width: 0;
}

.cookie-consent__copy h2,
.cookie-consent__copy p {
  margin: 0;
}

.cookie-consent__copy h2 {
  color: #181d27;
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375rem;
}

.cookie-consent__copy p {
  max-width: 51.25rem;
  color: #6e6e9a;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.cookie-consent__copy a {
  color: #4b70fe;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.cookie-consent__accept {
  position: relative;
  z-index: 1;
  flex: 0 0 8rem;
  width: 8rem;
  min-height: 2.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 2.8125rem;
  background: var(--yellow);
  color: #181d27;
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cookie-consent__accept:hover {
  filter: brightness(1.03);
  transform: translateY(-0.0625rem);
}

.cookie-consent__accept:focus-visible,
.cookie-consent__copy a:focus-visible {
  outline: 0.125rem solid rgba(75, 112, 254, 0.55);
  outline-offset: 0.1875rem;
}

.cookie-consent.is-visible {
  animation: cookieConsentIn 0.78s cubic-bezier(0.18, 0.92, 0.22, 1.18) forwards;
}

.cookie-consent.is-hiding {
  animation: cookieConsentOut 0.46s cubic-bezier(0.55, 0.03, 0.68, 0.19) forwards;
}

.uppercase {
  text-transform: uppercase;
}

.line-through {
  text-decoration-line: line-through;
}


@keyframes cookieConsentIn {
  0% {
    transform: translate3d(-50%, 130%, 0);
    opacity: 0;
    visibility: visible;
  }

  68% {
    transform: translate3d(-50%, -0.5rem, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes cookieConsentOut {
  0% {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
  }

  100% {
    transform: translate3d(-50%, 130%, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {

  .cookie-consent,
  .cookie-consent.is-visible,
  .cookie-consent.is-hiding {
    animation: none;
    transition: none;
  }

  .cookie-consent.is-visible {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .cookie-consent {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    width: min(22.875rem, calc(100vw - 1.5rem));
    transform: translate3d(0, 130%, 0);
  }

  .cookie-consent.is-visible {
    animation-name: cookieConsentInMobile;
  }

  .cookie-consent.is-hiding {
    animation-name: cookieConsentOutMobile;
  }

  .cookie-consent__card {
    align-items: stretch;
    flex-direction: column;
    gap: 0.875rem;
  }

  .cookie-consent__copy h2 {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }

  .cookie-consent__accept {
    width: 100%;
    flex-basis: auto;
  }

  @keyframes cookieConsentInMobile {
    0% {
      transform: translate3d(0, 130%, 0);
      opacity: 0;
      visibility: visible;
    }

    68% {
      transform: translate3d(0, -0.5rem, 0);
      opacity: 1;
    }

    100% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      visibility: visible;
    }
  }

  @keyframes cookieConsentOutMobile {
    0% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      visibility: visible;
    }

    100% {
      transform: translate3d(0, 130%, 0);
      opacity: 0;
      visibility: hidden;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cookie-consent.is-visible {
      animation: none;
      transform: translate3d(0, 0, 0);
      opacity: 1;
      visibility: visible;
    }

    .cookie-consent.is-hiding {
      animation: none;
    }
  }
}

/* ---- 404 / not found ---- */
.secondary-hero h1,
.not-found h1 {
  max-width: 1180px;
  margin: 0 auto;
}

.not-found {
  display: grid;
  place-content: center;
  gap: 24px;
  min-height: 70vh;
  padding: 40px;
  text-align: center;
}
