:root {
  --black: #050505;
  --ink: #0b0b0c;
  --charcoal: #141414;
  --cream: #f4efe7;
  --cream-2: #e9dfd0;
  --white: #ffffff;
  --muted: #d6d0c7;
  --gold: #f0b23c;
  --gold-deep: #b97713;
  --gold-soft: #ffd77a;
  --line: rgba(240, 178, 60, 0.45);
  --max: 1180px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42));
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  left: 0;
  min-height: var(--header);
  padding: 18px clamp(20px, 5vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, border-color 220ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  min-width: max-content;
}

.brand-mark {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(240, 178, 60, 0.2);
  height: 68px;
  object-fit: cover;
  width: 68px;
}

.brand-text {
  color: var(--gold);
  display: grid;
  gap: 5px;
  font-family: Georgia, serif;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-title {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 5.6px;
}

.brand-subline {
  display: flex;
  font-size: 18px;
  justify-content: space-between;
  letter-spacing: 0;
  width: 100%;
}

.brand-subline span {
  display: block;
  line-height: 1;
  text-align: center;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: flex-end;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.btn {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #f6c45b, #df972f);
  color: #080808;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.18);
  border-color: var(--line);
  color: var(--white);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  padding: calc(var(--header) + 116px) clamp(22px, 6vw, 70px) 98px;
  position: relative;
}

.section-dark {
  background:
    linear-gradient(120deg, rgba(240, 178, 60, 0.11), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(240, 178, 60, 0.15), transparent 28%),
    var(--black);
  color: var(--white);
}

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

.hero-media {
  z-index: -2;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.92) 27%, rgba(3, 3, 3, 0.4) 62%, rgba(3, 3, 3, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.35));
  z-index: -1;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 28px;
  max-width: 620px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 22px;
}

h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--white);
  font-size: 17px;
  max-width: 520px;
}

.hero-actions,
.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions {
  margin-top: 34px;
}

.play-dot {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  height: 18px;
  position: relative;
}

.play-dot::after,
.video-play::after {
  border-bottom: 6px solid transparent;
  border-left: 9px solid #050505;
  border-top: 6px solid transparent;
  content: "";
  left: 7px;
  position: absolute;
  top: 3px;
}

.trust-row {
  margin-top: 36px;
}

.trust-row p {
  color: var(--white);
  margin: 0;
  max-width: 315px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(240, 178, 60, 0.14);
  display: block;
  height: 44px;
  margin-left: -9px;
  overflow: hidden;
  width: 44px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.venture-lanes {
  overflow: hidden;
  padding: 82px clamp(22px, 6vw, 70px) 92px;
  position: relative;
}

.venture-lanes::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 131, 171, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(1, 41, 55, 0.82), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.venture-heading {
  margin: 0 auto 44px;
  max-width: 760px;
  position: relative;
  text-align: center;
}

.venture-heading h2 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.venture-heading p:not(.eyebrow) {
  color: #25c8ff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto;
  max-width: 620px;
}

.venture-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
}

.venture-card {
  aspect-ratio: 0.82;
  background: #080808;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  grid-column: span 2;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.venture-card-wide {
  aspect-ratio: 0.82;
  min-height: 430px;
}

.venture-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.functionblend-card {
  background: var(--white);
}

.workfoundry-card {
  background: #efede6;
}

.workfoundry-card.venture-logo-card {
  background: #efede6;
}

.jrsolves-card {
  background: var(--white);
}

.curious-card.venture-logo-card {
  background: #cfcfcf;
}

.venture-card.curious-card h3,
.venture-card.curious-card p {
  color: var(--black);
}

.venture-card.curious-card .corner-arrow {
  background: rgba(0, 0, 0, 0.2);
}

.venture-card.curious-card .coming-pill {
  background: var(--white);
  color: var(--black);
}

.dragon-aps-card {
  background: var(--white);
}

.venture-card.dragon-aps-card img {
  object-fit: contain;
  padding: 88px 72px 184px;
}

.venture-card.dragon-aps-card::after {
  background: none;
}

.venture-card.dragon-aps-card:hover img {
  transform: none;
}

.microburst-card {
  background: var(--white);
}

.venture-card.microburst-card img {
  height: 64%;
  object-fit: contain;
  object-position: center;
  padding: 38px 72px 0;
}

.venture-card.microburst-card::after {
  background: none;
}

.venture-card.microburst-card .venture-overlay {
  justify-content: flex-end;
  padding: 24px 28px 26px;
}

.venture-card.microburst-card:hover img {
  transform: none;
}

.venture-card.microburst-card h3,
.venture-card.microburst-card p {
  color: var(--black);
}

.venture-card.microburst-card .corner-arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.venture-card.microburst-card .coming-pill {
  background: var(--black);
  color: var(--white);
}

.venture-card.functionblend-card img {
  height: 84%;
  object-fit: contain;
  object-position: center;
  padding: 16px 32px 0;
}

.venture-card.functionblend-card::after {
  background: none;
}

.venture-card.functionblend-card:hover img {
  transform: none;
}

.venture-card.functionblend-card h3,
.venture-card.functionblend-card p {
  color: var(--black);
}

.venture-card.functionblend-card .corner-arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.venture-card.functionblend-card .coming-pill {
  background: var(--black);
  color: var(--white);
}

.venture-card.jrsolves-card img {
  height: 62%;
  object-fit: contain;
  object-position: center;
  padding: 52px 48px 0;
}

.venture-card.jrsolves-card::after {
  background: none;
}

.venture-card.jrsolves-card .venture-overlay {
  padding: 24px 28px 26px;
}

.venture-card.jrsolves-card:hover img {
  transform: none;
}

.venture-card.jrsolves-card h3,
.venture-card.jrsolves-card p {
  color: var(--black);
}

.venture-card.jrsolves-card .corner-arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.venture-card.jrsolves-card .coming-pill {
  background: var(--black);
  color: var(--white);
}

.venture-card.dragon-aps-card h3,
.venture-card.dragon-aps-card p {
  color: var(--black);
}

.venture-card.dragon-aps-card .corner-arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.venture-card.dragon-aps-card .coming-pill {
  background: var(--black);
  color: var(--white);
}

.retuta-realities-card.venture-logo-card {
  background:
    radial-gradient(circle at 50% 36%, rgba(240, 178, 60, 0.22), transparent 36%),
    linear-gradient(135deg, #030303, #100b03 58%, #050505);
}

.venture-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease;
  width: 100%;
}

.venture-logo-card {
  background: #9a1d24;
}

.venture-logo-card img {
  object-fit: contain;
  padding: 0;
}

.venture-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34) 34%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.venture-logo-card::after {
  background: none;
}

.venture-card:hover img {
  transform: scale(1.05);
}

.venture-logo-card:hover img {
  transform: scale(1.02);
}

.workfoundry-card img {
  height: 60%;
  object-fit: contain;
  padding: 28px 72px 0;
}

.venture-card.workfoundry-card .venture-overlay {
  padding: 24px 28px 26px;
}

.venture-card.workfoundry-card h3,
.venture-card.workfoundry-card p {
  color: var(--black);
}

.venture-card.workfoundry-card .corner-arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.venture-card.workfoundry-card .coming-pill {
  background: var(--black);
  color: var(--white);
}

.curious-card img {
  object-fit: contain;
  padding: 16px 12px 94px;
}

.retuta-realities-card img {
  object-fit: contain;
  object-position: center 26%;
  padding: 28px 104px 178px;
}

.agent-visual {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.agent-visual::before,
.agent-visual::after {
  content: "";
  left: 14%;
  position: absolute;
  right: 14%;
}

.agent-visual::before {
  background:
    linear-gradient(22deg, transparent 49%, rgba(22, 200, 255, 0.38) 50%, transparent 51%),
    linear-gradient(-28deg, transparent 49%, rgba(240, 178, 60, 0.28) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.16) 50%, transparent 51%);
  height: 46%;
  top: 22%;
}

.agent-visual::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  inset: 0;
  mask-image: radial-gradient(circle at 56% 42%, #000, transparent 68%);
}

.agent-visual span {
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #fff, #25c8ff 34%, #031a21 70%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(22, 200, 255, 0.36);
  position: absolute;
  width: 58px;
}

.agent-visual span:nth-child(1) {
  left: 18%;
  top: 24%;
}

.agent-visual span:nth-child(2) {
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold) 34%, #2b1600 72%);
  box-shadow: 0 0 32px rgba(240, 178, 60, 0.34);
  left: 48%;
  top: 18%;
  width: 76px;
}

.agent-visual span:nth-child(3) {
  left: 73%;
  top: 34%;
}

.agent-visual span:nth-child(4) {
  left: 31%;
  top: 56%;
  width: 48px;
}

.agent-visual span:nth-child(5) {
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold) 34%, #2b1600 72%);
  box-shadow: 0 0 32px rgba(240, 178, 60, 0.34);
  left: 61%;
  top: 63%;
  width: 52px;
}

.foundry-visual {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.foundry-visual::before {
  background-image:
    linear-gradient(90deg, rgba(240, 178, 60, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 50% 42%, #000, transparent 70%);
  position: absolute;
}

.foundry-visual::after {
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(240, 178, 60, 0.75) 14% 18%, transparent 18% 36%, rgba(240, 178, 60, 0.5) 36% 39%, transparent 39%),
    linear-gradient(180deg, transparent 0 52%, rgba(255, 255, 255, 0.18) 52% 56%, transparent 56%);
  content: "";
  inset: 16% 10% 26%;
  opacity: 0.85;
  position: absolute;
}

.foundry-visual span {
  background: linear-gradient(135deg, rgba(240, 178, 60, 0.95), rgba(255, 242, 188, 0.88));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(240, 178, 60, 0.22);
  height: 86px;
  position: absolute;
  transform: rotate(-12deg);
  width: 86px;
}

.foundry-visual span:nth-child(1) {
  left: 18%;
  top: 22%;
}

.foundry-visual span:nth-child(2) {
  background: linear-gradient(135deg, rgba(22, 200, 255, 0.85), rgba(255, 255, 255, 0.86));
  left: 46%;
  top: 34%;
  transform: rotate(18deg);
}

.foundry-visual span:nth-child(3) {
  left: 66%;
  top: 18%;
  transform: rotate(8deg);
}

.venture-overlay {
  align-items: center;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 28px;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.corner-arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 50%;
  color: #16c8ff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  left: 24px;
  position: absolute;
  top: 24px;
  width: 46px;
}

.venture-card h3 {
  color: var(--white);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.02;
  margin-bottom: 12px;
}

.venture-card p {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  text-wrap: balance;
}

.coming-pill {
  align-self: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  min-width: 142px;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
}

.mission,
.newsletter,
.program-band {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 8% 18%, rgba(240, 178, 60, 0.18), transparent 24%),
    var(--cream);
}

.mission {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.35fr);
  padding: 84px clamp(22px, 6vw, 70px);
}

.mission-copy {
  max-width: 430px;
}

.mission-copy p:not(.eyebrow),
.newsletter-copy p,
.program-card p {
  color: #252525;
}

.video-card {
  background: var(--black);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.video-card img,
.video-card video {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.video-card:hover img,
.video-card:hover video {
  transform: scale(1.035);
}

.video-play {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  height: 78px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-play::after {
  border-bottom-width: 14px;
  border-left-width: 20px;
  border-top-width: 14px;
  left: 32px;
  top: 25px;
}

.proof {
  padding: 78px clamp(22px, 6vw, 70px) 86px;
  position: relative;
}

.proof::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
  position: absolute;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: var(--max);
  position: relative;
  text-align: center;
}

.proof-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
}

.proof-item {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 166px;
  padding: 0 34px;
  text-align: center;
}

.proof-item:first-child {
  border-left: 0;
}

.proof-icon {
  color: var(--gold);
  display: block;
  font-size: 38px;
  line-height: 1;
  margin: 0 auto 22px;
}

.proof-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 auto;
  max-width: 220px;
}

.program-band {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 72px clamp(22px, 6vw, 70px);
}

.program-card,
.stats {
  border: 1px solid rgba(185, 119, 19, 0.22);
  border-radius: 8px;
}

.program-card {
  background: rgba(255, 255, 255, 0.52);
  padding: clamp(28px, 5vw, 48px);
}

.stats {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(27, 18, 4, 0.94)),
    var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats div {
  border-left: 1px solid var(--line);
  display: grid;
  place-content: center;
  padding: 28px;
  text-align: center;
}

.stats div:first-child {
  border-left: 0;
}

.stats strong {
  color: var(--gold);
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  text-transform: uppercase;
}

.newsletter {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1.3fr;
  padding: 64px clamp(22px, 6vw, 70px);
}

.newsletter-copy {
  max-width: 410px;
}

.signup {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(180px, 1fr) auto;
}

.signup input {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--ink);
  min-height: 56px;
  outline: none;
  padding: 0 20px;
}

.signup input:focus {
  border-color: var(--gold);
}

.signup small {
  color: #39332d;
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  gap: 38px;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.8fr;
  padding: 42px clamp(22px, 6vw, 70px);
}

.site-footer h2 {
  color: var(--gold);
  font-size: 14px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.site-footer a:not(.brand),
.site-footer p,
.site-footer small {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.footer-brand p {
  max-width: 310px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer .socials a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  line-height: 0;
  padding: 0;
  position: relative;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 38px;
}

.site-footer .socials a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--gold);
  transform: translateY(-2px);
}

.site-footer .socials svg {
  display: block;
  fill: none;
  height: 19px;
  left: 50%;
  position: absolute;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
}

.site-footer .socials a:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer .socials a:nth-child(2) svg path + path {
  fill: var(--ink);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 760ms ease;
}

.js .reveal:not(.is-visible) {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(34px);
}

.js .hero-content.reveal:not(.is-visible),
.js .mission-copy.reveal:not(.is-visible),
.js .newsletter-copy.reveal:not(.is-visible) {
  transform: translateX(-34px);
}

.js .video-card.reveal:not(.is-visible),
.js .stats.reveal:not(.is-visible) {
  transform: translateX(34px);
}

.js .venture-card.reveal:not(.is-visible) {
  transform: translateY(46px) rotateX(8deg) scale(0.96);
  transform-origin: 50% 100%;
}

.js .proof-item.reveal:not(.is-visible) {
  transform: translateY(28px) scale(0.96);
}

.js .venture-card.reveal,
.js .proof-item.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 80;
}

.modal:not([hidden]) {
  display: flex;
}

.modal-panel {
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 860px;
  overflow: hidden;
  width: min(100%, 860px);
}

.modal-video {
  aspect-ratio: 16 / 9;
  color: var(--white);
  background: var(--black);
  display: block;
  position: relative;
}

.modal-video video {
  display: block;
  height: 100%;
  width: 100%;
}

.modal-close {
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  font-size: 32px;
  height: 46px;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 46px;
}

.cookie-banner {
  align-items: center;
  background: rgba(5, 5, 5, 0.94);
  border: 1px solid rgba(240, 178, 60, 0.28);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: min(920px, calc(100% - 36px));
  padding: 18px;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 90;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: var(--gold);
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 18px;
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal:not(.is-visible) {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 76px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav.is-open {
    background: rgba(5, 5, 5, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    inset: var(--header) 0 auto;
    padding: 18px 22px 28px;
    position: fixed;
  }

  .site-nav.is-open a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 68px);
  }

  .hero-media img {
    object-position: 62% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.72) 56%, rgba(3, 3, 3, 0.28)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.28));
  }

  .mission,
  .newsletter,
  .program-band {
    grid-template-columns: 1fr;
  }

  .venture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venture-card,
  .venture-card-wide {
    aspect-ratio: 0.9;
    grid-column: span 1;
    min-height: 380px;
  }

  .venture-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: span 1;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand-mark {
    height: 46px;
    width: 46px;
  }

  .brand-text {
    gap: 3px;
  }

  .brand-title {
    font-size: 20px;
    letter-spacing: 3.4px;
  }

  .brand-subline {
    font-size: 12px;
  }

  .hero {
    padding: calc(var(--header) + 46px) 20px 54px;
  }

  .hero-media img {
    object-position: 68% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.82), rgba(3, 3, 3, 0.86)),
      linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.52));
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .btn,
  .signup .btn {
    width: 100%;
  }

  .mission,
  .proof,
  .venture-lanes,
  .program-band,
  .newsletter,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .proof-grid,
  .venture-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .venture-lanes {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .venture-heading {
    text-align: left;
  }

  .venture-heading h2 {
    font-size: 38px;
  }

  .venture-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .venture-card,
  .venture-card-wide {
    aspect-ratio: 0.86;
    min-height: 410px;
  }

  .venture-overlay {
    padding: 24px;
  }

  .proof-item,
  .proof-item:nth-child(3),
  .stats div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 16px 0;
  }

  .proof-item:first-child,
  .stats div:first-child {
    border-top: 0;
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
