:root {
  --bg: #07111f;
  --panel: #0d1728;
  --panel-soft: #121f34;
  --text: #eef3ff;
  --muted: #9aa7c0;
  --accent: #5de4ff;
  --accent-2: #7b61ff;
  --accent-soft: rgba(93, 228, 255, 0.12);
  --border: rgba(154, 167, 192, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 228, 255, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(123, 97, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091423 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid var(--border);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, #5de4ff, #7b61ff);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__name { font-weight: 700; letter-spacing: 0.02em; }
.brand__sub { font-size: 12px; color: var(--muted); }
.nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: var(--muted); }
.nav a:hover { color: var(--text); }

.hero { padding: 58px 0 28px; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: stretch; }
.hero__content {
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(17, 27, 48, 0.96), rgba(9, 18, 34, 0.96)),
    radial-gradient(circle at top left, rgba(93, 228, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(123, 97, 255, 0.16), transparent 30%);
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.78); margin-bottom: 16px;
}

.hero__content .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero h1, .section__head h2, .cta h2 {
  margin: 0;
  font-weight: 400;
  line-height: 1.15;
}
.hero h1 { font-size: clamp(32px, 4vw, 54px); max-width: 12ch; }
.lead { max-width: 62ch; margin: 18px 0 0; font-size: 18px; color: rgba(255,255,255,0.84); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 18px; border-radius: 14px; font-weight: 600; border: 1px solid transparent;
}
.btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06101d; }
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost { border-color: rgba(93, 228, 255, 0.32); color: #eef3ff; }
.btn--ghost:hover { background: rgba(93, 228, 255, 0.08); }
.btn--full { width: 100%; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px;
}
.hero__stats div {
  background: rgba(93, 228, 255, 0.08); border: 1px solid rgba(93, 228, 255, 0.16);
  border-radius: 18px; padding: 16px;
}
.hero__stats strong { display: block; font-size: 18px; margin-bottom: 6px; }
.hero__stats span { color: rgba(238, 243, 255, 0.84); font-size: 13px; }

.hero__card {
  background: rgba(13, 23, 40, 0.9);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card__header {
  padding: 20px 24px; background: var(--panel-soft);
  font-weight: 700; color: var(--accent);
}
.card__body { padding: 24px; }
.card__item { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; }
.card__item span { color: var(--muted); }
.card__item strong { font-weight: 600; color: var(--text); }
.card__divider { height: 1px; background: var(--border); margin: 18px 0 22px; }
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.lead-form input, .lead-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 14px 15px;
  font: inherit; color: var(--text); background: #fff; resize: vertical;
}
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid rgba(31, 79, 139, 0.2); border-color: var(--accent); }
.form-status { min-height: 24px; font-size: 14px; color: var(--muted); }
.form-status.is-success { color: #1d7a43; }
.form-status.is-error { color: #b42318; }

.section { padding: 54px 0; }
.section--alt { background: rgba(255,255,255,0.03); }
.section__head { margin-bottom: 24px; }
.section__head .eyebrow, .cta .eyebrow { color: var(--accent); }
.section__head h2, .cta h2 { font-size: clamp(28px, 3vw, 42px); max-width: 18ch; }
.section__head p, .cta p { max-width: 68ch; color: var(--muted); margin: 14px 0 0; }

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-card, .feature, .cta {
  background: rgba(13, 23, 40, 0.9); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow);
}
.info-card:hover, .feature:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.info-card { padding: 24px; }
.info-card span { display: inline-block; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.info-card h3, .feature h3 { margin: 0 0 10px; font-size: 20px; }
.info-card p, .feature p { margin: 0; color: var(--muted); }
.feature { padding: 24px; }
.feature::before {
  content: '';
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-bottom: 18px;
}

.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips span {
  padding: 11px 14px; border-radius: 999px;  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.section--cta { padding-bottom: 72px; }
.cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px;
}
.cta h2 { max-width: 22ch; }
.footer { padding: 20px 0 34px; color: var(--muted); }
.footer__inner { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--border); padding-top: 18px; font-size: 14px; }

@media (max-width: 960px) {
  .hero__grid, .grid--3, .grid--2, .cta { grid-template-columns: 1fr; display: grid; }
  .topbar__inner { flex-direction: column; align-items: flex-start; }
  .nav { gap: 14px; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero, .section { padding: 32px 0; }
  .hero__content, .hero__card, .info-card, .feature, .cta { border-radius: 20px; }
  .hero__content { padding: 26px; }
  .card__body { padding: 20px; }
}
