:root {
  --paper: #ffffff;
  --ink: #171a18;
  --body: #4d5751;
  --muted: #717a74;
  --green: #57957d;
  --wash: #f1f6f3;
  --gray: #f5f7f6;
  --line: #d6dcd8;
}

* { box-sizing: border-box; }

html { background: #edf0ed; }

body {
  margin: 0;
  color: var(--body);
  background: #edf0ed;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.document {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 68px 88px 60px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.upper-wash {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 420px;
  background: var(--wash);
  z-index: 0;
}

.top-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 6px;
  background: var(--green);
  z-index: 1;
}

.document > *:not(.upper-wash):not(.top-accent) { position: relative; z-index: 2; }

.document-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.brand { color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.confidential { color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 40px;
  padding: 54px 0 34px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, p { margin: 0; }

h1 {
  color: var(--ink);
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .99;
  max-width: 760px;
}

.hero-summary {
  max-width: 640px;
  margin-top: 26px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

.hero-meta { padding-top: 66px; }
.hero-meta strong { display: block; margin-bottom: 14px; color: var(--green); font-size: 11px; letter-spacing: .14em; }
.hero-meta span { display: block; color: var(--muted); font-size: 11px; line-height: 1.55; }
.hero-meta span + span { margin-top: 28px; }

.lead-callout {
  margin: 0 0 20px;
  padding: 25px 28px;
  border-left: 5px solid var(--green);
  background: var(--gray);
}

.lead-callout p { max-width: 900px; color: #2f3832; font-size: 15px; line-height: 1.55; }

.profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric { min-height: 112px; padding: 25px 24px 18px 0; border-right: 1px solid var(--line); }
.metric + .metric { padding-left: 24px; }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--ink); font-size: 31px; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.metric span { display: block; margin-top: 14px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }
.metric-note { margin: 12px 0 0; color: var(--muted); font-size: 9px; }

.strategy-returns { padding: 56px 0 42px; border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 38px; text-align: center; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading h2 { color: var(--ink); font-size: 26px; font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.main-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; }
.main-grid > * { min-width: 0; }
.strategy-block h2, .cfo-block h2 { color: var(--ink); font-size: 28px; font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.strategy-block, .returns-block { text-align: center; }
.strategy-block h2, .returns-block h2 { text-align: center; }
.body-copy { max-width: 520px; margin: 18px auto 0; color: var(--body); font-size: 13px; line-height: 1.55; }

.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.tile { min-height: 100px; padding: 17px; background: var(--gray); }
.tile-number { display: block; margin-bottom: 12px; color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.tile strong { display: block; color: var(--ink); font-size: 13px; line-height: 1.2; }
.tile p { margin-top: 9px; color: var(--muted); font-size: 11px; line-height: 1.35; }

.returns-block h2 { color: var(--ink); font-size: 28px; font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.returns-intro { max-width: 420px; margin: 15px auto 0; color: var(--body); font-size: 12px; line-height: 1.45; }
.returns-table-wrap { max-width: 100%; margin-top: 24px; overflow-x: auto; }
.returns-table { width: 100%; min-width: 430px; border-collapse: collapse; table-layout: fixed; }
.returns-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.returns-table th, .returns-table td { padding: 7px 3px; border-bottom: 1px solid var(--line); color: var(--green); font-size: 8px; line-height: 1.1; text-align: right; white-space: nowrap; }
.returns-table thead th { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.returns-table thead th:nth-child(odd), .returns-table tbody th { width: 13%; text-align: left; }
.returns-table thead th:nth-child(even) { width: 12%; }
.returns-table tbody th { color: var(--ink); font-size: 8px; font-weight: 700; }
.returns-table thead th:nth-child(1), .returns-table thead th:nth-child(2), .returns-table tbody tr > :nth-child(1), .returns-table tbody tr > :nth-child(2) { background: var(--gray); }
.returns-table thead th:nth-child(5), .returns-table thead th:nth-child(6), .returns-table tbody tr > :nth-child(5), .returns-table tbody tr > :nth-child(6) { background: var(--wash); }
.returns-table .blank { color: #b4bdb7; }
.returns-note { margin: 14px auto 0; color: var(--muted); font-size: 9px; line-height: 1.4; text-align: center; }

.cfo-block { margin: 42px 0 36px; padding: 25px 28px 28px; background: var(--wash); }
.cfo-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.cfo-intro { padding-right: 28px; border-right: 1px solid var(--green); }
.cfo-intro .role { margin-top: 10px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cfo-intro > p:last-child { margin-top: 22px; color: var(--body); font-size: 13px; line-height: 1.45; }
.career-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; row-gap: 14px; }
.career-list > div { padding-top: 12px; border-top: 1px solid rgba(87,149,125,.32); }
.career-list span { color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.career-list p { margin-top: 7px; color: var(--body); font-size: 11px; line-height: 1.4; }

.bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; padding-bottom: 38px; }
.terms { margin: 0; }
.terms > div { display: grid; grid-template-columns: 100px 1fr; padding: 8px 0; border-bottom: 1px solid var(--line); }
.terms dt { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.terms dd { margin: 0; color: var(--body); font-size: 11px; }
.access-block { padding-left: 30px; border-left: 1px solid var(--line); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 11px 17px; border: 1px solid var(--ink); font-size: 11px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { color: white; background: var(--green); border-color: var(--green); }
.button-line { color: var(--ink); background: white; }
.button-line:hover { color: white; background: var(--ink); }

.document-footer { padding-top: 23px; border-top: 1px solid var(--line); }
.document-footer > p { color: var(--muted); font-size: 9px; line-height: 1.45; text-align: right; }
.document-footer > div { display: flex; justify-content: space-between; margin-top: 26px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media print {
  html, body { background: white; }
  .document { width: 210mm; min-height: 297mm; padding: 17mm 18mm 14mm; }
}

@media (max-width: 860px) {
  html, body { background: white; }
  .document { width: 100%; padding: 34px 24px 40px; }
  .upper-wash { width: 38%; height: 270px; }
  .document-header { padding-bottom: 20px; }
  .confidential { max-width: 170px; text-align: right; }
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 42px 0 28px; }
  h1 { font-size: clamp(42px, 11vw, 64px); }
  .hero-summary { font-size: 15px; }
  .hero-meta { padding-top: 0; }
  .hero-meta span + span { margin-top: 7px; }
  .profile { grid-template-columns: repeat(2, 1fr); }
  .metric { min-height: 98px; padding: 20px 14px 14px 0; }
  .metric + .metric { padding-left: 14px; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .main-grid, .bottom-grid { grid-template-columns: 1fr; gap: 40px; }
  .strategy-returns { padding: 44px 0 34px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 24px; }
  .returns-table { min-width: 430px; }
  .cfo-block { padding: 22px 18px 20px; }
  .cfo-layout { grid-template-columns: 1fr; gap: 25px; }
  .cfo-intro { padding: 0 0 22px; border-right: 0; border-bottom: 1px solid var(--green); }
  .career-list { grid-template-columns: 1fr; }
  .access-block { padding: 34px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .document-footer > p { text-align: left; }
  .document-footer > div { gap: 18px; flex-wrap: wrap; }
}

@media (max-width: 470px) {
  .document { padding-left: 20px; padding-right: 20px; }
  .document-header { align-items: flex-start; gap: 16px; }
  .brand { font-size: 10px; }
  .confidential { font-size: 8px; letter-spacing: .11em; }
  .lead-callout { padding: 18px; }
  .lead-callout p { font-size: 13px; }
  .tiles { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
  .metric strong { font-size: 27px; }
  .metric span { font-size: 8px; }
  .actions { align-items: stretch; flex-direction: column; }
}
