:root {
  color-scheme: dark;
  --bg: #06080b;
  --bg-2: #0b1015;
  --panel: rgba(14, 19, 25, 0.82);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f1f4f0;
  --ink: #101417;
  --muted: #a8b0ad;
  --muted-dark: #5d6966;
  --accent: #6edd9c;
  --accent-2: #d3b56e;
  --surface-light: #f4f7f5;
  --line-dark: rgba(16, 20, 23, 0.14);
  --max: 1180px;
  --radius: 6px;
  --fs-h1: clamp(2.75rem, 7vw, 6rem);
  --fs-h2: clamp(1.9rem, 4vw, 3.6rem);
  --fs-h3: clamp(1.25rem, 2.1vw, 1.8rem);
  --fs-h4: clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-h5: clamp(0.95rem, 1.3vw, 1.1rem);
  --fs-h6: clamp(0.85rem, 1.1vw, 1rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(6, 8, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--accent-2);
  transform: rotate(45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-trigger::after {
  content: "▾";
  font-size: 0.72rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(10, 14, 20, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.dropdown-menu a {
  padding: 7px 8px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-links a:hover,
.venture-card a:hover { color: var(--accent); }

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 128px 0 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 8, 11, 0.94), rgba(6, 8, 11, 0.74) 44%, rgba(6, 8, 11, 0.46)), linear-gradient(0deg, var(--bg), rgba(6, 8, 11, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 22px;
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 14px;
  font-size: var(--fs-h3);
  line-height: 1.1;
}
h4 { font-size: var(--fs-h4); line-height: 1.2; margin: 0 0 12px; }
h5 { font-size: var(--fs-h5); line-height: 1.25; margin: 0 0 10px; }
h6 { font-size: var(--fs-h6); line-height: 1.3; margin: 0 0 10px; }

.lead {
  max-width: 720px;
  color: #dce2df;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.button.primary {
  background: var(--text);
  color: #07100d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section.light {
  background: var(--surface-light);
  color: var(--ink);
}

.section.compact {
  padding-top: 52px;
}

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

.metrics article {
  padding: 32px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child { border-right: 0; }
.metrics span { color: var(--accent-2); font-weight: 700; }
.metrics h2 { margin: 14px 0 10px; font-size: 1.35rem; }
.metrics p, .split p, .vision-grid p, .contact-panel p { color: var(--muted); }

.section.light .metrics,
.section.light .metrics article {
  border-color: var(--line-dark);
}

.section.light .venture-card,
.section.light .contact-panel {
  background: #ffffff;
  border-color: var(--line-dark);
}

.section.light .metrics p,
.section.light .split p,
.section.light .vision-grid p,
.section.light .contact-panel p,
.section.light .muted {
  color: var(--muted-dark);
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 96px);
}

.split > div:first-child:not(.image-panel) + div {
  padding-top: clamp(34px, 3vw, 48px);
}


.venture-grid {
  display: grid;
  gap: 18px;
}

.venture-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.venture-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.venture-card a,
.contact-links a {
  color: var(--accent);
  font-weight: 700;
}

.dark-band {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.vision-grid,
.contact-panel,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 96px);
}

.footer-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-section { padding-bottom: clamp(88px, 12vw, 156px); }
.contact-panel {
  padding: clamp(28px, 5vw, 56px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-links {
  display: grid;
  align-content: center;
  gap: 14px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p { margin: 0; text-align: center; }
.site-footer nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .split > div:first-child:not(.image-panel) + div { padding-top: 0; }
  .site-header { position: static; align-items: center; flex-wrap: wrap; gap: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav { width: 100%; display: none; grid-template-columns: 1fr; justify-content: stretch; gap: 8px; }
  .site-header.nav-open .site-nav { display: grid; }
  .site-nav > a,
  .site-nav .nav-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
  }
  .nav-dropdown { padding-bottom: 0; margin-bottom: 0; width: 100%; }
  .dropdown-menu { position: static; min-width: 100%; margin-top: 6px; opacity: 1; visibility: visible; transform: none; border-radius: var(--radius); }
  .hero { min-height: auto; padding-top: 86px; }
  .metrics, .split, .vision-grid, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .metrics article { border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics article:last-child { border-bottom: 0; }
  .venture-card { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding: 16px 20px; }
  .site-nav { width: 100%; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  h1 { font-size: 3.1rem; }
  .actions { display: grid; }
}
