:root {
  --ink: #26211f;
  --muted: #736966;
  --ivory: #fff9f7;
  --paper: #ffffff;
  --terracotta: #99604d;
  --coral: #d05c46;
  --soft-coral: #fda7a4;
  --line: rgba(38, 33, 31, 0.14);
  --success: #536f5c;
  --shadow: 0 24px 80px rgba(70, 46, 38, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; letter-spacing: .06em; font-weight: 650; }
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .12em; font-weight: 550; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); }

.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: white; text-decoration: none; font-weight: 650;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(38,33,31,.16); }
.button.secondary { background: transparent; color: var(--ink); }
.button.coral { background: var(--coral); border-color: var(--coral); }
.button.small { min-height: 40px; padding: 0 16px; font-size: 13px; }

.hero { padding: 84px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; }
.eyebrow { color: var(--terracotta); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 750; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 86px); max-width: 860px; }
h2 { font-size: clamp(38px, 5vw, 62px); }
h3 { font-size: 28px; }
.lede { margin: 24px 0 0; font-size: clamp(18px, 2.2vw, 23px); color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.trust-line span::before { content: "•"; color: var(--coral); margin-right: 8px; }
.portrait-wrap { position: relative; padding: 22px; }
.portrait-wrap::before { content: ""; position: absolute; inset: 0; border-radius: 48% 48% 22% 22%; background: #f3d7d0; transform: rotate(-3deg); }
.portrait-wrap img { position: relative; z-index: 1; width: 100%; border-radius: 46% 46% 20px 20px; box-shadow: var(--shadow); }
.portrait-note { position: absolute; z-index: 2; right: -16px; bottom: 46px; width: 190px; padding: 16px; border-radius: 18px; background: white; box-shadow: var(--shadow); font-size: 13px; }
.portrait-note strong { display: block; font-family: Georgia, serif; font-size: 21px; }

.section { padding: 92px 0; }
.section.paper { background: var(--paper); }
.section.dark { background: var(--ink); color: white; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.dark .section-head p { color: rgba(255,255,255,.68); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 94%, var(--soft-coral)); border-radius: var(--radius); padding: 30px; }
.card .number { font-family: Georgia, serif; color: var(--coral); font-size: 50px; line-height: 1; margin-bottom: 20px; }
.card p { margin: 12px 0 0; color: var(--muted); }
.dark .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
.dark .card p { color: rgba(255,255,255,.65); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.sticky { position: sticky; top: 110px; }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; }
.checklist li { padding: 15px 0 15px 34px; border-bottom: 1px solid var(--line); position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }

.form-card { background: white; border: 1px solid var(--line); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 14px; padding: 11px 13px; background: #fffcfb; color: var(--ink);
}
.field textarea { min-height: 100px; resize: vertical; }
.check-row { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 12px; margin: 0; }
.result { display: none; margin-top: 22px; padding: 20px; border-radius: 18px; background: #f4eee9; }
.result.visible { display: block; }
.result strong { font-family: Georgia, serif; display: block; font-size: 28px; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.path { padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.path em { color: var(--terracotta); font-style: normal; font-weight: 750; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

.analysis-section { background: #1d1817; color: #fffaf7; overflow: hidden; }
.analysis-board { position: relative; padding: clamp(28px, 5vw, 54px); border: 1px solid rgba(255,255,255,.15); border-radius: 34px; background: linear-gradient(132deg, #29201e 0%, #1a1716 54%, #51352e 180%); box-shadow: 0 30px 90px rgba(23,16,14,.24); overflow: hidden; }
.analysis-board::before { content: ""; position: absolute; width: 580px; height: 580px; right: -270px; bottom: -340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.025); }
.analysis-board > * { position: relative; z-index: 1; }
.analysis-board .eyebrow { color: #f7b1a7; }
.analysis-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.analysis-head h2 { max-width: 690px; }
.source-chip { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; color: rgba(255,255,255,.76); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.source-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #f28b78; box-shadow: 0 0 0 5px rgba(242,139,120,.14); }
.analysis-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 24px; margin-top: 36px; align-items: stretch; }
.signal-card { min-height: 338px; border-radius: 24px; padding: 25px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.signal-label { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.signal-label span:last-child { color: #f6b4a9; }
.evidence-map { position: relative; min-height: 236px; margin-top: 24px; padding: 22px 8px; display: grid; grid-template-columns: repeat(3,1fr); align-items: end; gap: 12px; }
.evidence-map::before { content: ""; position: absolute; left: 8px; right: 8px; bottom: 48px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.58), rgba(255,255,255,.12)); }
.evidence-map::after { content: ""; position: absolute; left: 13%; right: 13%; bottom: 61px; height: 106px; border-top: 2px solid #f28b78; border-radius: 75% 75% 0 0; transform: rotate(-2deg); opacity: .94; }
.evidence-node { position: relative; z-index: 1; display: grid; place-items: center; gap: 10px; min-height: 110px; text-align: center; }
.evidence-node i { display: block; width: 14px; height: 14px; border-radius: 50%; background: #f8c8bf; border: 4px solid #1d1817; box-shadow: 0 0 0 2px #f28b78; }
.evidence-node strong { font-family: Georgia,serif; font-size: 20px; line-height: 1.05; }
.evidence-node small { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.3; }
.signal-note { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.decision-stack { display: grid; gap: 12px; }
.decision-signal { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 16px; border-radius: 18px; background: rgba(11,8,8,.27); border: 1px solid rgba(255,255,255,.1); }
.decision-signal b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: rgba(242,139,120,.16); color: #f8c8bf; font-family: Georgia,serif; font-size: 20px; }
.decision-signal strong { display: block; font-size: 14px; }
.decision-signal p { margin: 2px 0 0; color: rgba(255,255,255,.59); font-size: 12px; line-height: 1.35; }
.decision-signal span { color: #f6b4a9; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.research-capture { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; }
.research-capture summary { cursor: pointer; color: #f8c8bf; font-weight: 700; }
.research-capture p { color: rgba(255,255,255,.6); font-size: 12px; }
.research-capture a { color: #fffaf7; text-underline-offset: 3px; }
.research-capture img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; margin-top: 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.16); }

.evidence-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.evidence-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; overflow: hidden; }
.evidence-card.tint { background: var(--pale, #f3e9e4); }
.evidence-card img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 16px; margin-top: 18px; }
.big-stat { font-family: Georgia, serif; font-size: clamp(48px, 7vw, 78px); line-height: 1; color: var(--coral); margin: 14px 0; }
.fine { color: var(--muted); font-size: 13px; }
.step-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step strong { font-family: Georgia, serif; font-size: 28px; color: var(--coral); }
.step h3 { font-size: 24px; }
.step p { margin: 0; color: var(--muted); }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 34px; background: white; border-radius: 20px; overflow: hidden; }
.compare-table th, .compare-table td { text-align: left; padding: 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table th { color: var(--terracotta); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.compare-table td:first-child { font-weight: 700; }
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.faq article { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.faq p { color: var(--muted); margin-bottom: 0; }
.calculator { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.calculator .field { display: grid; }
.calculator-output { grid-column: 1 / -1; padding: 22px; background: #f4eee9; border-radius: 18px; }
.calculator-output strong { font-family: Georgia, serif; font-size: 32px; display: block; }
.mini-label { color: var(--terracotta); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }

.quote { max-width: 850px; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 54px); line-height: 1.18; }

.masterclass-hero { background: linear-gradient(180deg, #fff9f6 0%, var(--ivory) 100%); }
.masterclass-benefits { max-width: 720px; }
.masterclass-watch { scroll-margin-top: 84px; background: #fffaf7; }
.masterclass-watch[hidden] { display: none; }
.masterclass-player { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #171312; box-shadow: var(--shadow); }
.masterclass-player iframe,
.masterclass-video { width: 100%; height: 100%; border: 0; }
.masterclass-video { display: block; object-fit: contain; background: #000; }

/* 2026 report-first offer funnels */
.offer-page {
  --offer-night: #201c1a;
  --offer-warm: #efe1da;
  --offer-mist: #f7f0ec;
  background: #fbf7f4;
}
.offer-page .nav { background: color-mix(in srgb, #fbf7f4 94%, transparent); }
.offer-hero {
  padding: clamp(48px, 6vw, 84px) 0 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(221,96,76,.09), transparent 30%),
    radial-gradient(circle at 89% 10%, rgba(157,91,73,.10), transparent 31%),
    #fbf7f4;
}
.offer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.offer-copy h1 {
  max-width: 790px;
  font-size: clamp(46px, 5.7vw, 78px);
}
.offer-copy .lede { max-width: 720px; }
.offer-value-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 690px;
}
.offer-value-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 14px;
}
.offer-value-list b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--offer-night);
  color: white;
  font-size: 11px;
  letter-spacing: .08em;
}
.offer-form-card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 32px 90px rgba(49, 35, 31, .14);
}
.offer-form-card::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border-radius: 30px;
  background: var(--offer-warm);
}
.offer-form-card h2 { font-size: clamp(31px, 3vw, 44px); }
.offer-form-card > p:not(.offer-badge) { color: var(--muted); margin: 12px 0 24px; }
.offer-badge {
  display: inline-flex;
  margin: 0 0 13px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #8f493d;
  background: #fce2dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lead-magnet-form { grid-template-columns: 1fr 1fr; }
.lead-magnet-form .offer-submit { width: 100%; }
.lead-magnet-form .form-actions { display: block; }
.website-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.instant-proof-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(46px, 6vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.instant-proof-line span {
  padding: 18px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}
.instant-proof-line span:last-child { border-right: 0; }
.offer-preview { scroll-margin-top: 84px; }
.offer-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-preview-card {
  min-height: 280px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, white, #fbf2ee);
}
.offer-preview-card > span {
  display: block;
  margin-bottom: 46px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 42px;
}
.offer-preview-card h3 { font-size: 27px; }
.offer-preview-card p { color: var(--muted); margin-bottom: 0; }
.offer-contents { background: var(--offer-mist); }
.offer-content-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  background: var(--offer-night);
  color: white;
  box-shadow: var(--shadow);
}
.offer-content-card .checklist { margin-bottom: 30px; }
.offer-content-card .checklist li { border-color: rgba(255,255,255,.16); }
.offer-content-card .checklist li::before { color: #f7a08f; }
.offer-content-card .mini-label { color: #f5a292; }
.offer-content-card .button { width: 100%; }
.offer-transparency .eyebrow { color: #f6a896; }
.quote-small {
  margin: 0;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.2;
}
.offer-smallprint { color: rgba(255,255,255,.62); margin-top: 24px; }
.offer-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}
.offer-next-step .lede { max-width: 800px; }
.report-unlock {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #cbb9d4;
  border-radius: 20px;
  background: #f5eef8;
}
.report-unlock[hidden] { display: none; }
.report-unlock h3 { font-size: 28px; }
.report-unlock p:not(.eyebrow) { margin: 9px 0 18px; color: #694f73; }
.offer-page .proof-jump-bar { border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .offer-hero-grid,
  .offer-next-step { grid-template-columns: 1fr; }
  .offer-hero-grid { gap: 42px; }
  .offer-form-card { max-width: 680px; }
  .offer-preview-grid { grid-template-columns: 1fr; }
  .offer-preview-card { min-height: 0; }
  .offer-preview-card > span { margin-bottom: 24px; }
}

@media (max-width: 620px) {
  .offer-page .nav-links > a:not(.button):first-child { display: none; }
  .offer-page .nav-links { gap: 9px; }
  .offer-page .nav-links > a:not(.button) { font-size: 12px; }
  .offer-page .button.small { padding: 0 12px; }
  .offer-hero { padding-top: 48px; }
  .offer-copy h1 { font-size: clamp(42px, 12vw, 58px); }
  .lead-magnet-form { grid-template-columns: 1fr; }
  .lead-magnet-form .field { grid-column: 1 / -1; }
  .offer-form-card { padding: 24px 20px; border-radius: 24px; }
  .instant-proof-line { grid-template-columns: 1fr 1fr; }
  .instant-proof-line span:nth-child(2) { border-right: 0; }
  .instant-proof-line span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { margin-bottom: 32px; }
}

/* New Launch masterclass — cinematic, video-first gate */
.masterclass-page {
  --masterclass-night: #071019;
  --masterclass-panel: #111922;
  --masterclass-edge: rgba(255,255,255,.14);
  --masterclass-text: #f7f3ec;
  --masterclass-dim: rgba(247,243,236,.68);
  background: #f5f1ec;
}
.masterclass-page .shell { width: min(1360px, calc(100% - 80px)); }
.masterclass-page .nav {
  background: color-mix(in srgb, var(--masterclass-night) 94%, transparent);
  border-bottom-color: var(--masterclass-edge);
}
.masterclass-page .brand { color: var(--masterclass-text); }
.masterclass-page .brand small,
.masterclass-page .nav-links a { color: var(--masterclass-dim); }
.masterclass-page .nav .button {
  color: var(--masterclass-text);
  border-color: rgba(255,255,255,.45);
  background: transparent;
}
.masterclass-premiere {
  min-height: 0;
  padding: clamp(52px, 5vw, 68px) 0 18px;
  color: var(--masterclass-text);
  background:
    radial-gradient(circle at 78% 20%, rgba(52,75,93,.24), transparent 33%),
    linear-gradient(122deg, #071019 0%, #050b12 58%, #0d1822 100%);
}
.masterclass-premiere-grid {
  display: grid;
  grid-template-columns: minmax(0,.84fr) minmax(560px,1.16fr);
  gap: clamp(44px, 4vw, 62px);
  align-items: center;
}
.masterclass-copy .eyebrow { color: #f07b68; margin: 0 0 24px; }
.masterclass-copy h1 {
  max-width: 640px;
  font-size: clamp(48px, 4.25vw, 64px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.masterclass-copy h1::after,
.masterclass-decisions h2::after { content: "."; color: #ef715e; }
.masterclass-copy .lede {
  max-width: 620px;
  color: var(--masterclass-dim);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}
.masterclass-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 28px;
  color: rgba(247,243,236,.78);
  font-size: 13px;
}
.masterclass-trust span { display: inline-flex; align-items: center; }
.masterclass-trust span + span::before {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 18px;
  background: rgba(255,255,255,.26);
}
.masterclass-gate-card {
  overflow: hidden;
  border: 1px solid var(--masterclass-edge);
  border-radius: 18px;
  background: rgba(17,25,34,.94);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.masterclass-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151b22;
}
.masterclass-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3,7,11,.82) 100%);
}
.masterclass-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(.82) contrast(1.03);
}
.masterclass-poster-label {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 22px;
  display: grid;
  gap: 3px;
}
.masterclass-poster-label span {
  color: #f28b78;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.masterclass-poster-label strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}
.masterclass-inline-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) auto;
  gap: 14px;
  padding: 22px;
  border-top: 1px solid var(--masterclass-edge);
}
.masterclass-inline-form .field { gap: 0; }
.masterclass-inline-form .field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.masterclass-inline-form .field input {
  min-height: 52px;
  border-color: rgba(255,255,255,.2);
  border-radius: 6px;
  background: rgba(3,7,11,.34);
  color: white;
}
.masterclass-inline-form .field input::placeholder { color: rgba(255,255,255,.62); }
.masterclass-inline-form .field input:focus-visible {
  outline: 3px solid rgba(240,123,104,.35);
  border-color: #f07b68;
}
.masterclass-inline-form .form-actions { grid-column: auto; margin: 0; }
.masterclass-inline-form .button {
  width: 100%;
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 6px;
  white-space: nowrap;
}
.masterclass-consent {
  color: rgba(247,243,236,.72);
  line-height: 1.45;
}
.masterclass-consent b { color: #f28b78; font-weight: 750; }
.masterclass-form-note {
  color: rgba(247,243,236,.52);
  line-height: 1.5;
}
.masterclass-form-note a { color: rgba(247,243,236,.86); text-underline-offset: 3px; }
.masterclass-inline-form .result {
  grid-column: 1 / -1;
  margin-top: 0;
  color: var(--ink);
}
.masterclass-identity-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--masterclass-edge);
  color: rgba(247,243,236,.58);
  font-size: 11px;
  letter-spacing: .03em;
}
.masterclass-decisions { padding: clamp(64px, 6vw, 88px) 0; background: #f5f1ec; }
.masterclass-decisions-grid {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr);
  gap: clamp(60px, 8vw, 128px);
  align-items: start;
}
.masterclass-decisions h2 { max-width: 520px; font-size: clamp(44px, 4.25vw, 60px); }
.masterclass-decision-list { list-style: none; padding: 0; margin: 0; }
.masterclass-decision-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.masterclass-decision-list li:first-child { border-top: 1px solid var(--line); }
.masterclass-decision-list span { color: #df6d59; font-size: 20px; font-weight: 750; }
.masterclass-decision-list p { margin: 0; color: #403a37; font-size: 17px; }
.masterclass-page .masterclass-watch { background: #fff; }
.masterclass-page .masterclass-watch .shell { width: min(1360px, calc(100% - 40px)); }
.masterclass-page .footer { background: #f5f1ec; }
.masterclass-autoplay-note {
  margin: 0 0 20px;
  padding: 13px 16px;
  border: 1px solid rgba(208,92,70,.28);
  border-radius: 14px;
  background: #fff5f2;
  color: #514641;
  font-size: 14px;
}
.masterclass-watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.masterclass-player-column { min-width: 0; }
.masterclass-parts {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.masterclass-parts > span { color: var(--ink); font-weight: 750; }
.masterclass-part-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.masterclass-part-buttons button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.masterclass-part-buttons button:hover,
.masterclass-part-buttons button.active {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}
.consultation-card {
  position: static;
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  background: var(--masterclass-night);
  color: var(--masterclass-text);
  box-shadow: var(--shadow);
}
.consultation-card .eyebrow { margin: 0 0 12px; color: #f28b78; }
.consultation-card h3 { font-size: 34px; }
.consultation-card-intro > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--masterclass-dim);
  font-size: 14px;
}
.consultation-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 0; }
.consultation-form .field input,
.consultation-form .field select {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--masterclass-text);
}
.consultation-form .field select option { color: var(--ink); background: white; }
.consultation-form .field label { color: rgba(255,255,255,.84); }
.consultation-form .button { grid-column: 1 / -1; width: min(100%, 360px); }
.consultation-consent { grid-column: 1 / -1; color: rgba(255,255,255,.68); }
.consultation-form .form-note { grid-column: 1 / -1; color: rgba(255,255,255,.48); }
.consultation-form .result {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  background: #f4eee9;
}


.proof-jump-bar { padding: 18px 0; border-block: 1px solid var(--line); background: var(--ink); color: white; }
.proof-jump-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.proof-jump-inner strong { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.proof-jump-links { display: flex; flex-wrap: wrap; gap: 10px; }
.proof-jump-links a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: white; font-weight: 750; text-decoration: none; }
.proof-jump-links a:hover { border-color: var(--soft-coral); color: var(--soft-coral); }
.proof-jump-links a:focus-visible { outline: 3px solid rgba(255,255,255,.65); outline-offset: 3px; }
.portfolio-section, .proof-section { scroll-margin-top: 84px; }
.proof-section { background: #f4ece8; overflow: hidden; }
.proof-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.proof-count { display: flex; align-items: baseline; gap: 12px; color: var(--muted); font-size: 13px; }
.proof-count strong { color: var(--coral); font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.testimonial-controls { display: flex; gap: 10px; }
.testimonial-control { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font-weight: 700; cursor: pointer; }
.testimonial-control:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); }
.testimonial-control:focus-visible { outline: 3px solid rgba(208,92,70,.28); outline-offset: 2px; }
.testimonial-control:disabled { opacity: .42; cursor: not-allowed; }
.testimonial-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 42%); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--terracotta) transparent; padding: 2px 2px 20px; }
.testimonial-card { scroll-snap-align: start; min-height: 350px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 18px 48px rgba(70,46,38,.07); }
.testimonial-card::before { content: "Client story"; color: var(--terracotta); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.testimonial-card blockquote { margin: 24px 0 28px; font-family: Georgia, serif; font-size: 22px; line-height: 1.42; }
.testimonial-card footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-card cite { display: block; font-style: normal; font-weight: 800; }
.testimonial-card small { color: var(--muted); }
.testimonial-note { max-width: 880px; margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.portfolio-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(220px,.55fr) minmax(220px,.55fr); gap: 18px; align-items: start; }
.video-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 18px 54px rgba(70,46,38,.08); }
.video-frame { position: relative; width: 100%; overflow: hidden; background: #171312; }
.video-frame.wide { aspect-ratio: 16 / 9; }
.video-frame.short { aspect-ratio: 9 / 16; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { padding: 22px; }
.video-meta .mini-label { display: block; margin-bottom: 10px; }
.video-meta h3 { font-size: 24px; }
.video-meta p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.video-meta a { display: inline-block; margin-top: 14px; color: var(--terracotta); font-weight: 750; text-underline-offset: 4px; }
.portfolio-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 22px; }
.portfolio-note { max-width: 760px; margin: 0; color: var(--muted); font-size: 12px; }
.portfolio-footer .button { flex: 0 0 auto; }

.footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-disclosure { flex: 1 0 100%; max-width: 920px; line-height: 1.65; }
.footer-identity { color: var(--ink); font-weight: 700; }
.footer a { color: var(--ink); }

.hub-hero { padding: 90px 0 54px; }
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.hub-card { display: block; min-height: 320px; border-radius: 32px; padding: 34px; text-decoration: none; border: 1px solid var(--line); background: white; position: relative; overflow: hidden; }
.hub-card:nth-child(2) { background: #f3e9e4; }
.hub-card:nth-child(3) { background: #ead3cb; }
.hub-card:nth-child(4) { background: var(--ink); color: white; }
.hub-card span { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 750; color: var(--terracotta); }
.hub-card:nth-child(4) span { color: var(--soft-coral); }
.hub-card h2 { font-size: 42px; margin-top: 20px; max-width: 460px; }
.hub-card p { max-width: 500px; color: var(--muted); }
.hub-card:nth-child(4) p { color: rgba(255,255,255,.65); }
.hub-card::after { content: "→"; position: absolute; right: 30px; bottom: 22px; font-size: 34px; }

@media (max-width: 850px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 54px; }
  .hero-grid, .section-head, .split { grid-template-columns: 1fr; gap: 38px; }
  .masterclass-premiere { min-height: 0; }
  .masterclass-premiere-grid,
  .masterclass-decisions-grid { grid-template-columns: 1fr; }
  .masterclass-copy h1 { max-width: 760px; }
  .masterclass-inline-form { grid-template-columns: 1fr 1fr; }
  .masterclass-inline-form .form-actions { grid-column: 1 / -1; }
  .masterclass-watch-layout { grid-template-columns: 1fr; }
  .consultation-card { position: static; }
  .consultation-card { grid-template-columns: 1fr; }
  .consultation-form { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 520px; margin: 0 auto; }
  .sticky { position: static; }
  .card-grid, .path-grid, .evidence-grid, .faq { grid-template-columns: 1fr; }
  .analysis-layout { grid-template-columns: 1fr; }
  .testimonial-rail { grid-auto-columns: minmax(320px, 72%); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-card.featured { grid-column: 1 / -1; }
  .step { grid-template-columns: 48px 1fr; }
  .step p { grid-column: 2; }
  .calculator { grid-template-columns: 1fr; }
  .calculator-output { grid-column: auto; }
  .hub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1160px); }
  .nav-inner { min-height: 64px; }
  .hero, .section { padding: 60px 0; }
  .masterclass-premiere { padding: 50px 0 20px; }
  .masterclass-premiere-grid { gap: 36px; }
  .masterclass-copy .eyebrow { margin-bottom: 20px; }
  .masterclass-copy h1 { font-size: clamp(42px, 12vw, 56px); }
  .masterclass-copy .lede { font-size: 17px; }
  .masterclass-trust { margin-top: 30px; }
  .masterclass-trust span { width: 100%; }
  .masterclass-trust span + span::before { display: none; }
  .masterclass-gate-card { border-radius: 14px; }
  .masterclass-poster-label { left: 18px; bottom: 16px; }
  .masterclass-inline-form { grid-template-columns: 1fr; padding: 18px; }
  .masterclass-inline-form .form-actions { grid-column: auto; }
  .masterclass-identity-row { align-items: flex-start; flex-direction: column; }
  .masterclass-decisions-grid { gap: 36px; }
  .masterclass-decisions h2 { font-size: 42px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .check-row, .form-actions, .form-note { grid-column: auto; }
  .button { width: 100%; }
  .portrait-note { right: 4px; bottom: 28px; }
  .compare-table { display: table; width: 100%; max-width: 100%; table-layout: fixed; }
  .compare-table th, .compare-table td { padding: 12px 8px; font-size: 11px; overflow-wrap: anywhere; }
  .analysis-head { display: block; }
  .source-chip { margin-top: 18px; }
  .evidence-map { margin-inline: -8px; }
  .decision-signal { grid-template-columns: 38px 1fr; }
  .decision-signal span { grid-column: 2; }
  .proof-jump-inner { align-items: flex-start; flex-direction: column; }
  .proof-jump-links { width: 100%; }
  .proof-jump-links a { flex: 1 1 0; justify-content: center; text-align: center; }
  .portfolio-footer { align-items: stretch; flex-direction: column; }
  .portfolio-footer .button { width: 100%; }
  .proof-summary { align-items: flex-start; flex-direction: column; }
  .testimonial-rail { grid-auto-columns: 92%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: auto; }
  .video-frame.short { max-width: 360px; margin-inline: auto; }
}

/* Option 2: Strive Civic Data Journal */
.journal-page {
  --journal-green: #4b2459;
  --journal-green-2: #6f3a7e;
  --journal-cream: #f5f0e6;
  --journal-paper: #fbf8f1;
  --journal-ink: #19201d;
  --journal-muted: #68716c;
  --journal-rust: #c85f3e;
  --journal-sage: #b79bc4;
  --journal-tan: #d9c7a7;
  --journal-line: #cfcabf;
  --ink: var(--journal-ink);
  --muted: var(--journal-muted);
  --coral: var(--journal-rust);
  --terracotta: #9b4a32;
  --paper: var(--journal-paper);
  --ivory: var(--journal-cream);
  --line: var(--journal-line);
  color: var(--journal-ink);
  background: var(--journal-cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.journal-page h1,
.journal-page h2,
.journal-page h3 {
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  letter-spacing: -.035em;
}
.journal-page .shell { width: min(1420px, calc(100% - 72px)); }
.journal-page .nav {
  color: white;
  background: var(--journal-green);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: none;
}
.journal-page .nav-inner { min-height: 72px; }
.journal-page .brand { color: white; }
.journal-page .brand small { color: rgba(255,255,255,.66); }
.journal-page .nav-links a { color: rgba(255,255,255,.82); }
.journal-page .nav .button {
  min-height: 40px;
  color: white;
  background: transparent;
  border-color: rgba(255,255,255,.7);
  border-radius: 5px;
}
.journal-page .button {
  border-radius: 4px;
  box-shadow: none;
  letter-spacing: .01em;
}
.journal-page .button:hover { box-shadow: none; }
.journal-primary { color: white; background: var(--journal-rust); border-color: var(--journal-rust); }
.journal-secondary { color: var(--journal-green); background: transparent; border-color: var(--journal-green); }
.journal-hero {
  padding: clamp(52px, 6vw, 88px) 0 0;
  overflow: hidden;
  background: var(--journal-cream);
}
.journal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr) minmax(350px, .76fr);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: start;
}
.journal-hero-copy { padding-top: 22px; }
.journal-hero-copy .eyebrow,
.journal-method .eyebrow,
.journal-next-step .eyebrow,
.report-section .eyebrow,
.report-cover .eyebrow { color: var(--journal-rust); }
.journal-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(54px, 5vw, 80px);
  line-height: .99;
}
.journal-hero-copy .lede {
  max-width: 620px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}
.journal-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.journal-text-link { color: var(--journal-green); font-weight: 750; text-underline-offset: 5px; }
.journal-trust-line { margin: 24px 0 0; color: var(--journal-muted); font-size: 12px; letter-spacing: .02em; }
.journal-kicker {
  margin: 0;
  color: var(--journal-rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journal-data-panel {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--journal-line);
}
.journal-data-panel figcaption { padding-bottom: 22px; border-bottom: 1px solid var(--journal-line); }
.journal-data-panel h2 { margin-top: 9px; font-size: clamp(29px, 2.5vw, 40px); line-height: 1.05; }
.journal-signal-chart { display: grid; gap: 18px; padding: 30px 0 24px; }
.journal-signal-row { display: grid; grid-template-columns: 112px 1fr 28px; gap: 12px; align-items: center; }
.journal-signal-row > span { color: var(--journal-muted); font-size: 12px; }
.journal-signal-row > strong { font-size: 12px; color: var(--journal-green); }
.journal-signal-track { height: 18px; background: #e7e0d4; overflow: hidden; }
.journal-signal-track i { display: block; width: var(--signal); height: 100%; background: var(--journal-green); }
.journal-signal-row:nth-child(2) i { background: var(--journal-rust); }
.journal-signal-row:nth-child(3) i { background: var(--journal-sage); }
.journal-signal-row:nth-child(4) i { background: var(--journal-tan); }
.journal-data-panel > p { margin: 18px 0 0; color: var(--journal-muted); font-size: 11px; line-height: 1.55; }
.journal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); }
.journal-metric { padding: 16px 10px; border-right: 1px solid var(--journal-line); }
.journal-metric:last-child { border-right: 0; }
.journal-metric strong { display: block; color: var(--journal-green); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 28px; line-height: 1; }
.journal-metric span { display: block; margin-top: 5px; color: var(--journal-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.journal-form-card {
  padding: 30px;
  color: var(--journal-ink);
  background: var(--journal-paper);
  border-top: 5px solid var(--journal-rust);
  border-left: 1px solid var(--journal-line);
}
.journal-form-card h2 { margin-top: 10px; color: var(--journal-green); font-size: clamp(34px, 2.8vw, 45px); }
.journal-form-card > p:not(.journal-kicker) { margin: 12px 0 24px; color: var(--journal-muted); font-size: 14px; }
.journal-form-card .field { gap: 5px; }
.journal-form-card .field label { color: var(--journal-ink); }
.journal-form-card .field input,
.journal-form-card .field select {
  min-height: 46px;
  color: var(--journal-ink);
  background: #fff;
  border-color: var(--journal-line);
  border-radius: 3px;
}
.journal-form-card .field input::placeholder { color: #8b918d; }
.journal-form-card .check-row { color: var(--journal-muted); line-height: 1.45; }
.journal-form-card .form-note { color: var(--journal-muted); }
.journal-form-card .form-note strong { color: var(--journal-ink); }
.journal-form-card .offer-submit { width: 100%; background: var(--journal-green); border-color: var(--journal-green); }
.journal-form-card .result { color: var(--journal-ink); background: var(--journal-paper); }
.journal-report-strip { padding: clamp(64px, 6vw, 88px) 0 clamp(48px, 5vw, 72px); }
.journal-report-intro { display: grid; grid-template-columns: 220px minmax(0, 600px); gap: 32px; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--journal-line); }
.journal-report-intro h2 { font-size: clamp(36px, 3.6vw, 54px); }
.journal-content-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.journal-content-item { min-height: 230px; padding: 26px 24px 16px 0; border-right: 1px solid var(--journal-line); }
.journal-content-item + .journal-content-item { padding-left: 24px; }
.journal-content-item:last-child { border-right: 0; }
.journal-content-item > span { color: var(--journal-rust); font-size: 13px; font-weight: 800; }
.journal-content-item h3 { margin-top: 35px; font-size: 26px; }
.journal-content-item p { margin: 12px 0 0; color: var(--journal-muted); font-size: 14px; }
.journal-page .proof-jump-bar { color: var(--journal-ink); background: var(--journal-tan); border-color: var(--journal-line); }
.journal-page .proof-jump-links a { color: var(--journal-green); border-color: var(--journal-green); border-radius: 3px; }
.journal-page .portfolio-section,
.journal-page .proof-section { background: var(--journal-paper); }
.journal-page .section-head { border-bottom: 1px solid var(--journal-line); padding-bottom: 24px; }
.journal-page .video-card,
.journal-page .testimonial-card { border-radius: 0; box-shadow: none; }
.journal-page .testimonial-card { border-top: 4px solid var(--journal-green); }
.journal-page .testimonial-control { border-radius: 3px; }
.journal-method { color: white; background: var(--journal-green); }
.journal-method-grid,
.journal-next-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); }
.journal-method h2,
.journal-next-step h2 { font-size: clamp(42px, 4.6vw, 68px); }
.journal-method-copy { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.3); }
.journal-method-copy p { margin: 0 0 28px; max-width: 720px; color: rgba(255,255,255,.72); font-size: 19px; }
.journal-method .journal-secondary { color: white; border-color: white; }
.journal-next-step { background: var(--journal-cream); }
.journal-next-grid > div:last-child { padding-top: 26px; border-top: 1px solid var(--journal-line); }
.journal-next-grid p { max-width: 660px; color: var(--journal-muted); font-size: 18px; }
.journal-page .footer { background: var(--journal-paper); }

/* Editable web reports */
.web-report-page { background: var(--journal-paper); }
.report-locked { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 70px 24px; background: var(--journal-cream); }
.report-locked > div { max-width: 760px; text-align: center; }
.report-locked h1 { font-size: clamp(52px, 7vw, 88px); }
.report-locked p { margin: 24px auto 30px; max-width: 650px; color: var(--journal-muted); font-size: 19px; }
.report-cover { padding: clamp(70px, 8vw, 120px) 0; background: var(--journal-cream); }
.report-cover-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: clamp(60px, 9vw, 140px); align-items: end; }
.report-cover h1 { max-width: 900px; font-size: clamp(66px, 7vw, 110px); line-height: .92; }
.report-cover .lede { max-width: 790px; }
.report-cover-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.report-cover-summary { padding-top: 22px; border-top: 5px solid var(--journal-rust); }
.report-cover-summary .journal-metrics { margin-top: 18px; }
.report-cover-summary > p:last-child { color: var(--journal-muted); font-size: 13px; }
.report-chapter-nav { position: sticky; top: 72px; z-index: 12; border-block: 1px solid var(--journal-line); background: var(--journal-paper); }
.report-chapter-nav .shell { display: flex; overflow-x: auto; }
.report-chapter-nav a { flex: 0 0 auto; padding: 16px 24px 16px 0; margin-right: 24px; color: var(--journal-green); text-decoration: none; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.report-section { padding: clamp(76px, 8vw, 120px) 0; scroll-margin-top: 126px; }
.report-tint { background: var(--journal-cream); }
.report-dark { color: white; background: var(--journal-green); }
.report-two-column { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 140px); }
.report-chapter-intro h2 { font-size: clamp(46px, 5vw, 72px); }
.report-chapter-intro > p:last-child { color: var(--journal-muted); font-size: 17px; }
.report-quick-start { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--journal-line); }
.report-quick-start li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--journal-line); }
.report-quick-start span { color: var(--journal-rust); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 26px; }
.report-quick-start p { margin: 0; font-size: 18px; }
.report-decision-sentence { margin-top: 72px; padding: 44px; color: white; background: var(--journal-green); }
.report-decision-sentence > p:not(.journal-kicker) { margin: 12px 0 0; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(27px, 3vw, 42px); line-height: 1.25; }
[contenteditable="true"] { outline: none; }
.report-decision-sentence span[contenteditable="true"] { color: var(--journal-tan); border-bottom: 1px solid rgba(255,255,255,.55); }
.report-readiness-chart { display: grid; gap: 0; border-top: 1px solid var(--journal-line); }
.report-readiness-row { display: grid; grid-template-columns: minmax(190px, .72fr) 1fr 36px; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--journal-line); }
.report-readiness-row p { margin: 4px 0 0; color: var(--journal-muted); font-size: 12px; }
.report-readiness-track { height: 16px; background: #ded7ca; }
.report-readiness-track i { display: block; width: var(--readiness); height: 100%; background: var(--journal-rust); }
.report-readiness-row > span { color: var(--journal-green); font-weight: 800; }
.report-section-head { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; margin-bottom: 44px; padding-bottom: 24px; border-bottom: 1px solid var(--journal-line); }
.report-section-head h2 { font-size: clamp(46px, 5vw, 72px); }
.report-section-head > p { margin: 0; color: var(--journal-muted); font-size: 17px; }
.report-table-wrap { overflow-x: auto; }
.report-framework-table { width: 100%; min-width: 860px; border-collapse: collapse; }
.report-framework-table th,
.report-framework-table td { padding: 19px 16px; text-align: left; border-bottom: 1px solid var(--journal-line); }
.report-framework-table thead th { color: var(--journal-rust); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.report-framework-table tbody td:first-child { color: var(--journal-rust); font-weight: 800; }
.report-framework-table tbody th { font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 20px; }
.report-writing-line { display: block; min-width: 160px; min-height: 28px; border-bottom: 1px solid var(--journal-line); }
.report-dark .report-section-head { border-color: rgba(255,255,255,.25); }
.report-dark .journal-kicker { color: var(--journal-tan); }
.report-dark .report-section-head > p { color: rgba(255,255,255,.68); }
.report-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.28); }
.report-path-card { padding: 30px; border-right: 1px solid rgba(255,255,255,.28); }
.report-path-card:last-child { border-right: 0; }
.report-path-card > span { color: var(--journal-tan); font-size: 13px; font-weight: 800; }
.report-path-card h3 { margin: 28px 0; font-size: 34px; }
.report-path-card dl { margin: 0; }
.report-path-card dl div { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); }
.report-path-card dt { color: var(--journal-tan); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.report-path-card dd { margin: 5px 0 0; color: rgba(255,255,255,.74); }
.report-red-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--journal-line); }
.report-red-grid article { min-height: 280px; padding: 30px 30px 30px 0; border-right: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); }
.report-red-grid article:nth-child(even) { padding-left: 30px; border-right: 0; }
.report-red-grid article > span { color: var(--journal-rust); font-weight: 800; }
.report-red-grid h3 { margin-top: 32px; max-width: 530px; font-size: 31px; }
.report-red-grid p { margin-top: 34px; color: var(--journal-muted); font-size: 12px; }
.report-note-line { min-height: 34px; border-bottom: 1px solid var(--journal-line); }
.report-note-card { padding: 34px; background: var(--journal-paper); border-top: 5px solid var(--journal-rust); }
.report-note-card label { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--journal-line); color: var(--journal-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.report-note-card span { min-height: 24px; color: var(--journal-ink); text-transform: none; letter-spacing: 0; border-bottom: 1px solid var(--journal-line); }
.report-cta { color: white; background: var(--journal-green); }
.report-cta h2 { font-size: clamp(46px, 5vw, 72px); }
.report-cta p { color: rgba(255,255,255,.72); font-size: 18px; }
.report-cta .report-cta-note { margin: 18px 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.24); font-size: 12px; }
.report-consult-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.report-consult-form .field { gap: 7px; }
.report-consult-form .field:nth-of-type(3) { grid-column: 1 / -1; }
.report-consult-form .field > span { color: rgba(255,255,255,.84); font-size: 12px; font-weight: 760; }
.report-consult-form .field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--journal-ink);
  background: white;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
}
.report-consult-form .field input:focus-visible { outline: 3px solid var(--journal-tan); outline-offset: 2px; }
.report-consult-form .check-row,
.report-consult-form > .button,
.report-consult-form .result { grid-column: 1 / -1; }
.report-consult-form .check-row { color: rgba(255,255,255,.76); line-height: 1.5; }
.report-consult-form .check-row a { color: white; text-underline-offset: 3px; }
.report-consult-form > .button { justify-self: start; background: var(--journal-rust); border-color: var(--journal-rust); }
.report-consult-form > .button:disabled { opacity: .64; cursor: progress; }
.report-consult-form .result { margin-top: 0; color: var(--journal-ink); background: var(--journal-paper); }
.report-consult-form .result.visible { display: block; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

/* Interactive decision calculators */
.report-personal-calculator { background: var(--journal-cream); }
.report-calculator { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(36px, 6vw, 84px); align-items: start; }
.report-calculator-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 5px solid var(--journal-rust); }
.report-calculator-field { min-width: 0; padding: 20px 20px 22px 0; border-right: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); }
.report-calculator-field:nth-child(even) { padding-left: 20px; padding-right: 0; border-right: 0; }
.report-calculator-field > span:first-child { display: block; min-height: 34px; color: var(--journal-muted); font-size: 12px; font-weight: 760; line-height: 1.35; }
.report-calculator-input { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 7px; align-items: baseline; margin-top: 10px; color: var(--journal-green); border-bottom: 1px solid var(--journal-green); }
.report-calculator-input b,
.report-calculator-input em { font-size: 13px; font-style: normal; }
.report-calculator-input input {
  min-width: 0;
  width: 100%;
  padding: 7px 0;
  color: var(--journal-green);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
}
.report-calculator-input input:focus-visible { outline: 3px solid rgba(214,92,65,.24); outline-offset: 4px; }
.report-calculator-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 5px solid var(--journal-green); }
.report-calculator-results article { min-height: 178px; padding: 22px; border-right: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); background: var(--journal-paper); }
.report-calculator-results article:nth-child(even) { border-right: 0; }
.report-calculator-results article span { display: block; color: var(--journal-muted); font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.report-calculator-results article strong { display: block; margin-top: 24px; color: var(--journal-green); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(30px, 3vw, 46px); line-height: 1; }
.report-calculator-results article small { display: block; margin-top: 12px; color: var(--journal-muted); line-height: 1.45; }
.report-calculator-results article.is-negative strong { color: var(--journal-rust); }
.report-calculator-callout { grid-column: 1 / -1; margin: 0; padding: 20px 22px; color: white; background: var(--journal-green); }
.report-calculator-boundary { display: flex; justify-content: space-between; gap: 30px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--journal-line); }
.report-calculator-boundary p { margin: 0; max-width: 850px; color: var(--journal-muted); font-size: 12px; line-height: 1.55; }
.report-calculator-boundary a { flex: 0 0 280px; color: var(--journal-green); font-size: 12px; font-weight: 760; line-height: 1.45; text-underline-offset: 4px; }
.report-analysis { background: var(--journal-paper); }
.report-analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--journal-line); }
.report-analysis-card { padding: 30px 30px 34px 0; border-right: 1px solid var(--journal-line); }
.report-analysis-card + .report-analysis-card { padding-left: 30px; }
.report-analysis-card:last-child { border-right: 0; }
.report-analysis-card h3 { margin: 20px 0 18px; font-size: clamp(30px, 3vw, 43px); line-height: 1.04; }
.report-analysis-card > p:not(.journal-kicker) { color: var(--journal-muted); font-size: 15px; line-height: 1.7; }
.report-analysis-card ul { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--journal-line); }
.report-analysis-card li { position: relative; padding: 16px 0 16px 28px; border-bottom: 1px solid var(--journal-line); font-size: 13px; line-height: 1.55; }
.report-analysis-card li::before { position: absolute; left: 0; top: 18px; width: 9px; height: 9px; content: ""; background: var(--journal-rust); }
.report-scenario-wrap { border-top: 5px solid var(--journal-green); }
.report-scenario-table { width: 100%; min-width: 940px; border-collapse: collapse; background: var(--journal-paper); }
.report-scenario-table th,
.report-scenario-table td { padding: 19px 20px; text-align: left; vertical-align: top; border-right: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); }
.report-scenario-table th:last-child,
.report-scenario-table td:last-child { border-right: 0; }
.report-scenario-table thead th { color: var(--journal-rust); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.report-scenario-table tbody th { width: 170px; color: var(--journal-green); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 19px; }
.report-scenario-table tbody td { color: var(--journal-muted); font-size: 13px; line-height: 1.5; }
.report-case-study { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 120px); margin-top: 76px; padding-top: 34px; border-top: 5px solid var(--journal-rust); }
.report-case-study h3 { margin: 12px 0 20px; font-size: clamp(40px, 4.4vw, 66px); line-height: 1; }
.report-case-study > div > p:not(.journal-kicker) { color: var(--journal-muted); font-size: 16px; line-height: 1.7; }
.report-case-study aside { margin-top: 28px; padding: 22px; color: white; background: var(--journal-green); }
.report-case-study aside strong { color: var(--journal-tan); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.report-case-study aside p { margin: 9px 0 0; color: rgba(255,255,255,.78); line-height: 1.6; }
.report-case-study ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--journal-line); }
.report-case-study li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--journal-line); }
.report-case-study li > span { color: var(--journal-rust); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 27px; }
.report-case-study li strong { font-size: 17px; }
.report-case-study li p { margin: 5px 0 0; color: var(--journal-muted); font-size: 13px; line-height: 1.5; }
.report-consult-prep { background: var(--journal-paper); }
.report-consult-questions { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--journal-line); }
.report-consult-questions li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--journal-line); }
.report-consult-questions li > span { color: var(--journal-rust); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 25px; }
.report-consult-questions p { margin: 0; font-size: 17px; line-height: 1.45; }
.report-consult-questions i { display: block; min-height: 30px; margin-top: 12px; border-bottom: 1px solid var(--journal-line); }

/* Strive research desk: native, accessible data charts */
.research-desk,
.report-research { background: var(--journal-paper); }
.research-desk { border-block: 1px solid var(--journal-line); }
.research-desk-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--journal-line);
}
.research-desk-head h2 { max-width: 880px; font-size: clamp(44px, 4.8vw, 72px); line-height: .98; }
.research-desk-head > p { margin: 0; color: var(--journal-muted); font-size: 17px; line-height: 1.65; }
.research-metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 52px;
  border-top: 1px solid var(--journal-line);
  border-bottom: 1px solid var(--journal-line);
}
.research-metric-card { min-width: 0; padding: 24px 24px 24px 0; border-right: 1px solid var(--journal-line); }
.research-metric-card + .research-metric-card { padding-left: 24px; }
.research-metric-card:last-child { border-right: 0; }
.research-metric-card strong { display: block; color: var(--journal-green); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(36px, 4vw, 58px); line-height: 1; }
.research-metric-card span { display: block; margin-top: 12px; font-weight: 760; line-height: 1.35; }
.research-metric-card small { display: block; margin-top: 7px; color: var(--journal-muted); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.research-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(34px, 5vw, 72px); align-items: stretch; }
.research-chart-card,
.research-calculation-card { margin: 0; padding-top: 24px; border-top: 5px solid var(--journal-green); }
.research-calculation-card { border-top-color: var(--journal-rust); }
.research-chart-card h3,
.research-calculation-card h3 { max-width: 720px; margin-top: 9px; font-size: clamp(32px, 3.2vw, 48px); line-height: 1.02; }
.research-chart-card figcaption > span,
.research-calculation-card > p:not(.journal-kicker) { display: block; margin-top: 10px; color: var(--journal-muted); font-size: 13px; line-height: 1.55; }
.research-bars { display: grid; gap: 21px; margin-top: 34px; }
.research-bar-label { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 8px; color: var(--journal-muted); font-size: 12px; }
.research-bar-label strong { color: var(--journal-ink); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.research-bar-track { height: 24px; background: #e6dfd2; overflow: hidden; }
.research-bar-track i { display: block; width: var(--bar); height: 100%; background: var(--journal-green); }
.research-bar-context .research-bar-track i { background: var(--journal-rust); }
.research-source { margin: 28px 0 0; padding-top: 16px; color: var(--journal-muted); border-top: 1px solid var(--journal-line); font-size: 10px; line-height: 1.55; }
.research-calc-grid { margin-top: 28px; border-top: 1px solid var(--journal-line); }
.research-calc-row { display: grid; grid-template-columns: minmax(120px, .82fr) auto 1.18fr; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--journal-line); }
.research-calc-row strong { font-size: 13px; line-height: 1.35; }
.research-calc-row b { min-width: 64px; color: var(--journal-rust); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; text-align: right; }
.research-calc-row span { color: var(--journal-muted); font-size: 11px; line-height: 1.45; }
.research-caveat { margin: 42px 0 0; padding: 18px 0; color: var(--journal-muted); border-block: 1px solid var(--journal-line); font-size: 12px; line-height: 1.6; }
.research-caveat strong { color: var(--journal-ink); }
.hub-research-desk { background: var(--journal-cream); }
.masterclass-research-desk { background: var(--journal-paper); }

@media (max-width: 1120px) {
  .journal-hero-grid { grid-template-columns: 1fr 1fr; }
  .journal-form-card { grid-column: 1 / -1; display: grid; grid-template-columns: .6fr 1.4fr; gap: 30px; }
  .journal-form-card .lead-magnet-form { grid-column: 2; grid-row: 1 / span 3; }
  .journal-content-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-content-item:nth-child(2) { border-right: 0; }
  .journal-content-item:nth-child(-n+2) { border-bottom: 1px solid var(--journal-line); }
  .research-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .journal-page .shell { width: min(100% - 28px, 1420px); }
  .journal-page .nav-links a:not(.button) { display: none; }
  .journal-page .nav .button { width: auto; padding-inline: 12px; font-size: 11px; }
  .journal-hero-grid,
  .journal-method-grid,
  .journal-next-grid,
  .report-cover-grid,
  .report-two-column,
  .report-section-head { grid-template-columns: 1fr; }
  .research-desk-head { grid-template-columns: 1fr; gap: 20px; }
  .research-metric-band { grid-template-columns: repeat(2, 1fr); }
  .research-metric-card:nth-child(2) { border-right: 0; }
  .research-metric-card:nth-child(-n+2) { border-bottom: 1px solid var(--journal-line); }
  .research-metric-card:nth-child(3) { padding-left: 0; }
  .research-calc-row { grid-template-columns: 1fr auto; }
  .research-calc-row span { grid-column: 1 / -1; }
  .journal-hero-copy h1 { font-size: clamp(48px, 13vw, 64px); }
  .journal-data-panel { padding-top: 14px; }
  .journal-form-card { grid-column: auto; display: block; padding: 24px 20px; }
  .journal-form-card .lead-magnet-form { display: grid; }
  .journal-report-intro { grid-template-columns: 1fr; gap: 12px; }
  .journal-content-grid { grid-template-columns: 1fr; }
  .journal-content-item,
  .journal-content-item + .journal-content-item { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--journal-line); }
  .journal-content-item h3 { margin-top: 14px; }
  .journal-method-grid,
  .journal-next-grid { gap: 34px; }
  .report-cover h1 { font-size: clamp(54px, 15vw, 78px); }
  .report-cover-actions { align-items: stretch; flex-direction: column; }
  .report-cover-actions .button { width: 100%; }
  .report-chapter-nav { top: 64px; }
  .report-decision-sentence { padding: 26px 20px; }
  .report-readiness-row { grid-template-columns: 1fr 32px; }
  .report-readiness-track { grid-column: 1; }
  .report-readiness-row > span { grid-column: 2; grid-row: 2; }
  .report-path-grid,
  .report-red-grid,
  .report-analysis-grid,
  .report-case-study { grid-template-columns: 1fr; }
  .report-analysis-card,
  .report-analysis-card + .report-analysis-card { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--journal-line); }
  .report-case-study { gap: 34px; margin-top: 52px; }
  .report-path-card,
  .report-path-card:last-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .report-red-grid article,
  .report-red-grid article:nth-child(even) { min-height: 0; padding: 26px 0; border-right: 0; }
  .report-note-card { padding: 24px 18px; }
  .report-note-card label { grid-template-columns: 1fr; gap: 8px; }
}
@media print {
  .journal-page .nav,
  .report-chapter-nav,
  .report-cover-actions,
  .report-cta,
  .journal-page .footer { display: none !important; }
  .report-section,
  .report-cover { padding: 36px 0; break-inside: avoid; }
  .report-dark { color: var(--journal-ink); background: white; }
  .report-path-card { color: var(--journal-ink); border-color: var(--journal-line); }
  .report-path-card dd,
  .report-dark .report-section-head > p { color: var(--journal-muted); }
}

/* Option 2 main Strive landing page */
.journal-hub-hero { padding: clamp(72px, 8vw, 120px) 0; background: var(--journal-cream); }
.journal-hub-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.journal-hub-hero h1 { max-width: 820px; font-size: clamp(66px, 7vw, 108px); line-height: .92; }
.journal-hub-hero .lede { max-width: 730px; }
.hub-decision-board { margin: 0; padding-top: 22px; border-top: 5px solid var(--journal-rust); }
.hub-decision-board h2 { margin-top: 10px; font-size: clamp(34px, 3.2vw, 50px); }
.hub-decision-board ol { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--journal-line); }
.hub-decision-board li { display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--journal-line); }
.hub-decision-board li > span { color: var(--journal-rust); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 24px; }
.hub-decision-board li strong { font-size: 15px; }
.hub-decision-board li p { margin: 3px 0 0; color: var(--journal-muted); font-size: 12px; }
.hub-decision-board li b { color: var(--journal-green); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.journal-hub-reports { padding: clamp(76px, 8vw, 120px) 0; background: var(--journal-paper); }
.hub-report-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--journal-line); }
.hub-report-card { min-height: 350px; padding: 34px 34px 34px 0; color: var(--journal-ink); text-decoration: none; border-right: 1px solid var(--journal-line); border-bottom: 1px solid var(--journal-line); }
.hub-report-card:nth-child(even) { padding-left: 34px; border-right: 0; }
.hub-report-card > span { color: var(--journal-rust); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hub-report-card h3 { max-width: 520px; margin-top: 54px; font-size: clamp(38px, 4vw, 58px); }
.hub-report-card p { max-width: 600px; color: var(--journal-muted); font-size: 16px; }
.hub-report-card b { display: inline-block; margin-top: 24px; color: var(--journal-green); font-size: 13px; }
.hub-report-card:hover b { color: var(--journal-rust); }
.hub-principles { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.26); }
.hub-principles span { padding: 16px 14px 16px 0; color: var(--journal-tan); border-bottom: 1px solid rgba(255,255,255,.2); font-size: 13px; }
.journal-hub-standards { padding: clamp(76px, 8vw, 120px) 0; background: var(--journal-cream); }
.journal-hub-standards h2 { font-size: clamp(46px, 5vw, 72px); }
.hub-standard-list { border-top: 1px solid var(--journal-line); }
.hub-standard-list p { display: grid; grid-template-columns: 170px 1fr; gap: 26px; margin: 0; padding: 22px 0; border-bottom: 1px solid var(--journal-line); }
.hub-standard-list strong { color: var(--journal-green); }
.hub-standard-list span { color: var(--journal-muted); }

/* Option 2 masterclass gate and watch */
.journal-masterclass-page { background: var(--journal-paper); }
.journal-masterclass-page .masterclass-premiere {
  color: var(--journal-ink);
  background: var(--journal-cream);
}
.journal-masterclass-page .masterclass-premiere-grid { grid-template-columns: .88fr 1.12fr; }
.journal-masterclass-page .masterclass-copy .eyebrow { color: var(--journal-rust); }
.journal-masterclass-page .masterclass-copy h1 { max-width: 720px; color: var(--journal-ink); font-size: clamp(58px, 5.2vw, 82px); line-height: .96; }
.journal-masterclass-page .masterclass-copy .lede { color: var(--journal-muted); }
.journal-masterclass-page .masterclass-copy h1::after,
.journal-masterclass-page .masterclass-decisions h2::after { color: var(--journal-rust); }
.journal-masterclass-page .masterclass-trust { color: var(--journal-muted); }
.journal-masterclass-page .masterclass-trust span + span::before { background: var(--journal-line); }
.journal-masterclass-page .masterclass-gate-card { border-radius: 0; background: var(--journal-green); box-shadow: none; border: 0; border-top: 5px solid var(--journal-rust); }
.journal-masterclass-page .masterclass-poster { background: #d8d0c2; }
.journal-masterclass-page .masterclass-poster::after { background: rgba(75,36,89,.42); }
.journal-masterclass-page .masterclass-poster-label span { color: #f0b9a6; }
.journal-masterclass-page .masterclass-inline-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.journal-masterclass-page .masterclass-inline-form .form-actions { grid-column: 1 / -1; }
.journal-masterclass-page .masterclass-inline-form .button { background: var(--journal-rust); border-color: var(--journal-rust); }
.journal-masterclass-page .masterclass-identity-row { color: var(--journal-muted); border-color: var(--journal-line); }
.journal-masterclass-page .masterclass-decisions { background: var(--journal-paper); }
.journal-masterclass-page .masterclass-decision-list span { color: var(--journal-rust); }
.journal-masterclass-page .masterclass-watch { background: var(--journal-paper); }
.journal-masterclass-page .masterclass-player,
.journal-masterclass-page .consultation-card { border-radius: 0; box-shadow: none; }
.journal-masterclass-page .consultation-card { background: var(--journal-green); border-top: 5px solid var(--journal-rust); }
.journal-masterclass-page .masterclass-part-buttons button { border-radius: 3px; }
.journal-masterclass-page .masterclass-part-buttons button:hover,
.journal-masterclass-page .masterclass-part-buttons button.active { background: var(--journal-rust); border-color: var(--journal-rust); }
.journal-masterclass-page .footer { background: var(--journal-cream); }

@media (max-width: 900px) {
  .report-calculator { grid-template-columns: 1fr; }
  .report-calculator-boundary { display: grid; }
  .report-calculator-boundary a { flex-basis: auto; }
  .journal-hub-hero-grid { grid-template-columns: 1fr; }
  .journal-masterclass-page .masterclass-premiere-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .report-consult-form,
  .report-calculator-fields,
  .report-calculator-results { grid-template-columns: 1fr; }
  .report-consult-form .field:nth-of-type(3) { grid-column: auto; }
  .report-consult-form .check-row,
  .report-consult-form > .button,
  .report-consult-form .result,
  .report-calculator-callout { grid-column: auto; }
  .report-calculator-field,
  .report-calculator-field:nth-child(even) { padding: 18px 0; border-right: 0; }
  .report-calculator-results article { min-height: 0; border-right: 0; }
  .journal-hub-hero h1 { font-size: clamp(54px, 15vw, 76px); }
  .hub-report-grid { grid-template-columns: 1fr; }
  .hub-report-card,
  .hub-report-card:nth-child(even) { min-height: 0; padding: 28px 0; border-right: 0; }
  .hub-report-card h3 { margin-top: 24px; }
  .hub-standard-list p { grid-template-columns: 1fr; gap: 6px; }
  .journal-masterclass-page .masterclass-copy h1 { font-size: clamp(48px, 13vw, 66px); }
  .journal-masterclass-page .masterclass-inline-form { grid-template-columns: 1fr; }
  .journal-masterclass-page .masterclass-inline-form .form-actions { grid-column: auto; }
}
