/* Example Fix Pack page */

.example-page { min-height: 100vh; }
.example-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 64px;
}
.example-hero .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.example-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.example-hero p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* The App Being Diagnosed */
.app-showcase {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.sc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.sc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.sc-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.sc-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.sc-app-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.app-listing-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.app-listing-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.app-listing-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6B8FD4 0%, #9B7FCC 50%, #D47F9B 100%);
  flex-shrink: 0;
}
.app-listing-meta { flex: 1; }
.app-listing-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.app-listing-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.app-listing-dev {
  font-size: 11px;
  color: var(--fg-muted);
}
.app-listing-screenshots {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.ss {
  flex: 1;
  height: 72px;
  background: linear-gradient(135deg, rgba(107, 143, 212, 0.3) 0%, rgba(155, 127, 204, 0.3) 50%, rgba(212, 127, 155, 0.3) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.app-listing-copy { display: flex; flex-direction: column; gap: 10px; }
.al-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(245, 242, 238, 0.08);
}
.al-line.w70 { width: 70%; }
.al-line.w85 { width: 85%; }
.al-line.w60 { width: 60%; }
.al-line.w50 { width: 50%; }
.app-listing-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.weak-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.app-notes { display: flex; flex-direction: column; gap: 20px; }
.an-card {
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.an-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.an-card-value {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}
.an-card-value.weak { color: #ef4444; }
.an-card-value.ok { color: #f59e0b; }
.an-card-value strong { color: var(--fg); }

/* Diagnosis Section */
.diag-section { padding: 72px 0; }
.diag-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-head { margin-bottom: 48px; }
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

.diag-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.diag-thead {
  display: grid;
  grid-template-columns: 220px 80px 1fr;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.diag-th {
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.diag-tr {
  display: grid;
  grid-template-columns: 220px 80px 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  align-items: center;
}
.diag-tr:last-child { border-bottom: none; }
.diag-td {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  font-size: 14px;
}
.diag-td:last-child { border-right: none; }
.diag-td.dim-name {
  font-weight: 600;
  font-size: 14px;
}
.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.score-bar-mini {
  width: 40px; height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 3px;
}
.score-fill-green { background: #22c55e; }
.score-fill-yellow { background: #f59e0b; }
.score-fill-red { background: #ef4444; }
.dim-issue-text { color: var(--fg-muted); line-height: 1.5; }

/* Fix Pack */
.fixpack-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.fp-block {
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
}
.fp-block:last-child { margin-bottom: 0; }
.fp-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.fp-block-header h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.fp-dim-tag {
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.fp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fp-col {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.fp-col:last-child { border-right: none; }
.col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-before { background: rgba(245,242,238,0.25); }
.dot-after { background: var(--accent); }
.dot-ab { background: #a78bfa; }

.copy-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.copy-text.strong {
  color: var(--fg);
  font-weight: 600;
}
.copy-text.strike {
  text-decoration: line-through;
  opacity: 0.6;
}
.copy-reasoning {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 14px;
}
.copy-reasoning strong { color: var(--fg); }

.ab-variant {
  padding: 16px;
  background: rgba(167, 139, 250, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(167, 139, 250, 0.15);
  margin-top: 12px;
}
.ab-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 8px;
}
.ab-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 8px;
}
.ab-note { font-size: 12px; color: var(--fg-muted); }

/* Screenshot Guide */
.ss-guide { padding: 24px; border-top: 1px solid var(--border); background: var(--surface2); }
.ss-strategy {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.ss-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.frame-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.frame-num-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.frame-screenshot-mock {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.frame-screenshot-mock .phone-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 12px 16px;
}
.frame-screenshot-mock .phone-screen-area {
  width: 100%;
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.frame-screenshot-mock .overlay-text {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  background: rgba(255,92,0,0.85);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #0D0D0F;
  text-align: center;
}
.frame-screenshot-mock .sub-text-overlay {
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 9px;
  color: rgba(245,242,238,0.8);
  text-align: center;
}
.fh { font-size: 12px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.fsub { font-size: 11px; color: var(--fg-muted); line-height: 1.4; }
.fshow { font-size: 11px; color: var(--fg-muted); margin-top: 8px; }
.fshow strong { color: var(--fg); }

.frame-screenshot-mock.frame-1 .phone-screen-area {
  background: linear-gradient(180deg, #1e3a5f 0%, #2d5a8a 60%, #1e3a5f 100%);
}
.frame-screenshot-mock.frame-2 .phone-screen-area {
  background: linear-gradient(180deg, #1a2e1a 0%, #2d5a2d 60%, #1a2e1a 100%);
}
.frame-screenshot-mock.frame-3 .phone-screen-area {
  background: linear-gradient(180deg, #3a1a5f 0%, #5a2d8a 60%, #3a1a5f 100%);
}

/* Bottom CTA */
.example-cta {
  padding: 100px 32px;
  text-align: center;
}
.example-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.example-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.example-cta p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: #0D0D0F;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 20px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.3);
}
.cta-secondary {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
}
.cta-secondary:hover { color: var(--fg); }
.cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* =============================================
   FICTIONAL SAMPLE NOTICE
============================================= */
.fictional-notice {
  background: rgba(245, 158, 11, 0.12);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  padding: 14px 24px;
}
.fictional-notice-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fictional-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
  color: #f59e0b;
}
.fictional-notice-inner div {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
}

/* =============================================
   CURRENT LISTING SNAPSHOT
============================================= */
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.snapshot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.snapshot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.snapshot-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.4;
}
.snapshot-chars {
  font-size: 12px;
  color: var(--fg-muted);
}
.snapshot-note {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding: 14px 18px;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
}
.snapshot-note strong { color: #f59e0b; }

/* =============================================
   ISSUE CARDS (new diagnosis format)
============================================= */
.issues-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.issue-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.issue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.issue-dim {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.issue-severity {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}
.sev-high {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.sev-medium {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.sev-low {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.issue-body { padding: 0; }
.issue-section {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.issue-section:last-child { border-bottom: none; }
.issue-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.issue-section-value {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
}
.issue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.issue-row:last-child { border-bottom: none; }
.issue-section.half {
  padding: 14px 20px;
  border-right: 1px solid var(--border);
}
.issue-section.half:last-child { border-right: none; }
.issues-summary {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.issues-summary strong { color: var(--fg); }

/* =============================================
   COPY PACK (platform-compliant summary)
============================================= */
.copy-pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.copy-pack-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.copy-pack-title {
  padding: 12px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.copy-pack-field {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.copy-pack-field:last-child { border-bottom: none; }
.cpf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.cpf-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.4;
}
.cpf-chars {
  font-size: 12px;
  color: var(--fg-muted);
}
.copy-pack-note {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 10px;
}
.copy-pack-note strong { color: #22c55e; }

/* =============================================
   CHARACTER COUNT (in copy blocks)
============================================= */
.char-count {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 8px;
}

/* =============================================
   A/B TEST LIST
============================================= */
.ab-test-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-test-item {
  display: flex;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  align-items: flex-start;
}
.ab-test-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #0D0D0F;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-test-content { flex: 1; }
.ab-test-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.ab-test-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.ab-test-desc strong { color: var(--fg); }

/* =============================================
   A/B VARIANT CHARS
============================================= */
.ab-chars {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-top: 4px;
  margin-bottom: 6px;
}

/* =============================================
   FINAL COPY TABLE
============================================= */
.final-copy-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}
.fct-head {
  display: grid;
  grid-template-columns: 120px 160px 1fr 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.fct-th {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.fct-row {
  display: grid;
  grid-template-columns: 120px 160px 1fr 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.fct-row:last-child { border-bottom: none; }
.fct-td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--fg);
  border-right: 1px solid var(--border);
}
.fct-td:last-child { border-right: none; color: #22c55e; font-weight: 700; }

/* =============================================
   DISCLAIMER SECTION
============================================= */
.disclaimer-section {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.disclaimer-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.disclaimer-section p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.disclaimer-list {
  margin: 0;
  padding-left: 20px;
}
.disclaimer-list li {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.disclaimer-list li:last-child { margin-bottom: 0; }
.final-disclaimer {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.final-disclaimer strong { color: var(--fg); }

/* =============================================
   WHAT YOU GET FOR $39 SECTION (P3)
============================================= */
.whatyouget-section {
  background: var(--accent-dim);
  border-top: 1px solid rgba(255,92,0,0.2);
  border-bottom: 1px solid rgba(255,92,0,0.2);
  padding: 64px 0;
}
.whatyouget-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.whatyouget-inner .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.whatyouget-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.whatyouget-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 0 0 32px;
  padding: 0;
}
.whatyouget-bullets li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.whatyouget-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.whatyouget-supporting {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* =============================================
   BEFORE / AFTER SUMMARY TABLE (P4)
============================================= */
.beforeafter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.ba-summary-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ba-summary-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.ba-summary-row:last-child { border-bottom: none; }
.ba-summary-label {
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-muted);
  border-right: 1px solid var(--border);
}
.ba-summary-before, .ba-summary-after {
  padding: 16px 20px;
  font-size: 14px;
  border-right: 1px solid var(--border);
}
.ba-summary-after { font-weight: 600; color: var(--fg); }
.ba-summary-after:last-child { border-right: none; }
.ba-summary-before { color: var(--fg-muted); }
.ba-chars {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.ba-summary-note {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 12px 16px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 8px;
  line-height: 1.55;
}

/* =============================================
   SCREENSHOT OVERLAY PREVIEW (P6)
============================================= */
.ss-preview {
  padding: 24px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.ss-preview-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ss-preview-frames {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ss-preview-frame {
  background: rgba(255,92,0,0.85);
  color: #0D0D0F;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .sc-app-card { grid-template-columns: 1fr; }
  .fp-row { grid-template-columns: 1fr; }
  .fp-col { border-right: none; border-bottom: 1px solid var(--border); }
  .fp-col:last-child { border-bottom: none; }
  .ss-frames { grid-template-columns: 1fr; }
  .diag-thead, .diag-tr { grid-template-columns: 1fr 80px 1fr; }
  .snapshot-grid { grid-template-columns: 1fr; }
  .copy-pack-grid { grid-template-columns: 1fr; }
  .issue-row { grid-template-columns: 1fr; }
  .issue-section.half { border-right: none; border-bottom: 1px solid var(--border); }
  .issue-section.half:last-child { border-bottom: none; }
  .fct-head, .fct-row { grid-template-columns: 1fr 1fr; }
  .fct-th:nth-child(3), .fct-td:nth-child(3),
  .fct-th:nth-child(4), .fct-td:last-child { display: none; }
  .whatyouget-bullets { grid-template-columns: 1fr; }
  .ba-summary-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .example-hero, .sc-inner, .diag-inner, .fp-inner, .example-cta { padding-left: 24px; padding-right: 24px; }
  .diag-thead { display: none; }
  .diag-tr { grid-template-columns: 1fr; gap: 0; }
  .diag-td { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 16px; }
  .diag-td:last-child { border-bottom: none; }
  .diag-td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 6px;
  }
  .fct-head { display: none; }
  .fct-row { grid-template-columns: 1fr; }
  .fct-td { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 16px; font-size: 12px; }
  .fct-td:last-child { display: block; color: #22c55e; font-weight: 700; border-bottom: none; }
  .fct-row .fct-td:first-child::before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 4px; }
  .whatyouget-bullets { grid-template-columns: 1fr; }
  .ba-summary-label { border-right: none; border-bottom: 1px solid var(--border); }
  .ba-summary-before, .ba-summary-after { border-right: none; }
  .ss-preview-frames { flex-direction: column; }
}