:root {
  --bg: #07111f;
  --ink: #102033;
  --muted: #65748a;
  --line: #dfe6ee;
  --surface: #fff;
  --surface-alt: #f5f7fb;
  --purple: #6e5cf6;
  --purple-dark: #4b39dc;
  --purple-soft: #eeeaff;
  --green: #33d69f;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(18, 35, 58, .12);
  --container: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden
}

body.nav-open {
  overflow: hidden
}

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

button {
  font: inherit
}

svg {
  display: block;
  max-width: 100%
}

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

.section {
  position: relative;
  padding: 100px 0
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E")
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.site-header.scrolled {
  position: fixed;
  background: rgba(7, 17, 31, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .16)
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font: 800 20px/1 "Manrope", sans-serif;
  letter-spacing: .08em
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #9c8cff, #5a46e8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(110, 92, 246, .3)
}

.brand-mark svg {
  width: 27px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px
}

.main-nav>a {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  font-size: 14px
}

.main-nav>a:hover {
  color: #fff
}

.main-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 9px
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px
}

.hero {
  min-height: 820px;
  color: #fff;
  padding-top: 175px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 16%, rgba(110, 92, 246, .24), transparent 27%), radial-gradient(circle at 15% 64%, rgba(40, 210, 234, .09), transparent 30%), linear-gradient(145deg, #07111f 0%, #0a1423 53%, #0c1b30 100%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%)
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px)
}

.hero-glow-a {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 160px;
  background: rgba(112, 82, 255, .16)
}

.hero-glow-b {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 40px;
  background: rgba(83, 224, 255, .08)
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em
}

.eyebrow {
  color: #beb6ff;
  margin-bottom: 22px
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ff0c6;
  box-shadow: 0 0 0 7px rgba(111, 240, 198, .1)
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 690px;
  font: 800 clamp(48px, 5.8vw, 76px)/1.03 "Manrope", sans-serif;
  letter-spacing: -.055em
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: #aeb9c8;
  font-size: 18px;
  line-height: 1.75
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn svg {
  width: 18px
}

.btn-primary {
  background: linear-gradient(135deg, #806fff, #5f4be9);
  color: #fff;
  box-shadow: 0 14px 30px rgba(93, 73, 231, .28)
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
  color: #fff
}

.btn-outline {
  width: 100%;
  border: 1px solid #d8ddea;
  background: #fff;
  color: #4e3bd0
}

.btn-white {
  background: #fff;
  color: #4d3bd0
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff
}

.btn.full {
  width: 100%
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #8997aa;
  font-size: 12px
}

.hero-visual {
  position: relative;
  min-width: 700px
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: #f6f7fb;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .42)
}

.browser-top {
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0f1b2a;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.browser-dots {
  display: flex;
  gap: 6px
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #516176
}

.browser-address {
  height: 23px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: #1a293a;
  color: #718197;
  font-size: 9px
}

.browser-avatar {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #6f5df4;
  color: #fff;
  font-size: 7px;
  font-weight: 700
}

.app-layout {
  min-height: 455px;
  display: grid;
  grid-template-columns: 112px 1fr;
  color: #17253a
}

.app-sidebar {
  background: #fff;
  border-right: 1px solid #e5e9f0;
  padding: 18px 13px
}

.side-logo {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin: 0 0 23px 7px;
  border-radius: 8px;
  background: #6e5cf6;
  color: #fff;
  font-weight: 800
}

.side-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 7px;
  color: #8591a4;
  font-size: 8px;
  font-weight: 600
}

.side-link i {
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px
}

.side-link.active {
  background: #eeeaff;
  color: #6551ee
}

.app-main {
  padding: 23px
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.app-head div {
  display: flex;
  flex-direction: column
}

.app-head small {
  color: #8793a5;
  font-size: 8px
}

.app-head strong {
  font-size: 16px
}

.app-head button {
  border: 0;
  border-radius: 7px;
  background: #6e5cf6;
  color: #fff;
  padding: 8px 11px;
  font-size: 8px;
  font-weight: 700
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0 13px
}

.metric-grid article {
  padding: 13px;
  border: 1px solid #e2e7ef;
  border-radius: 10px;
  background: #fff
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: #8b96a7;
  font-size: 7px
}

.metric-grid strong {
  display: block;
  margin: 5px 0 1px;
  font-size: 19px
}

.app-panels {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 11px
}

.chart-card,
.channel-card {
  min-height: 220px;
  padding: 14px;
  border: 1px solid #e2e7ef;
  border-radius: 11px;
  background: #fff
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px
}

.panel-title span {
  color: #8894a5
}

.chart {
  width: 100%;
  height: 155px;
  margin-top: 18px
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f4
}

.channel-row:last-child {
  border: 0
}

.flag {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: linear-gradient(135deg, #7467ff, #bcaeff)
}

.flag-b {
  background: linear-gradient(135deg, #48c6ef, #6f86d6)
}

.flag-c {
  background: linear-gradient(135deg, #43e97b, #38f9d7)
}

.channel-row div {
  flex: 1;
  display: flex;
  flex-direction: column
}

.channel-row b {
  font-size: 8px
}

.channel-row small {
  font-size: 6px;
  color: #96a0af
}

.channel-row>span {
  color: #26b985;
  font-size: 6px
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 195px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(17, 31, 48, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24)
}

.float-card div {
  display: flex;
  flex-direction: column
}

.float-card strong {
  font-size: 10px
}

.float-card small {
  color: #8c9caf;
  font-size: 8px
}

.float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #5f4ce5;
  color: #fff
}

.float-icon.green {
  background: #1cad7a
}

.float-sync {
  right: -15px;
  top: 72px
}

.float-publish {
  left: -35px;
  bottom: 48px
}

.logo-strip {
  border-bottom: 1px solid #e9edf3
}

.logo-strip-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.logo-strip-inner>span {
  color: #8290a3;
  font-size: 12px;
  font-weight: 600
}

.ecosystem-items {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344359
}

.ecosystem-items strong {
  font-family: "Manrope";
  font-size: 13px
}

.ecosystem-items i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4ccd7
}

.section-heading {
  margin-bottom: 50px
}

.section-heading.center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: 80px;
  align-items: end
}

.section-kicker {
  margin-bottom: 14px;
  color: #6652ed
}

.section-kicker.light {
  color: #b8aeff
}

.section-heading h2,
.cta-card h2 {
  margin: 0;
  font: 800 clamp(34px, 4.2vw, 54px)/1.1 "Manrope", sans-serif;
  letter-spacing: -.045em
}

.section-heading p,
.cta-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 20px;
  margin-bottom: 22px
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #e1e6ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(23, 39, 62, .06)
}

.highlight-large {
  grid-row: span 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, #faf9ff, #f1eeff);
  border-color: #ded8ff
}

.highlight-card h3 {
  margin: 18px 0 10px;
  font: 700 21px/1.3 "Manrope"
}

.highlight-card p {
  margin: 0;
  color: #6c798b;
  font-size: 14px
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 20px;
  font-weight: 700
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.inline-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: #6653e7;
  font-size: 9px;
  font-weight: 700
}

.mini-channels {
  padding: 17px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(78, 60, 181, .13)
}

.mini-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid #edf0f4
}

.mini-channel:last-child {
  border-bottom: 0
}

.mini-channel>i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7160f3, #a89eff)
}

.mini-channel div {
  flex: 1;
  display: flex;
  flex-direction: column
}

.mini-channel b {
  font-size: 10px
}

.mini-channel small {
  color: #98a2b0;
  font-size: 7px
}

.mini-channel span {
  padding: 4px 7px;
  border-radius: 99px;
  background: #e8fbf4;
  color: #21a676;
  font-size: 7px;
  font-weight: 700
}

.stat-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 24px
}

.stat-pills span {
  padding: 11px 6px;
  border-radius: 11px;
  background: #f5f6fa;
  color: #8994a4;
  text-align: center;
  font-size: 8px
}

.stat-pills b {
  display: block;
  color: #24334a;
  font-size: 17px
}

.editor-mini {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 13px 15px;
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  color: #657286;
  font-size: 10px;
  background: #fbfcfd
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.feature-matrix article {
  display: flex;
  gap: 14px;
  padding: 22px;
  border: 1px solid #e1e6ed;
  border-radius: 18px;
  background: #fff;
  transition: .25s
}

.feature-matrix article:hover {
  transform: translateY(-4px);
  border-color: #d7d0ff;
  box-shadow: 0 14px 35px rgba(23, 39, 62, .07)
}

.matrix-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eeeaff;
  color: #6652ed;
  font-size: 14px;
  font-weight: 800
}

.feature-matrix h3 {
  margin: 1px 0 6px;
  font: 700 15px "Manrope"
}

.feature-matrix p {
  margin: 0;
  color: #748195;
  font-size: 12px
}

.workflow-section {
  background: #0a1524;
  color: #fff;
  overflow: hidden
}

.workflow-section:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 87, 244, .14), transparent 68%)
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.workflow-grid:before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 54px;
  border-top: 1px dashed rgba(255, 255, 255, .18)
}

.workflow-step {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px)
}

.workflow-step>span {
  position: absolute;
  right: 20px;
  top: 17px;
  color: #566478;
  font-size: 11px;
  font-weight: 800
}

.workflow-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: #14243a;
  color: #a99dff;
  font-size: 22px
}

.workflow-step h3 {
  margin: 23px 0 8px;
  font: 700 19px "Manrope"
}

.workflow-step p {
  margin: 0;
  color: #93a1b2;
  font-size: 13px
}

.integration-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045)
}

.integration-band h3 {
  margin: 0 0 8px;
  font: 700 24px/1.25 "Manrope"
}

.integration-band p {
  margin: 0;
  color: #93a1b2
}

.integration-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px
}

.integration-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #b9c3d0;
  font-size: 10px;
  font-weight: 700
}

.pricing-section {
  background: #f6f8fb
}

.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: max-content;
  margin: -18px auto 38px;
  padding: 6px;
  border-radius: 999px;
  background: #e9edf3
}

.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: #68778a;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer
}

.billing-toggle button.active {
  background: #fff;
  color: #5541d6;
  box-shadow: 0 7px 18px rgba(20, 38, 60, .08)
}

.billing-toggle span {
  margin-left: 5px;
  color: #1aaa77;
  font-size: 9px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch
}

.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid #dde3eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(23, 39, 62, .06)
}

.price-card.featured {
  border-color: #765ff4;
  box-shadow: 0 24px 70px rgba(92, 73, 221, .16);
  transform: translateY(-8px)
}

.popular {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  padding: 7px 11px;
  border-radius: 999px;
  background: #6e5cf6;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.plan-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eeeaff;
  color: #5d49dd;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em
}

.price-head h3 {
  margin: 16px 0 12px;
  font: 700 20px/1.3 "Manrope"
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin: 10px 0 5px
}

.price small {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700
}

.price strong {
  font: 800 48px/1 "Manrope";
  letter-spacing: -.05em
}

.price span {
  padding-bottom: 6px;
  color: #7d8999;
  font-size: 12px
}

.price.custom strong {
  font-size: 37px
}

.price-head p {
  margin: 0;
  color: #7b8797;
  font-size: 12px
}

.price-card ul {
  min-height: 235px;
  padding: 0;
  margin: 26px 0 28px;
  list-style: none
}

.price-card li {
  position: relative;
  padding: 9px 0 9px 25px;
  border-top: 1px solid #edf0f4;
  color: #586679;
  font-size: 13px
}

.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #20b67f;
  font-weight: 800
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #e0e5ec;
  border-radius: 16px;
  background: #fff;
  color: #6d7a8d;
  font-size: 13px
}

.pricing-note strong {
  color: #2c3a50
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: start
}

.faq-intro h2 {
  margin: 0;
  font: 800 clamp(34px, 4vw, 50px)/1.1 "Manrope";
  letter-spacing: -.045em
}

.faq-intro p {
  color: #6d7a8d
}

.accordion {
  border-top: 1px solid #dce2e9
}

.faq-item {
  border-bottom: 1px solid #dce2e9
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: none;
  color: #24334a;
  text-align: left;
  font-weight: 700;
  cursor: pointer
}

.faq-item button i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2f0ff;
  color: #604be2;
  font-style: normal
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-answer p {
  margin: 0;
  padding: 0 50px 23px 0;
  color: #718093;
  font-size: 14px
}

.faq-item.active .faq-answer {
  max-height: 160px
}

.cta-section {
  padding-top: 70px
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 54px 60px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #6f5bf4, #4d38cf);
  box-shadow: 0 30px 80px rgba(79, 57, 205, .28)
}

.cta-card p {
  max-width: 720px;
  color: #d8d2ff
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.site-footer {
  color: #93a0b0;
  background: #07111f
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
  padding: 65px 0 45px
}

.footer-brand p {
  max-width: 270px;
  margin-top: 20px;
  font-size: 13px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Manrope"
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px
}

@media(max-width:1100px) {
  .hero {
    min-height: auto;
    padding-bottom: 100px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin: auto
  }

  .hero-actions,
  .trust-row {
    justify-content: center
  }

  .hero-visual {
    min-width: 0;
    max-width: 820px;
    margin: auto
  }

  .section-heading.split {
    gap: 40px
  }

  .feature-highlight-grid {
    grid-template-columns: 1fr 1fr
  }

  .highlight-large {
    grid-column: span 2;
    grid-row: auto
  }

  .feature-matrix {
    grid-template-columns: 1fr 1fr
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr
  }

  .workflow-grid:before {
    display: none
  }
}

@media(max-width:860px) {
  .section {
    padding: 80px 0
  }

  .nav-toggle {
    display: block
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: #091523;
    border-top: 1px solid rgba(255, 255, 255, .08)
  }

  .nav-open .main-nav {
    display: flex
  }

  .main-nav>a {
    padding: 15px
  }

  .main-nav .nav-cta {
    text-align: center;
    margin-top: 8px
  }

  .logo-strip-inner {
    flex-direction: column;
    justify-content: center;
    padding: 24px 0
  }

  .ecosystem-items {
    flex-wrap: wrap;
    justify-content: center
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .section-heading.split p {
    margin-top: 0
  }

  .integration-band,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr
  }

  .integration-badges {
    justify-content: flex-start
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .faq-grid {
    gap: 42px
  }

  .cta-card {
    padding: 48px
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr
  }

  .footer-links:last-child {
    display: none
  }
}

@media(max-width:640px) {
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

  .section {
    padding: 65px 0
  }

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

  .hero h1 {
    font-size: 45px
  }

  .hero-lead {
    font-size: 16px
  }

  .hero-actions {
    flex-direction: column
  }

  .btn {
    width: 100%
  }

  .trust-row {
    display: none
  }

  .dashboard-shell {
    border-radius: 15px
  }

  .browser-top {
    height: 34px
  }

  .browser-address {
    font-size: 6px
  }

  .app-layout {
    grid-template-columns: 70px;
    min-height: 360px
  }

  .app-sidebar {
    padding: 12px 7px
  }

  .side-link span {
    display: none
  }

  .app-main {
    padding: 12px
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr
  }

  .metric-grid article:nth-child(n+3) {
    display: none
  }

  .app-panels {
    grid-template-columns: 1fr
  }

  .channel-card {
    display: none
  }

  .chart-card {
    min-height: 175px
  }

  .chart {
    height: 115px
  }

  .float-card {
    display: none
  }

  .ecosystem-items {
    gap: 13px
  }

  .ecosystem-items i {
    display: none
  }

  .feature-highlight-grid,
  .feature-matrix,
  .workflow-grid {
    grid-template-columns: 1fr
  }

  .highlight-large {
    grid-column: auto;
    grid-template-columns: 1fr
  }

  .section-heading {
    margin-bottom: 38px
  }

  .section-heading h2,
  .cta-card h2,
  .faq-intro h2 {
    font-size: 35px
  }

  .section-heading p,
  .cta-card p {
    font-size: 15px
  }

  .integration-band {
    padding: 26px
  }

  .pricing-note {
    align-items: flex-start;
    flex-direction: column
  }

  .price-card ul {
    min-height: auto
  }

  .cta-card {
    padding: 40px 24px
  }

  .cta-actions {
    flex-direction: column
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}


/* Stronger differentiator and rebalanced hero */
.hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 56px
}

.hero-copy {
  max-width: 680px
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.2vw, 70px)
}

.hero-visual {
  min-width: 0;
  max-width: 610px;
  justify-self: end
}

.dashboard-shell {
  transform: scale(.92);
  transform-origin: center right
}

.float-sync {
  right: -4px;
  top: 70px
}

.float-publish {
  left: -10px;
  bottom: 56px
}

.breakthrough-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid #e6ebf1
}

.breakthrough-grid {
  display: grid;
  grid-template-columns: auto 1.35fr .9fr;
  gap: 30px;
  align-items: center
}

.breakthrough-badge {
  align-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  background: #eeeaff;
  color: #5c48dc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap
}

.breakthrough-grid h2 {
  margin: 0 0 9px;
  font: 800 24px/1.25 "Manrope", sans-serif;
  letter-spacing: -.03em
}

.breakthrough-grid p {
  margin: 0;
  color: #69778a;
  font-size: 14px
}

.breakthrough-points {
  display: grid;
  gap: 10px
}

.breakthrough-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  color: #4f5e72;
  font-size: 12px;
  font-weight: 600;
  background: #fafbfc
}

.breakthrough-points i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #6e5cf6;
  color: #fff;
  font-style: normal;
  font-size: 9px;
  font-weight: 800
}

.breakthrough-points code {
  font-size: .9em
}

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

  .hero-copy {
    max-width: 800px
  }

  .hero-visual {
    max-width: 720px;
    justify-self: center
  }

  .dashboard-shell {
    transform: scale(.9);
    transform-origin: center
  }

  .breakthrough-grid {
    grid-template-columns: 1fr 1fr
  }

  .breakthrough-badge {
    grid-column: 1/-1;
    justify-self: start
  }
}

@media(max-width:860px) {
  .breakthrough-grid {
    grid-template-columns: 1fr
  }

  .breakthrough-badge {
    grid-column: auto
  }
}

@media(max-width:640px) {
  .hero h1 {
    font-size: 42px
  }

  .hero-visual {
    max-width: 100%
  }

  .dashboard-shell {
    transform: none
  }

  .breakthrough-strip {
    padding: 28px 0
  }

  .breakthrough-grid h2 {
    font-size: 22px
  }
}

/* Vector dashboard mockup — top nav layout */
.vector-mock {
  display: block;
  min-height: 455px
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e9f0;
  background: #fff
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 800 12px "Manrope", sans-serif;
  color: #17253a;
  letter-spacing: .01em
}

.brand-v {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #7467ff, #33d6d0);
  color: #fff;
  font-size: 10px;
  font-weight: 800
}

.topbar-settings {
  color: #8591a4;
  font-size: 13px
}

.app-tabs {
  display: flex;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid #e5e9f0;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none
}

.app-tabs::-webkit-scrollbar {
  display: none
}

.app-tabs .tab {
  padding: 10px 0;
  font-size: 8px;
  font-weight: 600;
  color: #8591a4;
  white-space: nowrap;
  border-bottom: 2px solid transparent
}

.app-tabs .tab.active {
  color: #17253a;
  border-color: #17253a;
  font-weight: 800
}

.vector-mock .app-main {
  padding: 16px;
  background: #fbfcfd
}

.welcome-banner {
  padding: 16px;
  border-radius: 12px;
  background: #eceef1;
  margin-bottom: 14px
}

.welcome-banner strong {
  display: block;
  font: 800 15px "Manrope", sans-serif;
  margin-bottom: 6px;
  color: #17253a
}

.welcome-banner p {
  margin: 0 0 6px;
  font-size: 9px;
  line-height: 1.6;
  color: #4b5768
}

.welcome-banner small {
  display: block;
  font-size: 8px;
  line-height: 1.6;
  color: #5c6979
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 14px
}

.kpi-grid article {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px;
  border: 1px solid #e2e7ef;
  border-radius: 10px;
  background: #fff
}

.kpi-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f2f5;
  color: #7c8798;
  font-size: 7px;
  font-weight: 700
}

.kpi-grid b {
  font-size: 16px;
  color: #17253a
}

.kpi-grid small {
  font-size: 7px;
  color: #8b96a7
}

.quick-actions {
  padding: 14px;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  background: #fff
}

.quick-actions>strong {
  display: block;
  font: 800 12px "Manrope", sans-serif;
  margin-bottom: 10px;
  color: #17253a
}

.qa-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px
}

.qa-btn {
  border: 1px solid #e2e7ef;
  border-radius: 9px;
  padding: 10px;
  background: #f6f7fb;
  color: #3a4658;
  font-size: 8px;
  font-weight: 700
}

.qa-btn.qa-dark {
  background: #17253a;
  color: #fff;
  border-color: #17253a
}

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

  .kpi-grid article:nth-child(n+4) {
    display: none
  }

  .qa-row {
    grid-template-columns: 1fr
  }

  .app-tabs .tab:nth-child(n+5) {
    display: none
  }
}