:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0f0f0f;
  color: #e0e0e0;
}

.pricing-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 16px 48px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #7c5cfc;
  letter-spacing: -0.5px;
}

.pricing-header p {
  margin-top: 10px;
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-tier {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-tier.featured {
  border-color: #4c3fa8;
  box-shadow: 0 0 0 1px rgba(124, 92, 252, 0.25);
}

.pricing-tier h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f3f4f6;
}

.pricing-tier .price-line {
  font-size: 0.88rem;
  color: #9ca3af;
}

.pricing-tier ul {
  list-style: none;
  font-size: 0.86rem;
  color: #c4c9d4;
  line-height: 1.55;
  flex: 1;
}

.pricing-tier li {
  padding: 4px 0 4px 1.1em;
  position: relative;
}

.pricing-tier li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c5cfc;
  font-size: 0.75em;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.pricing-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.pricing-actions .btn-primary {
  background: #7c5cfc;
  color: #fff;
  border: none;
}

.pricing-actions .btn-primary:hover {
  background: #6d4ed6;
}

.pricing-actions .btn-secondary {
  background: transparent;
  color: #c4c9d4;
  border: 1px solid #3f3f46;
}

.pricing-actions .btn-secondary:hover {
  border-color: #7c5cfc;
  color: #e5e7eb;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.55;
  max-width: 32rem;
  margin: 0 auto;
}

.pricing-footnote a {
  color: #a78bfa;
}
