:root {
  --bg: #0b0f17;
  --panel: #121a2a;
  --panel-2: #0f1624;
  --text: #e9eefc;
  --muted: #a9b4cc;
  --accent: #4da3ff;
  --accent-2: #7c5cff;
  --border: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  background: radial-gradient(circle at top, #121a2a, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
}

.hero h1 {
  font-size: 56px;
  margin: 0 0 10px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77,163,255,0.25);
}

/* SECTIONS */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* WHAT WE DO GRID */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}




/* PRICING GRID */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 14px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(77,163,255,0.4);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 18px;
  color: var(--muted);
}

.highlight {
  border: 1px solid rgba(77,163,255,0.6);
  box-shadow: 0 0 0 1px rgba(77,163,255,0.1);
}

/* LISTS */
ul, ol {
  color: var(--muted);
}

/* HOW IT WORKS GRID */
.steps {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
}


/* FOOTER */
footer {
  text-align: center;
  padding: 50px;
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 40px;
  }
}

