:root {
  --bg: #010101;
  --panel: #090b10;
  --panel-strong: #10141d;
  --line: #212735;
  --text: #f6f8ff;
  --muted: #aab3c5;
  --dim: #737f96;
  --blue: #0477ff;
  --blue-strong: #0000ee;
  --red: #ff233d;
  --cyan: #38d7ff;
  --success: #1fd672;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 10px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(4, 119, 255, 0.08), transparent 22rem),
    radial-gradient(circle at 15% 0%, rgba(255, 35, 61, 0.08), transparent 18rem),
    var(--bg);
  color: var(--text);
  font-family: "SF Pro Text", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 70%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 1, 1, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(56, 215, 255, 0.32);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(4, 119, 255, 0.12);
}

.section-pad {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 82px);
  min-height: calc(100vh - 78px);
  padding-top: clamp(44px, 6vw, 82px);
}

.hero-copy,
.hero-visual,
.section-heading,
.split-section,
.form-section,
.booking-layout,
.site-footer,
.legal-page {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, "Inter Display", Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  font-weight: 900;
}

h2 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  font-weight: 900;
}

h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.hero-subhead,
.section-heading p,
.copy-stack p,
.booking-intro p,
.legal-page p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-subhead {
  max-width: 720px;
  margin: 24px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong) 58%, #142fff);
  box-shadow: 0 18px 44px rgba(0, 0, 238, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.small-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
}

.risk-reducer {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.industry-tags span,
.benefit-grid div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.trust-row span {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.pipeline-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(155deg, rgba(4, 119, 255, 0.22), rgba(255, 35, 61, 0.06) 45%, rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
}

.pipeline-top,
.booking-toolbar,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-kicker {
  display: block;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pipeline-top strong,
.booking-toolbar strong {
  display: block;
  margin-top: 2px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.2rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 800;
}

.live-dot::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--success);
  box-shadow: 0 0 20px rgba(31, 214, 114, 0.7);
}

.pipeline-grid,
.demo-grid,
.setup-grid,
.pain-grid,
.benefit-grid {
  display: grid;
  gap: 14px;
}

.pipeline-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.pipeline-column,
.message-item,
.pain-item,
.setup-item,
.demo-step,
.faq-list details,
.lead-form,
.booking-panel,
.booking-summary,
.offer-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pipeline-column {
  min-height: 148px;
  padding: 14px;
}

.pipeline-column.active {
  border-color: rgba(56, 215, 255, 0.44);
  background: rgba(4, 119, 255, 0.16);
}

.pipeline-column span,
.message-item span,
.demo-step span,
.setup-item span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pipeline-column strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1;
}

.pipeline-column p,
.message-item p,
.demo-step p,
.setup-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.message-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.message-item {
  padding: 14px;
}

.problem-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 35, 61, 0.08), rgba(4, 119, 255, 0.055));
}

.section-heading {
  margin-bottom: clamp(26px, 5vw, 46px);
}

.section-heading p {
  max-width: 760px;
  margin: 18px 0 0;
}

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

.pain-item {
  padding: 18px;
  color: var(--text);
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 6vw, 72px);
}

.copy-stack {
  display: grid;
  gap: 14px;
}

.copy-stack p {
  margin: 0;
}

.text-link {
  color: var(--cyan);
  font-weight: 850;
}

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

.setup-item {
  min-height: 220px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.setup-item h3 {
  margin-top: 34px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border-top: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.045);
  counter-increment: flow;
}

.flow-list li::before {
  content: "0" counter(flow);
  color: var(--red);
  font-weight: 900;
}

.flow-list span {
  display: block;
  margin-top: 28px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.flow-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.demo-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 22px;
}

.demo-step {
  min-height: 170px;
  padding: 16px;
}

.demo-step strong {
  display: block;
  margin-top: 22px;
  font-family: Manrope, Inter, Arial, sans-serif;
  line-height: 1.15;
}

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

.benefit-grid div {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-weight: 800;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tags span {
  padding: 12px 16px;
  font-weight: 800;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 108px;
}

.offer-box {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 18px;
}

.offer-box strong {
  font-family: Manrope, Inter, Arial, sans-serif;
}

.offer-box span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(9, 11, 16, 0.88);
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.lead-form fieldset {
  border: 0;
  padding: 0;
}

.lead-form legend {
  padding: 0;
  margin-bottom: 8px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.chat-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: #05070b;
  outline: none;
}

.lead-form input,
.lead-form select,
.chat-form input {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 116px;
  padding: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.chat-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 215, 255, 0.14);
}

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

.checkbox-grid label,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 650;
}

.checkbox-grid input,
.consent-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

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

.form-status,
.slot-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status.error,
.slot-status.error {
  color: #ff8d9c;
}

.form-status.success,
.slot-status.success {
  color: var(--success);
}

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

.faq-list details {
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--dim);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(56, 215, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--blue));
  cursor: pointer;
  font-weight: 950;
  box-shadow: var(--shadow);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #07090d;
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: block;
}

.chat-header {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.chat-log {
  display: grid;
  gap: 10px;
  max-height: 280px;
  padding: 14px;
  overflow: auto;
}

.chat-log p {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.chat-log p.user-message {
  color: var(--text);
  background: rgba(4, 119, 255, 0.18);
}

.chat-log span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-form button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 800;
  padding: 0 12px;
}

.booking-body {
  min-height: 100vh;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.booking-intro h1,
.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.booking-summary {
  margin-top: 24px;
  padding: 18px;
}

.booking-summary p {
  margin: 8px 0 0;
  color: var(--muted);
}

.booking-panel {
  padding: clamp(18px, 3vw, 26px);
  background: rgba(9, 11, 16, 0.88);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.slot-button {
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: left;
  padding: 10px 12px;
}

.slot-button strong,
.slot-button span {
  display: block;
}

.slot-button span {
  color: var(--muted);
  font-size: 0.86rem;
}

.slot-button.selected {
  border-color: var(--cyan);
  background: rgba(4, 119, 255, 0.18);
}

.booking-actions {
  margin-top: 18px;
}

.compact-footer {
  padding-top: 24px;
}

.legal-page {
  max-width: 860px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-page p {
  margin: 14px 0 0;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .form-section,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .form-copy {
    position: static;
  }

  .pain-grid,
  .setup-grid,
  .flow-list,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand,
  .brand img {
    width: 132px;
  }

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

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pipeline-grid,
  .pain-grid,
  .setup-grid,
  .flow-list,
  .demo-grid,
  .benefit-grid,
  .checkbox-grid,
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .form-section,
  .booking-layout {
    gap: 24px;
  }

  .lead-form,
  .booking-panel {
    padding: 16px;
  }
}
