:root {
  --bg: #06111d;
  --bg-soft: #0b1829;
  --panel: rgba(8, 18, 31, 0.72);
  --panel-strong: rgba(8, 18, 31, 0.92);
  --line: rgba(138, 183, 255, 0.16);
  --line-strong: rgba(138, 183, 255, 0.3);
  --text: #edf4ff;
  --muted: #9ab0cd;
  --muted-strong: #bfd0e9;
  --accent: #5ce1c3;
  --accent-strong: #73b6ff;
  --danger: #ff8f8f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --site-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(92, 225, 195, 0.18), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(115, 182, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #06111d 0%, #081322 46%, #050a12 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.58;
  z-index: 0;
}

.page-glow-left {
  width: 280px;
  height: 280px;
  top: 96px;
  left: -80px;
  background: rgba(92, 225, 195, 0.16);
}

.page-glow-right {
  width: 340px;
  height: 340px;
  top: 120px;
  right: -110px;
  background: rgba(115, 182, 255, 0.16);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: var(--site-width);
  margin: 0 auto;
  padding: 24px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92, 225, 195, 0.22), rgba(115, 182, 255, 0.28));
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), #9cefd8);
  color: #06211e;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(92, 225, 195, 0.18);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(9, 18, 33, 0.5);
  color: var(--text);
  font-weight: 700;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-full {
  width: 100%;
}

.section {
  width: var(--site-width);
  margin: 0 auto;
  padding: 36px 0;
}

.hero {
  padding-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.benefit-panel p,
.resource-card p,
.fit-card p,
.proof-card span,
.timeline-item p,
.bubble,
.ops-item p,
.dashboard-row span,
.site-footer p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 38rem;
  font-size: 1.12rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-card,
.benefit-panel,
.resource-card,
.fit-card,
.feature-card,
.card-panel,
.trust-item {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.proof-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.card-panel {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.phone-topbar,
.ops-header,
.dashboard-row,
.timeline-item,
.ops-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.phone-topbar {
  align-items: center;
  margin-bottom: 20px;
}

.phone-topbar p,
.ops-label {
  margin: 0;
  color: var(--muted-strong);
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(92, 225, 195, 0.12);
}

.status-badge,
.ops-chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(92, 225, 195, 0.28);
  color: var(--accent);
  background: rgba(92, 225, 195, 0.08);
  font-size: 0.84rem;
}

.chat-flow {
  display: grid;
  gap: 12px;
}

.bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.98rem;
}

.bubble-in {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.bubble-out {
  margin-left: auto;
  background: rgba(115, 182, 255, 0.14);
  border: 1px solid rgba(115, 182, 255, 0.2);
}

.bubble-strong {
  color: var(--text);
  background: linear-gradient(135deg, rgba(92, 225, 195, 0.14), rgba(115, 182, 255, 0.18));
}

.ops-header h2,
.section-heading h2,
.cta-copy h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ops-list,
.steps-grid,
.benefits-grid,
.resources-grid,
.fit-grid {
  display: grid;
  gap: 16px;
}

.ops-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ops-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ops-step,
.card-number {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(115, 182, 255, 0.12);
  border: 1px solid rgba(115, 182, 255, 0.24);
  color: var(--accent-strong);
  font-weight: 800;
}

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

.trust-item {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.trust-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

.section-heading p {
  margin: 12px 0 0;
  max-width: 46rem;
}

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

.feature-card,
.benefit-panel,
.resource-card,
.fit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.benefit-panel h3,
.resource-card h3,
.fit-card h3 {
  margin: 20px 0 10px;
  font-size: 1.16rem;
}

.benefits-grid,
.resources-grid,
.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-section .section-heading {
  max-width: 780px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
}

.timeline-item {
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-time {
  min-width: 74px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.demo-dashboard {
  display: grid;
  gap: 14px;
  align-content: start;
}

.dashboard-row {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.dashboard-row strong {
  text-align: right;
}

.status-positive {
  color: var(--accent);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(11, 24, 41, 0.96), rgba(7, 16, 29, 0.92)),
    radial-gradient(circle at top right, rgba(115, 182, 255, 0.18), transparent 24%);
  box-shadow: var(--shadow);
}

.cta-copy p {
  max-width: 36rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(3, 8, 15, 0.44);
  color: var(--text);
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(115, 182, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(115, 182, 255, 0.08);
}

.inline-contact {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  width: var(--site-width);
  margin: 0 auto;
  padding: 10px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 20px;
  color: var(--muted);
}

.site-footer p {
  max-width: 32rem;
}

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

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .site-header,
  .site-footer,
  .section {
    width: min(100vw - 32px, 960px);
  }

  .hero,
  .demo-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .trust-strip,
  .steps-grid,
  .benefits-grid,
  .resources-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow: auto;
    padding-bottom: 4px;
  }

  .hero-proof,
  .trust-strip,
  .steps-grid,
  .benefits-grid,
  .resources-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .card-panel,
  .feature-card,
  .benefit-panel,
  .resource-card,
  .fit-card,
  .trust-item {
    border-radius: 22px;
  }

  .section {
    padding: 28px 0;
  }
}
