/* ═══════════════════════════════════════════════════════════════════
   PODCAST PRODUCTION SUITE — Landing Page Styles
   Paste this into: WordPress Dashboard → Appearance → Customize → Additional CSS
   ═══════════════════════════════════════════════════════════════════ */

/* RESET & BASE */
.pps-wrap *, .pps-wrap *::before, .pps-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pps-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #f0ede8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* TYPOGRAPHY */
.pps-wrap h1, .pps-wrap h2, .pps-wrap h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* HERO */
.pps-hero {
  background: #0a0a0a;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pps-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220, 120, 40, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.pps-version-badge {
  display: inline-block;
  background: rgba(220, 120, 40, 0.15);
  border: 1px solid rgba(220, 120, 40, 0.35);
  color: #e8924a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pps-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: #f5f2ed;
  max-width: 820px;
  margin: 0 auto 20px;
}

.pps-hero h1 span {
  color: #e8924a;
}

.pps-hero-sub {
  font-size: clamp(17px, 2.5vw, 22px);
  color: #a09890;
  max-width: 580px;
  margin: 0 auto 16px;
  font-weight: 400;
}

.pps-hero-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: #7a7068;
  margin-bottom: 44px;
}

.pps-cta-btn {
  display: inline-block;
  background: #e8924a;
  color: #0a0a0a;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.14s ease;
  box-shadow: 0 4px 24px rgba(232, 146, 74, 0.3);
}

.pps-cta-btn:hover {
  background: #f4a362;
  transform: translateY(-2px);
  text-decoration: none;
  color: #0a0a0a;
}

/* PAIN STRIP */
.pps-pain {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 52px 24px;
  text-align: center;
}

.pps-pain h2 {
  font-size: clamp(24px, 4vw, 38px);
  color: #f5f2ed;
  max-width: 720px;
  margin: 0 auto 18px;
}

.pps-pain p {
  color: #7a7068;
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.pps-pain p strong {
  color: #a09890;
}

/* FEATURES */
.pps-features {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pps-section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8924a;
  margin-bottom: 16px;
}

.pps-features > h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  color: #f5f2ed;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pps-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pps-feature-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s ease;
}

.pps-feature-card:hover {
  border-color: rgba(220, 120, 40, 0.3);
}

.pps-feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.pps-feature-card h3 {
  font-size: 20px;
  color: #f5f2ed;
  margin-bottom: 12px;
  font-weight: 700;
}

.pps-feature-card p {
  color: #7a7068;
  font-size: 15px;
  line-height: 1.7;
}

.pps-feature-card ul {
  list-style: none;
  margin-top: 16px;
}

.pps-feature-card ul li {
  color: #a09890;
  font-size: 14px;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.pps-feature-card ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #e8924a;
  font-size: 13px;
}

/* SOCIAL PROOF */
.pps-proof {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 60px 24px;
  text-align: center;
}

.pps-proof-quote {
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: #c8c0b4;
  max-width: 740px;
  margin: 0 auto 28px;
  line-height: 1.5;
  font-weight: 500;
}

.pps-proof-quote span {
  color: #e8924a;
  font-style: normal;
}

.pps-proof-byline {
  font-size: 14px;
  color: #5a5248;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ORIGIN STORY */
.pps-origin {
  padding: 80px 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pps-origin h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: #f5f2ed;
  margin-bottom: 24px;
}

.pps-origin p {
  color: #7a7068;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.pps-origin p strong {
  color: #c8c0b4;
}

/* WHAT'S INCLUDED */
.pps-included {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 72px 24px;
}

.pps-included-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pps-included h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: #f5f2ed;
  margin-bottom: 48px;
}

.pps-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  text-align: left;
}

.pps-tool-item {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: #a09890;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pps-tool-item::before {
  content: '\2713';
  color: #e8924a;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

/* PRICING */
.pps-pricing {
  padding: 80px 24px;
  background: #0a0a0a;
}

.pps-pricing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.pps-pricing-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #f5f2ed;
  margin-bottom: 56px;
}

.pps-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.pps-pricing-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
}

.pps-pricing-card--featured {
  border-color: rgba(232, 146, 74, 0.5);
  background: #131008;
}

.pps-savings-badge {
  display: inline-block;
  background: rgba(232, 146, 74, 0.15);
  border: 1px solid rgba(232, 146, 74, 0.35);
  color: #e8924a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pps-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5248;
  margin-bottom: 14px;
}

.pps-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pps-price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #f5f2ed;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pps-price-period {
  font-size: 16px;
  color: #5a5248;
  font-weight: 500;
}

.pps-plan-sub {
  font-size: 13px;
  color: #e8924a;
  font-weight: 600;
  margin-bottom: 18px;
}

.pps-plan-desc {
  font-size: 14px;
  color: #6a6058;
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: 14px;
}

.pps-plan-btn {
  display: block;
  text-align: center;
  background: #1e1e1e;
  color: #a09890;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.pps-plan-btn:hover {
  background: #2a2a2a;
  text-decoration: none;
  color: #f5f2ed;
}

.pps-plan-btn--featured {
  background: #e8924a;
  color: #0a0a0a;
}

.pps-plan-btn--featured:hover {
  background: #f4a362;
  color: #0a0a0a;
}

/* FINAL CTA */
.pps-final-cta {
  padding: 100px 24px;
  text-align: center;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.pps-final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220, 120, 40, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pps-final-cta h2 {
  font-size: clamp(32px, 5vw, 58px);
  color: #f5f2ed;
  max-width: 740px;
  margin: 0 auto 20px;
}

.pps-final-cta h2 span {
  color: #e8924a;
}

.pps-final-cta p {
  color: #7a7068;
  font-size: 18px;
  margin-bottom: 44px;
}

.pps-final-cta .pps-cta-btn {
  font-size: 19px;
  padding: 20px 52px;
}

.pps-fine-print {
  margin-top: 20px;
  font-size: 13px;
  color: #4a4540;
}

/* FOOTER */
.pps-footer {
  border-top: 1px solid #1a1a1a;
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: #3a3530;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .pps-hero { padding: 60px 20px 56px; }
  .pps-features { padding: 60px 20px; }
  .pps-final-cta { padding: 72px 20px; }
  .pps-feature-grid { grid-template-columns: 1fr; }
  .pps-tools-grid { grid-template-columns: 1fr 1fr; }
  .pps-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .pps-tools-grid { grid-template-columns: 1fr; }
}