@font-face {
  font-family: 'Inter';
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter';
  src: url("/fonts/InterVariable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Libre Baskerville';
  src: url("/fonts/LibreBaskerville-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Libre Baskerville';
  src: url("/fonts/LibreBaskerville-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Liberation Mono';
  src: url("/fonts/LiberationMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Liberation Mono';
  src: url("/fonts/LiberationMono-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("/fonts/SpaceGroteskVariable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'JetBrains Mono';
  src: url("/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'JetBrains Mono';
  src: url("/fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

:root {
  color-scheme: light dark;
  --color-bg: #e8edf3;
  --color-text: #0f1b3d;
  --color-heading: #0f1b3d;
  --color-link: #2f5a84;
  --color-link-visited: #6a3d9a;
  --color-muted-text: #44506b;
  --color-border: #c3cdd9;
  --color-card-bg: #f5f8fa;
  --color-shell-tint: rgba(15, 27, 61, 0.05);
  --color-label: #2f5a84; }

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0f1b3d;
    --color-text: #e8edf3;
    --color-heading: #e8edf3;
    --color-link: #a8c5e0;
    --color-link-visited: #c9a0ff;
    --color-muted-text: #b6c2d4;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-card-bg: #16294a;
    --color-shell-tint: rgba(255, 255, 255, 0.05);
    --color-label: #7fa5c9; } }

* {
  box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text); }

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: 'Libre Baskerville', Georgia, serif; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }

.container.page-content {
  padding: 30px 20px;
  min-height: 60vh; }

a {
  color: var(--color-link); }
  a:visited {
    color: var(--color-link-visited); }

.site-header {
  background-color: #0c1625;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10; }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px; }
  .site-header .brand img {
    display: block; }
  .site-header .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    list-style: none;
    margin: 0;
    padding: 0; }
  .site-header .nav-links a {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: #ebeae6;
    text-decoration: none; }
    .site-header .nav-links a:visited {
      color: #ebeae6; }
    .site-header .nav-links a:hover {
      color: #ea9243; }
    .site-header .nav-links a[aria-current="page"] {
      color: #ebeae6;
      text-decoration: underline;
      text-decoration-color: #ea9243;
      text-decoration-thickness: 2px;
      text-underline-offset: 0.4em; }

.breadcrumbs {
  width: 100%;
  background-color: var(--color-shell-tint);
  border-bottom: 1px solid var(--color-border);
  padding: 0.6em 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.82em;
  font-weight: 500;
  box-sizing: border-box; }
  .breadcrumbs ol {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    text-align: left; }
  .breadcrumbs li {
    color: var(--color-muted-text); }
    .breadcrumbs li:not(:last-child)::after {
      content: "\203A";
      margin: 0 0.6em;
      color: var(--color-muted-text); }
    .breadcrumbs li[aria-current="page"] {
      color: var(--color-heading);
      font-weight: bold; }
  .breadcrumbs a {
    color: var(--color-muted-text);
    text-decoration: underline; }
    .breadcrumbs a:hover {
      color: var(--color-link); }

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -30px;
  margin-bottom: 30px;
  background-color: #0f1b3d;
  padding: 60px 20px;
  color: #e8edf3; }
  .hero .hero-inner {
    max-width: 1100px;
    margin: 0 auto; }
  .hero h1, .hero h2, .hero h3, .hero h4 {
    color: #fff; }
  .hero a:not(.btn) {
    color: #a8c5e0; }
    .hero a:not(.btn):visited {
      color: #c9a0ff; }
    .hero a:not(.btn):hover {
      color: #ea9243; }

.hero-eyebrow {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232, 237, 243, 0.7); }

.panel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px; }
  .panel-row .panel {
    flex: 1 1 300px;
    margin: 0;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-left: 4px solid #ea9243;
    border-radius: 4px;
    padding: 20px 24px; }

.case-study {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 30px; }
  .case-study .case-study-label {
    font-family: 'JetBrains Mono', 'Liberation Mono', monospace;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-label);
    font-weight: 600;
    margin: 0 0 8px; }

.sitemap-page .sitemap-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px; }

.sitemap-page .sitemap-section h2 {
  border-bottom: 1px solid #ea9243;
  padding-bottom: 6px; }

.sitemap-page .sitemap-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0; }

.sitemap-page .sitemap-section li {
  margin-bottom: 8px; }

.sitemap-page .ventures-list li p {
  margin: 2px 0 0;
  font-size: 0.85em;
  color: var(--color-muted-text); }

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px; }
  .grid > * {
    flex: 1 1 250px;
    min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0; }

table th, table td {
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  text-align: left;
  vertical-align: top; }

.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 6px;
  font-size: 0.9em; }

.site-footer {
  background-color: #0c1625;
  color: #ebeae6;
  margin-top: 40px;
  padding: 40px 0 0; }
  .site-footer h3 {
    color: #ebeae6; }
  .site-footer a {
    color: #a8c5e0; }
    .site-footer a:visited {
      color: #c9a0ff; }
    .site-footer a:hover {
      color: #ea9243; }
  .site-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px; }
  .site-footer .footer-grid > * {
    flex: 1 1 300px; }
  .site-footer blockquote {
    margin-left: 0;
    color: rgba(235, 234, 230, 0.85); }
  .site-footer .bottom-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    font-size: 0.85em;
    color: rgba(235, 234, 230, 0.78); }
  .site-footer .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px; }

.faq-question {
  margin-bottom: 30px; }

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .faq-list li {
    border-bottom: 1px solid var(--color-border); }
  .faq-list a {
    display: block;
    padding: 14px 0;
    font-size: 1.05em; }

form label {
  display: block;
  font-weight: 600;
  margin-top: 12px; }

form input, form select, form textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  font: inherit;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border); }

.hidden {
  position: absolute;
  left: -9999px; }

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3b6fa0;
  color: #fff;
  font: inherit;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer; }
  .btn:visited {
    color: #fff; }
  .btn:hover {
    background: #2f5a84; }

.btn-accent {
  background: #ea9243;
  color: #0f1b3d;
  font-weight: 700; }
  .btn-accent:visited {
    color: #0f1b3d; }
  .btn-accent:hover {
    background: #ea9243;
    filter: brightness(1.1); }
