@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 20%, 12%);
  --muted: hsl(220, 10%, 46%);
  --border: hsl(220, 13%, 92%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(14, 80%, 50%);
  --primary-soft: hsla(14, 80%, 50%, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

.pricing-section {
  background: var(--background);
  padding: 3.5rem 1.5rem;
}

@media (min-width: 640px) {
  .pricing-section {
    padding: 5rem 1.5rem;
  }
}

.pricing-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.pricing-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin: 0 0 2rem;
}

@media (min-width: 640px) {
  .pricing-heading {
    font-size: 1.875rem;
  }
}

.pricing-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card-body {
  text-align: center;
}

.pricing-plan-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1.25rem;
}

.pricing-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-was {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}

#price {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

@media (min-width: 640px) {
  #price {
    font-size: 3.75rem;
  }
}

.pricing-period {
  font-size: 1.125rem;
  color: var(--muted);
}

.pricing-badge {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
}

.pricing-benefits {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  max-width: 20rem;
  text-align: left;
}

.pricing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsla(220, 20%, 12%, 0.8);
  margin-bottom: 0.75rem;
}

.pricing-dot {
  margin-top: 0.35rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: hsla(220, 20%, 12%, 0.4);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  color: var(--background);
  background: var(--foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.15s;
}

.pricing-cta:hover {
  background: hsl(220, 20%, 20%);
}

.pricing-cta:active {
  transform: scale(0.99);
}

.pricing-footnote {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
