:root {
  --bg: #f7f8fc;
  --surface: rgba(255,255,255,0.82);
  --text: #101828;
  --muted: #5f6b7a;
  --line: rgba(16, 24, 40, 0.08);
  --primary: #6d5efc;
  --primary-dark: #4b39d3;
  --accent: #10b981;
  --shadow: 0 20px 60px rgba(37, 45, 75, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 94, 252, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.10), transparent 30%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 252, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
.logo span { color: var(--primary); }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a.active { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 1.6rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; padding: 14px 22px; border-radius: 999px; font-weight: 700;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary { background: rgba(109, 94, 252, 0.09); color: var(--primary-dark); box-shadow: none; }
.btn-light { background: white; color: var(--text); box-shadow: none; }
.btn-sm { padding: 11px 16px; }
.hero, .page-hero { padding: 88px 0 48px; }
.hero-grid, .split, .grid.two, .grid.three, .footer-grid { display: grid; gap: 24px; }
.hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
.page-hero .lead, .hero .lead { color: var(--muted); font-size: 1.1rem; max-width: 680px; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: var(--primary-dark); font-size: .82rem; font-weight: 800; letter-spacing: .12em; }
.eyebrow.light { color: rgba(255,255,255,.75); }
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 14px; color: var(--muted); line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; }
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: 1.05rem; }
.hero-stats span { color: var(--muted); font-size: .95rem; }
.section { padding: 52px 0; }
.alt { background: rgba(255,255,255,0.45); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
}
.gradient-card {
  min-height: 380px;
  background: linear-gradient(160deg, rgba(109,94,252,.95), rgba(43,28,120,.95));
  color: white;
  display: grid;
  align-content: center;
  gap: 18px;
}
.gradient-card .mini-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
}
.gradient-card .mini-panel span,
.dark-card p { color: rgba(255,255,255,.78); }
.mini-panel strong { display: block; margin-top: 6px; line-height: 1.4; }
.section-heading { margin-bottom: 24px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.split { grid-template-columns: 1fr 1fr; align-items: center; }
.text-link { color: var(--primary-dark); font-weight: 700; }
.checklist { gap: 14px; display: grid; }
.checklist div::before { content: '✓'; color: var(--accent); font-weight: 800; margin-right: 10px; }
.cta-section { padding-top: 28px; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.dark-card { background: linear-gradient(145deg, #171a29, #242b42); color: white; }
.site-footer { padding: 28px 0 42px; }
.footer-grid { grid-template-columns: 1.2fr .8fr 1fr; align-items: start; }
.footer-grid a, .footer-grid p { display: block; margin-bottom: 10px; }
.clean-list { padding-left: 18px; margin: 0; color: var(--muted); }
.clean-list li { margin-bottom: 10px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); font: inherit;
}
.form-note { font-size: .95rem; margin-top: 14px; }
@media (max-width: 900px) {
  .hero-grid, .split, .grid.two, .grid.three, .footer-grid, .cta { grid-template-columns: 1fr; }
  .site-nav {
    display: none; position: absolute; top: 78px; right: 16px; left: 16px;
    background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 20px;
    padding: 14px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
}


.form-grid.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form select {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); font: inherit;
}
.contact-info-card { align-content: start; }
.contact-details-list { display: grid; gap: 18px; margin-top: 26px; }
.contact-details-list div {
  padding-top: 16px; border-top: 1px solid var(--line);
  display: grid; gap: 6px;
}
.contact-details-list strong, .form-heading-row h2 { color: var(--text); }
.form-heading-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px;
}
.form-intro { margin-bottom: 0; }
.badge-live {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 10px 14px; border-radius: 999px; background: rgba(16,185,129,.12); color: #057857; font-weight: 700; font-size: .9rem;
}
.badge-live::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: currentColor; }
.submit-btn { border: 0; cursor: pointer; }
.submit-btn:disabled { opacity: .7; cursor: wait; }
.form-status {
  min-height: 24px; margin: 4px 0 0; font-weight: 600; line-height: 1.5;
}
.form-status.pending { color: var(--primary-dark); }
.form-status.success { color: #057857; }
.form-status.error { color: #b42318; }
.setup-note {
  margin-top: 18px; padding: 16px 18px; border-radius: 16px; background: rgba(109,94,252,.08); color: var(--text); border: 1px solid rgba(109,94,252,.12);
}
.setup-note code { font-family: inherit; font-weight: 700; word-break: break-word; }
.botcheck { display: none !important; }
@media (max-width: 900px) {
  .form-grid.two-col { grid-template-columns: 1fr; }
  .form-heading-row { flex-direction: column; }
}
