/* ──────────────────────────────────────────────────────────────
   verticals.css — shared styles for the (noindex, share-by-link)
   Substrate-A vertical landing pages: real-estate · hospitality ·
   retail-franchise. Relies on design tokens from shared/site.css.
   ────────────────────────────────────────────────────────────── */

/* Hero */
.vrt-hero { padding: 96px 0 56px; }
.vrt-hero .pill { display:inline-flex; align-items:center; gap:8px; padding: 6px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font: 500 11px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.vrt-hero .pill .led { width:7px; height:7px; border-radius:999px; background: var(--accent); animation: vrt-led 1.8s ease-in-out infinite; }
@keyframes vrt-led { 0%,100% { box-shadow: 0 0 0 0 var(--accent); } 50% { box-shadow: 0 0 0 6px transparent; } }
.vrt-hero h1 { font: 600 58px/1.05 var(--font); letter-spacing: -0.025em; max-width: 20ch; margin: 0 0 24px; }
.vrt-hero h1 em { color: var(--accent); font-style: italic; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
.vrt-hero .lead { font-size: 19px; color: var(--ink-2); max-width: 62ch; line-height: 1.55; margin: 0 0 24px; }
.vrt-hero .lead strong { color: var(--ink); }
.vrt-hero .sub { font: 500 13px/1.55 var(--font-mono); color: var(--ink-3); max-width: 64ch; margin: 0 0 36px; }
.vrt-hero .ctas { display:flex; gap:12px; flex-wrap: wrap; }

/* private banner */
.vrt-banner { background: color-mix(in srgb, var(--accent) 8%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); padding: 10px 0; text-align: center; font: 500 11px/1.4 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

/* generic section */
.vrt-sec { padding: 76px 0; }
.vrt-sec.alt { background: var(--bg-2); border-block: 1px solid var(--rule); }
.vrt-sec .head { max-width: 760px; margin: 0 0 36px; }
.vrt-sec .head .eyebrow { font: 700 11px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; display: block; }
.vrt-sec .head h2 { font: 600 36px/1.1 var(--font); letter-spacing: -0.02em; margin: 0 0 16px; }
.vrt-sec .head h2 em { font-style: italic; color: var(--accent); font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
.vrt-sec .head p { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.vrt-sec .head p strong { color: var(--ink); }

/* decision atoms grid */
.vrt-atoms .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vrt-atoms .atom { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-2); padding: 22px 24px; border-left: 3px solid var(--accent); }
.vrt-atoms .atom .k { font: 700 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.vrt-atoms .atom h4 { font: 600 16px/1.25 var(--font); margin: 0 0 8px; color: var(--ink); }
.vrt-atoms .atom p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 860px) { .vrt-atoms .grid { grid-template-columns: 1fr; } }

/* vault frame */
.vrt-vault .frame { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-3); padding: 36px 32px; }
.vrt-vault .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vrt-vault .pillar { background: var(--bg-2); border: 1px solid var(--rule); border-radius: var(--r-2); padding: 20px; }
.vrt-vault .pillar .n { font: 700 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.vrt-vault .pillar h4 { font: 700 13px/1.2 var(--font-mono); letter-spacing: 0.04em; margin: 0 0 10px; color: var(--ink); }
.vrt-vault .pillar p { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }
@media (max-width: 860px) { .vrt-vault .pillars { grid-template-columns: 1fr 1fr; } }

/* revenue framework table */
.vrt-rev table { width: 100%; border-collapse: collapse; font: 500 13px/1.45 var(--font-mono); background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-3); overflow: hidden; }
.vrt-rev thead th { text-align: left; padding: 14px 14px; border-bottom: 1px solid var(--rule); font: 600 10.5px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: var(--bg-2); }
.vrt-rev tbody td { padding: 14px 14px; border-bottom: 1px solid var(--rule); color: var(--ink-2); vertical-align: top; }
.vrt-rev tbody td.stream { font-weight: 700; color: var(--ink); }
.vrt-rev tbody tr:last-child td { border-bottom: none; }
.vrt-rev tbody tr:hover { background: var(--bg-2); }
.vrt-rev .badge { display:inline-block; padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.vrt-rev .b-rec { background: #4A9E6A22; color: #2D5C3F; } [data-theme="dark"] .vrt-rev .b-rec { color: #8FCBA1; }
.vrt-rev .b-one { background: #C9922A22; color: #6B4E18; } [data-theme="dark"] .vrt-rev .b-one { color: #E8C97A; }
.vrt-rev .note { margin-top: 16px; font: 500 12.5px/1.6 var(--font-mono); color: var(--ink-3); }
.vrt-rev .note em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: var(--accent); }
@media (max-width: 720px) { .vrt-rev table { font-size: 11px; } .vrt-rev th, .vrt-rev td { padding: 9px 8px; } }

/* capital tiers */
.vrt-cap .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vrt-cap .tier { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-3); padding: 24px 26px; border-top: 3px solid var(--accent); }
.vrt-cap .tier .when { font: 700 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.vrt-cap .tier h4 { font: 600 17px/1.25 var(--font); margin: 0 0 8px; color: var(--ink); }
.vrt-cap .tier p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 720px) { .vrt-cap .grid { grid-template-columns: 1fr; } }

/* honest status */
.vrt-status .box { background: var(--bg-2); border: 1px solid var(--rule); border-left: 3px solid var(--accent); border-radius: var(--r-3); padding: 28px 32px; max-width: 820px; }
.vrt-status .box .lab { font: 700 11px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.vrt-status .box p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0 0 12px; }
.vrt-status .box p:last-child { margin: 0; }
.vrt-status .box strong { color: var(--ink); font-weight: 600; }

/* final CTA */
.vrt-final { padding: 88px 0; text-align: center; }
.vrt-final h2 { font: 600 40px/1.12 var(--font); letter-spacing: -0.02em; max-width: 26ch; margin: 0 auto 24px; }
.vrt-final h2 em { font-style: italic; color: var(--accent); font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
.vrt-final p { font-size: 16px; color: var(--ink-2); max-width: 56ch; margin: 0 auto 28px; line-height: 1.55; }
.vrt-final .ctas { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; }

/* cross-links */
.vrt-next { padding: 56px 0 80px; }
.vrt-next .head { text-align: center; margin: 0 0 28px; }
.vrt-next .head p { font: 500 13px/1.4 var(--font-mono); color: var(--ink-3); margin: 0; letter-spacing: 0.04em; }
.vrt-next .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 880px; margin: 0 auto; }
.vrt-next a.card { display: block; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-2); padding: 20px 22px; text-decoration: none; transition: border-color .15s var(--ease), transform .15s var(--ease); }
.vrt-next a.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.vrt-next a.card .pre { font: 700 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.vrt-next a.card h3 { font: 600 15px/1.25 var(--font); margin: 0 0 6px; color: var(--ink); }
.vrt-next a.card p { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
@media (max-width: 720px) { .vrt-next .grid { grid-template-columns: 1fr; } }

@media (max-width: 720px) {
  .vrt-hero h1 { font-size: 36px; }
  .vrt-final h2 { font-size: 28px; }
}

/* ── Hero decision-engine visual (shared across vertical pages) ──── */
.vrt-hero.has-viz .shell { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.vrt-hero.has-viz .copy { min-width: 0; }
.vrt-viz {
  width: 100%;
  /* theme-aware palette — flips with the site light/dark theme */
  --viz-bg: var(--bg-2);
  --viz-line: var(--ink);
  --viz-mut: var(--ink-3);
  --viz-acc: var(--accent);
}
.vrt-viz svg {
  width: 100%; height: auto; display: block;
  border-radius: 16px; border: 1px solid var(--rule);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--ink) 14%, transparent);
}
@media (max-width: 940px) {
  .vrt-hero.has-viz .shell { grid-template-columns: 1fr; gap: 36px; }
  .vrt-viz { order: -1; max-width: 540px; margin: 0 auto; }
}
