:root {
  --ink: #0B1B3F;
  --paper: #FAFAFC;
  --indigo: #4655C4;
  --violet: #8A6FD8;
  --slate: #63697A;
  --line: rgba(11, 27, 63, 0.12);
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

img { display: block; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: rgba(250, 250, 252, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-logo { height: 34px; width: auto; }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  margin-left: 36px;
}

.nav-links a:first-child { margin-left: 0; }

.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.venture-link:focus-visible,
.btn-primary:focus-visible,
.contact-email:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--indigo);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}

.hero-shape {
  position: absolute;
  top: -18%;
  right: -14%;
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 42% 58% 61% 39% / 45% 40% 60% 55%;
  background: radial-gradient(circle at 32% 28%, #B7A7EE 0%, var(--violet) 38%, var(--indigo) 72%, var(--ink) 100%);
  opacity: 0.9;
  filter: blur(2px);
  animation: drift 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shape::after {
  content: "";
  position: absolute;
  bottom: -8%;
  left: -18%;
  width: 46%;
  height: 46%;
  border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%;
  background: radial-gradient(circle at 40% 30%, #D9D0F7 0%, var(--violet) 55%, transparent 100%);
  opacity: 0.75;
}

@keyframes drift {
  from { opacity: 0; transform: translate(4%, -4%) scale(0.92); }
  to { opacity: 0.9; transform: translate(0, 0) scale(1); }
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.eyebrow {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  max-width: 13ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 46ch;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover { background: var(--indigo); transform: translateY(-1px); }

/* Section shared */

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--slate); font-size: 17px; }

/* Ventures */

.ventures {
  padding: 120px 6vw;
  max-width: var(--max);
  margin: 0 auto;
}

.venture-list { border-top: 1px solid var(--line); }

.venture-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.venture-title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.venture-row h3 {
  font-size: 26px;
  font-weight: 500;
}

.venture-main p {
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: 10px;
}

.venture-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  justify-self: end;
}

.venture-link-group .venture-cta {
  text-align: center;
  width: fit-content;
}

.status {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.status-live { background: rgba(70, 85, 196, 0.1); color: var(--indigo); }
.status-soon { background: rgba(99, 105, 122, 0.1); color: var(--slate); }

.venture-link {
  font-size: 15px;
  color: var(--indigo);
  border-bottom: 1px solid var(--indigo);
  padding-bottom: 2px;
  white-space: nowrap;
  justify-self: end;
}

.venture-link:hover { color: var(--ink); border-color: var(--ink); }

.venture-link-muted {
  color: var(--slate);
  border-color: var(--line);
  pointer-events: none;
}

.venture-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  white-space: nowrap;
  justify-self: end;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.venture-cta:hover {
  background: var(--indigo);
  transform: translateY(-1px);
}

.venture-cta-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.venture-cta-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* About */

.about {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 28px;
  margin-bottom: 40px;
}

.about h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 24px; }

.about-text p {
  color: rgba(250, 250, 252, 0.72);
  max-width: 48ch;
  font-size: 17px;
}

.about-facts {
  display: grid;
  gap: 28px;
  align-content: start;
}

.fact dt {
  font-size: 13px;
  color: rgba(250, 250, 252, 0.5);
  margin-bottom: 6px;
}

.fact dd {
  font-size: 18px;
  font-family: 'Fraunces', serif;
}

/* Contact */

.contact {
  padding: 100px 6vw 140px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.contact-inner { max-width: 560px; }

.contact h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }

.contact p { color: var(--slate); margin-bottom: 20px; }

.contact-email {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.contact-email:hover { color: var(--indigo); border-color: var(--indigo); }

/* Footer */

.footer {
  padding: 40px 6vw;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.footer-logo { height: 22px; opacity: 0.7; }

.footer p { color: var(--slate); font-size: 14px; }

/* Mobile */

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; border-radius: 0; margin-left: -6vw; margin-right: -6vw; max-width: none; }
  .venture-row { grid-template-columns: 1fr; }
  .venture-link { justify-self: start; }
  .venture-link-group { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links a { padding: 16px 6vw; border-bottom: 1px solid var(--line); }
  .nav-links-open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 76vh; padding-top: 60px; }
  .hero-shape { width: 90vw; height: 90vw; right: -30%; top: -10%; }
  .ventures, .contact { padding-left: 6vw; padding-right: 6vw; }
}
