/* ── Subscriptions hero ───────────────────────────────────── */
.subs-hero {
  padding: 72px 40px 52px;
  text-align: center;
  position: relative;
}

.subs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.subs-hero h1 {
  font-family: 'Dominican SC', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
}

.subs-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

/* ── Plan grid ────────────────────────────────────────────── */
.subs-grid-section {
  padding: 8px 40px 80px;
}

.subs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

/* ── Plan card ────────────────────────────────────────────── */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.plan-card-featured {
  border-color: var(--border-a);
  background: rgba(201, 122, 44, 0.06);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-family: 'Philosopher Bold', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.plan-tier {
  font-family: 'Dominican SC', serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.plan-price {
  font-family: 'Dominican SC', serif;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.plan-price span {
  font-family: 'Philosopher', serif;
  font-size: 14px;
  color: var(--text3);
}

.plan-desc {
  font-family: 'Philosopher', serif;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  font-family: 'Philosopher', serif;
  font-size: 14px;
  color: var(--text2);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Philosopher Bold', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.plan-cta-primary {
  background: var(--accent);
  border: none;
  color: #fff;
}

.plan-cta-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.plan-cta-secondary {
  background: transparent;
  border: 1px solid var(--border-a);
  color: var(--text);
}

.plan-cta-secondary:hover {
  background: rgba(255, 238, 205, 0.06);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .subs-hero {
    padding: 48px 20px 40px;
  }

  .subs-grid-section {
    padding: 8px 16px 64px;
  }

  .plan-card {
    padding: 28px 24px;
  }
}
