:root {
  --bg: #08111f;
  --bg-soft: #0d1a2e;
  --panel: rgba(15, 27, 46, 0.78);
  --panel-strong: rgba(16, 30, 52, 0.94);
  --text: #eef4ff;
  --muted: #aab8ce;
  --line: rgba(146, 170, 206, 0.18);
  --accent: #59f1bd;
  --accent-2: #47a3ff;
  --accent-3: #ffd064;
  --danger: #ff6d6d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(71, 163, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(89, 241, 189, 0.14), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #08101c 100%);
  color: var(--text);
  font-family: Manrope, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  z-index: -1;
}

.site-bg-a {
  left: -8rem;
  top: 8rem;
  background: #1a7cff;
}

.site-bg-b {
  right: -10rem;
  top: 32rem;
  background: #00c28a;
}

.topbar,
.section,

.objection-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.objection-card p,
.trust-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 17px;
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px;
  font-weight: 800;
  font-size: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
}

.faq-item[open] {
  border-color: rgba(89, 241, 189, 0.35);
  box-shadow: 0 0 0 1px rgba(89, 241, 189, 0.08) inset;
}

.footer {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06101e;
  font-family: Unbounded, sans-serif;
  font-size: 18px;
}

.brand strong,
.footer strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.brand span,
.footer span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.topnav {
  display: flex;
  gap: 22px;
}

.topnav a,
.footer a {
  color: var(--muted);
  text-decoration: none;
}

.topnav a:hover,
.footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #7ff6d0);
  color: #07111d;
  box-shadow: 0 16px 44px rgba(89, 241, 189, 0.28);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
}

.button.wide {
  width: 100%;
}

.section {
  padding: 54px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 38px;
}

.hero-copy,
.hero-panel,
.pricing-card,
.route-shell {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.03;
  max-width: 11ch;
}

h2 {
  font-family: Unbounded, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  max-width: 15ch;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.hero-text,
.pricing-text,
.section-heading p:last-child,
.scenario-card p,
.proof-card p,
.step p,
.route-copy p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 18px;
}

.hero-text {
  max-width: 36rem;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(89, 241, 189, 0.12);
}

.hero-result-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 21, 38, 0.96), rgba(12, 25, 44, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-label {
  margin: 0 0 12px;
  color: var(--accent-3);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-result-card p,
.hero-result-card li,
.mini-route {
  color: var(--muted);
  line-height: 1.55;
}

.hero-result-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.mini-route {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-route strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

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

.stats article,
.scenario-card,
.step,
.proof-card,
.route-cards article,
.objection-card,
.trust-card,
.faq-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.stats strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 26px;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.scenario-grid,
.proof-grid,
.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.scenario-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(71, 163, 255, 0.2), rgba(89, 241, 189, 0.2));
  font-size: 24px;
  margin-bottom: 18px;
}

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

.step span {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: Unbounded, sans-serif;
  color: var(--accent-3);
}

.route-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 26px;
}

.route-cards {
  display: grid;
  gap: 16px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
}

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

.pricing-list li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.footer {
  padding: 24px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sales-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #77f3cf);
  color: #06101e;
  box-shadow: 0 24px 60px rgba(89, 241, 189, 0.34);
  cursor: pointer;
  font: inherit;
}

.sales-fab span {
  font-size: 22px;
}

.sales-fab strong {
  font-size: 16px;
  font-weight: 800;
}

.sales-chat {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 31;
  width: min(390px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 16, 29, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sales-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sales-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(89, 241, 189, 0.12), rgba(71, 163, 255, 0.1));
}

.sales-chat__header strong {
  display: block;
  font-size: 16px;
}

.sales-chat__header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.sales-chat__close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.sales-chat__body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.sales-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 15px;
}

.sales-message--bot {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.sales-message--user {
  margin-left: auto;
  background: rgba(89, 241, 189, 0.14);
  color: var(--text);
}

.sales-chat__options {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.sales-option {
  width: 100%;
  text-align: left;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.sales-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(89, 241, 189, 0.35);
}

.sales-chat__footer {
  padding: 0 18px 18px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
  }

  .hero,
  .route-shell,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .stats,
  .steps,
  .scenario-grid,
  .proof-grid,
  .objection-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topnav {
    display: none;
  }

  .topbar,
  .section,
  .footer {
    width: min(100vw - 20px, 1180px);
  }

  .hero-copy,
  .hero-panel,
  .pricing-card,
  .route-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .stats,
  .steps,
  .scenario-grid,
  .proof-grid,
  .objection-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

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

  .sales-fab {
    right: 14px;
    bottom: 14px;
    min-height: 58px;
    padding: 0 18px;
  }

  .sales-chat {
    right: 12px;
    bottom: 84px;
  }
}
