:root {
  --brand-900: #2A1F60;
  --brand-800: #3B2D83;
  --brand-700: #4F3EA5;
  --brand-600: #6753AE;
  --brand-100: #ede9fe;
  --brand-050: #f5f3ff;
  --accent-500: #F59E0B;
  --accent-600: #D97706;
  --accent-100: #FEF3C7;
  --accent-text: #78350F;
  --ok: #059669;
  --ok-bg: #d1fae5;
  --warn: #B45309;
  --warn-bg: #FEF3C7;
  --danger: #DC2626;
  --danger-bg: #FEE2E2;
  --ink: #15131D;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #ECEBE9;
  --surface: #FFFFFF;
  --surface-2: #fafafc;
  --bg: #f7f5fb;
  --shadow-xs: 0 1px 2px rgba(59, 45, 131, 0.04);
  --shadow-sm: 0 2px 8px rgba(59, 45, 131, 0.05);
  --shadow: 0 6px 22px rgba(59, 45, 131, 0.07);
  --shadow-md: 0 12px 32px rgba(59, 45, 131, 0.09);
  --shadow-lg: 0 18px 48px rgba(59, 45, 131, 0.11);
  --shadow-amber: 0 4px 14px rgba(245, 158, 11, 0.30);
  --shadow-amber-h: 0 8px 22px rgba(245, 158, 11, 0.40);
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.690, 0.260, 0.120, 1.425);
  --dur-fast: 150ms;
  --dur: 250ms;
  --dur-slow: 400ms;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --header-h: 68px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur: 0ms;
    --dur-slow: 0ms;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 1400px 700px at 50% -10%, var(--brand-100) 0%, transparent 65%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 992px) {
  body {
    background-attachment: fixed;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }
}
body.preload *, body.preload *::before, body.preload *::after {
  transition: none !important;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
}

h2 {
  font-size: clamp(27px, 3.8vw, 40px);
}

h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: -0.015em;
}

h4 {
  font-size: 17px;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
}

a {
  color: var(--brand-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

strong, b {
  font-weight: 700;
  color: var(--ink);
}

code, kbd {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

::selection {
  background: var(--brand-100);
  color: var(--brand-900);
}

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--brand-800);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.skip-link:focus {
  left: 8px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 18px;
  }
}

.container--narrow {
  max-width: 860px;
}

section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.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;
}

.sec-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head p {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted);
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--surface);
  color: var(--brand-800);
  border: 1px solid rgba(59, 45, 131, 0.1);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
  box-shadow: var(--shadow-xs);
  margin-bottom: 18px;
}
@media (max-width: 767.98px) {
  .eyebrow {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.eyebrow svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--brand-600);
}
.eyebrow strong {
  color: var(--ink);
}
.eyebrow--amber {
  background: var(--accent-100);
  color: var(--accent-text);
  border-color: rgba(245, 158, 11, 0.22);
}
.eyebrow--amber svg {
  color: var(--accent-600);
}
.eyebrow--amber strong {
  color: var(--accent-text);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand-100);
  color: var(--brand-800);
  border-radius: 14px;
  flex-shrink: 0;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-badge svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .icon-badge svg {
    width: 21px;
    height: 21px;
  }
}
.icon-badge--amber {
  background: var(--accent-100);
  color: var(--accent-600);
}

.btn-dark, .btn-ghost, .btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-sm);
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
@media (max-width: 991.98px) {
  .btn-dark, .btn-ghost, .btn-amber {
    font-size: 14.5px;
    padding: 11px 18px;
    min-height: 44px;
  }
}
.btn-dark svg, .btn-ghost svg, .btn-amber svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-amber {
  background: var(--accent-500);
  color: var(--brand-900) !important;
  border: 0;
  box-shadow: var(--shadow-amber);
}
.btn-amber:hover {
  background: #FBB52E;
  box-shadow: var(--shadow-amber-h);
  transform: translateY(-1px);
}
.btn-amber:disabled, .btn-amber.is-loading {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  background: var(--surface);
  color: var(--brand-800) !important;
  border: 1.5px solid rgba(59, 45, 131, 0.18);
}
.btn-ghost:hover {
  border-color: var(--brand-800);
  background: var(--brand-050);
  color: var(--brand-900) !important;
}

.btn-dark {
  background: var(--brand-800);
  color: #fff !important;
  border: 0;
  box-shadow: var(--shadow);
}
.btn-dark:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
}

.btn-xl {
  padding: 16px 28px;
  min-height: 56px;
  font-size: 16.5px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-700);
}
.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--brand-600);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 251, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.brand__name {
  font-size: 18.5px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
@media (max-width: 575.98px) {
  .brand__tag {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1259.98px) {
  .nav {
    display: none;
  }
}
.nav > a {
  padding: 8px 10px;
  border-radius: var(--r-xs);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav > a:hover {
  background: var(--brand-050);
  color: var(--brand-800);
}
.nav > a.is-active {
  color: var(--brand-800);
  background: var(--brand-100);
}
.nav__group {
  position: relative;
}
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: none;
  border: 0;
  border-radius: var(--r-xs);
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__toggle svg {
  width: 15px;
  height: 15px;
  transition: transform var(--dur) var(--ease);
}
.nav__toggle:hover {
  background: var(--brand-050);
  color: var(--brand-800);
}
.nav__toggle[aria-expanded=true] {
  background: var(--brand-100);
  color: var(--brand-800);
}
.nav__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  z-index: 120;
  width: 340px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.nav__sub[hidden] {
  display: none;
}
.nav__sub::before {
  content: "";
  position: absolute;
  inset: -10px 0 100% 0;
}
.nav__sub a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 11px;
  border-radius: var(--r-sm);
  color: var(--text);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease);
}
.nav__sub a svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  color: var(--brand-600);
}
.nav__sub a strong {
  display: block;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--ink);
}
.nav__sub a em {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
  color: var(--muted);
}
.nav__sub a:hover {
  background: var(--brand-050);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-actions .btn-amber, .header-actions .btn-ghost {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 14.5px;
}
@media (max-width: 991.98px) {
  .header-actions .btn-ghost {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header-actions .btn-amber {
    display: none;
  }
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  color: var(--brand-800);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.theme-toggle:hover {
  border-color: var(--brand-600);
  background: var(--brand-050);
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
}
.theme-toggle .icon-moon {
  display: none;
}

.dark .theme-toggle .icon-sun {
  display: none;
}
.dark .theme-toggle .icon-moon {
  display: block;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  color: var(--brand-800);
  cursor: pointer;
}
@media (max-width: 1259.98px) {
  .burger {
    display: inline-flex;
  }
}
.burger svg {
  width: 20px;
  height: 20px;
}
.burger .icon-close {
  display: none;
}
.burger.is-open .icon-menu {
  display: none;
}
.burger.is-open .icon-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 24px;
  overflow-y: auto;
  display: none;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav a:not(.btn-amber) {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.mobile-nav a:not(.btn-amber):last-of-type {
  border-bottom: 0;
}
.mobile-nav__label {
  display: block;
  margin: 22px 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-nav__label:first-child {
  margin-top: 0;
}
.mobile-nav .btn-amber {
  display: flex;
  width: 100%;
  margin-top: 24px;
}

.site-footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(48px, 6vw, 72px) 0 28px;
  font-size: 15px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 1259.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
  }
}
@media (max-width: 991.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 575.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__brand .brand__name {
  color: #fff;
}
.site-footer__brand .brand__tag {
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__brand p {
  margin-top: 16px;
  max-width: 340px;
  line-height: 1.65;
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 9px;
}
.site-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 767.98px) {
  .site-footer__contact {
    grid-template-columns: 1fr;
  }
}
.site-footer__contact h4 {
  margin-bottom: 12px;
}
.site-footer__contact p {
  margin: 0;
  line-height: 1.65;
}
.site-footer__contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 14px;
}
.site-footer__contact ul li {
  margin-bottom: 0;
}
.site-footer__download {
  min-width: 280px;
  min-height: 58px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .site-footer__download {
    width: 100%;
    min-width: 0;
  }
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
@media (max-width: 991.98px) {
  .mobile-cta {
    display: flex;
  }
}
.mobile-cta > * {
  flex: 1;
  min-height: 46px;
  font-size: 14.5px;
  padding: 10px 12px;
}
.mobile-cta__secondary {
  flex: 0 0 46px;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  color: var(--brand-800);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  transform: translateY(-2px);
}
.to-top svg {
  width: 19px;
  height: 19px;
}
@media (max-width: 991.98px) {
  .to-top {
    bottom: 84px;
  }
}

.hero {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, #6753AE 0%, #3B2D83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(17.5px, 1.8vw, 20px);
  line-height: 1.62;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 575.98px) {
  .hero__cta > * {
    width: 100%;
  }
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__trust svg {
  width: 16px;
  height: 16px;
  color: var(--ok);
  flex-shrink: 0;
}

.browser {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.browser__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.browser__chrome i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.browser__chrome i:nth-child(1) {
  background: #ff5f56;
}
.browser__chrome i:nth-child(2) {
  background: #ffbd2e;
}
.browser__chrome i:nth-child(3) {
  background: #27c93f;
}
.browser__chrome span {
  flex: 1;
  margin-left: 8px;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser__body {
  display: block;
  width: 100%;
}
.browser img {
  display: block;
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats__item {
  background: var(--surface);
  padding: 26px 22px;
  text-align: center;
}
.stats__item strong {
  display: block;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--brand-800);
  line-height: 1.05;
}
.stats__item small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 991.98px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
.benefits__item {
  background: var(--surface);
  padding: 26px 24px;
}
.benefits__item h3 {
  margin: 14px 0 8px;
  font-size: 17.5px;
  font-weight: 750;
  letter-spacing: -0.015em;
}
.benefits__item p {
  margin: 0;
  font-size: 14.8px;
  line-height: 1.6;
  color: var(--muted);
}

.callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--brand-800);
  background-image: linear-gradient(125deg, var(--brand-900) 0%, var(--brand-700) 58%, var(--brand-600) 100%);
  border-radius: var(--r-xl);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.callout:hover {
  transform: translateY(-3px);
}
.callout::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, transparent 68%);
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .callout {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
}
.callout__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.callout__icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.callout h2, .callout h3 {
  color: #fff;
  margin-bottom: 7px;
  font-size: clamp(21px, 2.4vw, 27px);
}
.callout p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 620px;
  font-size: 16px;
}
.callout__go {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  background: var(--accent-500);
  color: var(--brand-900);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-amber);
  position: relative;
  z-index: 1;
}
.callout__go svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur) var(--ease);
}
.callout:hover .callout__go svg {
  transform: translateX(4px);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card h3 {
  margin: 16px 0 10px;
}
.card p:last-child {
  margin-bottom: 0;
}
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 45, 131, 0.16);
}
.card--accent {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.12);
}
.card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.card--link p {
  color: var(--muted);
}
.card--link .link-arrow {
  margin-top: auto;
  padding-top: 18px;
}

.icon-badge--tint {
  background: linear-gradient(140deg, var(--tint-a) 0%, var(--tint-b) 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--tint-glow);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
@media (max-width: 767.98px) {
  .icon-badge--tint {
    border-radius: 14px;
  }
}

.card--hover:hover .icon-badge--tint {
  transform: translateY(-2px) scale(1.04);
}

.card--wash, .card--tint {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card--wash::after, .card--tint::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(460px 240px at 88% -14%, var(--tint-wash), transparent 72%);
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease);
}
.card--wash:hover::after, .card--tint:hover::after {
  opacity: 1;
}

.card--tint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tint-a), var(--tint-b));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card--tint h3 {
  transition: color var(--dur) var(--ease);
}
.card--tint .link-arrow {
  color: var(--tint-ink);
}
.card--tint:hover {
  border-color: var(--tint-a);
  box-shadow: 0 16px 40px var(--tint-glow);
}
.card--tint:hover::before {
  transform: scaleX(1);
}
.card--tint:hover h3 {
  color: var(--tint-ink);
}
.card--tint:hover .icon-badge--tint {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 28px var(--tint-glow);
}
.card--tint:hover .card__glyph {
  transform: scale(1.1) rotate(-7deg);
  opacity: 0.16;
}

.card__glyph {
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: 138px;
  height: 138px;
  z-index: -1;
  color: var(--tint-a);
  opacity: 0.11;
  pointer-events: none;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur) var(--ease);
}
@media (max-width: 767.98px) {
  .card__glyph {
    width: 108px;
    height: 108px;
    right: -16px;
    bottom: -20px;
  }
}

.tint-violet {
  --tint-a: #7C5CE0;
  --tint-b: #4F3EA5;
  --tint-ink: #4F3EA5;
  --tint-chip: #EDE9FE;
  --tint-wash: rgba(124, 92, 224, 0.13);
  --tint-glow: rgba(79, 62, 165, 0.32);
}

.dark .tint-violet {
  --tint-ink: #C4B5FD;
  --tint-chip: rgba(124, 92, 224, 0.2);
  --tint-wash: rgba(124, 92, 224, 0.2);
  --tint-glow: rgba(124, 92, 224, 0.42);
}

.tint-teal {
  --tint-a: #14B8A6;
  --tint-b: #0F766E;
  --tint-ink: #0F766E;
  --tint-chip: #CCFBF1;
  --tint-wash: rgba(20, 184, 166, 0.13);
  --tint-glow: rgba(15, 118, 110, 0.32);
}

.dark .tint-teal {
  --tint-ink: #5EEAD4;
  --tint-chip: rgba(20, 184, 166, 0.18);
  --tint-wash: rgba(20, 184, 166, 0.2);
  --tint-glow: rgba(20, 184, 166, 0.42);
}

.tint-blue {
  --tint-a: #3B82F6;
  --tint-b: #1D4ED8;
  --tint-ink: #1D4ED8;
  --tint-chip: #DBEAFE;
  --tint-wash: rgba(59, 130, 246, 0.13);
  --tint-glow: rgba(29, 78, 216, 0.32);
}

.dark .tint-blue {
  --tint-ink: #93C5FD;
  --tint-chip: rgba(59, 130, 246, 0.2);
  --tint-wash: rgba(59, 130, 246, 0.2);
  --tint-glow: rgba(59, 130, 246, 0.42);
}

.tint-green {
  --tint-a: #10B981;
  --tint-b: #047857;
  --tint-ink: #047857;
  --tint-chip: #D1FAE5;
  --tint-wash: rgba(16, 185, 129, 0.13);
  --tint-glow: rgba(4, 120, 87, 0.32);
}

.dark .tint-green {
  --tint-ink: #6EE7B7;
  --tint-chip: rgba(16, 185, 129, 0.18);
  --tint-wash: rgba(16, 185, 129, 0.2);
  --tint-glow: rgba(16, 185, 129, 0.42);
}

.tint-pink {
  --tint-a: #EC4899;
  --tint-b: #BE185D;
  --tint-ink: #BE185D;
  --tint-chip: #FCE7F3;
  --tint-wash: rgba(236, 72, 153, 0.13);
  --tint-glow: rgba(190, 24, 93, 0.32);
}

.dark .tint-pink {
  --tint-ink: #F9A8D4;
  --tint-chip: rgba(236, 72, 153, 0.18);
  --tint-wash: rgba(236, 72, 153, 0.2);
  --tint-glow: rgba(236, 72, 153, 0.42);
}

.tint-fuchsia {
  --tint-a: #D946EF;
  --tint-b: #A21CAF;
  --tint-ink: #A21CAF;
  --tint-chip: #FAE8FF;
  --tint-wash: rgba(217, 70, 239, 0.13);
  --tint-glow: rgba(162, 28, 175, 0.32);
}

.dark .tint-fuchsia {
  --tint-ink: #F0ABFC;
  --tint-chip: rgba(217, 70, 239, 0.18);
  --tint-wash: rgba(217, 70, 239, 0.2);
  --tint-glow: rgba(217, 70, 239, 0.42);
}

.tint-amber {
  --tint-a: #F59E0B;
  --tint-b: #D97706;
  --tint-ink: #78350F;
  --tint-chip: #FEF3C7;
  --tint-wash: rgba(245, 158, 11, 0.15);
  --tint-glow: rgba(217, 119, 6, 0.3);
}

.dark .tint-amber {
  --tint-ink: #FCD34D;
  --tint-chip: rgba(245, 158, 11, 0.16);
  --tint-wash: rgba(245, 158, 11, 0.18);
  --tint-glow: rgba(245, 158, 11, 0.38);
}

.eyebrow.tint-violet, .eyebrow.tint-teal, .eyebrow.tint-blue,
.eyebrow.tint-green, .eyebrow.tint-pink, .eyebrow.tint-fuchsia {
  background: var(--tint-chip);
  border-color: transparent;
  color: var(--tint-ink);
}
.eyebrow.tint-violet svg, .eyebrow.tint-teal svg, .eyebrow.tint-blue svg,
.eyebrow.tint-green svg, .eyebrow.tint-pink svg, .eyebrow.tint-fuchsia svg {
  color: var(--tint-a);
}
.eyebrow.tint-violet strong, .eyebrow.tint-teal strong, .eyebrow.tint-blue strong,
.eyebrow.tint-green strong, .eyebrow.tint-pink strong, .eyebrow.tint-fuchsia strong {
  color: var(--tint-ink);
}

.agenda__item > svg {
  color: var(--tint-a, var(--brand-600));
}

.cycle__col .cycle__tag {
  background: var(--tint-chip, var(--brand-100));
  color: var(--tint-ink, var(--brand-800));
}
.cycle__col ol li::before {
  background: var(--tint-chip, var(--brand-050));
  color: var(--tint-ink, var(--brand-700));
}

.tabs__btn:not(.is-active) svg {
  color: var(--tint-a, currentColor);
}

.grid > *,
.split > *,
.page-head__grid > * {
  min-width: 0;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991.98px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.split--reverse .split__media {
  order: -1;
}
@media (max-width: 991.98px) {
  .split--reverse .split__media {
    order: 0;
  }
}
.split + .split {
  margin-top: clamp(48px, 6vw, 88px);
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 28px;
  padding: 12px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: inset 0 1px 2px rgba(59, 45, 131, 0.04);
}
@media (max-width: 991.98px) {
  .tabs__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: none;
    border: 0;
    box-shadow: none;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px;
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 34px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 34px), transparent 100%);
  }
  .tabs__nav::-webkit-scrollbar {
    display: none;
  }
}
.tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.tabs__btn svg {
  width: 17px;
  height: 17px;
  color: var(--brand-600);
}
.tabs__btn:hover {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.tabs__btn.is-active {
  background: var(--brand-800);
  border-color: var(--brand-800);
  color: #fff;
  box-shadow: var(--shadow);
}
.tabs__btn.is-active svg {
  color: var(--accent-500);
}
@media (max-width: 991.98px) {
  .tabs__btn {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
  }
}
.tabs__panel {
  display: none;
}
.tabs__panel.is-active {
  display: block;
  animation: tab-in var(--dur-slow) var(--ease-out);
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.mock-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.mock-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  white-space: nowrap;
}
.mock-table tr:last-child td {
  border-bottom: 0;
}
.mock-table tbody tr {
  transition: background-color var(--dur) var(--ease);
}
.mock-table tbody tr:hover {
  background: var(--brand-050);
}
.mock-table__wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}
.pill--ok {
  background: var(--ok-bg);
  color: var(--ok);
}
.pill--warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.pill--danger {
  background: var(--danger-bg);
  color: var(--danger);
}
.pill--muted {
  background: var(--brand-100);
  color: var(--brand-800);
}

.finmock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}
.finmock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.finmock__head strong {
  font-size: 17px;
  font-weight: 750;
}
.finmock__head small {
  font-size: 13px;
  color: var(--muted);
}
.finmock__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 575.98px) {
  .finmock__grid {
    grid-template-columns: 1fr;
  }
}
.finmock__tile {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}
.finmock__tile h4 {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.finmock__tile dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 10px;
  font-family: var(--font-mono);
  font-size: 13.5px;
}
.finmock__tile dt {
  color: var(--muted);
  font-family: var(--font-body);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.finmock__tile dd {
  margin: 0;
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.finmock__tile .is-plus {
  color: var(--ok);
  font-weight: 600;
}
.finmock__tile .is-minus {
  color: var(--danger);
  font-weight: 600;
}
.finmock__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.actions {
  list-style: none;
  margin: 0;
  padding: 0;
}
.actions li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.actions li:last-child {
  border-bottom: 0;
}
.actions li i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--brand-600);
}
.actions li i.is-warn {
  background: var(--accent-500);
}
.actions li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 650;
}
.actions li small {
  font-size: 13.5px;
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .pricing {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}
.pricing__plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing__plan--featured {
  border-color: var(--brand-600);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.pricing__plan--spec {
  border-color: var(--brand-700);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  background: var(--accent-500);
  color: var(--brand-900);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-amber);
}
.pricing__badge--spec {
  background: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow);
}
.pricing__name {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing__for {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 44px;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing__price em {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  width: 100%;
}
.pricing__price strong {
  font-size: clamp(30px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--brand-800);
  line-height: 1;
}
.pricing__price span {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}
.pricing .check-list {
  flex: 1;
  margin-bottom: 24px;
  font-size: 15px;
}
.pricing .check-list li {
  margin-bottom: 9px;
}
.pricing .btn-amber, .pricing .btn-ghost, .pricing .btn-dark {
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  height: auto;
  padding-block: 13px;
}
.pricing__note {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.pricing__annual {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
}

.pricing-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: -6px auto 34px;
  max-width: 820px;
}
.pricing-perks .eyebrow {
  margin-bottom: 0;
}

.pricing-foot {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.pricing-foot a {
  color: var(--brand-700);
  font-weight: 600;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] {
  border-color: rgba(59, 45, 131, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  font-size: 16.5px;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--brand-800);
}
.faq__item summary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand-600);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] summary svg {
  transform: rotate(45deg);
}
.faq__item__body {
  padding: 0 22px 20px;
  color: var(--text);
}
.faq__item__body p:last-child {
  margin-bottom: 0;
}

.contact {
  background: var(--brand-900);
  background-image: linear-gradient(150deg, var(--brand-900) 0%, #241b52 60%, var(--brand-800) 100%);
  color: rgba(255, 255, 255, 0.78);
}
.contact h2 {
  color: #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact__grid .contact__intro {
  grid-column: 1;
  grid-row: 1;
}
.contact__grid .contact__aside {
  grid-column: 1;
  grid-row: 2;
}
.contact__grid .form {
  grid-column: 2;
  grid-row: 1/span 2;
}
@media (max-width: 991.98px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .contact__grid .contact__intro {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }
  .contact__grid .form {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }
  .contact__grid .contact__aside {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }
}
.contact__lead {
  font-size: 17.5px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.contact__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.contact__points li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 15px;
}
.contact__points li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact__points li strong {
  display: block;
  color: #fff;
  font-weight: 650;
}
.contact__points li small {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
}
.contact__direct {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}
.contact__direct a {
  color: var(--accent-500);
  font-weight: 650;
  text-decoration: none;
}
.contact__direct a:hover {
  text-decoration: underline;
}
.contact .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.contact .eyebrow svg {
  color: var(--accent-500);
}
.contact .eyebrow strong {
  color: #fff;
}

.form {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575.98px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__group {
  margin-bottom: 16px;
}
.form label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}
.form label sup {
  color: var(--danger);
  font-size: 13px;
}
.form input[type=text], .form input[type=email], .form input[type=tel], .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form input[type=text]:focus, .form input[type=email]:focus, .form input[type=tel]:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(103, 83, 174, 0.14);
}
.form input[type=text]:disabled, .form input[type=text][readonly], .form input[type=email]:disabled, .form input[type=email][readonly], .form input[type=tel]:disabled, .form input[type=tel][readonly], .form select:disabled, .form select[readonly], .form textarea:disabled, .form textarea[readonly] {
  background: var(--surface-2);
  color: var(--muted);
}
.form textarea {
  min-height: 130px;
  resize: vertical;
}
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form__consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 4px 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.form__consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--brand-600);
  flex-shrink: 0;
}
.form__consent label {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
}
.form__consent a {
  color: var(--brand-600);
}
.form .cf-turnstile {
  margin-bottom: 18px;
  min-height: 65px;
}
.form__submit {
  width: 100%;
}
.form__msg {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 550;
}
.form__msg[hidden] {
  display: none;
}
.form__msg.is-ok {
  background: var(--ok-bg);
  color: #065f46;
}
.form__msg.is-error {
  background: var(--danger-bg);
  color: #991b1b;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: var(--shadow-amber);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
}
.is-highlight {
  animation: cta-pulse 1.2s var(--ease) 2;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal__lead {
  padding: 20px 24px;
  margin-bottom: 40px;
  background: var(--brand-050);
  border: 1px solid rgba(59, 45, 131, 0.14);
  border-left: 3px solid var(--brand-600);
  border-radius: var(--r-md);
  font-size: 16px;
  line-height: 1.65;
}
.legal__lead p:last-child {
  margin-bottom: 0;
}
.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.legal__meta strong {
  color: var(--ink);
  font-weight: 650;
}
.legal__art {
  margin-bottom: 36px;
}
.legal__art h2 {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: clamp(19px, 2.2vw, 22px);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal__art h2 em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-600);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 26px;
}
.legal__p {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 10px;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.7;
}
@media (max-width: 575.98px) {
  .legal__p {
    grid-template-columns: 38px 1fr;
  }
}
.legal__p > b {
  color: var(--brand-700);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.legal__p > div > :last-child {
  margin-bottom: 0;
}
.legal ol.legal__abc {
  list-style: lower-alpha;
  margin: 12px 0 0;
  padding-left: 22px;
}
.legal ol.legal__abc li {
  margin-bottom: 7px;
  line-height: 1.65;
}
.legal ol.legal__abc::marker {
  color: var(--muted);
}
.legal__mit {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-x: auto;
  color: var(--text);
}
.legal__contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  font-size: 15px;
}
.legal__contact p {
  margin-bottom: 6px;
}
.legal__contact p:last-child {
  margin-bottom: 0;
}
.legal__foot {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.notfound {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.notfound__code {
  font-size: clamp(72px, 14vw, 132px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-100);
  user-select: none;
}
.notfound h1 {
  margin-top: -8px;
  font-size: clamp(26px, 4vw, 38px);
}
.notfound .lead {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--muted);
}
.notfound__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}
@media (max-width: 767.98px) {
  .notfound__links {
    grid-template-columns: 1fr;
  }
}
.notfound__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.notfound__link svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--brand-600);
}
.notfound__link strong {
  display: block;
  font-weight: 650;
}
.notfound__link em {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
}
.notfound__link:hover {
  border-color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}
.notfound__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--brand-600);
}
.breadcrumb span[aria-current] {
  color: var(--text);
  font-weight: 600;
}
.breadcrumb .sep {
  opacity: 0.5;
}

.page-head {
  padding: clamp(28px, 4vw, 44px) 0 clamp(32px, 4vw, 48px);
}
.page-head__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .page-head__grid {
    grid-template-columns: 1fr;
  }
}
.page-head h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.page-head .lead {
  font-size: clamp(16.5px, 1.6vw, 18.5px);
  line-height: 1.65;
  color: var(--muted);
}
.page-head__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cycle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991.98px) {
  .cycle {
    grid-template-columns: 1fr;
  }
}
.cycle__col {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.cycle__tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--brand-100);
  color: var(--brand-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cycle h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.cycle > .cycle__col > p {
  color: var(--muted);
}
.cycle ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.cycle ol li {
  position: relative;
  counter-increment: step;
  padding: 9px 0 9px 34px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.55;
}
.cycle ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-050);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
}

.agenda {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767.98px) {
  .agenda {
    grid-template-columns: 1fr;
  }
}
.agenda__item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.agenda__item > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--brand-600);
}
.agenda__item h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.agenda__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.note strong {
  color: var(--text);
}

.endpoints {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.endpoints li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
}
.endpoints li:first-child {
  border-top: 0;
  padding-top: 0;
}
.endpoints code {
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--r-xs);
  background: var(--brand-050);
  color: var(--brand-700);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  word-break: break-all;
}
.endpoints span {
  display: block;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--muted);
}

:root {
  --c1: #6753AE;
  --c2: #0D9488;
  --c3: #2563EB;
  --c4: #B45309;
  --grid: rgba(21, 19, 29, 0.08);
}

.dark {
  --c1: #8B78D8;
  --c2: #12A093;
  --c3: #4585DE;
  --c4: #BC8118;
  --grid: rgba(255, 255, 255, 0.10);
}

.appwin {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.appwin__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.appwin__chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.appwin__chrome i:nth-child(1) {
  background: #ff5f56;
}
.appwin__chrome i:nth-child(2) {
  background: #ffbd2e;
}
.appwin__chrome i:nth-child(3) {
  background: #27c93f;
}
.appwin__chrome span {
  flex: 1;
  margin-left: 6px;
  padding: 3px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.appwin__body {
  padding: 18px;
}
.appwin__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.appwin__title strong {
  font-size: 16.5px;
  font-weight: 750;
  letter-spacing: -0.015em;
}
.appwin__title small {
  font-size: 12.5px;
  color: var(--muted);
}
.appwin__tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.appwin__tabs::-webkit-scrollbar {
  display: none;
}
.appwin__tabs span {
  padding-bottom: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.appwin__tabs span.is-on {
  color: var(--brand-700);
  border-bottom-color: var(--brand-600);
}

.mtbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.mtbl th {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.mtbl td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.mtbl tr:last-child td {
  border-bottom: 0;
}
.mtbl .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.mtbl .dim {
  color: var(--muted);
}
.mtbl .strong {
  font-weight: 650;
  color: var(--ink);
}
.mtbl .link {
  color: var(--brand-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.mtbl__wrap {
  overflow-x: auto;
}

.firm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.firm__ava {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.02em;
  background: var(--brand-100);
  color: var(--brand-800);
}
.firm strong {
  display: block;
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
}
.firm small {
  font-size: 11.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.mtbl tr.is-danger td:first-child {
  box-shadow: inset 3px 0 0 var(--danger);
}

.mtbl tr.is-warn td:first-child {
  box-shadow: inset 3px 0 0 var(--accent-500);
}

.mtbl tr.is-ok td:first-child {
  box-shadow: inset 3px 0 0 var(--ok);
}

.mtbl tr.is-idle td:first-child {
  box-shadow: inset 3px 0 0 var(--border);
}

.mtbl td:first-child {
  padding-left: 14px;
}

.mtbl mark {
  background: var(--brand-100);
  color: var(--brand-900);
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 600;
}

.cnt {
  display: inline-block;
  min-width: 26px;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
  background: var(--brand-100);
  color: var(--brand-800);
}
.cnt--zero {
  background: transparent;
  color: var(--muted);
  font-weight: 500;
}
.cnt--hot {
  background: var(--danger-bg);
  color: var(--danger);
}

.mock-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--r-xs);
  background: var(--brand-600);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}
.mock-btn svg {
  width: 12px;
  height: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--brand-100);
  color: var(--brand-800);
}
.tag--ok {
  background: var(--ok-bg);
  color: var(--ok);
}
.tag--warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.tag--danger {
  background: var(--danger-bg);
  color: var(--danger);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.kpis--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 575.98px) {
  .kpis--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kpis__item--pred {
  background: var(--accent-100);
  border-color: rgba(245, 158, 11, 0.32);
}
.kpis__item--pred h5 {
  color: var(--accent-text);
}
.kpis__item--pred b {
  color: var(--accent-text);
}
.kpis__item--pred small {
  color: var(--accent-text);
  opacity: 0.8;
}
.kpis__item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  min-width: 0;
}
.kpis__item h5 {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kpis__item b {
  display: block;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kpis__item small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
@media (max-width: 767.98px) {
  .chart__row {
    grid-template-columns: 1fr;
  }
}
.chart__row--stack {
  grid-template-columns: 1fr;
}
.chart__box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
}
.chart__head {
  margin: 0 0 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.donut {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 575.98px) {
  .donut {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.donut svg {
  width: 150px;
  flex-shrink: 0;
}
.donut .legend {
  margin-top: 0;
  flex-direction: column;
  gap: 9px;
  font-size: 12.5px;
}

.grid-line {
  stroke: var(--grid);
  stroke-width: 1;
}

.axis-label {
  fill: var(--muted);
  font-size: 9px;
  font-family: var(--font-body);
}

.bar {
  fill: var(--c1);
}

.line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area {
  opacity: 0.12;
}

.dot {
  r: 4;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
}
.legend b {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.wizard {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wizard__step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 5px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.wizard__step i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  background: var(--border);
  color: var(--muted);
  flex-shrink: 0;
}
.wizard__step.is-done {
  color: var(--ok);
  border-color: rgba(5, 150, 105, 0.3);
}
.wizard__step.is-done i {
  background: var(--ok-bg);
  color: var(--ok);
}
.wizard__step.is-now {
  color: #fff;
  background: var(--brand-600);
  border-color: var(--brand-600);
}
.wizard__step.is-now i {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.dark .wizard__step.is-now {
  color: #15131D;
}
.dark .wizard__step.is-now i {
  background: rgba(0, 0, 0, 0.22);
  color: #15131D;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child {
  border-bottom: 0;
}
.steps li {
  font-size: 14px;
}
.steps__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--ok-bg);
  color: var(--ok);
}
.steps__mark--todo {
  background: var(--brand-100);
  color: var(--brand-800);
}
.steps__mark--warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.steps__mark svg {
  width: 12px;
  height: 12px;
}
.steps strong {
  display: block;
  font-weight: 650;
  color: var(--ink);
}
.steps small {
  font-size: 12.5px;
  color: var(--muted);
}

.dark {
  --brand-900: #c4b5fd;
  --brand-800: #a894e8;
  --brand-700: #927fd6;
  --brand-600: #8b78d8;
  --brand-100: rgba(124, 108, 210, 0.20);
  --brand-050: rgba(124, 108, 210, 0.10);
  --accent-500: #f59e0b;
  --accent-600: #fbbf24;
  --accent-100: rgba(245, 158, 11, 0.16);
  --accent-text: #fcd34d;
  --ok: #6ee7b7;
  --ok-bg: rgba(16, 185, 129, 0.16);
  --warn: #fcd34d;
  --warn-bg: rgba(245, 158, 11, 0.16);
  --danger: #fca5a5;
  --danger-bg: rgba(220, 38, 38, 0.16);
  --ink: #f3f0fa;
  --text: #d9d4e6;
  --muted: #968fa8;
  --border: #2c2640;
  --surface: #1c1827;
  --surface-2: #232032;
  --bg: #131019;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.30);
  --shadow: 0 6px 22px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.48);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}
.dark body {
  background-image: radial-gradient(ellipse 1400px 700px at 50% -10%, #241d3a 0%, transparent 65%);
}
.dark .site-header {
  background: rgba(19, 16, 25, 0.82);
}
.dark .site-footer {
  background: #0f0d16;
}
.dark .contact {
  background: #17131f;
  background-image: linear-gradient(150deg, #17131f 0%, #1c1729 60%, #221c33 100%);
}
.dark .callout {
  background-image: linear-gradient(125deg, #241d3a 0%, #322a52 58%, #3d3363 100%);
}
.dark .callout__go {
  color: #2A1F60;
}
.dark .btn-amber {
  color: #2A1F60 !important;
}
.dark .btn-ghost {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ink) !important;
}
.dark .btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--brand-600);
}
.dark .btn-dark {
  background: var(--brand-600);
  color: #15131D !important;
}
.dark .tabs__btn.is-active {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #15131D;
}
.dark .tabs__btn.is-active svg {
  color: #2A1F60;
}
.dark .pricing__badge, .dark .is-highlight {
  color: #2A1F60;
}
.dark .pricing__plan--featured {
  border-color: var(--brand-600);
}
.dark .mobile-cta {
  background: rgba(19, 16, 25, 0.94);
}
.dark .eyebrow:not([class*=tint-]) {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}
.dark .eyebrow--amber {
  background: var(--accent-100);
  color: var(--accent-text);
}
.dark .browser img {
  filter: brightness(0.92) contrast(1.02);
}
.dark .hero h1 .grad {
  background-image: linear-gradient(120deg, #a78bfa 0%, #d8caff 100%);
}