/* ═══════════════════════════════════════════
   OWN360 — ABOUT PAGE STYLES
═══════════════════════════════════════════ */

/* ── Stats row ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 48px 0;
}

.stat-block {
  background: var(--cream2);
  border: 1.5px solid var(--rule);
  padding: 32px 28px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid var(--forest);
  padding: 24px 32px;
  margin: 40px 0;
  background: var(--flit);
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  font-style: normal;
}

/* ── Comparison section ── */
.compare-section {
  padding: 100px 60px;
  position: relative;
  z-index: 2;
  background: var(--cream);
}

.compare-wrap {
  max-width: 1100px;
  margin: 60px auto 0;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule2);
  font-size: 14px;
  color: var(--ink2);
}

.compare-table thead th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rule);
}

.th-own360 {
  color: var(--forest) !important;
  border-bottom-color: var(--forest) !important;
  background: rgba(27,94,56,.04);
}

.td-own360 {
  background: rgba(27,94,56,.025);
}

.ct-yes { color: var(--forest); font-size: 18px; }
.ct-no { color: rgba(181,58,42,.5); font-size: 18px; }

.ct-partial {
  color: var(--gold);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .04em;
}

.ct-money {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
}

.ct-green { color: var(--forest); }
.ct-red { color: var(--scarlet); }

.ct-tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ct-tag-own {
  background: rgba(27,94,56,.07);
  color: var(--forest);
  border: 1px solid rgba(27,94,56,.15);
}

.ct-tag-bad {
  background: rgba(181,58,42,.05);
  color: rgba(181,58,42,.7);
  border: 1px solid rgba(181,58,42,.12);
}

/* ── Page CTA (shared with pricing) ── */
.page-cta {
  background: var(--cream2);
  border-top: 2px solid var(--rule);
  padding: 72px 60px;
  text-align: center;
}

.page-cta h2,
.page-cta h3 {
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-cta p {
  font-size: 15px;
  color: var(--faint);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 900px) {
  .compare-section {
    padding: 64px 28px;
  }
  .page-cta {
    padding: 56px 28px;
  }
}

@media (max-width: 768px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .compare-section {
    padding: 48px 20px;
  }
  .pull-quote {
    padding: 20px 24px;
  }
  .pull-quote p {
    font-size: 18px;
  }
  .page-cta {
    padding: 48px 20px;
  }
}

/* ═══════════════ DARK OVERRIDES ═══════════════ */

[data-theme="dark"] .stat-block {
  background: var(--cream2);
  border-color: var(--rule);
}

[data-theme="dark"] .stat-num {
  color: var(--forest);
}

[data-theme="dark"] .pull-quote {
  background: var(--flit);
  border-left-color: var(--forest);
}

[data-theme="dark"] .pull-quote p {
  color: var(--ink);
}

[data-theme="dark"] .compare-section {
  background: var(--cream);
}

[data-theme="dark"] .th-own360 {
  background: rgba(74,222,128,.04);
  border-bottom-color: var(--forest) !important;
}

[data-theme="dark"] .td-own360 {
  background: rgba(74,222,128,.025);
}

[data-theme="dark"] .ct-tag-own {
  background: rgba(74,222,128,.07);
  color: var(--forest);
  border-color: rgba(74,222,128,.15);
}

[data-theme="dark"] .ct-tag-bad {
  background: rgba(240,106,87,.05);
  color: var(--scarlet);
  border-color: rgba(240,106,87,.12);
}

[data-theme="dark"] .page-cta {
  background: var(--cream2);
  border-top-color: var(--rule);
}

[data-theme="dark"] .page-cta h2,
[data-theme="dark"] .page-cta h3 {
  color: var(--ink);
}

[data-theme="dark"] .page-cta p {
  color: var(--faint);
}
