:root {
  --navy: #03083a;
  --navy-2: #06146d;
  --navy-3: #071b86;
  --blue: #335dff;
  --cyan: #58d4ff;
  --ink: #111827;
  --muted: #68708b;
  --paper: #f6f8ff;
  --section-light: #f8f9ff;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.1);
  --dark-line: rgba(255, 255, 255, 0.12);
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--section-light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 6px 0;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transform: translateX(-50%);
  transition:
    width 280ms ease,
    top 280ms ease,
    padding 280ms ease,
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  top: 13px;
  width: min(calc(100% - 64px), 936px);
  padding: 7px 9px 7px 24px;
  color: #1d1d1d;
  border-color: rgba(245, 245, 247, 0.58);
  background: rgba(245, 245, 247, 0.76);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 130px;
  min-height: 30px;
  transition: color 220ms ease;
}

.site-header .brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 130px;
  height: auto;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-50%);
  transition: opacity 220ms ease, filter 220ms ease;
}

.site-header .brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 18px;
  border-radius: 5px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.65rem;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .brand {
  color: #2a2f3b;
}

.site-header.is-scrolled .brand span {
  color: #ffffff;
  background: #202225;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 220ms ease;
}

.site-header.is-scrolled .main-nav {
  color: rgba(29, 29, 29, 0.7);
  font-size: 0.74rem;
  font-weight: 850;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, #18b6ff 0%, #2f7bff 35%, #7b3dff 72%, #c218ff 100%);
  box-shadow:
    0 0 24px rgba(24, 182, 255, 0.18),
    0 18px 42px rgba(123, 61, 255, 0.24);
}

.site-header.is-scrolled .header-cta {
  min-height: 44px;
  padding-inline: 24px;
  color: #f5f5f7;
  background: #1d1d1d;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

main .btn {
  min-height: 58px;
  padding-inline: 34px;
  font-size: 0.9rem;
}

.hero .btn {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 0.78rem;
}

.btn.primary:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(24, 182, 255, 0.22),
    0 22px 48px rgba(123, 61, 255, 0.3);
}

.hero,
.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.dark-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(58, 94, 255, 0.38), transparent 32%),
    radial-gradient(circle at 22% 28%, rgba(88, 212, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #01042b 0%, #03083a 100%);
}

.hero {
  min-height: 760px;
  padding: 112px 0 72px;
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 105, 183, 0.28), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(99, 105, 183, 0.22), transparent 30%),
    radial-gradient(circle at 55% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, #252736 0%, #1d1d1d 44%, #20222d 100%);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px, 34px 34px, 34px 34px;
  mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.hero-dark-flow {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 105, 183, 0.28), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(99, 105, 183, 0.22), transparent 30%),
    radial-gradient(circle at 55% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, #252736 0%, #1d1d1d 44%, #20222d 100%);
}

.hero-dark-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px, 34px 34px, 34px 34px;
  pointer-events: none;
}

.hero-dark-flow > section > .stars {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
  text-align: left;
}

.eyebrow,
.section-kicker,
.dark-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #4267ff;
  background: rgba(51, 93, 255, 0.08);
  font-size: 0.68rem;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-kicker {
  color: #dbe4ff;
  background: rgba(255, 255, 255, 0.1);
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.04;
  font-weight: 780;
}

.hero-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 760;
}

.hero-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
  padding-left: 8px;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-social p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-notebook-wrap {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0;
  transform: translateX(18px);
}

.hero-notebook {
  width: min(122%, 960px);
  max-width: none;
  filter: drop-shadow(0 42px 82px rgba(0, 0, 0, 0.34));
  transform: rotate(-1.2deg);
}

.mockup-float {
  position: absolute;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #dfe3ff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(99, 105, 183, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 850;
  animation: floatIn 4.8s ease-in-out infinite;
}

.mockup-float.ai {
  top: 27%;
  right: -1%;
}

.mockup-float.flow {
  left: 2%;
  bottom: 28%;
}

.mockup-float.sales {
  right: 12%;
  bottom: 15%;
}

.mockup-float.lead {
  top: 7%;
  left: 38%;
}

.mockup-float.flow,
.mockup-float.lead {
  animation-delay: 900ms;
}

.partner-badge {
  position: absolute;
  left: 50%;
  bottom: 2.5%;
  z-index: 3;
  width: min(296px, 62%);
  min-height: 58px;
  display: grid;
  grid-template-columns: 116px auto 96px;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(-50%);
  animation: partnerFloat 5.4s ease-in-out infinite;
  animation-delay: 450ms;
}

.partner-badge > span {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.partner-logo-wasuite {
  width: 116px;
  height: auto;
  justify-self: start;
  object-fit: contain;
}

.partner-logo-meta {
  width: 96px;
  height: 38px;
  justify-self: end;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.product-overview,
.platform-section,
.features-section,
.social-proof-band,
.feature-split,
.resources,
.orbit-section,
.demo-section,
.testimonials,
.founder-section,
.risk-section,
.faq {
  background: var(--section-light);
}

.product-overview .container,
.platform-section .container,
.features-section .container,
.social-proof-band .container,
.feature-split .container,
.resources .container,
.orbit-section .container,
.demo-section .container,
.testimonials .container,
.founder-section .container,
.risk-section .container,
.faq .container {
  padding-block: 80px;
  text-align: center;
}

.product-overview h2,
.platform-section h2,
.features-section h2,
.social-proof-band h2,
.resources h2,
.orbit-section h2,
.demo-section h2,
.testimonials h2,
.founder-section h2,
.risk-section h2,
.faq h2 {
  width: min(100%, 600px);
  margin: 0 auto 12px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.05;
}

.product-overview p,
.orbit-section p,
.demo-section p {
  width: min(100%, 620px);
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.7;
}

.platform-section {
  position: relative;
  overflow: hidden;
  background: var(--section-light);
}

.platform-section::after {
  content: none;
}

.platform-section .container {
  position: relative;
  z-index: 1;
}

.platform-section h2 {
  width: min(100%, 760px);
}

.platform-section h2 span {
  display: block;
  color: #7e83ff;
}

.platform-section p {
  width: min(100%, 620px);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.platform-section .section-kicker,
.features-section .section-kicker,
.demo-section .section-kicker,
.testimonials .section-kicker,
.risk-section .section-kicker,
.faq .section-kicker,
.power-section > .container > .dark-kicker,
.lead-loss-section > .container > .dark-kicker,
.pricing > .container > .dark-kicker {
  width: fit-content;
  margin: 0 auto 12px;
}

.orbit-copy .section-kicker,
.founder-content .section-kicker {
  width: fit-content;
  margin: 0 0 12px;
}

.platform-showcase {
  position: relative;
  width: min(100%, 980px);
  margin: 54px auto 0;
  padding: 0;
}

.platform-showcase img {
  width: min(100%, 860px);
  margin-inline: auto;
  border-radius: 10px;
  box-shadow:
    0 34px 100px rgba(3, 8, 58, 0.12),
    0 0 0 1px rgba(99, 105, 183, 0.08);
}

.platform-card {
  position: absolute;
  width: 250px;
  min-height: 70px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(99, 105, 183, 0.14);
  border-radius: 10px;
  color: #1c2541;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(3, 8, 58, 0.12);
  backdrop-filter: blur(12px);
  text-align: left;
}

.platform-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4267ff, #8a7cff);
  box-shadow: 0 8px 20px rgba(66, 103, 255, 0.22);
}

.platform-card strong,
.platform-card span {
  padding-left: 28px;
}

.platform-card strong {
  font-size: 0.78rem;
  line-height: 1.25;
}

.platform-card span {
  color: #68708b;
  font-size: 0.68rem;
  line-height: 1.38;
}

.card-left-top {
  left: 0;
  top: 18%;
}

.card-left-mid {
  left: 22px;
  bottom: 25%;
}

.card-right-top {
  right: 0;
  top: 18%;
}

.card-right-bottom {
  right: 28px;
  bottom: 18%;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.compare-grid article {
  min-height: 360px;
  padding: 28px;
  border-radius: 8px;
}

.compare-grid h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.compare-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-grid li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.before-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #111827, #03083a);
}

.after-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 212, 255, 0.26), transparent 38%),
    linear-gradient(135deg, #071b86, #335dff);
  box-shadow: 0 28px 80px rgba(51, 93, 255, 0.22);
}

.before-card li::before,
.after-card li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.before-card li::before {
  content: "×";
  color: #ff7a7a;
}

.after-card li::before {
  content: "✓";
  color: #9dffce;
}

.features-section {
  background: var(--section-light);
  margin-top: -1px;
}

.features-section h2 {
  width: min(100%, 760px);
}

.demo-section h2,
.testimonials h2 {
  width: min(100%, 820px);
}

.features-section h2 span {
  display: block;
  color: #7e83ff;
}

.features-section > .container > p:not(.section-kicker) {
  width: min(100%, 620px);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
  text-align: left;
}

.feature-card-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 16px 44px rgba(3, 8, 58, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 131, 255, 0.28);
  box-shadow: 0 22px 58px rgba(3, 8, 58, 0.1);
}

.feature-card-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #ffffff;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #8f94ff, #535cff);
  box-shadow: 0 14px 30px rgba(83, 92, 255, 0.22);
  font-size: 1rem;
}

.feature-card-grid h3 {
  margin-bottom: 9px;
  color: #111827;
  font-size: 0.94rem;
  line-height: 1.28;
}

.feature-card-grid p {
  margin: 0;
  color: #68708b;
  font-size: 0.8rem;
  line-height: 1.58;
}

.social-proof-band {
  background: var(--section-light);
}

.logo-placeholders {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.logo-placeholders li {
  min-width: 150px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #53607e;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
}

.proof-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(3, 8, 58, 0.06);
}

.proof-metrics dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.proof-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.app-canvas {
  position: relative;
  width: min(100%, 820px);
  min-height: 430px;
  margin: 44px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(3, 8, 58, 0.12);
}

.app-topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.app-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 16px 0 #f59e0b, 32px 0 #22c55e;
}

.app-topbar strong {
  color: var(--ink);
}

.app-topbar em {
  margin-left: auto;
  font-style: normal;
}

.app-columns {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 14px;
  min-height: 340px;
  padding: 18px 0 0;
}

.app-columns aside,
.app-columns section {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
}

.app-columns b {
  font-size: 0.78rem;
}

.app-columns i,
.app-columns article,
.kanban-mini span {
  min-height: 48px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(3, 8, 58, 0.08);
}

.kanban-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kanban-mini span {
  min-height: 180px;
}

.floating-tags {
  position: absolute;
  inset: 70px -42px auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 64px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.floating-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(51, 93, 255, 0.15);
  border-radius: 999px;
  color: #335dff;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(3, 8, 58, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  text-align: left;
}

.split-grid h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.split-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #3d4664;
  font-size: 0.9rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ecf1ff;
  box-shadow: inset 0 0 0 5px var(--blue);
}

.device-combo {
  position: relative;
  min-height: 360px;
  margin: 0;
}

.desktop-card {
  position: absolute;
  inset: 20px 70px 40px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(3, 8, 58, 0.14);
}

.desktop-card header {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.desktop-card header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dcf2;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.flow-map i {
  min-height: 96px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
}

.mobile-card {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 150px;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(3, 8, 58, 0.2);
}

.mobile-card span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
}

.mobile-card b {
  min-height: 44px;
  border-radius: 8px;
  background: var(--paper);
}

.dark-section .container {
  padding-block: 84px;
  text-align: center;
}

.dark-section h2 {
  margin: 0 auto 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.dark-lead {
  width: min(100%, 560px);
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.layer-stack {
  display: grid;
  gap: 20px;
  width: min(100%, 820px);
  margin-inline: auto;
}

.layer-stack article {
  display: grid;
  grid-template-columns: 52px 1fr 1.2fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
}

.layer-stack span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(51, 93, 255, 0.3);
  font-weight: 900;
}

.layer-stack h3 {
  margin-bottom: 6px;
}

.layer-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.55;
}

.dark-panel {
  min-height: 120px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.dark-panel i {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.small-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.split-panel {
  grid-template-columns: 1fr 1fr;
}

.power-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 105, 183, 0.28), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(99, 105, 183, 0.22), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(99, 105, 183, 0.13), transparent 36%),
    linear-gradient(135deg, #252736 0%, #1d1d1d 44%, #20222d 100%);
}

.power-section .container {
  position: relative;
  z-index: 1;
  padding-block: 88px;
  text-align: center;
}

.power-section h2 {
  margin: 0 auto 12px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.04;
}

.power-grid {
  display: grid;
  gap: 22px;
  width: min(100%, 980px);
  margin: 42px auto 0;
}

.power-grid article {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.power-grid article:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.power-grid article:nth-child(even) img {
  order: 2;
}

.power-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.power-grid article > div {
  padding: 8px 10px;
}

.power-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(99, 105, 183, 0.45);
  font-size: 0.82rem;
  font-weight: 900;
}

.power-grid h3 {
  max-width: 460px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.power-grid p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  text-align: left;
}

.resource-grid article,
.mini-benefits article,
.testimonial-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(3, 8, 58, 0.06);
}

.resource-grid article {
  min-height: 168px;
  padding: 22px;
}

.benefit-grid article {
  min-height: 210px;
}

.resource-grid span {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4267ff, #806bff);
}

.resource-grid h3,
.dark-cards h3,
.mini-benefits h3,
.testimonial-grid h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.resource-grid p,
.mini-benefits p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.section-cta {
  margin-top: 28px;
}

.sales {
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 93, 255, 0.34), transparent 34%),
    linear-gradient(180deg, #04105f, #020633);
}

.ecosystem-sales {
  width: min(100%, 1120px);
  margin: 126px auto 0;
}

.mobility-section {
  position: relative;
  padding: 58px 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.mobility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.mobility-section > * {
  position: relative;
  z-index: 1;
}

.mobility-section h2 {
  width: min(100%, 1080px);
  margin-inline: auto;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  line-height: 1.05;
}

.mobility-section h2 span {
  display: block;
  color: rgba(245, 245, 247, 0.72);
}

.mobility-sublead {
  width: min(100%, 780px);
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.7;
}

.mobility-devices {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.56fr) minmax(320px, 1.44fr) minmax(150px, 0.56fr);
  gap: 0;
  align-items: center;
  margin: 44px auto 26px;
}

.device-mockup {
  position: relative;
  margin: 0;
}

.device-mockup span {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.device-mockup > div {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.device-mockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 72px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 36px rgba(51, 93, 255, 0.16));
}

.device-mockup.phone > div {
  width: min(100%, 168px);
  margin-inline: auto;
}

.device-mockup.android {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  transform: translate(104px, 18px) rotate(-4deg) scale(1.08);
}

.device-mockup.iphone {
  grid-column: 3;
  grid-row: 1;
  z-index: 3;
  transform: translate(-196px, 36px) rotate(4deg);
}

.device-mockup.iphone span {
  top: -34px;
  z-index: 5;
}

.device-mockup.desktop {
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 1;
}

.device-mockup.desktop > div {
  width: min(100%, 640px);
  margin: 0 auto;
}

.mobility-benefits,
.mobility-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.mobility-benefits span,
.mobility-platforms span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 850;
}

.mobility-impact {
  width: min(100%, 820px);
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(126, 131, 255, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 93, 255, 0.28), transparent 46%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.24);
}

.mobility-impact strong,
.mobility-impact span {
  display: block;
}

.mobility-impact strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.mobility-impact span {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.08;
}

.mobility-anywhere {
  width: min(100%, 760px);
  margin: 34px auto 0;
}

.mobility-anywhere h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.mobility-anywhere p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.mobility-platforms {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.mobility-cta {
  margin-top: 28px;
  text-transform: uppercase;
}

.dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.dark-cards article {
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.dark-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.orbit-section {
  background: var(--section-light);
}

.orbit-section .container.orbit-layout {
  width: min(calc(100% - 32px), 1120px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding-block: 88px;
  text-align: left;
}

.orbit-copy h2 {
  width: min(100%, 640px);
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.orbit-copy > p {
  width: min(100%, 540px);
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.orbit-flow-cards {
  display: grid;
  gap: 10px;
}

.orbit-flow-cards article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(3, 8, 58, 0.055);
}

.orbit-flow-cards span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #8f94ff, #535cff);
  font-size: 0.72rem;
  font-weight: 900;
}

.orbit-flow-cards strong {
  color: #111827;
  font-size: 0.86rem;
}

.orbit-flow-cards p {
  margin: 0;
  color: #68708b;
  font-size: 0.78rem;
  line-height: 1.45;
}

.orbit-panel {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 48px auto 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(51, 93, 255, 0.1), transparent 44%);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px dashed rgba(51, 93, 255, 0.24);
  border-radius: 50%;
  animation: orbitSpin 32s linear infinite;
}

.orbit::after {
  inset: 152px;
  animation-direction: reverse;
  animation-duration: 24s;
}

.orbit strong {
  z-index: 4;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #4267ff, #7257ff);
  box-shadow:
    0 18px 54px rgba(51, 93, 255, 0.34),
    0 0 0 12px rgba(51, 93, 255, 0.07);
}

.orbit-streams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit-streams i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  height: 2px;
  transform-origin: 0 50%;
}

.orbit-streams i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 93, 255, 0.4), rgba(51, 93, 255, 0.08), transparent);
}

.orbit-streams i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4267ff;
  box-shadow:
    0 0 0 5px rgba(51, 93, 255, 0.12),
    0 0 22px rgba(51, 93, 255, 0.42);
  transform: translate(-50%, -50%);
  animation: dataDot 3.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.orbit-streams i:nth-child(1) { transform: rotate(-90deg); }
.orbit-streams i:nth-child(2) { transform: rotate(-45deg); }
.orbit-streams i:nth-child(3) { transform: rotate(0deg); }
.orbit-streams i:nth-child(4) { transform: rotate(45deg); }
.orbit-streams i:nth-child(5) { transform: rotate(90deg); }
.orbit-streams i:nth-child(6) { transform: rotate(135deg); }
.orbit-streams i:nth-child(7) { transform: rotate(180deg); }
.orbit-streams i:nth-child(8) { transform: rotate(225deg); }

.orbit-streams i:nth-child(2)::after { animation-delay: 0.35s; }
.orbit-streams i:nth-child(3)::after { animation-delay: 0.7s; }
.orbit-streams i:nth-child(4)::after { animation-delay: 1.05s; }
.orbit-streams i:nth-child(5)::after { animation-delay: 1.4s; }
.orbit-streams i:nth-child(6)::after { animation-delay: 1.75s; }
.orbit-streams i:nth-child(7)::after { animation-delay: 2.1s; }
.orbit-streams i:nth-child(8)::after { animation-delay: 2.45s; }

.orbit span {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(51, 93, 255, 0.14);
  border-radius: 999px;
  color: #335dff;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(3, 8, 58, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.orbit span:nth-of-type(1) { top: -26px; left: 50%; transform: translateX(-50%); }
.orbit span:nth-of-type(2) { top: 76px; right: -34px; }
.orbit span:nth-of-type(3) { top: 50%; right: -60px; transform: translateY(-50%); }
.orbit span:nth-of-type(4) { right: -14px; bottom: 76px; }
.orbit span:nth-of-type(5) { bottom: -26px; left: 50%; transform: translateX(-50%); }
.orbit span:nth-of-type(6) { left: -18px; bottom: 76px; }
.orbit span:nth-of-type(7) { top: 50%; left: -66px; transform: translateY(-50%); }
.orbit span:nth-of-type(8) { top: 76px; left: -34px; }

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}

.mini-benefits article {
  padding: 18px;
}

.pricing {
  background: transparent;
}

.pricing .container {
  position: relative;
  z-index: 1;
  padding-top: 54px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  gap: 18px;
  justify-content: center;
  text-align: left;
}

.pricing-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -8px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-badges li {
  padding: 8px 12px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 820;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 124px));
  gap: 6px;
  width: fit-content;
  margin: 0 auto 26px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.billing-option {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.billing-option small {
  display: block;
  color: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.billing-option.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.pricing-grid article {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-grid .featured {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.pricing-grid .best-plan {
  border-color: rgba(24, 182, 255, 0.55);
  transform: translateY(-10px);
}

.pricing-grid em {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.pricing-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-grid strong {
  display: block;
  margin-bottom: 2px;
  font-size: 2.3rem;
}

.pricing-grid .plan-cycle {
  display: block;
  min-height: 18px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: none;
}

.pricing-grid .featured .plan-cycle {
  color: var(--muted);
}

.pricing-grid p,
.pricing-grid li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.pricing-grid .featured p,
.pricing-grid .featured li {
  color: var(--muted);
}

.pricing-grid ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 20px;
}

.pricing-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2fd36b;
  font-weight: 900;
}

.pricing-grid li.plan-availability.no::before {
  content: "×";
  color: #ff5d5d;
}

.pricing-grid li.plan-availability.yes::before {
  content: "✓";
  color: #2fd36b;
}

.pricing-grid li.plan-availability {
  font-weight: 850;
}

.plan-comparison-accordion {
  width: min(100%, 1060px);
  margin: 84px auto;
}

.plan-comparison-accordion summary {
  width: fit-content;
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 42px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  list-style: none;
}

.plan-comparison-accordion summary::-webkit-details-marker {
  display: none;
}

.plan-comparison-accordion summary::after {
  content: "+";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.03rem;
  line-height: 1;
}

.plan-comparison-accordion[open] summary::after {
  content: "-";
}

.plan-comparison {
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 11, 18, 0.44);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(78px, 0.5fr));
  align-items: center;
}

.comparison-header {
  min-height: 54px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-header strong,
.comparison-header span,
.comparison-row span,
.comparison-row i {
  padding: 13px 16px;
}

.comparison-row {
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.comparison-row i {
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 900;
}

.comparison-row .yes {
  color: #2fd36b;
}

.comparison-row .no {
  color: #ff5d5d;
}

.addons-block {
  display: grid;
  gap: 22px;
  width: min(100%, 1160px);
  margin: 56px auto 0;
  text-align: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.addons-copy {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.addons-copy .dark-kicker {
  width: fit-content;
  margin-inline: auto;
}

.addons-copy h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
}

.addons-copy p {
  margin: 0 auto;
  width: min(100%, 760px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.addons-highlight {
  width: min(100%, 820px);
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px auto 6px;
  padding: 18px 24px;
  border: 1px solid rgba(101, 125, 255, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 112, 255, 0.32), transparent 44%),
    linear-gradient(135deg, rgba(74, 88, 255, 0.24), rgba(120, 75, 255, 0.14));
  box-shadow:
    0 22px 62px rgba(68, 88, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.addons-highlight span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #315dff, #7b4dff);
  box-shadow: 0 16px 44px rgba(69, 91, 255, 0.38);
  font-size: 1.3rem;
  font-weight: 950;
}

.addons-highlight strong {
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.addons-grid article {
  position: relative;
  min-height: 342px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% -6%, rgba(105, 119, 255, 0.3), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.addons-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 131, 255, 0.72);
  background:
    radial-gradient(circle at 50% -6%, rgba(105, 119, 255, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.34),
    0 0 56px rgba(79, 107, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.addons-grid span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 36px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: 999px;
  color: #2f66ff;
  background: rgba(245, 245, 247, 0.95);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(82, 100, 255, 0.22);
}

.addons-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.12;
}

.addons-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.58;
}

.addons-grid small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.addons-grid a {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #315dff, #7556ff);
  box-shadow: 0 18px 48px rgba(64, 87, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.addons-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(64, 87, 255, 0.42);
}

.guarantee-card {
  width: min(100%, 900px);
  margin: 102px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.guarantee-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.guarantee-card p {
  width: min(100%, 720px);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.demo-section {
  background: var(--section-light);
}

.demo-section .split-grid {
  text-align: left;
}

.demo-section h2 {
  margin-inline: 0;
}

.demo-section p {
  margin-inline: 0;
}

.demo-mockup {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(3, 8, 58, 0.12);
}

.demo-mockup button {
  position: absolute;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #4267ff, #7257ff);
  box-shadow: 0 20px 60px rgba(51, 93, 255, 0.32);
  cursor: pointer;
  font-size: 1.35rem;
}

.demo-window {
  width: min(82%, 430px);
  min-height: 240px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background: #06146d;
  transform: rotate(-1.5deg);
}

.demo-window span,
.demo-window b {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
}

.demo-window span {
  min-height: 54px;
}

.demo-window b {
  min-height: 92px;
}

.testimonial-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(100%, 840px);
  margin: 24px auto 0;
}

.testimonial-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(3, 8, 58, 0.06);
}

.testimonial-proof strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.testimonial-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.testimonial-grid article {
  padding: 18px;
}

.testimonial-grid img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 50%;
}

.testimonial-grid small {
  display: block;
  margin-bottom: 12px;
  color: #335dff;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.4;
}

.lead-loss-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: transparent;
}

.lead-loss-section .container {
  position: relative;
  z-index: 1;
  padding-block: 96px;
  text-align: center;
}

.lead-loss-section h2 {
  width: min(100%, 1120px);
  margin: 0 auto 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.lead-loss-section h2 span {
  display: block;
  color: rgba(245, 245, 247, 0.72);
}

.lead-loss-subtitle {
  width: min(100%, 760px);
  margin: 0 auto;
  color: rgba(245, 245, 247, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.lead-loss-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1060px);
  margin: 40px auto 28px;
}

.lead-loss-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(8, 11, 18, 0.5);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(24, 182, 255, 0.08);
  text-align: left;
}

.lead-loss-grid span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(24, 182, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.26), transparent 32%),
    rgba(24, 182, 255, 0.1);
  box-shadow: 0 0 28px rgba(24, 182, 255, 0.12);
  font-size: 1.75rem;
}

.lead-loss-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead-loss-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-loss-grid li {
  position: relative;
  padding-left: 19px;
  color: rgba(245, 245, 247, 0.66);
  font-size: 0.84rem;
  line-height: 1.58;
}

.lead-loss-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #47d16c;
  font-weight: 900;
}

.lead-loss-consequence {
  width: min(100%, 880px);
  margin: 72px auto 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.lead-loss-consequence strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.lead-loss-consequence p {
  width: min(100%, 680px);
  margin: 0 auto 18px;
  color: rgba(245, 245, 247, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lead-loss-consequence em {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 30px rgba(24, 182, 255, 0.1);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 900;
}

.founder-section .founder-layout {
  width: min(calc(100% - 32px), 1120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
  text-align: left;
}

.founder-photo-card {
  margin: 0;
}

.founder-photo-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  color: #335dff;
  background: rgba(51, 93, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.12);
}

.founder-content h2 {
  width: min(100%, 740px);
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
}

.founder-lead {
  width: min(100%, 780px);
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.founder-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, 900px);
  margin: 8px auto 0;
}

.founder-stats div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(3, 8, 58, 0.06);
}

.founder-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.1;
}

.founder-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.founder-bio {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: #4b5568;
  font-size: 0.96rem;
  line-height: 1.72;
}

.founder-bio p,
.founder-vision p {
  margin: 0;
}

.founder-vision {
  grid-column: 1 / -1;
  width: min(100%, 1040px);
  margin: 24px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.founder-vision h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.96rem, 4vw, 3.64rem);
  line-height: 1;
  font-weight: 850;
}

.founder-vision h3 span {
  color: #7e83ff;
}

.founder-vision p {
  width: min(100%, 980px);
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.7;
}

.founder-vision p + p {
  margin-top: 10px;
}

.risk-section .container {
  width: min(calc(100% - 32px), 1120px);
}

.risk-heading {
  width: min(100%, 860px);
  margin: 0 auto 48px;
}

.risk-heading h2 {
  width: min(100%, 760px);
}

.risk-heading > p {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.risk-short-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.risk-short-lines span {
  padding: 9px 13px;
  border: 1px solid rgba(49, 93, 255, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(49, 93, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 850;
}

.risk-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
  text-align: left;
}

.risk-copy {
  border: 1px solid rgba(49, 93, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 70px rgba(3, 8, 58, 0.08);
}

.risk-seal {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
}

.risk-seal img {
  width: min(100%, 390px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(3, 8, 58, 0.12));
}

.risk-copy {
  padding: clamp(24px, 3vw, 34px);
}

.risk-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  white-space: nowrap;
}

.risk-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.risk-copy p + p {
  margin-top: 10px;
}

.risk-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.risk-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.risk-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #23c466;
  font-weight: 900;
}

.risk-impact {
  color: var(--ink) !important;
  font-weight: 850;
}

.risk-impact strong {
  color: #7b3dff;
}

.risk-cta {
  min-height: 50px;
  margin-top: 20px;
  padding-inline: 30px;
  font-size: 0.86rem;
}

.narrow {
  width: min(calc(100% - 32px), 720px);
}

.faq .narrow {
  width: min(calc(100% - 32px), 900px);
}

.faq h2 {
  width: min(100%, 900px);
  white-space: nowrap;
}

.faq h2 span {
  color: #7e83ff;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}

.faq-list details {
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 105, 183, 0.28), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(99, 105, 183, 0.22), transparent 30%),
    radial-gradient(circle at 55% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, #252736 0%, #1d1d1d 44%, #20222d 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px, 34px 34px, 34px 34px;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
  opacity: 0.7;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-logo {
  width: min(260px, 68vw);
  height: auto;
  display: block;
}

.footer-disclaimer {
  max-width: 930px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  line-height: 1.8;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 850;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-legal-links a:hover {
  color: var(--white);
}

.footer-copyright {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 750;
}

.legal-page {
  background: var(--section-light);
}

.legal-hero {
  padding: 48px 0 42px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 93, 255, 0.13), transparent 34%),
    var(--section-light);
}

.legal-hero .container,
.legal-content .container {
  width: min(calc(100% - 32px), 920px);
}

.legal-brand {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
}

.legal-brand img {
  width: min(240px, 68vw);
  height: auto;
  display: block;
}

.legal-hero h1 {
  width: min(100%, 780px);
  margin: 0 auto 14px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.legal-hero > .container > p:not(.section-kicker) {
  margin: 0 auto;
  color: var(--muted);
  font-weight: 750;
}

.legal-back {
  margin-top: 26px;
}

.legal-content {
  padding: 24px 0 84px;
}

.legal-content article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content article:first-child {
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.legal-content h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: #53607e;
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding-left: 20px;
}

.legal-content a:not(.btn) {
  color: var(--blue);
  font-weight: 850;
}

.legal-back-bottom {
  margin-top: 28px;
}

@keyframes dataDot {
  0% {
    left: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.68);
  }
  14% {
    opacity: 1;
  }
  76% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatIn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes partnerFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-9px);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 16px 38px rgba(22, 192, 96, 0.28);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 18px 44px rgba(22, 192, 96, 0.38);
    transform: translateY(0) scale(1.035);
  }
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: inline-grid;
  grid-template-columns: 46px max-content;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #ffffff;
  background: #16c060;
  box-shadow: 0 16px 38px rgba(22, 192, 96, 0.32);
  font-size: 0.74rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    width 260ms ease,
    border-radius 260ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float.is-expanded {
  width: 196px;
  border-radius: 999px;
  animation: none;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  justify-self: center;
  align-self: center;
  fill: currentColor;
}

.whatsapp-float span {
  padding: 0 15px 0 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float.is-expanded span,
.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover {
  width: 196px;
  border-radius: 999px;
  animation: none;
  box-shadow: 0 18px 44px rgba(22, 192, 96, 0.36);
}

.scroll-top {
  --scroll-progress: 0%;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #1d1d1d;
  background:
    conic-gradient(#335dff var(--scroll-progress), rgba(245, 245, 247, 0.5) 0);
  box-shadow: 0 16px 38px rgba(3, 8, 58, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.scroll-top span {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: 0 18px 46px rgba(51, 93, 255, 0.24);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .split-grid,
  .founder-section .founder-layout,
  .risk-layout,
  .power-grid article,
  .power-grid article:nth-child(even),
  .orbit-section .container.orbit-layout,
  .layer-stack article,
  .app-columns,
  .feature-card-grid,
  .compare-grid,
  .proof-metrics,
  .resource-grid,
  .dark-cards,
  .mini-benefits,
  .pricing-grid,
  .addons-block,
  .addons-grid,
  .mobility-devices,
  .testimonial-proof,
  .testimonial-grid,
  .lead-loss-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .best-plan {
    transform: none;
  }

  .risk-benefits {
    grid-template-columns: 1fr;
  }

  .founder-photo-card {
    position: static;
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: center;
  }

  .founder-content {
    text-align: center;
  }

  .founder-content h2,
  .founder-lead {
    margin-inline: auto;
  }

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

  .founder-bio {
    text-align: left;
  }

  .plan-comparison {
    overflow-x: auto;
  }

  .comparison-header,
  .comparison-row {
    min-width: 620px;
  }

  .addons-copy {
    text-align: center;
  }

  .addons-copy h3,
  .addons-copy p {
    margin-inline: auto;
  }

  .floating-tags {
    position: static;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    margin-top: 18px;
  }

  .device-combo {
    min-height: 420px;
  }

  .hero-copy {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  .hero-actions,
  .hero-badges,
  .hero-social {
    justify-content: center;
  }

  .hero-notebook-wrap {
    min-height: 420px;
    transform: none;
  }

  .hero-notebook {
    width: min(106%, 800px);
  }

  .power-grid article:nth-child(even) img {
    order: 0;
  }

  .power-grid article {
    text-align: center;
  }

  .power-grid h3,
  .power-grid p {
    margin-inline: auto;
  }

  .orbit-section .container.orbit-layout {
    text-align: center;
  }

  .orbit-copy h2,
  .orbit-copy > p {
    margin-inline: auto;
  }

  .orbit-panel {
    min-height: 520px;
  }

  .platform-showcase {
    display: grid;
    gap: 12px;
    margin-top: 36px;
  }

  .platform-card {
    position: relative;
    inset: auto;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .mobility-devices {
    min-height: 0;
    gap: 36px;
  }

  .device-mockup.android,
  .device-mockup.iphone {
    transform: none;
  }

  .device-mockup.phone > div {
    width: min(100%, 240px);
  }

  .device-mockup.desktop > div {
    width: min(100%, 720px);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .app-canvas,
  .layer-stack article,
  .ecosystem-sales,
  .pricing-grid article,
  .addons-grid article {
    padding: 16px;
  }

  .addons-highlight {
    flex-direction: column;
  }

  .billing-toggle {
    grid-template-columns: 1fr 1fr;
    width: min(100%, 296px);
  }

  .pricing-grid strong {
    font-size: 2rem;
  }

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

  .hero-social {
    flex-direction: column;
  }

  .hero-notebook-wrap {
    min-height: 300px;
  }

  .mockup-float {
    display: none;
  }

  .partner-badge {
    width: min(86vw, 286px);
    grid-template-columns: 110px auto 88px;
    gap: 10px;
    justify-items: center;
    bottom: -16px;
    padding: 10px 11px;
  }

  .partner-badge > span {
    width: 1px;
    height: 30px;
  }

  .partner-logo-wasuite {
    width: 110px;
  }

  .partner-logo-meta {
    width: 88px;
    height: 34px;
  }

  .orbit {
    width: 460px;
    max-width: 122vw;
    transform: scale(0.72);
    margin-block: -58px;
  }
}
/* Mobile-first refinement layer: keeps desktop rules intact and tightens small screens. */
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    width: min(100% - 24px, 1120px);
    min-height: 62px;
    padding: 9px 12px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid,
  .split-grid,
  .demo-section .split-grid {
    gap: 36px;
  }

  .platform-card {
    max-width: 520px;
  }

  .pricing-grid {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  section,
  .platform-section,
  .features-section,
  .demo-section,
  .faq,
  .pricing,
  .lead-loss-section,
  .risk-section,
  .testimonials,
  .founder-section,
  .orbit-section {
    padding-block: 64px;
  }

  .site-header {
    position: fixed;
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .site-header .brand-logo {
    max-width: 148px;
    height: auto;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero-grid {
    min-height: 0;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(2.35rem, 9vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-copy > p:not(.eyebrow),
  .dark-lead,
  .mobility-sublead,
  .platform-section p,
  .features-section > .container > p:not(.section-kicker),
  .demo-section p,
  .faq .narrow > p {
    max-width: 640px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  main .btn,
  .hero .btn,
  .section-cta {
    min-height: 50px;
    padding-inline: 24px;
    font-size: 0.86rem;
  }

  .hero-badges {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-badges span {
    font-size: 0.68rem;
  }

  .hero-social {
    max-width: 520px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-notebook-wrap {
    width: min(100%, 720px);
    min-height: 390px;
    margin: 8px auto 0;
    overflow: visible;
  }

  .hero-notebook {
    width: min(112%, 760px);
    transform: translateX(-1%) rotate(-0.8deg);
  }

  .platform-showcase img {
    border-radius: 14px;
  }

  .platform-card {
    width: 100%;
    padding: 16px;
    text-align: left;
  }

  .feature-card-grid article,
  .pricing-grid article,
  .addons-grid article,
  .dark-cards article,
  .lead-loss-card,
  .resource-grid article {
    border-radius: 8px;
  }

  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .power-grid article,
  .power-grid article:nth-child(even) {
    gap: 16px;
    padding: 14px;
  }

  .power-grid article > div {
    padding: 0 4px 4px;
  }

  .mobility-section {
    padding: 36px 18px;
  }

  .mobility-devices {
    width: 100%;
  }

  .mobility-benefits,
  .mobility-platforms {
    justify-content: center;
  }

  .orbit-panel {
    width: 100%;
    overflow: hidden;
  }

  .pricing-badges {
    justify-content: center;
  }

  .pricing-grid article {
    min-width: 0;
  }

  .pricing-grid .featured {
    order: -1;
  }

  .plan-comparison-accordion {
    margin-block: 44px;
  }

  .plan-comparison {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-header,
  .comparison-row {
    min-width: 640px;
  }

  .demo-mockup {
    min-height: 300px;
  }

  .demo-window {
    width: min(92%, 560px);
  }

  .site-footer {
    padding: 52px 0 28px;
  }

  .footer-content {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions,
  .pricing-grid article .btn,
  .section-cta,
  .mobility-cta {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .pricing-grid article .btn,
  .section-cta,
  .mobility-cta {
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-social {
    align-items: center;
    text-align: center;
  }

  .feature-card-grid,
  .resource-grid,
  .dark-cards,
  .mini-benefits,
  .lead-loss-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-grid article {
    min-height: auto;
  }

  .platform-showcase {
    margin-top: 28px;
  }

  .platform-card strong {
    font-size: 0.95rem;
  }

  .platform-card span {
    font-size: 0.82rem;
  }

  .power-section .container {
    padding-block: 64px;
  }

  .power-grid {
    margin-top: 30px;
  }

  .power-grid img {
    aspect-ratio: 4 / 3;
  }

  .mobility-devices {
    gap: 22px;
  }

  .device-mockup.phone > div {
    width: min(82vw, 220px);
  }

  .device-mockup.desktop > div {
    width: min(100%, 620px);
  }

  .pricing-badges {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .pricing-badges li {
    text-align: center;
  }

  .billing-toggle {
    width: min(100%, 360px);
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .pricing-grid article {
    padding: 22px;
  }

  .pricing-grid strong {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .plan-comparison-accordion summary {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
  }

  .faq-list summary {
    line-height: 1.25;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 76px;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  section,
  .platform-section,
  .features-section,
  .demo-section,
  .faq,
  .pricing,
  .lead-loss-section,
  .risk-section,
  .testimonials,
  .founder-section,
  .orbit-section {
    padding-block: 52px;
  }

  .site-header {
    width: calc(100% - 16px);
    top: 8px;
    padding: 8px 9px;
    border-radius: 16px;
  }

  .site-header .brand-logo {
    max-width: 128px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .hero .eyebrow,
  .section-kicker,
  .dark-kicker {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 12vw, 2.8rem);
    letter-spacing: 0;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    padding: 8px 9px;
  }

  .hero-notebook-wrap {
    min-height: 250px;
    margin-top: 0;
  }

  .hero-notebook {
    width: min(118%, 480px);
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.3));
  }

  .partner-badge {
    bottom: -10px;
    width: min(90vw, 272px);
    min-height: 52px;
    grid-template-columns: 104px auto 78px;
    padding: 9px 10px;
  }

  .partner-logo-wasuite {
    width: 104px;
  }

  .partner-logo-meta {
    width: 78px;
    height: 32px;
  }

  .platform-section h2,
  .features-section h2,
  .demo-section h2,
  .faq h2,
  .pricing h2,
  .lead-loss-section h2,
  .risk-section h2,
  .founder-section h2,
  .orbit-section h2,
  .mobility-section h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    line-height: 1.05;
  }

  .platform-section p,
  .features-section > .container > p:not(.section-kicker),
  .demo-section p,
  .dark-lead,
  .mobility-sublead {
    font-size: 0.96rem;
  }

  .platform-showcase {
    gap: 10px;
  }

  .platform-card {
    padding: 14px;
  }

  .feature-card-grid article,
  .pricing-grid article,
  .ecosystem-sales,
  .addons-grid article,
  .lead-loss-card,
  .demo-mockup,
  .faq-list details {
    padding: 16px;
  }

  .power-grid article,
  .power-grid article:nth-child(even) {
    text-align: left;
  }

  .power-grid h3,
  .power-grid p {
    margin-inline: 0;
  }

  .mobility-section {
    padding: 28px 14px;
  }

  .mobility-benefits,
  .mobility-platforms {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mobility-impact {
    padding: 18px;
  }

  .orbit-panel {
    min-height: 380px;
  }

  .orbit {
    transform: scale(0.72);
    transform-origin: center;
  }

  .billing-option {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .billing-option small {
    font-size: 0.58rem;
  }

  .pricing-grid article {
    padding: 18px;
  }

  .pricing-grid ul {
    gap: 9px;
  }

  .pricing-grid li {
    font-size: 0.86rem;
  }

  .plan-comparison-accordion {
    margin-block: 34px;
  }

  .comparison-header,
  .comparison-row {
    min-width: 560px;
  }

  .comparison-header strong,
  .comparison-header span,
  .comparison-row span,
  .comparison-row i {
    padding: 11px 12px;
  }

  .demo-mockup {
    min-height: 250px;
  }

  .demo-mockup button {
    width: 62px;
    height: 62px;
  }

  .demo-window {
    padding: 18px;
  }

  .footer-logo {
    max-width: 170px;
  }

  .footer-disclaimer {
    font-size: 0.78rem;
  }

  .footer-legal-links {
    display: grid;
    gap: 8px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float.is-expanded,
  .whatsapp-float:hover {
    width: 50px;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .site-header .brand-logo {
    max-width: 112px;
  }

  .header-cta {
    padding-inline: 9px;
    font-size: 0.61rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .partner-badge {
    grid-template-columns: 92px auto 70px;
    gap: 8px;
  }

  .partner-logo-wasuite {
    width: 92px;
  }

  .partner-logo-meta {
    width: 70px;
  }
}
