@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;1,9..144,600&display=swap");

:root {
  --pm-primary: #c45c26;
  --pm-primary-dark: #9a4520;
  --pm-primary-light: #f5ebe3;
  --pm-teal: #1a5c54;
  --pm-teal-light: #e6f2f0;
  --pm-cream: #faf6f1;
  --pm-cream-dark: #f0e8df;
  --pm-text: #1c1917;
  --pm-muted: #6b6560;
  --pm-border: #e8e0d8;
  --pm-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --pm-shadow-lg: 0 20px 50px rgba(28, 25, 23, 0.12);
  --pm-radius: 16px;
  --pm-radius-sm: 10px;
}

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

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--pm-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pm-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
.pm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pm-border);
  padding: 0.85rem 0;
}

.pm-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--pm-text);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
}

.pm-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pm-primary) 0%, var(--pm-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.pm-brand-accent {
  color: var(--pm-primary);
}

.pm-nav-link {
  color: var(--pm-muted);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.15s;
}

.pm-nav-link:hover {
  color: var(--pm-primary);
}

.btn-pm-primary {
  background: var(--pm-primary);
  border-color: var(--pm-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-pm-primary:hover {
  background: var(--pm-primary-dark);
  border-color: var(--pm-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 92, 38, 0.35);
}

.btn-pm-outline {
  color: var(--pm-teal);
  border: 2px solid var(--pm-teal);
  background: transparent;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
}

.btn-pm-outline:hover {
  background: var(--pm-teal);
  color: #fff;
}

.text-pm-primary {
  color: var(--pm-primary) !important;
}

.pm-main {
  flex: 1;
}

/* Hero */
.pm-hero {
  position: relative;
  background: var(--pm-cream);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.pm-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 92, 84, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pm-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pm-teal);
  margin-bottom: 1.25rem;
  box-shadow: var(--pm-shadow);
}

.pm-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pm-pulse 2s infinite;
}

@keyframes pm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pm-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.pm-hero-lead {
  font-size: 1.125rem;
  color: var(--pm-muted);
  line-height: 1.65;
  max-width: 520px;
}

.pm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.75rem;
}

.pm-hero-note {
  font-size: 0.85rem;
  color: var(--pm-muted);
  margin-top: 0.75rem;
}

/* Mock report card */
.pm-mock-report {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow-lg);
  overflow: hidden;
  transform: rotate(1deg);
  transition: transform 0.3s;
}

.pm-mock-report:hover {
  transform: rotate(0deg) translateY(-4px);
}

.pm-mock-header {
  background: linear-gradient(135deg, var(--pm-teal) 0%, #134a44 100%);
  color: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pm-mock-body {
  padding: 1.25rem;
}

.pm-mock-match {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--pm-cream);
}

.pm-mock-match:last-child {
  margin-bottom: 0;
}

.pm-mock-match-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pm-mock-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pm-teal);
  background: var(--pm-teal-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.pm-mock-score {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pm-primary);
}

.pm-mock-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.pm-mock-desc {
  font-size: 0.8rem;
  color: var(--pm-muted);
  line-height: 1.5;
  margin: 0;
}

/* Stats strip */
.pm-stats {
  background: var(--pm-teal);
  color: #fff;
  padding: 2rem 0;
}

.pm-stat-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.pm-stat-label {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* Section utilities */
.pm-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pm-primary);
  margin-bottom: 0.5rem;
}

.pm-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.pm-section-sub {
  color: var(--pm-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pm-bg-cream {
  background: var(--pm-cream);
}

.pm-bg-teal-soft {
  background: var(--pm-teal-light);
}

/* Channel cards */
.pm-channel-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pm-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pm-shadow-lg);
  border-color: var(--pm-primary-light);
}

.pm-channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pm-channel-icon-wrap.podcast { background: #fce8e8; }
.pm-channel-icon-wrap.youtube { background: #fee2e2; }
.pm-channel-icon-wrap.newsletter { background: #e0f2fe; }
.pm-channel-icon-wrap.community { background: #ede9fe; }
.pm-channel-icon-wrap.event { background: #fef3c7; }
.pm-channel-icon-wrap.ai { background: var(--pm-primary-light); }

.pm-channel-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pm-channel-card p {
  font-size: 0.9rem;
  color: var(--pm-muted);
  margin: 0;
  line-height: 1.55;
}

/* Steps */
.pm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 991px) {
  .pm-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 575px) {
  .pm-steps {
    grid-template-columns: 1fr;
  }
}

.pm-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.pm-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(196, 92, 38, 0.35);
}

.pm-step h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pm-step p {
  font-size: 0.875rem;
  color: var(--pm-muted);
  margin: 0;
  line-height: 1.55;
}

/* Pricing */
.pm-tier-card {
  background: #fff;
  border: 2px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pm-tier-card.featured {
  border-color: var(--pm-primary);
  box-shadow: var(--pm-shadow-lg);
  position: relative;
}

.pm-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pm-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.pm-tier-price {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pm-text);
  line-height: 1;
}

.pm-tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--pm-muted);
  font-family: "DM Sans", sans-serif;
}

.pm-tier-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pm-tier-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--pm-cream-dark);
}

.pm-tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pm-teal);
  font-weight: 700;
}

/* Compare */
.pm-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pm-border);
  align-items: start;
}

.pm-compare-row:last-child {
  border-bottom: none;
}

.pm-compare-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  overflow: hidden;
  box-shadow: var(--pm-shadow);
}

.pm-compare-header {
  background: var(--pm-cream);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--pm-border);
}

.pm-compare-bad {
  color: var(--pm-muted);
  font-size: 0.9rem;
}

.pm-compare-good {
  color: var(--pm-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.pm-compare-good strong {
  color: var(--pm-primary);
}

/* FAQ */
.pm-faq .accordion-item {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm) !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.pm-faq .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--pm-text);
  background: #fff;
  box-shadow: none !important;
  padding: 1.1rem 1.25rem;
}

.pm-faq .accordion-button:not(.collapsed) {
  color: var(--pm-primary);
  background: var(--pm-primary-light);
}

.pm-faq .accordion-body {
  color: var(--pm-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  padding: 0 1.25rem 1.25rem;
}

/* CTA band */
.pm-cta-band {
  background: linear-gradient(135deg, var(--pm-teal) 0%, #134a44 50%, var(--pm-primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.pm-cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.pm-cta-band p {
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.pm-cta-band .btn-pm-primary {
  background: #fff;
  color: var(--pm-teal);
  border-color: #fff;
  font-size: 1.05rem;
  padding: 0.75rem 2rem;
}

.pm-cta-band .btn-pm-primary:hover {
  background: var(--pm-cream);
  color: var(--pm-teal);
  border-color: var(--pm-cream);
}

/* Footer */
.pm-footer {
  background: #1c1917;
  color: #a8a29e;
  padding: 2.5rem 0;
  margin-top: auto;
}

.pm-footer a {
  color: #f5ebe3;
  text-decoration: none;
}

.pm-footer a:hover {
  color: var(--pm-primary);
  text-decoration: underline;
}

.pm-footer-nav a {
  margin: 0 0.75rem;
  font-size: 0.9rem;
}

/* Legal pages */
.pm-legal-hero {
  background: linear-gradient(135deg, var(--pm-cream) 0%, #fff 60%, var(--pm-teal-light) 100%);
  padding: 3rem 0;
  text-align: center;
}

.pm-legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.pm-legal-content h2 {
  font-size: 1.15rem;
  border-bottom: 1px solid var(--pm-border);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Section card (generic) */
.pm-section-card {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm);
  padding: 1.25rem;
  background: #fff;
  height: 100%;
}
