:root {
  --bg: #070c15;
  --bg-soft: #0b1220;
  --panel: #101827;
  --panel-2: #121d2f;
  --border: #243149;
  --text: #f7f9ff;
  --muted: #97a7c1;
  --blue: #2f73ff;
  --blue-2: #69a2ff;
  --green: #21d47b;
  --cyan: #21d4d4;
  --red: #ff4766;
  --yellow: #f5c542;
  --shadow: 0 28px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 5%, rgba(47,115,255,.14), transparent 26%),
    radial-gradient(circle at 10% 30%, rgba(33,212,212,.08), transparent 20%),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell { overflow: hidden; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(47,115,255,.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13.5px;
  white-space: nowrap;
}

.nav a:hover { color: var(--text); }

.nav-cta {
  color: white !important;
  background: var(--blue);
  padding: 10px 16px;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  color: white;
  background: transparent;
  border: 0;
  font-size: 24px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: .78fr 1.4fr;
  gap: 60px;
  align-items: center;
  padding-top: 70px;
}

.eyebrow {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(46px, 6vw, 78px);
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
}

h3 { font-size: 21px; }

.hero-text,
.section-heading p,
.product-copy > p,
.pilot p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text { max-width: 650px; margin: 26px 0 34px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  background: linear-gradient(135deg, var(--blue), #4e8cff);
  box-shadow: 0 14px 40px rgba(47,115,255,.28);
}

.secondary {
  border-color: var(--border);
  background: rgba(255,255,255,.03);
}

.full { width: 100%; }

.trust-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust-row span {
  color: #b8c4d8;
  font-size: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  padding: 7px 10px;
  border-radius: 999px;
}

.hero-visual { position: relative; }

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .5;
}

.glow-one {
  width: 270px;
  height: 270px;
  background: var(--blue);
  right: 10%;
  top: -10%;
}

.glow-two {
  width: 210px;
  height: 210px;
  background: var(--cyan);
  bottom: -15%;
  left: 5%;
}

.product-frame {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #2d3d59;
  background: #08111f;
  box-shadow: var(--shadow);
}

.product-frame img { width: 100%; }

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #101827;
}

.frame-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34445f;
}

.frame-title {
  margin-left: auto;
  margin-right: auto;
  color: #8495b1;
  font-size: 11px;
}

.stats-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stats-strip div {
  background: var(--panel);
  padding: 28px;
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong { font-size: 20px; }
.stats-strip span { color: var(--muted); font-size: 13px; margin-top: 5px; }

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.tour-carousel { position: relative; }

.tour-viewport { overflow: hidden; }

.tour-track {
  display: flex;
  transition: transform .5s ease;
}

.tour-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.tour-slide .product-frame img { width: 100%; }

.tour-caption {
  max-width: 640px;
  margin: 26px auto 0;
  text-align: center;
}

.tour-caption p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

.tour-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8,14,24,.85);
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background .2s ease, transform .2s ease;
}

.tour-nav:hover { background: rgba(47,115,255,.35); }
.tour-nav.prev { left: -8px; }
.tour-nav.next { right: -8px; }

.tour-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.tour-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.tour-dots button.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .tour-nav { display: none; }
}

.section-heading p { max-width: 720px; }

.value-section {
  padding-top: 40px;
}

.narrow {
  max-width: 700px;
}

.outcomes-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-card,
.step-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,29,47,.96), rgba(12,20,34,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.outcome-card { padding: 28px; }

.mini-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}

.outcome-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  font-size: 14px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  padding: 28px 22px;
}

.step-num {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18,29,47,.96), rgba(12,20,34,.96));
}

.feature-card.accent {
  border-color: rgba(47,115,255,.55);
  box-shadow: inset 0 0 40px rgba(47,115,255,.06);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(47,115,255,.12);
  color: var(--blue-2);
  margin-bottom: 28px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.product-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  color: #c7d1e3;
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.use-case-grid article {
  padding: 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}

.case-number {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
}

.use-case-grid p { color: var(--muted); font-size: 14px; }

.pilot {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: center;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 26px 28px;
}

.pricing-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-card,
.trust-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,29,47,.96), rgba(12,20,34,.96));
  border-radius: 18px;
  padding: 26px 22px;
}

.pricing-card.highlight {
  border-color: rgba(47,115,255,.58);
  box-shadow: inset 0 0 30px rgba(47,115,255,.08);
}

.plan-name {
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 10px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: normal;
}

.price-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.pricing-card ul,
.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: #dfe7f5;
  font-size: 14px;
}

.pricing-card li::before,
.trust-card li::before {
  content: "•";
  color: var(--green);
  margin-right: 8px;
}

.pilot-card,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pilot-card { padding: 34px; }

.pilot-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
  color: #c9d3e4;
}

.pilot-card li::before {
  content: "•";
  color: var(--green);
  margin-right: 10px;
}

.contact-card {
  padding: 42px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.contact-meta {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(47,115,255,.28);
  border-radius: 10px;
  background: rgba(47,115,255,.06);
  color: #dfeafc;
}

.contact-meta p {
  margin: 0;
  font-size: 14px;
}

.contact-meta a {
  color: var(--blue-2);
  font-weight: 600;
}

form {
  display: grid;
  gap: 15px;
}

label {
  color: #cbd5e5;
  font-size: 13px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  margin-top: 7px;
  color: white;
  background: #0a1220;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(47,115,255,.35);
  border-color: var(--blue);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 70px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand { color: white; margin-bottom: 16px; }

.footer-links { margin-top: 18px; }

.footer-links a {
  color: var(--blue-2);
  font-weight: 600;
}

.footer-links a:hover { color: var(--text); }

.footer-links span { color: var(--border); margin: 0 8px; }

.copyright { margin-top: 28px; }

@media (max-width: 980px) {
  .hero,
  .product-section,
  .pilot,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .feature-grid,
  .use-case-grid,
  .outcomes-grid,
  .steps-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-frame { transform: none; }
}

@media (max-width: 720px) {
  .topbar { width: min(100% - 28px, 1180px); }

  .menu-toggle { display: block; }

  .nav {
    position: absolute;
    z-index: 20;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #0d1524;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }

  .hero { padding-top: 45px; gap: 45px; }

  .feature-grid,
  .use-case-grid,
  .outcomes-grid,
  .steps-grid,
  .pricing-grid,
  .trust-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .contact-card { padding: 26px; }

  h1 { font-size: 45px; }
}
