:root {
  --ink: #170B2E;
  --muted: #5B5570;
  --brand-pink: #FF0099;
  --brand-violet: #9700B2;
  --brand-indigo: #5A57D2;
  --brand-blue: #0D08BC;
  --brand-gradient-text: linear-gradient(135deg, #FF0099 0%, #9700B2 50%, #5A57D2 100%);
  --brand-gradient-text-on-dark: linear-gradient(135deg, #FF66C7 0%, #C77DFF 50%, #9C99F0 100%);
  --brand-gradient-surface: linear-gradient(135deg, #9700B2 0%, #5A57D2 100%);
  --line: #e4e7ec;
  --surface: #F4F6FC;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
  --max-width: 1180px;
}

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

html {
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 760;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
}

.container,
.nav-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(22px);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--brand-blue);
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark img {
  width: auto;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  color: #344054;
  font-size: 0.91rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-blue);
}

.site-nav .mobile-menu-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--brand-blue);
  border-radius: 10px;
  color: var(--white);
  background: var(--brand-gradient-surface);
  box-shadow: 0 10px 22px rgba(151, 0, 178, 0.22);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-gradient-surface);
  box-shadow: 0 13px 28px rgba(151, 0, 178, 0.28);
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
.table-wrap:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button-secondary {
  border-color: #d0d5dd;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  padding-top: 105px;
  padding-bottom: 112px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: hero-enter 700ms ease-out both;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  top: 8%;
  right: -13%;
  width: 46vw;
  height: 46vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(255, 0, 153, 0.12) 0%, rgba(255, 0, 153, 0) 69%);
  animation: hero-glow-one-drift 10s ease-in-out infinite alternate;
}

.hero-glow-two {
  bottom: -28%;
  left: -18%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(151, 0, 178, 0.07) 0%, rgba(151, 0, 178, 0) 70%);
  animation: hero-glow-two-drift 13s ease-in-out infinite alternate;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glow-one-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-18px, 14px) scale(1.04); }
}

@keyframes hero-glow-two-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -12px) scale(1.035); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--brand-gradient-surface);
  content: "";
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 124px 0;
}

.section-tinted {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 58px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  display: flex;
  min-height: 290px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pipeline {
  display: grid;
  grid-template-columns: minmax(170px, 1.35fr) 18px repeat(4, minmax(115px, 1fr) 18px) minmax(115px, 1fr);
  align-items: stretch;
  margin: 10px 0 50px;
}

.pipeline-item {
  display: flex;
  min-height: 146px;
  padding: 20px 16px;
  border: 1px solid #dfe4f0;
  border-radius: 13px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.pipeline-source {
  color: var(--white);
  background: var(--ink);
}

.pipeline-label {
  font-size: 0.9rem;
  font-weight: 690;
  line-height: 1.35;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: var(--brand-gradient-surface);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  animation: pipeline-arrow-pulse 1.6s ease-in-out infinite;
}

@keyframes pipeline-arrow-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.body-lead {
  max-width: 940px;
  margin-bottom: 38px;
  color: #344054;
  font-size: clamp(1.06rem, 1.5vw, 1.19rem);
  line-height: 1.78;
}

.callout {
  position: relative;
  max-width: 990px;
  padding: 28px 32px;
  border: 1px solid rgba(151, 0, 178, 0.16);
  border-radius: 14px;
  color: var(--brand-blue);
  background: var(--surface);
}

.callout p {
  margin-bottom: 0;
  font-size: 1.04rem;
  font-weight: 740;
}

.small-print {
  max-width: 940px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.table-wrap {
  margin-bottom: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(16, 24, 40, 0.05);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 19px 23px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--muted);
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.comparison-table thead th:last-child {
  color: var(--white);
  background: var(--brand-gradient-surface);
}

.comparison-table tbody th {
  width: 21%;
  color: var(--ink);
  font-size: 0.91rem;
}

.comparison-table tbody td {
  width: 39.5%;
  color: var(--muted);
}

.comparison-table tbody td:last-child {
  color: var(--brand-blue);
  background: var(--surface);
  font-weight: 680;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.proof-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading-light h2 {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  min-height: 230px;
  padding: 39px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 28px;
  color: transparent;
  background: var(--brand-gradient-text-on-dark);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.stat p {
  margin-bottom: 0;
  color: #d0d5dd;
  font-size: 0.91rem;
  line-height: 1.55;
}

.small-print-light {
  margin-top: 24px;
  color: #98a2b3;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 100px;
}

.security-heading {
  margin-bottom: 0;
}

.security-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  position: relative;
  padding: 23px 10px 23px 45px;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: 1.02rem;
}

.security-list li:first-child {
  padding-top: 5px;
}

.security-list li::before {
  position: absolute;
  top: 25px;
  left: 4px;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-blue);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.security-list li:first-child::before {
  top: 7px;
}

.pricing-container {
  max-width: 980px;
}

.centered-heading {
  display: flex;
  margin-bottom: 23px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro {
  max-width: 770px;
  margin: 0 auto 47px;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.pricing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-list {
  padding: 10px 42px;
}

.price-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-item .price-title {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.pricing-action {
  padding: 34px 42px 37px;
  border-top: 1px solid #c7d2fe;
  background: var(--surface);
  text-align: center;
}

.poc-banner {
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-size: 1.15rem;
  font-weight: 780;
}

.pricing-action .small-print {
  margin: 14px auto 0;
}

.contact-section {
  padding: 108px 0;
  background: var(--white);
}

.contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.contact-inner h2 {
  margin: 0 0 20px;
}

.contact-inner p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-button {
  min-height: 64px;
  padding-inline: 31px;
  white-space: nowrap;
  font-size: 1.08rem;
}

.site-footer {
  color: #98a2b3;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 19px;
  }

  .pipeline {
    grid-template-columns: repeat(6, minmax(135px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .pipeline-arrow {
    display: none;
  }

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

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .stat:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .stat:nth-child(4) {
    border-bottom: 0;
  }

  .security-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 74px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    padding: 34px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
  }

  .site-nav .mobile-menu-cta {
    display: inline-flex;
    margin-top: 28px;
    padding: 13px 24px;
    border: 1px solid var(--brand-blue);
    color: var(--white);
    font-size: 0.98rem;
  }

  .site-nav .mobile-menu-cta:hover,
  .site-nav .mobile-menu-cta:focus-visible {
    border-color: var(--brand-blue);
    color: var(--white);
  }

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

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .card {
    min-height: 0;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
  }

  .pipeline-item {
    min-height: 98px;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 86px 0;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .section-heading,
  .security-heading {
    margin-bottom: 42px;
  }

  .centered-heading {
    display: flex;
    margin-bottom: 23px;
  }

  .button-row {
    width: 100%;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .callout {
    padding: 23px 21px;
  }

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

  .stat,
  .stat:first-child,
  .stat:nth-child(2),
  .stat:nth-child(3),
  .stat:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat strong {
    margin-bottom: 15px;
  }

  .price-list,
  .pricing-action {
    padding-right: 22px;
    padding-left: 22px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-button {
    width: 100%;
    padding-inline: 16px;
    white-space: normal;
  }

  .footer-inner {
    padding: 27px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
}
