:root {
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --brand-light: #eef2ff;
  --text: #0f172a;
  --muted: #64748b;
  --light: #94a3b8;
  --bg: #ffffff;
  --section-bg: #f8fafc;
  --border: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 20px 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; color: white; }
.nav-logo-text { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--brand); color: white !important; padding: 8px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.15s;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(79,70,229,0.3); }

.hero { text-align: center; padding: 80px 24px 60px; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 { font-size: 48px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.hero h1 span { color: var(--brand); }
.hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--brand); color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,0.3); }
.btn-outline {
  background: white; color: var(--text); padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid var(--border); transition: all 0.15s;
}
.btn-outline:hover { background: var(--section-bg); border-color: var(--brand); }
.trust-line { font-size: 13px; color: var(--light); margin-top: 24px; }

section { padding: 80px 24px; }
section.alt { background: var(--section-bg); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 40px; }

.plugin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.plugin-card {
  background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: all 0.2s; text-decoration: none; color: var(--text); display: block;
}
.plugin-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(79,70,229,0.08); transform: translateY(-2px); }
.plugin-icon { font-size: 32px; margin-bottom: 16px; }
.plugin-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.plugin-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.plugin-link { font-size: 13px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 4px; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.why-item { display: flex; gap: 12px; }
.why-check {
  width: 24px; height: 24px; border-radius: 6px; background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  color: var(--brand); font-size: 14px; font-weight: 800;
}
.why-item p { font-size: 14px; color: var(--muted); }
.why-item strong { color: var(--text); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 24px; background: white; border-radius: 14px; border: 1px solid var(--border); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px; background: var(--brand); color: white;
  font-size: 14px; font-weight: 800; margin-bottom: 12px;
}
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); }

.cta-section { text-align: center; padding: 80px 24px; }
.cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: var(--muted); margin-bottom: 24px; }

footer {
  border-top: 1px solid var(--border); padding: 40px 24px; text-align: center;
  font-size: 13px; color: var(--light);
}
footer a { color: var(--brand); text-decoration: none; }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .nav-links { display: none; }
  .plugin-grid { grid-template-columns: 1fr; }
}
