:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f9fafb;
  --white: #ffffff;
}

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

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

nav a {
  margin-left: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.deploy-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

/* Features */
.features {
  padding: 3.5rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

code {
  background: #ede9fe;
  color: var(--primary-dark);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Content pages */
.page-content {
  padding: 3.5rem 0;
}

.page-content h1 {
  margin-bottom: 1rem;
}

.page-content p,
.page-content ol {
  margin-bottom: 1rem;
}

.page-content ol {
  padding-left: 1.5rem;
}

/* Contact cards */
.contact-cards {
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}
