:root {
  --bg: #0b1220;
  --bg-2: #0f1830;
  --card: #121b34;
  --line: #22304f;
  --text: #eef1fb;
  --muted: #9aa5c4;
  --accent: #5b8def;
  --accent-2: #7dd8c6;
}

* { box-sizing: border-box; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: rgba(11,18,32,0.9);
  backdrop-filter: blur(8px);
  z-index: 10;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); text-decoration: none; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }

nav a { color: var(--muted); text-decoration: none; margin-left: 28px; font-size: 0.9rem; transition: color .15s; }
nav a:hover, nav a.active { color: var(--accent-2); }

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.16,.8,.24,1), box-shadow .2s, border-color .2s;
}
.btn-primary { background: var(--accent); color: #05060a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(91,141,239,0.3); }
.btn-outline { border: 1px solid var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--accent-2); transform: translateY(-2px); }

.hero { padding: 100px 0 70px; text-align: center; }
.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(125,216,198,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 20ch;
  margin-inline: auto;
}
.hero p { color: var(--muted); max-width: 50ch; margin: 0 auto 34px; font-size: 1.08rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-bottom: 60px; }

.mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mock-stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.mock-stat .label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.mock-stat .value { font-size: 1.4rem; font-weight: 700; margin-top: 6px; }
.mock-stat .value.up { color: var(--accent-2); }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 90px; margin-top: 16px; }
.mock-bars i { flex: 1; background: linear-gradient(180deg, var(--accent), var(--accent-2)); border-radius: 4px 4px 0 0; display: block; }

section { padding: 80px 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  transition: transform .3s cubic-bezier(.16,.8,.24,1), border-color .3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature .icon { font-size: 1.4rem; margin-bottom: 14px; }
.feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
}
.plan.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.plan .name { font-weight: 700; margin-bottom: 8px; }
.plan .price { font-size: 2rem; font-weight: 700; margin-bottom: 4px; }
.plan .price span { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 26px; color: var(--muted); font-size: 0.9rem; }
.plan li { padding: 6px 0; border-top: 1px solid var(--line); }
.plan li:first-child { border-top: none; }
.plan .btn { width: 100%; text-align: center; box-sizing: border-box; }

.cta-band { text-align: center; }
.cta-band p { color: var(--muted); margin: 0 auto 28px; max-width: 46ch; }

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { color: var(--accent-2); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dm-result {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(125,216,198,0.1);
  border: 1px solid rgba(125,216,198,0.25);
  font-size: 0.88rem;
  display: none;
}
.dm-result.show { display: block; }

@media (max-width: 800px) {
  nav { display: none; }
  .features, .pricing, .mock-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
