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

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --border: #e5e7eb;
  --text: #1f2937;
  --text-muted: #6b7280;
  --accent: #4f46e5;
  --accent-hover: #6366f1;
  --accent-light: #eef2ff;
  --green: #059669;
  --green-light: #ecfdf5;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
nav .links a {
  margin-left: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
nav .links a:hover { color: var(--text); }

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text);
}
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}
.hero .cta:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }

/* Features */
.features {
  padding: 60px 0;
}
.features h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.feature:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.feature .icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  padding: 60px 0;
  text-align: center;
}
.pricing h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  margin: 0 auto;
}
.pricing .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}
.pricing .period {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing .trial {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pricing .note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* How it works */
.how {
  padding: 60px 0;
}
.how h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.steps {
  display: grid;
  gap: 20px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.step-num {
  background: var(--accent);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-text h3 { font-size: 1rem; margin-bottom: 2px; }
.step-text p { font-size: 0.9rem; color: var(--text-muted); }

/* Legal pages */
.legal {
  padding: 60px 0;
}
.legal h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 1.15rem;
  margin: 28px 0 8px;
  color: var(--text);
}
.legal p, .legal li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* Contact */
.contact {
  padding: 80px 0;
  text-align: center;
}
.contact h1 { font-size: 1.75rem; margin-bottom: 16px; }
.contact p {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact .email {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}
footer a { color: var(--text-muted); margin: 0 12px; }
footer a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 48px 0 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .features, .how, .pricing { padding: 40px 0; }
  nav .links a { margin-left: 16px; font-size: 0.8rem; }
}
