:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --blue: #0f67ff;
  --blue-dark: #084ec6;
  --line: #e4e9f2;
  --dark: #07111f;
  --green: #16a34a;
  --soft-blue: #eaf2ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 248, 251, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 233, 242, 0.9);
}
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -0.04em; font-size: 1.4rem; }
.logo {
  width: 38px; height: 38px; border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), #65a4ff);
  display: grid; place-items: center; color: white; font-weight: 900;
  box-shadow: 0 10px 25px rgba(15, 103, 255, 0.28);
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.95rem; color: var(--muted); font-weight: 700; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px; border-radius: 999px;
  font-weight: 800; border: 1px solid transparent; transition: 0.2s ease; cursor: pointer;
}
.btn-primary { background: var(--blue); color: white; box-shadow: 0 16px 35px rgba(15, 103, 255, 0.25); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--text); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.hero { padding: 88px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: var(--soft-blue); color: var(--blue-dark);
  padding: 8px 14px; border-radius: 999px; font-size: 0.88rem; font-weight: 800; margin-bottom: 22px;
}
.dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 0.95; letter-spacing: -0.075em; margin-bottom: 24px; }
.hero p, .lead { font-size: 1.18rem; color: var(--muted); max-width: 720px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 0.95rem; font-weight: 700; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 900; }
.dashboard-card {
  background: radial-gradient(circle at top left, #1d74ff 0, #07111f 46%, #050914 100%);
  border-radius: 34px; padding: 22px; box-shadow: 0 35px 80px rgba(7, 17, 31, 0.25); color: white;
}
.window-bar { display: flex; gap: 7px; margin-bottom: 20px; }
.window-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.45); }
.mock-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mock-title h3 { font-size: 1.2rem; letter-spacing: -0.03em; }
.live-pill { font-size: 0.78rem; background: rgba(22, 163, 74, 0.22); color: #8ff2b4; border: 1px solid rgba(143, 242, 180, 0.35); padding: 6px 10px; border-radius: 999px; font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 16px; }
.stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.13); border-radius: 22px; padding: 18px; }
.stat strong { font-size: 1.65rem; display: block; letter-spacing: -0.04em; }
.stat small { color: rgba(255,255,255,0.68); font-weight: 700; }
.chart { height: 170px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden; }
.chart svg { width: 100%; height: 100%; }
section { padding: 76px 0; }
.page-hero { padding: 82px 0 38px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .page-hero h1 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -0.06em; margin-bottom: 16px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: 26px; box-shadow: 0 12px 30px rgba(17, 24, 39, 0.04); }
.icon { width: 46px; height: 46px; border-radius: 16px; background: var(--soft-blue); color: var(--blue); display: grid; place-items: center; font-weight: 900; font-size: 1.1rem; margin-bottom: 18px; }
.card h3 { font-size: 1.2rem; margin-bottom: 9px; letter-spacing: -0.03em; }
.card p { color: var(--muted); font-size: 0.98rem; }
.dark-section {
  background: var(--dark); color: white; border-radius: 42px; padding: 60px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
}
.dark-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.06em; margin-bottom: 18px; }
.dark-section p, .dark-section span { color: rgba(255,255,255,0.68); }
.list { display: grid; gap: 14px; }
.list-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; }
.check { color: #8ff2b4; font-weight: 900; }
.contact-panel { background: linear-gradient(135deg, #0f67ff, #07111f); color: white; border-radius: 42px; padding: 56px; display: grid; grid-template-columns: 1fr 0.95fr; gap: 34px; align-items: start; }
.contact-panel h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.06em; margin-bottom: 18px; }
.contact-panel p { color: rgba(255,255,255,0.76); font-size: 1.05rem; }
.contact-box, .form-box { background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.16); border-radius: 28px; padding: 26px; }
.contact-line { margin-bottom: 18px; }
.contact-box label, .form-box label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.68); margin-bottom: 6px; font-weight: 800; }
.contact-line strong { font-size: 1.05rem; }
.form-grid { display: grid; gap: 14px; }
input, textarea, select { width: 100%; border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 13px 14px; background: rgba(255,255,255,0.12); color: white; outline: none; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.52); }
select option { color: #111827; }
.note { color: rgba(255,255,255,0.64); font-size: 0.88rem; margin-top: 12px; }
footer { padding: 34px 0 46px; color: var(--muted); font-size: 0.92rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.callout { background: var(--dark); color: white; border-radius: 34px; padding: 42px; }
.callout p { color: rgba(255,255,255,0.72); margin: 12px 0 24px; }
@media (max-width: 900px) {
  .hero-grid, .dark-section, .contact-panel, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .dark-section, .contact-panel { padding: 34px; border-radius: 30px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 56px; }
  .cards, .stats { grid-template-columns: 1fr; }
  .dashboard-card { border-radius: 26px; }
}
