/* ─── PERSONA PRODUCT PAGE STYLES ─── */

.container { padding: 2rem; }

/* ─── HERO ─── */
.pr-hero {
  padding: 8rem 2rem 5rem; border-bottom: 1px solid var(--border);
}
.pr-hero .container { max-width: var(--max-w); }
.pr-hero-icon {
  display: block; width: 160px; height: auto; margin-bottom: 2rem;
}
.pr-hero-label {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  color: var(--accent-teal); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.2rem; display: block;
}
.pr-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 1.5rem; max-width: 680px;
}
.pr-hero-sub {
  color: var(--text-secondary); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 0; max-width: 560px;
}

/* ─── SECTIONS ─── */
.pr-section { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.pr-section.alt { background: var(--bg-alt); }

.pr-section-header { margin-bottom: 3rem; }
.pr-section-header h2 {
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.pr-section-header p {
  font-size: 0.95rem; color: var(--text-secondary);
  max-width: 540px; line-height: 1.7;
}

/* ─── PROSE ─── */
.pr-prose { margin-top: 1.5rem; }
.pr-prose p {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 1rem; max-width: 640px;
}
.pr-prose p:last-child { margin-bottom: 0; }
.pr-prose strong { color: var(--text); }

/* ─── FEATURE GRID ─── */
.pr-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 2rem;
}
.pr-feature-card {
  background: var(--bg); padding: 2rem;
  display: flex; flex-direction: column; transition: background 0.25s;
}
.pr-feature-card:hover { background: var(--bg-alt); }
.pr-feature-num {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-muted); font-weight: 500;
  margin-bottom: 0.8rem; letter-spacing: 0.03em;
}
.pr-feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.pr-feature-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── STEPS ─── */
.pr-steps { display: flex; flex-direction: column; margin-top: 1.5rem; }
.pr-step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border-light);
}
.pr-step:last-child { border-bottom: none; }
.pr-step-label {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--text-muted); font-weight: 500; padding-top: 0.2rem;
}
.pr-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.pr-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; max-width: 520px; }

/* ─── TWO-COL DETAIL ─── */
.pr-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2rem;
}
.pr-detail h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
.pr-detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.pr-detail-list li { font-size: 0.88rem; color: var(--text-secondary); padding-left: 1rem; position: relative; }
.pr-detail-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted);
}

/* ─── PRICING ─── */
.pr-pricing {
  padding: 3rem; border: 1px solid var(--border); margin-top: 2rem;
}
.pr-pricing-amount {
  font-family: var(--mono); font-size: 2.4rem; font-weight: 600;
  letter-spacing: -0.03em; margin-bottom: 0.3rem;
}
.pr-pricing-currency { font-size: 0.4em; color: var(--text-muted); font-weight: 400; }
.pr-pricing-period {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.pr-pricing-detail {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65;
  padding-top: 1.5rem; border-top: 1px solid var(--border-light);
}

/* ─── HIGHLIGHT ─── */
.pr-highlight {
  padding: 2.5rem 0; border-top: 1px solid var(--border); margin-top: 2rem;
}
.pr-highlight-text {
  font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.6rem; max-width: 520px;
}
.pr-highlight-sub { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; max-width: 480px; }

/* ─── CTA ─── */
.pr-cta-section {
  background: var(--bg); border-bottom: 1px solid var(--border); padding: 6rem 2rem;
}
.pr-cta-inner { max-width: var(--max-w); margin: 0 auto; }
.pr-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 520px; line-height: 1.15;
}
.pr-cta-inner p {
  font-size: 0.95rem; color: var(--text-secondary);
  max-width: 480px; line-height: 1.7; margin-bottom: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .container { padding: 1rem; }
  .pr-hero { padding: 4rem 1.25rem; }
  .pr-section { padding: 4rem 1.25rem; }
  .pr-feature-grid { grid-template-columns: 1fr; }
  .pr-detail { grid-template-columns: 1fr; gap: 2rem; }
  .pr-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .pr-pricing { padding: 2rem; }
}
