:root {
  --color-bg: #080b20;
  --color-bg-deep: #030515;
  --color-panel: rgba(13, 17, 45, 0.78);
  --color-panel-strong: #10163a;
  --color-surface: #11183d;
  --color-surface-soft: #171f4a;
  --color-line: rgba(126, 144, 188, 0.2);
  --color-line-strong: rgba(0, 224, 240, 0.32);
  --color-text: #edf3ff;
  --color-heading: #fbfdff;
  --color-muted: #a8b4cf;
  --color-faint: #7482a6;
  --color-primary: #000060;
  --color-primary-soft: #11178f;
  --color-cyan: #00e0f0;
  --color-cyan-soft: #7df8ff;
  --color-violet: #7438f0;
  --color-magenta: #d72cf0;
  --color-dark: #030515;
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-brand: 0 20px 60px rgba(0, 224, 240, 0.12);
  --radius: 8px;
  --container: 1180px;
  --section-space: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 52% 0%, rgba(0, 224, 240, 0.11), transparent 34rem),
    radial-gradient(circle at 86% 16%, rgba(215, 44, 240, 0.08), transparent 28rem),
    linear-gradient(180deg, #080b20 0%, #080b20 38%, #030515 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  color: var(--color-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.7vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--color-muted);
  line-height: 1.65;
}

ul {
  margin-top: 0;
}

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

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.centered {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: #c9fbff;
  background: rgba(0, 224, 240, 0.085);
  border: 1px solid rgba(0, 224, 240, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  margin: 8px;
  padding: 10px 14px;
  clip: auto;
  color: #06101d;
  background: var(--color-cyan);
  border-radius: var(--radius);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 5, 21, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header-slot {
  min-height: 74px;
}

.site-header.is-scrolled {
  background: rgba(3, 5, 21, 0.92);
  border-color: rgba(0, 224, 240, 0.13);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 7px 10px;
  background: rgba(248, 251, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: auto;
  height: 34px;
  max-width: 160px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #cbd4e8;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu a {
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--color-cyan-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(0, 224, 240, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #d8e7f7;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-violet) 54%, var(--color-magenta));
  box-shadow: 0 18px 40px rgba(116, 56, 240, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 52px rgba(215, 44, 240, 0.18);
}

.btn-secondary {
  color: #e7f5ff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(148, 163, 184, 0.24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 224, 240, 0.38);
  background: rgba(0, 224, 240, 0.075);
}

.btn-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.84rem;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-top: 74px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 224, 240, 0.075), transparent 40%),
    linear-gradient(180deg, transparent 74%, var(--color-bg-deep));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: 58px;
}

.hero-subtitle {
  max-width: 660px;
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  color: #d4fbff;
  background: rgba(0, 224, 240, 0.075);
  border: 1px solid rgba(0, 224, 240, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.chip.blue {
  color: #ece7ff;
  background: rgba(116, 56, 240, 0.14);
  border-color: rgba(116, 56, 240, 0.25);
}

.dashboard-shell {
  position: relative;
}

.dashboard-glow {
  position: absolute;
  inset: 10% 5%;
  background: linear-gradient(135deg, rgba(0, 224, 240, 0.18), rgba(215, 44, 240, 0.13));
  filter: blur(42px);
  opacity: 0.74;
  pointer-events: none;
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.84);
  box-shadow: var(--shadow-soft), var(--shadow-brand);
}

.window-topbar {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 8px;
  padding: 0 18px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
}

.window-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #475569;
}

.window-topbar span:first-child {
  background: var(--color-cyan);
}

.window-topbar span:nth-child(2) {
  background: var(--color-violet);
}

.window-topbar span:nth-child(3) {
  background: #64748b;
}

.window-topbar strong {
  margin-left: 8px;
}

.dashboard-body {
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card,
.lead-focus-card,
.pipeline-panel,
.list-item,
.surface-card,
.timeline-card,
.system-card,
.flow-card,
.feature-card,
.comparison-card,
.audience-grid article,
.impact-grid article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.metric-card {
  padding: 14px;
}

.metric-card span,
.metric-card small,
.pipeline-stage span {
  display: block;
  color: var(--color-faint);
  font-size: 0.72rem;
  font-weight: 500;
}

.metric-card strong {
  display: block;
  margin: 8px 0 3px;
  color: #fff;
  font-size: 1.04rem;
}

.metric-card.success {
  border-color: rgba(116, 56, 240, 0.3);
}

.metric-card.warning {
  border-color: rgba(0, 224, 240, 0.28);
}

.lead-focus-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 224, 240, 0.09), rgba(116, 56, 240, 0.08));
}

.lead-focus-title {
  display: block;
  margin: 14px 0 6px;
  color: #fff;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.12;
}

.lead-focus-card p {
  margin-bottom: 0;
}

.score-ring {
  display: grid;
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--color-magenta) 0 92%, rgba(148, 163, 184, 0.18) 92% 100%);
}

.score-ring span,
.score-ring small {
  grid-area: 1 / 1;
}

.score-ring span {
  color: #fff;
  font-size: 2.35rem;
  font-weight: 800;
}

.score-ring small {
  align-self: end;
  margin-bottom: 21px;
  color: #b8c9dd;
  font-size: 0.66rem;
  font-weight: 600;
}

.pipeline-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
}

.pipeline-stage i {
  display: block;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}

.pipeline-stage.is-active i {
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
}

.dashboard-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
}

.list-item strong,
.list-item small {
  display: block;
}

.list-item small {
  color: var(--color-faint);
}

.list-item .chip {
  margin-left: auto;
}

.dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot-green {
  background: var(--color-magenta);
  box-shadow: 0 0 0 6px rgba(215, 44, 240, 0.1);
}

.dot-blue {
  background: var(--color-cyan);
  box-shadow: 0 0 0 6px rgba(0, 224, 240, 0.1);
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 196px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 20, 36, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.floating-card-one {
  right: -18px;
  top: 78px;
}

.floating-card-two {
  left: -24px;
  bottom: 82px;
}

.problem-section,
.features-section,
.impact-section {
  background: rgba(3, 7, 18, 0.36);
}

.problem-grid,
.feature-grid,
.benefit-grid,
.audience-grid,
.comparison-grid,
.impact-grid {
  display: grid;
  gap: 18px;
}

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

.surface-card,
.feature-card,
.flow-card,
.comparison-card,
.audience-grid article,
.impact-grid article {
  padding: 24px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.surface-card {
  min-height: 242px;
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: #04111d;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 64px;
}

.split-grid.reverse {
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
}

.story-section,
.flow-section,
.audience-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--color-bg);
}

.timeline-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(0, 224, 240, 0.04));
}

.timeline-step {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 6px rgba(0, 224, 240, 0.09);
}

.timeline-step.muted::before {
  background: #64748b;
}

.timeline-step.active::before {
  background: var(--color-cyan);
}

.timeline-step.success::before {
  background: var(--color-magenta);
}

.timeline-step span,
.timeline-step strong {
  display: block;
}

.timeline-step span {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.timeline-step strong {
  color: #fff;
}

.solution-section,
.comparison-section,
.final-cta {
  background: var(--color-bg-deep);
}

.system-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.1), rgba(116, 56, 240, 0.075)),
    rgba(255, 255, 255, 0.04);
}

.system-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.system-header strong {
  color: #fff;
}

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

.system-grid span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  color: #eaf8ff;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 600;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d8e7f6;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-magenta);
  box-shadow: 0 0 0 5px rgba(215, 44, 240, 0.1);
}

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

.flow-card {
  position: relative;
  min-height: 228px;
}

.flow-card::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-line-strong), transparent);
}

.flow-card:last-child::after {
  display: none;
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--color-cyan);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.feature-card {
  min-height: 218px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
}

.feature-card h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
}

.benefits-section {
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.07), rgba(116, 56, 240, 0.045)),
    var(--color-bg);
}

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

.benefit-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  color: #e6f2ff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 500;
}

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

.audience-grid article {
  min-height: 188px;
}

.comparison-grid {
  grid-template-columns: repeat(3, 1fr);
}

.comparison-card {
  background: rgba(255, 255, 255, 0.04);
}

.comparison-card.highlighted {
  border-color: rgba(215, 44, 240, 0.34);
  background: linear-gradient(135deg, rgba(0, 224, 240, 0.085), rgba(116, 56, 240, 0.07));
}

.comparison-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
}

.comparison-card.highlighted li::before {
  background: var(--color-magenta);
}

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

.impact-grid article {
  min-height: 154px;
  display: grid;
  align-content: center;
  text-align: center;
}

.impact-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.impact-grid span {
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 500;
}

.final-cta {
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.12), rgba(215, 44, 240, 0.08)),
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  pointer-events: none;
}

.final-cta-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-panel div:first-child {
  max-width: 760px;
}

.final-cta-panel p {
  max-width: 650px;
  margin-bottom: 0;
}

.site-footer {
  padding: 60px 0 30px;
  color: rgba(236, 246, 255, 0.78);
  background: #030712;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.pricing-page .pricing-hero {
  padding-top: 76px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 224, 240, 0.075), transparent 42%),
    linear-gradient(180deg, transparent 72%, var(--color-bg-deep));
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 58px;
}

.pricing-hero-copy p {
  max-width: 680px;
  font-size: 1.05rem;
}

.pricing-trust {
  margin-top: 20px;
  font-size: 0.94rem;
}

.pricing-summary-card,
.pricing-plan-card,
.enterprise-card,
.faq-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.pricing-summary-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.08), rgba(116, 56, 240, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(126, 144, 188, 0.16);
}

.summary-row:first-child {
  padding-top: 0;
}

.summary-row span {
  color: var(--color-muted);
}

.summary-row strong {
  color: #fff;
  font-weight: 600;
}

.summary-meter {
  height: 9px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.summary-meter span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet), var(--color-magenta));
}

.pricing-plans-section,
.compare-plans-section {
  background: rgba(3, 5, 21, 0.64);
}

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

.pricing-plan-grid.two-plan-grid {
  grid-template-columns: repeat(2, minmax(280px, 430px));
  justify-content: center;
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032));
}

.pricing-plan-card.featured-plan {
  border-color: rgba(215, 44, 240, 0.4);
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.075), rgba(116, 56, 240, 0.075)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(116, 56, 240, 0.16);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: #fff;
  border: 1px solid rgba(215, 44, 240, 0.42);
  border-radius: 999px;
  background: rgba(215, 44, 240, 0.16);
  font-size: 0.72rem;
  font-weight: 600;
}

.plan-label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-cyan-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.plan-top h3 {
  max-width: 310px;
  min-height: 54px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 8px;
}

.plan-price strong {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.plan-price span,
.plan-top p {
  color: var(--color-muted);
}

.plan-top p {
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.plan-feature-list,
.plan-excluded-list,
.enterprise-feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.plan-feature-list {
  flex: 1;
}

.plan-feature-list li,
.plan-excluded-list li,
.enterprise-feature-list li {
  position: relative;
  padding-left: 24px;
  color: #dbe5f7;
  font-size: 0.94rem;
}

.plan-feature-list li::before,
.plan-excluded-list li::before,
.enterprise-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 5px rgba(0, 224, 240, 0.08);
}

.plan-excluded-list {
  flex: 1;
  margin-top: -10px;
}

.plan-excluded-list li {
  color: var(--color-muted);
}

.plan-excluded-list li::before {
  top: 8px;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 43%, var(--color-magenta) 43% 57%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, var(--color-magenta) 43% 57%, transparent 57%);
  border-radius: 0;
  box-shadow: none;
}

.enterprise-section {
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.06), rgba(215, 44, 240, 0.055)),
    var(--color-bg);
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 44px;
}

.enterprise-panel p {
  max-width: 680px;
}

.enterprise-card {
  padding: 26px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.plans-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.plans-table-compact {
  min-width: 640px;
}

.plans-table th,
.plans-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(126, 144, 188, 0.16);
  color: var(--color-muted);
  font-size: 0.92rem;
  text-align: left;
  vertical-align: top;
}

.plans-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: rgba(8, 11, 32, 0.96);
  font-weight: 600;
}

.plans-table tbody th {
  color: #eef4ff;
  font-weight: 500;
}

.plans-table tbody td {
  color: #c8d4ec;
}

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

.table-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table-status::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
}

.table-status.is-yes::before {
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--color-cyan);
  border-bottom: 2px solid var(--color-cyan);
  transform: rotate(-45deg);
}

.table-status.is-no::before {
  width: 11px;
  height: 11px;
  background:
    linear-gradient(45deg, transparent 43%, var(--color-magenta) 43% 57%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, var(--color-magenta) 43% 57%, transparent 57%);
}

.pricing-faq-section {
  background: var(--color-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  padding: 24px;
}

.faq-card p {
  margin-bottom: 0;
}

.contact-page .contact-hero {
  padding-top: 76px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 224, 240, 0.075), transparent 42%),
    linear-gradient(180deg, transparent 72%, var(--color-bg-deep));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: start;
  gap: 58px;
}

.contact-copy p {
  max-width: 650px;
  font-size: 1.05rem;
}

.contact-info-card,
.contact-form-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.contact-info-card {
  max-width: 520px;
  margin-top: 34px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 224, 240, 0.075), rgba(116, 56, 240, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.contact-info-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.contact-info-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-info-card li {
  position: relative;
  padding-left: 24px;
  color: #dbe5f7;
}

.contact-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 5px rgba(0, 224, 240, 0.08);
}

.contact-form-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: #eef4ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field label span {
  color: var(--color-cyan);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: #f8fbff;
  border: 1px solid rgba(126, 144, 188, 0.26);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(3, 5, 21, 0.58);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-faint);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 224, 240, 0.55);
  background: rgba(3, 5, 21, 0.78);
  box-shadow: 0 0 0 4px rgba(0, 224, 240, 0.08);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(215, 44, 240, 0.65);
}

.field-error {
  min-height: 18px;
  color: #ff9df6;
  font-size: 0.82rem;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #d4fbff;
  border: 1px solid rgba(0, 224, 240, 0.24);
  background: rgba(0, 224, 240, 0.08);
}

.form-status.is-error {
  color: #ffd8fb;
  border: 1px solid rgba(215, 44, 240, 0.3);
  background: rgba(215, 44, 240, 0.09);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.66;
  transform: none;
}

.policy-page .policy-hero {
  padding-top: 76px;
  padding-bottom: 44px;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(0, 224, 240, 0.075), transparent 42%),
    linear-gradient(180deg, transparent 72%, var(--color-bg-deep));
}

.policy-hero-content {
  max-width: 820px;
}

.policy-hero-content p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.policy-content-section {
  padding-top: 26px;
  background: rgba(3, 5, 21, 0.64);
}

.policy-shell {
  max-width: 940px;
}

.policy-card {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.policy-section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(126, 144, 188, 0.16);
}

.policy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
}

.policy-section h3 {
  margin: 24px 0 10px;
  color: #eef4ff;
  font-size: 1.02rem;
}

.policy-section p {
  margin-bottom: 14px;
}

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

.policy-section li {
  position: relative;
  padding-left: 24px;
  color: #dbe5f7;
}

.policy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 5px rgba(0, 224, 240, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, 1fr);
  gap: 30px;
}

.footer-wordmark {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.footer-brand p {
  max-width: 340px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  color: #fff;
  font-size: 0.86rem;
}

.footer-links a {
  width: fit-content;
  color: rgba(220, 235, 250, 0.68);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: rgba(220, 235, 250, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 12px;
    font-size: 0.84rem;
  }

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

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

  .pricing-plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .plan-top h3 {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(5, 11, 22, 0.98);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .dashboard-shell,
  .system-card,
  .timeline-card {
    max-width: 760px;
  }

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

  .flow-card::after {
    display: none;
  }

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

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

  .pricing-hero-grid,
  .contact-layout,
  .enterprise-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pricing-summary-card,
  .contact-info-card,
  .contact-form-card,
  .enterprise-card {
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  :root {
    --section-space: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

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

  h1 {
    font-size: clamp(2.125rem, 10vw, 2.65rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .dashboard-body {
    padding: 14px;
  }

  .metric-row,
  .pipeline-panel,
  .problem-grid,
  .flow-grid,
  .feature-grid,
  .benefit-grid,
  .audience-grid,
  .comparison-grid,
  .impact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-focus-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-ring {
    width: 104px;
    height: 104px;
  }

  .list-item {
    align-items: flex-start;
  }

  .list-item .chip {
    display: none;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .surface-card,
  .feature-card,
  .flow-card,
  .audience-grid article {
    min-height: 0;
  }

  .flow-card span {
    margin-bottom: 28px;
  }

  .system-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pricing-page .pricing-hero {
    padding-top: 54px;
  }

  .contact-page .contact-hero {
    padding-top: 54px;
  }

  .policy-page .policy-hero {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-plan-card,
  .contact-form-card,
  .contact-info-card,
  .enterprise-card,
  .faq-card {
    padding: 22px;
  }

  .popular-badge {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }

  .plans-table {
    min-width: 760px;
  }

  .plans-table th,
  .plans-table td {
    padding: 13px 14px;
  }
}
