:root {
  color-scheme: light;
  --ink: #101828;
  --muted: #526071;
  --line: #d8dee8;
  --soft-line: #e8edf3;
  --paper: #ffffff;
  --paper-tint: #f7f9fc;
  --navy: #07182f;
  --navy-2: #102845;
  --blue: #275eff;
  --cyan: #18a8c7;
  --green: #19a875;
  --coral: #ff6f43;
  --amber: #ffc857;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
  --shadow-soft: 0 12px 34px rgba(16, 24, 40, 0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 30;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--paper);
  background: var(--blue);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 222, 232, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #344154;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--blue);
  background: #eef3ff;
  outline: 0;
}

.nav-menu .nav-cta {
  margin-left: 8px;
  color: var(--paper);
  background: var(--navy);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--paper);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--paper-tint);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-open .nav-toggle-line {
  background: transparent;
}

.nav-open .nav-toggle-line::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-line::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 104px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--blue), var(--cyan) 34%, var(--amber) 66%, var(--coral));
  content: "";
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 24, 47, 0.98) 0%, rgba(7, 24, 47, 0.9) 46%, rgba(16, 40, 69, 0.72) 100%);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 24, 47, 0.98) 0%, rgba(7, 24, 47, 0.78) 54%, rgba(7, 24, 47, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 24, 47, 0.66), rgba(7, 24, 47, 0.08));
  content: "";
}

.artifact-wall {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(720px, 62vw);
  transform: translateX(4%);
}

.artifact {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
  height: auto;
  object-fit: cover;
}

.artifact-one {
  top: 8%;
  right: 18%;
  width: min(460px, 44vw);
  aspect-ratio: 1.2;
  transform: rotate(-4deg);
}

.artifact-two {
  top: 34%;
  right: -6%;
  width: min(380px, 34vw);
  aspect-ratio: 1.24;
  transform: rotate(5deg);
}

.artifact-three {
  bottom: 6%;
  right: 23%;
  width: min(420px, 38vw);
  aspect-ratio: 1.18;
  transform: rotate(-2deg);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 96px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 5.6rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.hero-copy {
  max-width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  line-height: 1.65;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(39, 94, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #164bdb;
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.proof-strip {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.proof-strip div {
  padding: 18px;
  background: rgba(7, 24, 47, 0.54);
}

.proof-strip dt {
  margin: 0 0 4px;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  padding: 112px 0;
}

.section-grid,
.team-grid,
.contact-grid,
.startup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.section-lede,
.section-header {
  max-width: 660px;
}

.section-header {
  margin-bottom: 34px;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 3.2rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.22;
  text-wrap: balance;
}

.section-lede p,
.section-header p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  background: var(--paper-tint);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.project-card,
.member-card,
.phase-track article {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 234px;
  padding: 24px;
}

.service-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-index {
  background: var(--blue);
}

.service-card:nth-child(3) .service-index {
  background: var(--green);
}

.service-card:nth-child(4) .service-index {
  background: var(--coral);
}

.service-card p,
.phase-track p,
.project-card p,
.member-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.startup-band {
  color: var(--paper);
  background: var(--navy);
  padding: 76px 0;
}

.startup-band h2 {
  color: var(--paper);
}

.startup-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.startup-list li {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.process {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.phase-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.phase-track article {
  position: relative;
  min-height: 248px;
  padding: 28px 22px;
  overflow: hidden;
}

.phase-track span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-weight: 900;
}

.phase-track article:nth-child(2) span {
  background: var(--cyan);
}

.phase-track article:nth-child(3) span {
  background: var(--green);
}

.phase-track article:nth-child(4) span {
  background: var(--coral);
}

.projects {
  background: var(--navy);
}

.projects h2 {
  color: var(--paper);
}

.projects .eyebrow {
  color: var(--amber);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  background: #ffffff;
}

.project-card img {
  width: 100%;
  height: 280px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #f6f9ff 0%, #eaf0fb 100%);
}

.project-card:nth-child(2) img {
  background: linear-gradient(180deg, #f9fafb 0%, #edf3f7 100%);
}

.project-content {
  padding: 22px;
}

.project-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.team {
  background: var(--paper-tint);
}

.member-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  overflow: hidden;
}

.member-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-card:nth-child(1) img {
  object-position: center 34%;
}

.member-card:nth-child(2) img {
  object-position: center 18%;
}

.member-card h3,
.member-card p {
  padding: 0 22px;
}

.member-card h3 {
  margin-top: 22px;
}

.member-card p {
  margin-bottom: 24px;
}

.contact-section {
  padding: 112px 0;
  background: #ffffff;
}

.contact-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #344154;
  background: #f0fbf7;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ccd6e3;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(39, 94, 255, 0.16);
}

.interest-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  border: 0;
}

.interest-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.interest-field label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--paper-tint);
  color: #344154;
  font-size: 0.9rem;
  font-weight: 760;
}

input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-disclaimer {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.38);
  outline: 0;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 940px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--soft-line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .nav-menu .nav-cta {
    justify-content: center;
    margin: 6px 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-backdrop::after {
    background:
      linear-gradient(180deg, rgba(7, 24, 47, 0.98) 0%, rgba(7, 24, 47, 0.88) 56%, rgba(7, 24, 47, 0.64) 100%),
      linear-gradient(90deg, rgba(7, 24, 47, 0.88), rgba(7, 24, 47, 0.2));
  }

  .artifact-wall {
    width: 100%;
    opacity: 0.34;
    transform: none;
  }

  .artifact-one {
    top: 8%;
    right: -12%;
    width: 420px;
  }

  .artifact-two {
    top: 44%;
    right: 8%;
    width: 320px;
  }

  .artifact-three {
    bottom: 4%;
    right: -4%;
    width: 360px;
  }

  .hero-inner {
    padding: 84px 0 92px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .project-card img {
    height: 320px;
  }

  .proof-strip,
  .section-grid,
  .team-grid,
  .contact-grid,
  .startup-grid,
  .phase-track,
  .project-list {
    grid-template-columns: 1fr;
  }

  .service-list,
  .member-list,
  .startup-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .contact-section {
    padding: 84px 0;
  }

  .section-grid,
  .team-grid,
  .contact-grid,
  .startup-grid {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brand span {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 2.72rem;
    line-height: 0.98;
    max-width: 360px;
  }

  .hero-copy,
  .hero-actions,
  .proof-strip {
    max-width: 360px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .service-list,
  .member-list,
  .startup-list,
  .interest-field {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .project-card img {
    height: 230px;
    padding: 14px;
  }

  .member-card img {
    height: 260px;
  }

  .contact-form {
    padding: 20px;
  }

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

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