:root {
  --navy: #0a1530;
  --navy-mid: #1a2a52;
  --purple: #5645d4;
  --purple-pressed: #4534b3;
  --ink: #1a1a1a;
  --charcoal: #37352f;
  --slate: #5d5b54;
  --canvas: #ffffff;
  --surface: #f6f5f4;
  --surface-soft: #fafaf9;
  --hairline: #e5e3df;
  --hairline-strong: #c8c4be;
  --gold-tint: #f8f1df;
  --lilac-tint: #e6e0f5;
  --mint-tint: #d9f3e1;
  --radius-control: 8px;
  --radius-card: 12px;
  --shadow-card: 0 22px 52px -28px rgba(10, 21, 48, 0.42);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

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

.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.97);
}

.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; flex: 1; min-width: 0; }
.brand img { display: block; width: 172px; height: 52px; object-fit: cover; object-position: 50% 54%; }

nav { display: flex; align-items: center; gap: 22px; }
nav a, .footer-links a { color: var(--slate); font-size: 14px; font-weight: 500; text-decoration: none; }
nav a:hover, .footer-links a:hover, .route-card a:hover, .email-link:hover { color: var(--purple); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.button-primary { background: var(--purple); color: #fff; }
.button-primary:hover { background: var(--purple-pressed); }
.button-dark { background: var(--navy); color: #fff; }
.button-dark:hover { background: var(--navy-mid); }

.hero { background: var(--navy); color: #fff; padding: 98px 0 112px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr); align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 15px; color: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.hero .eyebrow { color: #d6b6f6; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(44px, 6vw, 76px); font-weight: 650; letter-spacing: -0.055em; line-height: 1.04; }
h2 { margin-bottom: 22px; font-size: clamp(32px, 4.4vw, 52px); font-weight: 650; letter-spacing: -0.045em; line-height: 1.12; }
h3 { margin-bottom: 14px; font-size: 25px; font-weight: 650; letter-spacing: -0.025em; line-height: 1.22; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: #e4e7ef; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { color: inherit; font-size: 15px; font-weight: 650; text-underline-offset: 4px; }
.text-link:hover { color: var(--purple); }
.hero .text-link { color: #fff; }
.hero .text-link:hover { color: #d6b6f6; }
.hero-note { margin: 28px 0 0; color: #b8bfd0; font-size: 14px; }

.portfolio-card { padding: 30px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--radius-card); background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }
.card-label, .venture-kicker { margin-bottom: 25px; color: var(--slate); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.portfolio-parent { padding: 17px 18px; border-radius: var(--radius-control); background: var(--navy); color: #fff; font-size: 18px; font-weight: 650; }
.portfolio-rule { width: 1px; height: 28px; margin: 0 0 0 24px; background: var(--hairline-strong); }
.portfolio-venture { display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; padding: 15px 0; border-top: 1px solid var(--hairline); color: inherit; text-decoration: none; }
.portfolio-venture:last-child { border-bottom: 1px solid var(--hairline); }
.portfolio-venture:hover strong { color: var(--purple); }
.portfolio-venture span { grid-row: span 2; color: var(--purple); font-size: 12px; font-weight: 700; }
.portfolio-venture strong { font-size: 17px; }
.portfolio-venture small { color: var(--slate); font-size: 13px; line-height: 1.4; }

.statement-section, .ventures-section, .partners-section, .principles-section, .contact-section { padding: 104px 0; }
.statement-section { background: var(--surface); }
.statement-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 56px; }
.statement-grid .eyebrow, .section-heading .eyebrow, .principles-grid .eyebrow, .contact-card .eyebrow { color: var(--purple); }
.statement-grid p:not(.eyebrow), .section-heading > p:last-child, .contact-card p:not(.eyebrow) { max-width: 720px; color: var(--slate); font-size: 18px; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading-wide { max-width: 780px; }
.venture-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.venture-card { min-height: 390px; padding: 38px; border: 1px solid var(--hairline); border-radius: var(--radius-card); display: flex; flex-direction: column; align-items: flex-start; }
.venture-card-gold { background: var(--gold-tint); }
.venture-card-lilac { background: var(--lilac-tint); }
.venture-number { margin-bottom: 54px; color: var(--purple); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.venture-card p:not(.venture-kicker) { max-width: 480px; color: var(--charcoal); }
.venture-card .text-link { margin-top: auto; }

.partners-section { background: var(--surface-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.route-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; background: var(--canvas); }
.route-card { min-height: 255px; padding: 28px; border-right: 1px solid var(--hairline); display: flex; flex-direction: column; }
.route-card:last-child { border-right: 0; }
.route-card h3 { font-size: 18px; }
.route-card p { color: var(--slate); font-size: 14px; }
.route-card a { margin-top: auto; color: var(--ink); font-size: 14px; font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.principles-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 90px; }
.principles-grid ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--hairline); }
.principles-grid li { display: grid; grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.principles-grid li strong { font-size: 15px; }
.principles-grid li span { color: var(--slate); font-size: 15px; }

.contact-section { background: var(--surface); }
.contact-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; padding: 58px; border: 1px solid var(--hairline); border-radius: var(--radius-card); background: var(--canvas); box-shadow: var(--shadow-card); }
.contact-card h2 { margin-bottom: 14px; }
.contact-card p:not(.eyebrow) { margin-bottom: 0; }
.contact-actions { min-width: 245px; display: flex; flex-direction: column; align-items: stretch; gap: 15px; }
.email-link { color: var(--slate); font-size: 14px; font-weight: 600; text-align: center; }

.site-footer { padding: 45px 0; border-top: 1px solid var(--hairline); }
.footer-wrap { display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: end; }
.footer-logo { display: block; width: 172px; height: 52px; object-fit: cover; object-position: 50% 54%; }
.footer-wrap > div:first-child p { margin: 13px 0 0; color: var(--slate); font-size: 13px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.copyright { margin: 0; color: var(--slate); font-size: 13px; white-space: nowrap; }

@media (max-width: 900px) {
  .nav-wrap { gap: 18px; }
  nav { display: none; }
  .hero { padding: 76px 0 84px; }
  .hero-grid, .statement-grid, .principles-grid, .contact-card { grid-template-columns: 1fr; gap: 38px; }
  .portfolio-card { max-width: 560px; }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-card:nth-child(2) { border-right: 0; }
  .route-card:nth-child(-n + 2) { border-bottom: 1px solid var(--hairline); }
  .contact-card { align-items: start; }
  .contact-actions { min-width: min(100%, 340px); }
  .footer-wrap { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 32px, 1160px); }
  .site-header { position: static; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 142px; height: 44px; }
  .nav-wrap .button { display: none; }
  h1 { font-size: clamp(40px, 13vw, 56px); }
  h2 { font-size: 34px; }
  .hero-actions { align-items: stretch; gap: 19px; }
  .hero-actions .button { width: 100%; }
  .hero .text-link { text-align: center; }
  .statement-section, .ventures-section, .partners-section, .principles-section, .contact-section { padding: 72px 0; }
  .venture-grid, .route-grid { grid-template-columns: 1fr; }
  .venture-card { min-height: 0; padding: 28px; }
  .venture-number { margin-bottom: 38px; }
  .route-card, .route-card:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .route-card:last-child { border-bottom: 0; }
  .principles-grid li { grid-template-columns: 1fr; gap: 6px; }
  .contact-card { padding: 32px 26px; }
  .button { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
