/* Alpha Momentum — public landing page
   Extends the prospectus brochure's visual identity (dashboard/prospectus.html)
   to a full responsive web page. Deliberately separate from the Tailwind
   build (css/main.css) which serves the authenticated dashboard's own
   (unrelated) royal-blue brand system. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:      #F9F3EA;
  --paper-2:    #F3EBDA;
  --white:      #FFFFFF;
  --ink:        #1A2236;
  --ink-soft:   #3A4460;
  --body:       #4A5568;
  --muted:      #8A8676;
  --gold:       #B8965A;
  --gold-soft:  #E4D3AB;
  --border:     #DDD5C4;
  --border-2:   #C9BFA6;
  --win:        #2A6B4A;
  --loss:       #8B2A2A;

  --max: 1200px;
  --gutter: 32px;
  --pad-desktop: 120px;
  --pad-mobile: 72px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.num, .tabnum {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Section rhythm ---------- */

section[data-section] {
  padding: var(--pad-desktop) 0;
}
.bg-paper   { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 24px;
  height: 1px;
  background: var(--border-2);
}
.section-label.align-start {
  justify-content: flex-start;
}
.section-label.align-start::after { display: none; }

h1, h2, h3, .serif {
  font-family: 'Playfair Display', serif;
}

.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo {
  height: 24px;
  width: auto;
  display: block;
}
.nav-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--border-2);
  padding-left: 14px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-ctas .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  white-space: nowrap;
}
.nav-login {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-login:hover, .nav-login:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink-soft);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}
.btn-block {
  width: 100%;
  height: 52px;
  font-size: 15px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-watermark {
  position: absolute;
  top: -20px;
  right: max(0px, calc((100vw - var(--max)) / 2 + 8px));
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 260px;
  line-height: 1;
  color: rgba(184, 150, 90, 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero h1 .dot { color: var(--gold); }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 560px;
}
.hero-body {
  font-size: 15px;
  color: var(--body);
  line-height: 1.72;
  max-width: 620px;
  margin-bottom: 16px;
}
.compliance-strip {
  font-size: 12px;
  color: var(--muted);
  border-left: 1px solid var(--gold);
  padding-left: 12px;
  margin: 24px 0 28px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ---------- Momentum map card ---------- */

.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px;
  max-width: 420px;
  margin-left: auto;
}
.map-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.map-caps {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.map-pill {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--gold-soft);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 4px 12px;
}
.map-instrument {
  margin-bottom: 16px;
}
.map-instrument .name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.map-instrument .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.map-chart {
  width: 100%;
  height: auto;
  background: var(--paper-2);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.map-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 18px;
}
.map-zone-label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.map-zone-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.map-foot {
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 40px;
  padding-bottom: 40px;
}
.stat-cell {
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.stat-cell:first-child { padding-left: 0; }
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
}
.stat-label span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* ---------- Headings / copy ---------- */

h2.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 760px;
}
.section-copy {
  font-size: 15px;
  color: var(--body);
  line-height: 1.72;
  max-width: 680px;
  margin-bottom: 24px;
}

/* ---------- Quote cards ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.quote-card {
  border-left: 3px solid var(--gold);
  background: rgba(184, 150, 90, 0.10);
  padding: 20px 24px;
}
.quote-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}

.how-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.how-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 14px;
}
.how-box p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 12px;
}
.how-box p:last-child { margin-bottom: 0; }

/* ---------- Funnel ---------- */

.funnel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-2);
  border: 1px solid var(--border);
  padding: 24px 28px;
  margin: 28px 0 40px;
}
.funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}
.funnel-step .fn-num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.funnel-step .fn-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.funnel-arrow {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  padding: 0 12px;
  flex-shrink: 0;
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.step {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}
.step.step-full {
  grid-column: 1 / -1;
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.step p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}

.framework-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 720px;
  margin-top: 32px;
}

/* ---------- Performance ---------- */

.perf-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
}
.perf-chart-title {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 12px;
}
.perf-chart-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
}
.perf-chart {
  width: 100%;
  height: auto;
}

.perf-table {
  background: var(--white);
  border: 1px solid var(--border);
}
.perf-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 0 20px;
  height: 40px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.perf-row:last-child { border-bottom: none; }
.perf-row .metric {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.perf-row .val {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ink);
}
.perf-row .val.win { color: var(--win); }
.perf-row .val.loss { color: var(--loss); }
.perf-disclaimer {
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
}

/* ---------- Edges ---------- */

.edges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.edge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px;
}
.edge-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.edge-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.edge-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}

.risk-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.risk-block h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.risk-block p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}

/* ---------- Onboarding timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 56px;
}
.timeline-step {
  padding: 0 20px;
  position: relative;
}
.timeline-step:first-child { padding-left: 0; }
.timeline-num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.timeline-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 16px;
}
.timeline-rule {
  border-top: 1px solid var(--border);
  padding-top: 0;
}
.timeline-chevron {
  position: absolute;
  right: -6px;
  top: 0;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.briefing-card {
  background: var(--paper-2);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
}
.briefing-caps {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}
.briefing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 32px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.field select { background-color: var(--white); }
.field textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
.form-status {
  font-size: 13px;
  text-align: center;
  margin-top: 16px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { color: var(--win); }
.form-status.error { color: var(--loss); }

/* ---------- FAQ ---------- */

.faq {
  max-width: 800px;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq details[open] summary .chev {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 680px;
}

/* ---------- Closing pull-quote ---------- */

.closing {
  padding: 96px 0;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(184,150,90,0.14), rgba(255,255,255,0.72));
  border: 1px solid var(--border);
}
.closing-inner p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
}
.closing-attribution {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-col p, .footer-col a, .footer-col li {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  text-decoration: none;
  list-style: none;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid var(--border-2);
  margin-bottom: 20px;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 980px;
}
.footer-disclaimer p { margin-bottom: 12px; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .map-card { margin-left: 0; max-width: 480px; }
  .perf-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-eyebrow { display: none; }
}

@media (max-width: 860px) {
  .stat-strip .container,
  .quote-grid,
  .steps,
  .edges,
  .timeline {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .stat-cell:first-child { padding-top: 0; }
  .stat-cell:last-child { border-bottom: none; padding-bottom: 0; }
  .funnel { flex-direction: column; gap: 20px; }
  .funnel-arrow { transform: rotate(90deg); }
  .timeline-step { padding: 0 0 32px; border-bottom: 1px solid var(--border); }
  .timeline-step:last-child { border-bottom: none; padding-bottom: 0; }
  .timeline-chevron { display: none; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }
  section[data-section] { padding: var(--pad-mobile) 0; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 44px; }
  .hero-watermark { font-size: 140px; top: -8px; }
  h2.section-title { font-size: 28px; }
  .briefing-card { padding: 32px 24px; }
  .closing-inner { padding: 32px 24px; }
  .nav-inner { height: 64px; }
  .nav-eyebrow { display: none; }
  .nav-ctas { gap: 10px; }
  .nav-ctas .btn { padding: 8px 12px; font-size: 12px; }
  .nav-login { font-size: 12px; }
}

@media (max-width: 560px) {
  .nav-ctas .btn-primary span { display: none; }
  .nav-ctas .btn-primary::after { content: 'Briefing'; }
}

@media (max-width: 440px) {
  .nav-logo { height: 17px; }
  .nav-ctas { gap: 6px; }
  .nav-ctas .btn { padding: 6px 10px; font-size: 11.5px; }
  .nav-login { font-size: 11.5px; }
}

/* ---------- Inline SVG chart classes ---------- */

.chart-bg { fill: var(--paper-2); }
.chart-line { stroke: var(--ink); fill: none; stroke-width: 1.5; }
.chart-zone { stroke: var(--gold); stroke-width: 1; stroke-dasharray: 4 3; }
.chart-zone-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: var(--gold);
}
.bar-win { fill: var(--win); }
.bar-loss { fill: var(--loss); }
.chart-axis { stroke: var(--border); stroke-width: 1; }
.chart-expectancy { stroke: var(--gold); stroke-width: 1; stroke-dasharray: 3 3; }
.chart-axis-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  fill: var(--muted);
}

/* ---------- Print ---------- */

@media print {
  .nav, .hero-ctas, .briefing-card, #briefing-form { display: none !important; }
  section[data-section] { padding: 32px 0; }
  body { background: #fff; }
}
