:root {
  --bg-color: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent-color: #000000;
  --primary-accent: #2563eb;
  --secondary-bg: #f8fafc;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: 'Lora', serif;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

/* Hero */
.hero {
  padding: 120px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px;
}

/* Editor Preview */
.preview-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
}

.editor-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.15);
  border: 1px solid #eef2f6;
  overflow: hidden;
  text-align: left;
}

.mockup-header {
  background: #fdfdfd;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-content {
  padding: 80px 15% 100px;
}

.mockup-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mockup-body {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #334155;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--secondary-bg);
}

.price-card {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.price-val {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
  letter-spacing: -2px;
}

.price-val span {
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list i {
  color: #10b981;
}

/* CTA Button */
.btn-cta {
  background: var(--accent-color);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-cta:hover {
  background: #222;
  color: white;
  transform: translateY(-2px);
}

/* Manifesto */
.manifesto {
  padding: 100px 0;
}

.badge-premium {
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

/* Community */
.community-section {
  padding: 100px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background: white;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.community-card h4 {
  font-weight: 700;
  margin: 12px 0 8px;
}

.community-card p {
  flex-grow: 1;
}

.community-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-accent);
}

.community-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.2s ease;
}

.community-link:hover {
  color: var(--primary-accent);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .mockup-content {
    padding: 40px 20px;
  }

  .price-card {
    padding: 30px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }
}