/**
 * /subscribe — Neopoet Premium landing.
 *
 * Token-driven (--np-*) with plain fallbacks so the page holds up if the
 * custom theme ever isn't active. No hardcoded light backgrounds: every
 * surface reads from the theme tokens, so dark mode inherits for free
 * (the previous inline-styled version was a dark-mode trap).
 */

.np-subscribe {
  max-width: 760px;
  margin: 2em auto;
  padding: 0 var(--np-space-4, 1em);
}

.np-subscribe__title {
  text-align: center;
  font-family: var(--np-font-serif, Georgia, serif);
}

.np-subscribe__lede {
  text-align: center;
  font-size: 1.1em;
  color: var(--np-text-secondary, #444);
  max-width: 56ch;
  margin: 0 auto 1.5em;
}

/* ── Perks ─────────────────────────────────────────────── */

.np-subscribe__perks {
  margin: 2em 0;
}

.np-subscribe__perks-heading {
  font-family: var(--np-font-sans, sans-serif);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--np-text-muted, #666);
  border-bottom: 1px solid var(--np-border-secondary, #ddd);
  padding-bottom: 0.4em;
}

.np-subscribe__perk-list {
  list-style: none;
  margin: 1em 0 0;
  padding: 0;
  display: grid;
  gap: var(--np-space-4, 1em);
}

@media (min-width: 600px) {
  .np-subscribe__perk-list {
    grid-template-columns: 1fr 1fr;
  }
}

.np-subscribe__perk strong {
  display: block;
  font-family: var(--np-font-serif, Georgia, serif);
  margin-bottom: 0.15em;
}

.np-subscribe__perk p {
  margin: 0;
  color: var(--np-text-secondary, #555);
  font-size: 0.95em;
}

/* ── Status cards (already-premium / trial) ────────────── */

.np-subscribe__card {
  background: var(--np-bg-secondary, #f6f6f4);
  border: 1px solid var(--np-border-secondary, #ddd);
  border-radius: var(--np-radius-md, 6px);
  padding: var(--np-space-5, 1.2em);
  text-align: center;
  margin-top: 1.5em;
}

.np-subscribe__card--thanks {
  border-color: var(--np-color-success, #2e7d32);
}

.np-subscribe__card--trial {
  border-color: var(--np-border-accent-subtle, #d8c8e8);
  background: var(--np-bg-accent-subtle, #faf7fd);
}

.np-subscribe__card p {
  margin: 0.6em 0 0;
}

.np-subscribe__card .np-subscribe__fineprint {
  font-size: 0.9em;
  color: var(--np-text-muted, #666);
}

/* ── Tiles ─────────────────────────────────────────────── */

.np-subscribe__tiles {
  display: flex;
  gap: var(--np-space-4, 1em);
  flex-wrap: wrap;
  margin-top: 2em;
  justify-content: center;
}

.np-subscribe__tile {
  flex: 1 1 300px;
  max-width: 340px;
  border: 1px solid var(--np-border-primary, #999);
  border-radius: var(--np-radius-lg, 8px);
  padding: var(--np-space-6, 1.5em);
  background: var(--np-bg-primary, #fff);
}

.np-subscribe__tile--yearly {
  border: 2px solid var(--np-color-accent, #2a6ebb);
}

.np-subscribe__tile h2 {
  margin-top: 0;
  font-family: var(--np-font-serif, Georgia, serif);
}

.np-subscribe__price {
  font-size: 2em;
  margin: 0.2em 0;
  font-weight: bold;
  font-family: var(--np-font-serif, Georgia, serif);
}

.np-subscribe__price-unit {
  font-size: 0.5em;
  font-weight: normal;
}

.np-subscribe__price-note {
  color: var(--np-color-accent-deep, #2a6ebb);
  margin: 0.3em 0;
  min-height: 1.4em;
}

.np-subscribe__tile-blurb {
  color: var(--np-text-secondary, #555);
}

/* ── Footer note ───────────────────────────────────────── */

.np-subscribe__footnote {
  text-align: center;
  color: var(--np-text-muted, #777);
  margin-top: 2em;
  font-size: 0.9em;
}
