.hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-vignette {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #05060c 0%,
      rgb(5 6 12 / 0.98) 23%,
      rgb(5 6 12 / 0.62) 47%,
      transparent 68%
    ),
    linear-gradient(0deg, #05060c 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 675px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--header-height) + 1rem);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 1.25rem;
  font-size: clamp(4.3rem, 7vw, 7rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero-copy {
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.28;
}

.signal-strip {
  padding-block: 3.2rem;
  background: linear-gradient(110deg, #111424, #080a13 68%, #101225);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(5, 1fr);
}

.signal-intro {
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.signal-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.9vw, 2.8rem);
  line-height: 1.02;
}

.signal-intro p,
.signal-card p {
  color: rgb(255 255 255 / 0.75);
  font-size: 0.83rem;
}

.signal-card {
  display: grid;
  grid-template-rows: 3.8rem 1.95rem 3.35rem auto;
  min-height: 185px;
  align-content: start;
  justify-items: center;
  padding: 0 1rem;
  text-align: center;
  border-left: 1px solid var(--color-line-dark);
}

.signal-card svg {
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 0.45rem;
  color: #8d4cff;
  filter: drop-shadow(0 0 13px rgb(93 72 255 / 0.35));
}

.signal-card:nth-child(4) svg,
.signal-card:nth-child(5) svg {
  color: #378dff;
}

.signal-card strong {
  grid-row: 2;
  font-size: 1.8rem;
  line-height: 1;
}

.signal-card h3 {
  grid-row: 3;
  min-height: 2.2rem;
  margin-block: 0.5rem 0.65rem;
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signal-card > p {
  grid-row: 4;
}

.ventures {
  padding-block: 4rem 4.3rem;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2.3rem);
}

.venture-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.venture-icon {
  display: grid;
  aspect-ratio: 1;
  width: 100%;
  max-width: 108px;
  margin-bottom: 1rem;
  place-items: center;
  color: #2877ff;
  background: #fff;
  border: 1px solid var(--color-line-light);
  border-radius: 0.65rem;
}

.venture-icon-dark {
  color: #9f40ff;
  background: radial-gradient(circle at 50% 55%, #181a35, #080912 70%);
  border-color: transparent;
  box-shadow: inset 0 0 25px rgb(49 81 172 / 0.14);
}

.venture-card:nth-child(3) .venture-icon {
  color: #00db75;
}

.venture-icon-paper {
  color: var(--color-ink);
  background: var(--color-paper-warm);
}

.venture-icon svg {
  width: 58%;
  height: 58%;
}

.venture-card h3 {
  min-height: 2.6rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.venture-card p {
  min-height: 5.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.74rem;
  line-height: 1.42;
}

.venture-card .text-link {
  margin-top: auto;
}

.ventures-page {
  min-height: calc(100vh - 5.3rem);
  color: var(--color-white);
  background: var(--color-night);
}

.ventures-intro {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 5.5rem) 5rem;
  border-bottom: 1px solid var(--color-line-dark);
  isolation: isolate;
}

.ventures-intro::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background:
    radial-gradient(circle at 76% 22%, rgb(113 56 220 / 0.22), transparent 31%),
    radial-gradient(circle at 92% 76%, rgb(47 154 255 / 0.12), transparent 24%);
}

.ventures-intro-inner {
  max-width: var(--container);
}

.ventures-intro h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.ventures-intro h1::after {
  display: block;
  width: clamp(5rem, 13vw, 9rem);
  height: 3px;
  margin-top: 1.7rem;
  content: '';
  background: var(--gradient-brand);
}

.ventures-intro-inner > p:last-child {
  max-width: 650px;
  color: rgb(255 255 255 / 0.76);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.ventures-portfolio {
  padding-block: 0 var(--space-3xl);
}

.venture-project {
  display: grid;
  grid-template-areas:
    'heading heading'
    'media body'
    'proof proof'
    'details details';
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: var(--space-lg) clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-top: 1px solid var(--color-line-dark);
}

.venture-project:first-child {
  border-top: 0;
}

.venture-project:nth-child(even) {
  grid-template-areas:
    'heading heading'
    'body media'
    'proof proof'
    'details details';
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
}

.venture-project-heading {
  display: flex;
  grid-area: heading;
  align-items: center;
  gap: var(--space-sm);
}

.venture-project-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.venture-status {
  flex: 0 0 auto;
  padding: 0.34rem 0.65rem 0.3rem;
  color: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius-round);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.venture-project-media {
  grid-area: media;
  margin: 0;
  overflow: hidden;
  background: var(--color-night-soft);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  box-shadow:
    0 24px 70px rgb(0 0 0 / 0.32),
    var(--shadow-glow);
}

.venture-project-media-full img {
  width: 100%;
  height: auto;
}

.venture-project-media-brand {
  width: min(100%, 560px);
  justify-self: end;
}

.venture-project-media-placeholder {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, rgb(117 54 196 / 0.2), transparent 30%),
    radial-gradient(circle at 14% 12%, rgb(47 209 255 / 0.13), transparent 28%),
    var(--color-night-soft);
}

.venture-project-placeholder {
  position: relative;
  display: grid;
  min-height: clamp(300px, 38vw, 520px);
  place-content: center;
  overflow: hidden;
  padding: var(--space-xl);
  text-align: center;
}

.venture-project-placeholder::before,
.venture-project-placeholder::after {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  width: min(70%, 360px);
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.venture-project-placeholder::after {
  width: min(46%, 230px);
  border-color: rgb(185 106 255 / 0.3);
}

.venture-project-placeholder-kicker {
  margin-bottom: 0.9rem;
  color: #b96aff;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.venture-project-placeholder strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.venture-project-media-mobile {
  display: none;
}

.venture-project-media figcaption {
  padding: 0.85rem 1rem 0.95rem;
  color: rgb(255 255 255 / 0.5);
  border-top: 1px solid var(--color-line-dark);
  font-size: 0.72rem;
  line-height: 1.5;
}

.venture-project-body {
  grid-area: body;
}

.venture-project-body > p {
  margin-bottom: var(--space-lg);
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.venture-project-link {
  color: #b96aff;
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.venture-project-link:focus-visible {
  border-radius: 0.15rem;
}

.venture-project-availability {
  color: rgb(255 255 255 / 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venture-proof-points {
  display: flex;
  grid-area: proof;
  flex-wrap: wrap;
  gap: 0;
  padding: var(--space-md) 0;
  margin: clamp(1rem, 2vw, 2rem) 0 0;
  color: rgb(255 255 255 / 0.68);
  border-top: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
  list-style: none;
}

.venture-proof-points li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.venture-proof-points li + li::before {
  margin-inline: 0.85rem;
  color: #9e52ff;
  content: '·';
}

.venture-case-study {
  display: grid;
  grid-area: details;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.venture-case-study-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.venture-case-study-thesis {
  max-width: 360px;
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.venture-case-study-sections {
  display: grid;
  gap: 0;
}

.venture-case-study-section {
  padding-block: 0 var(--space-xl);
}

.venture-case-study-section + .venture-case-study-section {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-line-dark);
}

.venture-case-study-section h3 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.venture-case-study-section p {
  max-width: 760px;
  margin-bottom: var(--space-sm);
  color: rgb(255 255 255 / 0.68);
  line-height: 1.7;
}

.venture-loading,
.venture-empty {
  padding-block: var(--space-3xl);
  color: rgb(255 255 255 / 0.68);
}

.process {
  position: relative;
  overflow: hidden;
  padding-block: 3.6rem;
  background: var(--gradient-night);
}

.process-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgb(130 98 255 / 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgb(130 98 255 / 0.28) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}

.section-grid-process {
  position: relative;
  grid-template-columns: 260px minmax(0, 1fr);
}

.section-heading-light > p {
  color: rgb(255 255 255 / 0.78);
  font-size: 0.82rem;
}

.section-heading-light .section-kicker {
  color: #c961ff;
}

.section-heading-light .process-lede {
  color: var(--color-white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 1.3rem;
  padding: 1rem 0 0;
  margin: 0;
  list-style: none;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 2.4rem;
  left: calc(50% + 3.25rem);
  width: calc(100% - 4.4rem);
  height: 1px;
  content: '';
  background: #ad54e7;
}

.process-step:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: calc(2.4rem - 3px);
  right: -0.3rem;
  width: 7px;
  height: 7px;
  content: '';
  border-top: 1px solid #d288ff;
  border-right: 1px solid #d288ff;
  transform: rotate(45deg);
}

.process-icon {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  place-items: center;
  color: #8b67ff;
  border: 1px solid #9f40dd;
  border-radius: 50%;
  background: rgb(11 12 25 / 0.75);
  box-shadow: inset 0 0 30px rgb(99 51 220 / 0.08);
}

.process-icon svg {
  width: 2.7rem;
  height: 2.7rem;
}

.process-step h3 {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-step p {
  color: rgb(255 255 255 / 0.76);
  font-size: 0.75rem;
  line-height: 1.45;
}

.story {
  padding-block: 3.8rem 4.2rem;
}

.section-grid-story {
  grid-template-columns: 265px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.story-copy p {
  margin-bottom: 0.72rem;
  font-size: 0.74rem;
  line-height: 1.35;
}

.story-copy .story-lede {
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.7rem;
  padding: 0.55rem 0 0;
  margin: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  text-align: center;
}

.timeline-item:not(:last-child)::after {
  position: absolute;
  top: 2.7rem;
  left: calc(50% + 3.25rem);
  width: calc(100% - 4rem);
  content: '';
  border-top: 1px dashed #8b8c99;
}

.timeline-icon {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 0.9rem;
  place-items: center;
  color: var(--color-ink);
  border: 1px solid #555765;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.25);
}

.timeline-icon svg {
  width: 2.6rem;
  height: 2.6rem;
}

.timeline-wordmark span {
  color: #6e44e9;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.timeline-year {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 750;
}

.timeline-item h3 {
  min-height: 2.2rem;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.timeline-item > p:last-child {
  color: var(--color-ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.lab-notebook {
  color: var(--color-white);
  background:
    linear-gradient(115deg, #141029, #281248 50%, #071225),
    repeating-linear-gradient(
      90deg,
      transparent 0 70px,
      rgb(255 255 255 / 0.03) 71px
    );
}

.notebook-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 1.5fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 170px;
}

.notebook-inner .section-kicker,
.notebook-inner p {
  margin: 0;
}

.notebook-inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.notebook-inner > p:not(.section-kicker) {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.82rem;
}

.notebook-inner .text-link {
  color: #d878ff;
  white-space: nowrap;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 3.4rem;
  background:
    radial-gradient(
      ellipse at 50% 115%,
      rgb(107 47 240 / 0.5),
      transparent 48%
    ),
    #090b17;
}

.contact::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: 0.3;
  background-image: radial-gradient(
    circle,
    rgb(255 255 255 / 0.8) 0.7px,
    transparent 0.8px
  );
  background-size: 31px 27px;
  mask-image: linear-gradient(
    90deg,
    #000,
    transparent 25%,
    transparent 75%,
    #000
  );
}

.contact-orbit {
  position: absolute;
  bottom: -9rem;
  left: 50%;
  width: 750px;
  height: 230px;
  border: 2px solid #a957ff;
  border-radius: 50%;
  box-shadow:
    0 -10px 28px rgb(141 64 255 / 0.45),
    inset 0 12px 50px rgb(48 93 255 / 0.38);
  transform: translateX(-50%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.contact-intro p {
  margin-bottom: 1rem;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.8rem;
}

.contact-intro .button {
  min-height: 2.5rem;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
}

.contact-paths svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.8rem;
  color: #855dff;
}

.contact-paths h3 {
  margin-bottom: 0.65rem;
  font-size: 0.73rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-paths p {
  color: rgb(255 255 255 / 0.73);
  font-size: 0.7rem;
}

.contact-paths a:hover {
  color: #dc76ff;
}
