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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #14121a;
  --bg-soft: #1b1825;
  --elev: #231f31;
  --text: #f4f1ff;
  --muted: rgba(227, 220, 255, 0.72);
  --purple: #7c3aed;
  --purple-deep: #4c1d95;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.35);
  --line: rgba(255, 255, 255, 0.08);
  --glow: 0 0 80px rgba(124, 58, 237, 0.25);
  --radius-lg: 20px;
  --radius-xl: 28px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% -10%, rgba(124, 58, 237, 0.2), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.semi {
  font-weight: 650;
}

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

a:hover {
  text-decoration: underline;
}

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

.narrow {
  width: min(760px, 100% - 40px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(14, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: var(--elev);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 16px;
  background: rgba(14, 12, 20, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav,
  .hide-mobile {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 1.06rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
  box-shadow: var(--glow), 0 14px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  text-decoration: none;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 56px 0 72px;
}

.hero-glow {
  position: absolute;
  inset: -10% auto auto 50%;
  width: min(760px, 120vw);
  height: min(760px, 120vw);
  transform: translateX(-35%);
  background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.12), transparent 55%);
  pointer-events: none;
  filter: blur(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.05rem, 4vw + 1rem, 3.05rem);
  line-height: 1.09;
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-bullets {
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero-bullets li + li {
  margin-top: 6px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 14px;
}

.fine-print {
  font-size: 0.8rem;
  color: rgba(227, 220, 255, 0.55);
}

.dash-frame {
  background: linear-gradient(155deg, rgba(35, 31, 49, 0.95), rgba(20, 18, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.08), var(--glow);
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
}

.dash-dots::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
  margin-right: 6px;
  box-shadow: 14px 0 0 rgba(212, 175, 55, 0.9), 28px 0 0 rgba(255, 255, 255, 0.35);
}

.dash-title {
  margin-left: 18px;
  color: var(--text);
}

.dash-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
}

.dash-tab {
  font-family: inherit;
  cursor: pointer;
  border: none;
  padding: 12px 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 480px) {
  .dash-tab {
    font-size: 0.82rem;
  }
}

.dash-tab:hover {
  color: var(--text);
}

.dash-tab.active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

.dash-tab.active::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
}

.dash-panel-wrap {
  padding: 18px;
  min-height: 220px;
}

.dash-panel {
  animation: panelIn 0.35s ease;
}

.dash-panel[hidden] {
  display: none;
}

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

.mini-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-kpis > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.mini-kpis .lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.mini-kpis .val {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 4px;
}

.mini-kpis .delta {
  font-size: 0.78rem;
  color: rgba(227, 220, 255, 0.55);
}

.mini-kpis .delta.pos {
  color: var(--gold);
}

.fake-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 120px;
  padding: 8px;
  border-radius: 14px;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08), transparent 65%);
}

.fake-chart span {
  display: block;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--purple), rgba(212, 175, 55, 0.35));
}

.fake-chart span:nth-child(1) {
  height: 55%;
}

.fake-chart span:nth-child(2) {
  height: 74%;
}

.fake-chart span:nth-child(3) {
  height: 44%;
}

.fake-chart span:nth-child(4) {
  height: 69%;
}

.fake-chart span:nth-child(5) {
  height: 88%;
}

.panel-h {
  font-weight: 800;
  margin: 0 0 12px;
}

.donut-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.donut {
  flex: 1 1 120px;
  height: 120px;
  border-radius: 50%;
  border: 10px solid rgba(124, 58, 237, calc(var(--p) / 100 * 0.8 + 0.2));
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 52%);
}

.donut-gold {
  border-color: rgba(212, 175, 55, calc(var(--p) / 100 + 0.15));
}

.donut-muted {
  border-color: rgba(255, 255, 255, 0.2);
}

.donut span {
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 0 8px;
}

.perf-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  height: 120px;
  margin-top: 8px;
}

.perf-bars span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--purple));
}

.panel-foot {
  font-size: 0.76rem;
  color: rgba(227, 220, 255, 0.45);
  margin-top: 10px;
}

.insight-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.insight-list li + li {
  margin-top: 10px;
}

.stats-bar {
  padding: 32px 0 16px;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.08), rgba(212, 175, 55, 0.06));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

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

.stat-value {
  display: block;
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw + 1rem, 2rem);
}

.stat-label {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
}

.stats-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.76rem;
  color: rgba(227, 220, 255, 0.45);
}

.section {
  padding: 86px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.35rem);
  letter-spacing: -0.025em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-fade.is-visible {
  opacity: 1;
  transform: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: perspective(880px) rotateX(4deg) translateY(-4px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--gold-soft);
}

.feature-card h3 {
  margin: 8px 0 8px;
  font-size: 1.06rem;
}

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

.lottie-wrap {
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(circle at 45% -10%, rgba(124, 58, 237, 0.25), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lottie {
  width: 112px;
  height: 112px;
}

.integrations .marquee {
  mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.broker {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.badge {
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--elev);
  font-weight: 700;
  text-align: center;
}

.badge small {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
}

.story-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.video-lazy iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-lazy {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'/%3E")
    center/40px no-repeat;
}

.video-lazy.loaded {
  background-image: none;
}

.story-quote {
  margin: 0;
  border-left: 4px solid var(--purple);
  padding-left: 20px;
  font-style: italic;
  color: var(--muted);
}

.story-quote footer {
  margin-top: 14px;
  font-style: normal;
  font-weight: 650;
  color: var(--text);
}

.loc {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(227, 220, 255, 0.55);
}

.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-weight: 700;
}

.billing-toggle {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.45);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.billing-toggle[aria-checked="true"] {
  background: rgba(124, 58, 237, 0.35);
  border-color: var(--gold);
}

.billing-toggle .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #d5d0e6);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.billing-toggle[aria-checked="true"] .knob {
  transform: translateX(22px);
}

.toggle-label {
  color: var(--muted);
}

.save-pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: start;
}

.price-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.price-card.featured {
  position: relative;
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4), var(--glow);
}

.price-card.featured ul {
  min-height: 140px;
}

.ribbon {
  position: absolute;
  top: 18px;
  right: -40px;
  transform: rotate(36deg);
  background: linear-gradient(90deg, var(--purple), var(--gold));
  color: #17131f;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 40px;
  pointer-events: none;
}

.price-desc {
  color: var(--muted);
}

.price-line {
  font-weight: 800;
  margin: 10px 0 4px;
  font-size: 2rem;
}

.price-line .currency {
  font-size: 1.1rem;
  vertical-align: super;
}

.price-line .period {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.75;
}

.billed {
  font-size: 0.82rem;
  color: rgba(227, 220, 255, 0.55);
  margin: 0 0 16px;
  min-height: 1.2em;
}

.price-card ul {
  padding-left: 1.05rem;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}

.compare-table thead th {
  background: rgba(124, 58, 237, 0.12);
}

.compare-table tbody th {
  font-weight: 700;
}

.compare-table .no {
  color: rgba(239, 68, 68, 0.85);
  font-weight: 700;
}

.accordion .acc-item {
  width: 100%;
  border: none;
  background: var(--elev);
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}

.accordion .acc-item::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
}

.accordion .acc-item.open::after {
  content: "\2212";
}

.acc-panel {
  padding: 0 18px 16px;
  color: var(--muted);
  border-left: 1px solid rgba(124, 58, 237, 0.35);
  margin-bottom: 8px;
  margin-left: 8px;
}

.acc-panel.hidden {
  display: none;
}

.cta-block .cta-inner {
  text-align: center;
  border-radius: calc(var(--radius-xl) + 6px);
  padding: 64px 32px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: radial-gradient(circle at 30% -20%, rgba(124, 58, 237, 0.45), transparent 62%), radial-gradient(circle at 90% 20%, rgba(212, 175, 55, 0.18), transparent 55%);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.5);
}

.cta-block h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
}

.cta-block p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: #0e0d12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

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

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-heading {
  margin-top: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

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

.footer-links li + li {
  margin-top: 8px;
}

.footer-links.horizontal {
  display: flex;
  gap: 14px;
}

.footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(227, 220, 255, 0.55);
}

.copyright {
  color: rgba(227, 220, 255, 0.45);
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 520px;
  margin-inline: auto;
  background: rgba(25, 22, 35, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
