.subscribe-page,
.archer-products-page {
  --sub-ink: #0f2747;
  --sub-muted: #5b6b7c;
  --sub-accent: #0b3d91;
  --sub-accent-2: #c45c26;
  --sub-paper: #f4f7fb;
  --sub-card: #ffffff;
  --sub-line: #d7e2ef;
  --ap-ink: #0f2747;
  --ap-muted: #5b6b7c;
  --ap-blue: #0b3d91;
  --ap-blue-2: #1557c0;
  --ap-teal: #0e8f7a;
  --ap-warn: #c45c26;
  --ap-paper: #f4f7fb;
  --ap-card: #ffffff;
  --ap-line: #d7e2ef;
  color: var(--ap-ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(11, 61, 145, 0.16), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(14, 143, 122, 0.12), transparent 55%),
    linear-gradient(180deg, #eef3fa 0%, var(--ap-paper) 38%, #fff 100%);
}

.ap-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  padding-top: 1.5rem;
}

.ap-hero {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.ap-kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ap-blue);
}

.ap-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.ap-lede,
.ap-desc,
.ap-tagline,
.ap-access-label,
.ap-section-head p {
  color: var(--ap-muted);
}

.ap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0 1.25rem;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 750;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
}

.ap-btn-primary {
  color: #fff;
  background: var(--ap-blue);
  border-color: var(--ap-blue);
}

.ap-btn-primary:hover {
  background: var(--ap-blue-2);
}

.ap-btn-ghost {
  color: var(--ap-ink);
  background: transparent;
  border-color: var(--ap-line);
}

.ap-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 34rem;
}

.ap-stats div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ap-line);
  padding: 0.7rem 0.8rem;
}

.ap-stats strong {
  display: block;
  font-size: 1rem;
}

.ap-stats span {
  color: var(--ap-muted);
  font-size: 0.82rem;
}

.ap-active {
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #b9d7c9;
  background: #eef8f3;
}

.ap-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.ap-steps div {
  background: var(--ap-card);
  border: 1px solid var(--ap-line);
  padding: 0.9rem 1rem;
}

.ap-steps span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ap-teal);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.ap-section-head {
  margin-bottom: 1rem;
}

.ap-section-head h2,
.ap-compare-note h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ap-card {
  position: relative;
  background: var(--ap-card);
  border: 1px solid var(--ap-line);
  padding: 1.25rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ap-card.is-selected {
  outline: 2px solid var(--ap-teal, #0e8f7a);
  outline-offset: 3px;
}

.ap-card.is-featured {
  border-color: var(--ap-blue);
  box-shadow: 0 18px 40px rgba(15, 39, 71, 0.08);
}

.ap-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--ap-warn);
  padding: 0.25rem 0.45rem;
}

.ap-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.ap-tagline {
  margin: 0 0 0.55rem;
  font-weight: 650;
}

.ap-desc {
  margin: 0 0 1rem;
  min-height: 3.4em;
}

.ap-price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ap-amount {
  font-size: 2.1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.ap-compare {
  margin-left: 0.4rem;
  color: var(--ap-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.ap-compare.is-empty {
  display: none;
}

.ap-durations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ap-duration {
  appearance: none;
  border: 1px solid var(--ap-line);
  background: #f8fbff;
  color: var(--ap-ink);
  padding: 0.45rem 0.55rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 4.2rem;
}

.ap-duration em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  color: var(--ap-teal);
  font-weight: 800;
  text-transform: uppercase;
}

.ap-duration.is-active {
  border-color: var(--ap-blue);
  background: #e8f0ff;
}

.ap-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  flex: 1;
}

.ap-features li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
}

.ap-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--ap-teal);
}

.ap-buy-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--ap-muted);
}

.ap-pay-actions {
  display: grid;
  gap: 0.45rem;
}

.ap-buy-link {
  width: 100%;
  justify-content: space-between;
}

.ap-warn {
  color: #8a2f1f;
}

.ap-compare-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--ap-line);
}

.ap-compare-note ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--ap-muted);
}

@media (max-width: 900px) {
  .ap-grid,
  .ap-steps,
  .ap-stats {
    grid-template-columns: 1fr;
  }
}
