:root {
  --md-primary-fg-color: #815175;
  --md-primary-fg-color--light: #a06a94;
  --md-primary-fg-color--dark: #5e3a54;
  --md-accent-fg-color: #c084b0;
}

.md-header {
  background-color: #815175;
}

.md-tabs {
  background-color: #6d4464;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #815175;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero-feature {
  text-align: center;
  max-width: 180px;
}

.hero-feature .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-feature strong {
  display: block;
  color: #815175;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background: #815175;
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #6d4464;
}

/* Pricing table — override Material's default table styles */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead tr {
  background: #815175 !important;
}

.pricing-table th {
  background: #815175 !important;
  color: #fff !important;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.pricing-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e0d4dd;
  color: var(--md-typeset-color) !important;
  background: transparent !important;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #f7f0f5 !important;
  color: var(--md-typeset-color) !important;
}

.pricing-table tbody tr:nth-child(odd) td {
  background: #fff !important;
  color: var(--md-typeset-color) !important;
}

/* Dark mode overrides */
[data-md-color-scheme="slate"] .pricing-table tbody tr:nth-child(even) td {
  background: #2d2030 !important;
}
[data-md-color-scheme="slate"] .pricing-table tbody tr:nth-child(odd) td {
  background: #1e1e2e !important;
}

.check { color: #815175 !important; font-weight: 700; }
.cross { color: #999 !important; }
