:root {
  --ink: #101b29;
  --night: #17243a;
  --teal: #2a5a4a;
  --blue: #456997;
  --blush: #d4ad91;
  --paper: #fffdf9;
  --canvas: #eef1f1;
  --muted: #52606c;
  --line: #cdd5d5;
  --gold: #dfc18b;
  --mist-blue: #dfe8f2;
  --mist-teal: #e2eee8;
  --mist: linear-gradient(145deg, var(--mist-blue), var(--mist-teal));
  --sans: Arial, Helvetica, sans-serif;
  --page: min(1180px, calc(100% - 56px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; text-wrap: pretty; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.05em; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-170%);
}

.skip-link:focus { transform: translateY(0); }

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold);
}

.site-header {
  position: absolute;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 18px max(28px, calc((100% - 1180px) / 2));
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark { display: block; width: auto; height: 32px; flex: none; }
.brand-line { stroke: var(--gold); }
.brand-nodes { fill: #fff; stroke: #fff; }

.brand small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.site-header a:focus-visible { outline-color: #fff; }
.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover { color: #fff; }
main { overflow: hidden; }

.hero {
  display: grid;
  min-height: min(760px, 100vh);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: 136px max(28px, calc((100% - 1180px) / 2)) 94px;
  border-radius: 0 0 34px 34px;
  background-color: var(--night);
  background-image:
    linear-gradient(180deg, rgba(16, 27, 41, 0.08), rgba(16, 27, 41, 0.42)),
    radial-gradient(ellipse at 15% 12%, rgba(212, 173, 145, 0.82), transparent 35%),
    radial-gradient(ellipse at 88% 24%, rgba(69, 105, 151, 0.92), transparent 42%),
    radial-gradient(ellipse at 58% 100%, rgba(42, 90, 74, 0.96), transparent 46%),
    linear-gradient(165deg, #8797aa, var(--night) 66%);
  color: #fff;
}

.hero-copy { width: 100%; }

.kicker {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .kicker { color: rgba(255, 255, 255, 0.84); }

h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(50px, 5.8vw, 76px);
  line-height: 1.01;
  text-shadow: 0 2px 28px rgba(8, 15, 28, 0.2);
  text-wrap: balance;
}

.fund-status {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.fund-status span { position: relative; padding-left: 18px; }
.fund-status span::before { position: absolute; left: 0; content: "·"; }

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(8, 15, 28, 0.18);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(16, 27, 41, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button.primary { border-color: #fff; background: #fff; color: var(--ink); }
.button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.hero-callout {
  width: 100%;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(69, 105, 151, 0.13);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--mist-blue), var(--mist-teal));
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-callout .kicker { margin-bottom: 12px; color: var(--teal); }

.hero-callout h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.08;
}

.callout-facts { margin: 0; }

.callout-facts div {
  display: grid;
  grid-template-columns: minmax(100px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
}

.callout-facts div + div { border-top: 1px solid var(--line); }

.callout-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.callout-facts dd {
  margin-left: 0;
  font-size: 14px;
  line-height: 1.5;
}

.hero-callout .actions { margin-top: 24px; }
.hero-callout .button { min-height: 42px; padding: 10px 16px; border-color: rgba(16, 27, 41, 0.45); background: transparent; color: var(--ink); font-size: 12px; }
.hero-callout .button.primary { border-color: var(--ink); background: var(--ink); color: #fff; }
.hero-callout .button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.profile,
.directory,
.performance,
.articles {
  width: var(--page);
  margin: 28px auto;
  padding: clamp(62px, 8vw, 108px) clamp(26px, 6vw, 82px);
  border-radius: 28px;
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.section-heading .kicker { margin-bottom: 14px; }
.section-heading h2 { max-width: 780px; }
.section-deck {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mist-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(69, 105, 151, 0.13);
  border-radius: 22px;
  background: var(--mist-blue);
  background-image: var(--mist);
}

.card-index {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mist-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.mist-card p:not(.card-index) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.operations-card { padding: 0 clamp(26px, 4vw, 42px); }

.operation-point {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(30px, 5vw, 52px) 0;
}

.operation-point + .operation-point { border-top: 1px solid var(--line); }
.operation-point .card-index { margin: 7px 0 0; }
.operation-point h3 { max-width: 720px; font-size: clamp(24px, 2.7vw, 34px); }

.directory-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.directory-card > span:last-child {
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.directory-card:hover {
  border-color: rgba(42, 90, 74, 0.42);
  background-image: linear-gradient(145deg, #d9e5f1, #daebe4);
}

.record {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(230px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  margin: 28px auto;
  padding: clamp(58px, 6vw, 82px) clamp(26px, 6vw, 82px);
  border-radius: 28px;
  background: var(--paper);
}

.record .kicker { margin-bottom: 18px; }
.record h2 { font-size: clamp(34px, 4vw, 48px); white-space: nowrap; }
.record-copy { align-self: center; max-width: 620px; }

.manager-portrait { margin: 28px 0 0; max-width: 230px; }
.manager-portrait img { display: block; width: 100%; height: auto; border-radius: 20px; }
.manager-portrait figcaption { margin-top: 12px; color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }

.performance .section-heading { margin-bottom: clamp(30px, 5vw, 48px); }

.equity-panel-link {
  display: block;
  border-radius: 20px;
  color: var(--ink);
  text-decoration: none;
}

.equity-panel {
  margin: 0;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 4vw, 34px) 20px;
  border: 1px solid rgba(69, 105, 151, 0.13);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--mist-blue), var(--mist-teal));
}

.equity-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--paper);
}

.equity-panel figcaption { margin-top: 14px; color: var(--muted); font-size: 13px; }
.equity-panel-link:hover .equity-panel { border-color: rgba(42, 90, 74, 0.42); }
.performance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.report-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(16, 27, 41, 0.42);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.report-button.primary { border-color: var(--ink); background: var(--ink); color: #fff; }
.report-button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.record-copy p { margin-bottom: 22px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.record-copy p:last-child { margin-bottom: 0; }

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.founder-link {
  display: inline-flex;
  min-width: 132px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(16, 27, 41, 0.42);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.founder-link.primary { border-color: var(--ink); background: var(--ink); color: #fff; }
.founder-link:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.article-directory { border-top: 1px solid var(--line); }

.article-entry { border-bottom: 1px solid var(--line); }

.article-entry summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: 30px 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.article-entry summary::-webkit-details-marker { display: none; }
.article-entry summary::marker { content: ""; }

.article-index {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-summary-copy { display: block; }
.article-summary-copy strong {
  display: block;
  font-size: clamp(23px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.article-summary-copy > span {
  display: block;
  max-width: 760px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.article-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 20px;
}

.article-toggle::before { content: "+"; }
.article-entry[open] .article-toggle::before { content: "−"; }
.article-entry summary:hover strong { color: var(--teal); }

.article-entry-body {
  max-width: 820px;
  padding: 0 0 34px calc(54px + clamp(16px, 3vw, 34px));
}

.article-entry-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.article-entry-body a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.article-entry-body a:hover { text-decoration: underline; }

.disclosure {
  width: var(--page);
  margin: 0 auto 64px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.disclosure h2 {
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.disclosure p { max-width: 980px; margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px max(28px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.site-footer strong { color: #fff; letter-spacing: 0.1em; }

@media (prefers-reduced-motion: no-preference) {
  a { transition: color 140ms ease, background-color 180ms ease, border-color 180ms ease; }
}

@media (max-width: 920px) {
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding-top: 132px; }
  .hero-callout { width: 100%; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 36px); }
  .site-header { min-height: 76px; padding: 15px 20px; }
  .site-nav { display: none; }
  .hero { min-height: auto; padding: 122px 20px 62px; border-radius: 0 0 26px 26px; }
  h1 { font-size: clamp(46px, 12.4vw, 58px); }
  .fund-status { display: grid; gap: 5px; }
  .fund-status span { padding-left: 0; }
  .fund-status span::before { content: none; }
  .hero-lead { font-size: 18px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .profile, .directory, .performance, .articles { padding: 54px 24px; border-radius: 24px; }
  .directory-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 34px; }
  .operation-point { grid-template-columns: 1fr; gap: 10px; }
  .operation-point .card-index { margin-top: 0; }
  .directory-card { min-height: 270px; }
  .record { grid-template-columns: 1fr; gap: 34px; padding: 54px 24px; border-radius: 24px; }
  .record-copy p { font-size: 16px; }
  .manager-portrait { max-width: 210px; }
  .founder-links { flex-direction: column; }
  .founder-link { width: 100%; }
  .equity-panel { padding: 18px 16px 12px; border-radius: 16px; }
  .performance-actions { flex-direction: column; }
  .report-button { width: 100%; }
  .article-entry summary { grid-template-columns: 34px minmax(0, 1fr) 30px; gap: 10px; }
  .article-toggle { width: 28px; height: 28px; }
  .article-entry-body { padding-left: 44px; }
  .disclosure { margin-bottom: 44px; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 30px 20px 34px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media (forced-colors: active) {
  .site-header, .hero, .hero-callout, .profile, .directory, .performance, .articles, .record, .disclosure, .site-footer, .mist-card, .equity-panel {
    color: CanvasText;
    border: 1px solid CanvasText;
    background: Canvas;
    background-image: none;
    box-shadow: none;
  }
  .brand-line, .brand-nodes { stroke: CanvasText; }
  .brand-nodes { fill: Canvas; }
  .site-header a, .brand small, .hero h1, .hero .kicker, .hero-lead, .hero-callout h2, .callout-facts dt, .site-footer, .site-footer strong { color: CanvasText; }
  .button, .button.primary, .report-button, .report-button.primary, .founder-link, .founder-link.primary { color: ButtonText; border-color: ButtonText; background: ButtonFace; }
}

@media print {
  html, body { color: #000; background: #fff; }
  .site-header { position: static; color: #000; border-bottom: 1px solid #000; background: #fff; }
  .actions { display: none; }
  .site-header a, .brand small, .hero h1, .hero .kicker, .hero-lead { color: #000; }
  .brand-line, .brand-nodes { stroke: #000; }
  .brand-nodes { fill: #fff; }
  .hero, .hero-callout, .profile, .directory, .performance, .articles, .record, .disclosure, .mist-card, .equity-panel { min-height: auto; color: #000; border: 1px solid #000; border-radius: 0; background: #fff; background-image: none; box-shadow: none; }
  .site-footer { color: #000; border-top: 1px solid #000; background: #fff; }
  .site-footer strong { color: #000; }
  a { text-decoration: none; }
}
