/* vs-competitor.css — shared styles for /vs-thrive, /vs-scorpion, /vs-marketing360 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pearl: #F7F4EE;
  --pearl-d: #EDE8DC;
  --pearl-dd: #E3DCCC;
  --gold: #C9A961;
  --gold-d: #A8882F;
  --gold-bg: rgba(201, 169, 97, 0.10);
  --gold-bg-strong: rgba(201, 169, 97, 0.18);
  --ink: #1A1A2E;
  --ink-lt: #2C2C3E;
  --muted: #6B6579;
  --border: #DDD4C0;
  --border-lt: #EDE8DC;
  --check: #2D6A4F;
  --radius: 8px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

html { font-size: 16px; }
body {
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── SHARED ATOMS ─────────────────────────────────── */
.vs-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 16px;
}

.vs-section-h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.vs-section-sub {
  font-size: 16px;
  color: var(--ink-lt);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── HERO ─────────────────────────────────────────── */
.vs-hero {
  padding: 80px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.vs-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.vs-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.vs-subhead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-lt);
  margin-bottom: 36px;
  max-width: 540px;
}

.vs-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.vs-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1;
  white-space: nowrap;
}

.vs-btn--primary {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.vs-btn--primary:hover { background: var(--gold-d); border-color: var(--gold-d); }

.vs-btn--secondary {
  background: transparent;
  color: var(--gold-d);
  border: 1.5px solid var(--gold);
}
.vs-btn--secondary:hover { background: var(--gold-bg); }

.vs-btn--lg { padding: 18px 36px; font-size: 15px; }

/* Founder portrait */
.vs-founder-portrait { position: relative; }

.vs-founder-img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  filter: grayscale(100%);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.vs-founder-nameplate {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vs-founder-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.vs-founder-role { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ── HONEST SUMMARY ───────────────────────────────── */
.vs-summary {
  background: var(--pearl-d);
  padding: 64px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vs-summary-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vs-summary-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.vs-summary-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--ink-lt);
  max-width: 820px;
}

/* ── FEATURE COMPARISON TABLE ─────────────────────── */
.vs-compare {
  padding: 72px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Desktop 3-col grid */
.vs-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--pearl);
  margin-bottom: 0;
}

.vs-table-head,
.vs-table-body { display: contents; }

.vs-table-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-lt);
}

.vs-table-row:last-child { border-bottom: none; }

.vs-table-row--header {
  background: var(--pearl-dd);
  font-weight: 700;
}

.vs-cell {
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-lt);
  border-right: 1px solid var(--border-lt);
  vertical-align: top;
}

.vs-cell:last-child { border-right: none; }

.vs-cell--label {
  font-weight: 600;
  color: var(--ink);
  background: var(--pearl-d);
  font-size: 12px;
}

.vs-cell--rogolook {
  background: var(--gold-bg);
  border-right: 1px solid rgba(201, 169, 97, 0.25);
}

.vs-table-row--header .vs-cell--rogolook {
  background: var(--gold-bg-strong);
}

.vs-cell--mean {
  background: var(--pearl-d);
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
}

.vs-table-row--header .vs-cell--mean {
  background: var(--pearl-dd);
  font-style: normal;
}

.vs-col-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.vs-col-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-top: 3px;
}

.vs-col-label-plain {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.vs-row-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.vs-check {
  color: var(--check);
  font-weight: 700;
  font-size: 13px;
  margin-right: 5px;
}

.vs-dash {
  color: var(--muted);
  font-size: 13px;
  margin-right: 5px;
}

/* Mobile comparison cards */
.vs-mobile-compare { display: none; flex-direction: column; gap: 20px; }

.vs-mobile-col {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.vs-mobile-col--rogolook { border-color: var(--gold); }

.vs-mobile-col-head {
  padding: 16px 20px;
  background: var(--pearl-dd);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vs-mobile-col--rogolook .vs-mobile-col-head { background: var(--gold-bg-strong); }

.vs-mobile-list { list-style: none; padding: 0; background: var(--pearl); }

.vs-mobile-list li {
  padding: 11px 20px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-lt);
  border-top: 1px solid var(--border-lt);
}

/* ── PRICING SECTION ──────────────────────────────── */
.vs-pricing {
  background: var(--pearl-d);
  padding: 72px 32px;
  border-top: 1px solid var(--border);
}

.vs-pricing-inner { max-width: 1100px; margin: 0 auto; }

.vs-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.vs-pricing-col {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.vs-pricing-col--rogolook { border-color: var(--gold); }

.vs-pricing-col-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-lt);
}

.vs-pricing-tier-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-d);
}

.vs-pricing-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}

.vs-pricing-amount-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.vs-pricing-tiers {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-pricing-tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-lt);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-lt);
}

.vs-pricing-tiers li:last-child { border-bottom: none; padding-bottom: 0; }

.vs-pricing-tier-label { font-weight: 500; }

.vs-pricing-tier-price { font-family: var(--serif); font-size: 16px; color: var(--ink); }

.vs-pricing-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ── WHY OPERATORS PICK ROGOLOOK ───────────────────── */
.vs-why {
  padding: 72px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.vs-why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--pearl);
}

.vs-why-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-lt);
  align-items: stretch;
}

.vs-why-item:last-child { border-bottom: none; }

.vs-why-num {
  background: var(--gold-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-d);
  padding: 24px 0;
  border-right: 1px solid var(--border-lt);
}

.vs-why-text {
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-lt);
}

.vs-why-text strong { color: var(--ink); }

/* ── CASE STUDY SNIPPET ─────────────────────────────── */
.vs-case {
  background: var(--pearl-d);
  padding: 72px 32px;
  border-top: 1px solid var(--border);
}

.vs-case-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.vs-case-copy {}

.vs-case-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.vs-case-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}

.vs-case-stat { display: flex; flex-direction: column; gap: 2px; }

.vs-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-d);
  line-height: 1;
}

.vs-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.vs-case-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-lt);
  max-width: 560px;
  margin-bottom: 28px;
}

.vs-case-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-d);
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.15s;
}

.vs-case-link:hover { color: var(--gold-d); }

.vs-case-badge {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  min-width: 200px;
}

.vs-case-badge-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

.vs-case-badge-metric {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold-d);
  line-height: 1;
  margin-bottom: 4px;
}

.vs-case-badge-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PULL-QUOTE ───────────────────────────────────── */
.vs-quote {
  background: var(--gold);
  padding: 64px 32px;
}

.vs-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.vs-quote-mark {
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.7;
  color: rgba(26, 26, 46, 0.15);
  position: absolute;
  top: -10px;
  left: -20px;
  pointer-events: none;
  user-select: none;
}

.vs-quote-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.vs-quote-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-lt);
  font-style: normal;
}

/* ── DUAL CTA ─────────────────────────────────────── */
.vs-cta {
  background: var(--pearl-d);
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}

.vs-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vs-cta-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.vs-cta-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-lt);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.vs-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CROSS-LINKS ──────────────────────────────────── */
.vs-cross-links {
  background: var(--pearl-d);
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.vs-cross-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-cross-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.vs-cross-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vs-cross-list li a {
  font-size: 13px;
  color: var(--gold-d);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.vs-cross-list li a:hover { border-bottom-color: var(--gold); }

/* ── CALLOUT BOXES (vs-stream-companies) ─────────────────── */
.vsc-callouts {
  padding: 64px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.vsc-callouts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vsc-callout {
  border-radius: 12px;
  padding: 28px 32px;
  border: 1.5px solid var(--gold);
  background: var(--pearl);
}

.vsc-callout--right {
  background: var(--gold-bg-strong);
  border-color: var(--gold);
}

.vsc-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 16px;
}

.vsc-callout-label--rogolook {
  color: var(--ink);
}

.vsc-callout-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vsc-callout-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-lt);
  padding-left: 20px;
  position: relative;
}

.vsc-callout-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-d);
  font-size: 13px;
}

.vsc-callouts-inner .vsc-callout--right .vsc-callout-list li::before {
  color: var(--gold-d);
}

@media (max-width: 760px) {
  .vsc-callouts-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .vsc-callouts { padding: 56px 24px; }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .vs-hero { padding: 56px 24px 64px; }
  .vs-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .vs-hero-img-col { max-width: 280px; }

  .vs-table { display: none; }
  .vs-mobile-compare { display: flex; }

  .vs-compare { padding: 56px 24px; }
  .vs-summary { padding: 56px 24px; }
  .vs-pricing { padding: 56px 24px; }

  .vs-pricing-grid { grid-template-columns: 1fr; }

  .vs-why { padding: 56px 24px; }
  .vs-case { padding: 56px 24px; }
  .vs-case-inner { grid-template-columns: 1fr; }
  .vs-case-badge { display: none; }
  .vs-quote { padding: 56px 24px; }
  .vs-cta { padding: 56px 24px; }
  .vs-cross-links { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .vs-h1 { font-size: 32px; }
  .vs-hero-ctas { flex-direction: column; align-items: flex-start; }
  .vs-cta-btns { flex-direction: column; align-items: center; }
  .vs-btn--lg { width: 100%; text-align: center; }
  .vs-quote-mark { font-size: 80px; }
  .vs-case-stats { flex-direction: column; gap: 16px; }
}