:root {
  --ink: #0b1424;
  --muted: #5d6878;
  --paper: #f5f1e9;
  --surface: #fffdf8;
  --archive: #081321;
  --archive-surface: #101d30;
  --line: rgba(11, 20, 36, .14);
  --lime: #c8ff5a;
  --blue: #5d7cff;
  --orange: #ff8d5b;
  --purple: #a777ff;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(93, 124, 255, .07), transparent 25rem),
    var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
.hero,
.statement,
.ventures,
.former-inner,
.contact,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}
.brand-mark {
  width: 31px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.brand-mark span {
  width: 8px;
  background: var(--ink);
  border-radius: 8px 8px 2px 2px;
  transform: skew(-8deg);
}
.brand-mark span:nth-child(1) { height: 16px; }
.brand-mark span:nth-child(2) { height: 27px; background: var(--blue); }
.brand-mark span:nth-child(3) { height: 21px; }
nav { display: flex; align-items: center; gap: 34px; }
nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
}
.nav-contact {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 690px;
  padding: 82px 0 96px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 52px;
}
.eyebrow,
.section-label,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .74rem;
  font-weight: 800;
}
.eyebrow,
.section-label { margin: 0 0 22px; }
.eyebrow::before,
.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  margin-right: 11px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
}
h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 760;
}
.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button-primary { color: white; background: var(--ink); }
.button-secondary { background: transparent; }
.hero-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 500px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(11, 20, 36, .1);
  border-radius: 34px;
  background: #efe7da;
  box-shadow: 0 30px 80px rgba(11, 20, 36, .18);
}
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
  pointer-events: none;
}

.statement {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}
.statement h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 42px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-left: 26%;
}
.statement-grid p { color: var(--muted); font-size: 1.08rem; }

.ventures {
  padding: 118px 0 132px;
  border-top: 1px solid var(--line);
}
.section-heading {
  margin-bottom: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 270px; margin-bottom: 5px; color: var(--muted); }
.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.venture-card {
  --accent: var(--blue);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 20, 36, .12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 12px 30px rgba(11, 20, 36, .035);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.venture-media {
  position: relative;
  flex: none;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9e4da;
}
.venture-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}
.venture-body {
  min-height: 246px;
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-top: 3px solid var(--accent);
}
.venture-card h3,
.archive-feature h3 {
  margin-bottom: 11px;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.venture-card p { margin-bottom: 0; color: var(--muted); font-size: .98rem; }
.card-kicker {
  margin: 0 0 14px !important;
  color: var(--muted) !important;
  letter-spacing: .12em;
  font-size: .67rem !important;
}
.venture-link {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .065em;
}
.card-irpa { --accent: #50bfe6; }
.card-visa { --accent: var(--orange); }
.card-luli { --accent: #cfff24; }
.card-gate { --accent: #ff9d1a; }
.card-pocket { --accent: #637fff; }
.card-more { --accent: var(--purple); }
.venture-media-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 20, 36, .08), rgba(167, 119, 255, .14));
}
.venture-media-more img { object-position: 50% 50%; }

.former-ventures {
  padding: 124px 0 132px;
  color: #f7f3eb;
  background:
    radial-gradient(circle at 86% 12%, rgba(93, 124, 255, .18), transparent 25rem),
    radial-gradient(circle at 12% 90%, rgba(200, 255, 90, .06), transparent 28rem),
    var(--archive);
}
.section-heading-inverse .section-label { color: var(--lime); }
.section-heading-inverse > p { color: rgba(247, 243, 235, .62); }
.former-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.archive-feature {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  background: var(--archive-surface);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}
.archive-feature-media {
  aspect-ratio: 1180 / 347;
  overflow: hidden;
  background: #dce8ed;
}
.archive-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.archive-feature-body {
  padding: 31px 34px 34px;
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  align-items: start;
  gap: 48px;
}
.archive-feature-body h3 { margin-bottom: 0; font-size: clamp(2.4rem, 4vw, 3.65rem); }
.archive-feature-body p:last-child {
  max-width: 760px;
  margin: 3px 0 0;
  color: rgba(247, 243, 235, .74);
  font-size: 1.06rem;
}
.archive-feature .card-kicker,
.archive-card .card-kicker { color: var(--lime) !important; }
.archive-card {
  grid-column: span 4;
  border-color: rgba(255, 255, 255, .12);
  color: #f7f3eb;
  background: var(--archive-surface);
  box-shadow: none;
}
.archive-card .venture-body {
  min-height: 304px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.archive-card p { color: rgba(247, 243, 235, .66); }
.archive-card .venture-link { color: #f7f3eb; }
.archive-media { aspect-ratio: 4 / 3; }
.archive-media-movinglife {
  padding: 20px 30px 8px;
  background: #e9e6df;
}
.archive-media-movinglife img { object-fit: contain; }
.archive-media-bezecom {
  padding: 22px 16px;
  display: grid;
  place-items: center;
  background: #dce8ef;
}
.archive-media-bezecom img {
  height: auto;
  object-fit: contain;
  box-shadow: 0 13px 25px rgba(11, 20, 36, .13);
}
.archive-media-natively {
  padding: 18px 54px;
  background: #b8c9cf;
}
.archive-media-natively img {
  object-fit: contain;
  filter: drop-shadow(0 14px 15px rgba(11, 20, 36, .24));
}

.contact {
  margin-top: 124px;
  margin-bottom: 124px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 20, 36, .14);
  border-radius: 34px;
  background: var(--archive);
  box-shadow: 0 28px 70px rgba(11, 20, 36, .13);
}
.contact-copy {
  padding: clamp(40px, 5vw, 64px);
  color: #f7f3eb;
  background:
    radial-gradient(circle at 20% 100%, rgba(93, 124, 255, .28), transparent 21rem),
    var(--archive);
}
.contact-copy .section-label { color: var(--lime); }
.contact h2 { margin-bottom: 30px; }
.contact-copy > p:not(.section-label) {
  max-width: 420px;
  color: rgba(247, 243, 235, .68);
  font-size: 1.08rem;
}
.contact-form {
  padding: clamp(32px, 4.5vw, 54px);
  color: var(--ink);
  background: var(--surface);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span {
  margin-bottom: 7px;
  display: block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd4db;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fbfbfa;
  font: inherit;
  transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; }
input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93, 124, 255, .14);
}
.form-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.captcha-field { flex: 1; margin-bottom: 0 !important; }
.captcha-field input { max-width: 150px; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .76rem; }
.form-message { margin-bottom: 18px; padding: 13px 15px; border-radius: 10px; font-weight: 650; }
.form-message.success { color: #175b38; background: #e6f8ee; }
.form-message.error { color: #8a2630; background: #fdebed; }
.trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.footer-brand { color: var(--ink); }
footer p { margin: 0; }
footer > a:last-child { text-underline-offset: 4px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11, 20, 36, .14); }
  a.venture-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 20, 36, .26);
    box-shadow: 0 20px 45px rgba(11, 20, 36, .1);
  }
  a.venture-card:hover .venture-media img { transform: scale(1.035); }
  .archive-card:hover { border-color: rgba(255, 255, 255, .27) !important; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 34px; }
  .current-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, .75fr) 1.25fr;
  }
  .archive-card .venture-media { min-height: 300px; aspect-ratio: auto; }
  .archive-card .venture-body { min-height: 300px; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy > p:not(.section-label) { max-width: 610px; }
}

@media (max-width: 850px) {
  .site-header,
  .hero,
  .statement,
  .ventures,
  .former-inner,
  .contact,
  footer { width: min(100% - 30px, 1180px); }
  nav a:not(.nav-contact) { display: none; }
  .hero {
    min-height: auto;
    padding: 68px 0 78px;
    grid-template-columns: 1fr;
  }
  .hero-visual { width: min(100%, 520px); justify-self: center; }
  h1 { font-size: clamp(3.2rem, 14vw, 5.2rem); }
  .statement-grid { margin-left: 0; grid-template-columns: 1fr; gap: 12px; }
  .archive-feature-body { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 650px) {
  .site-header { height: 76px; }
  .hero-visual { width: 100%; border-radius: 24px; }
  .statement,
  .ventures { padding-block: 78px; }
  .former-ventures { padding: 78px 0 84px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .current-grid { grid-template-columns: 1fr; gap: 16px; }
  .venture-body { min-height: auto; }
  .archive-feature { border-radius: 24px; }
  .archive-feature-media { aspect-ratio: 16 / 9; }
  .archive-feature-media img { object-position: 50% 50%; }
  .archive-feature-body { padding: 25px 24px 28px; }
  .archive-card { display: flex; }
  .archive-card .venture-media { min-height: 0; aspect-ratio: 4 / 3; }
  .archive-card .venture-body { min-height: auto; }
  .contact { margin-top: 78px; margin-bottom: 78px; border-radius: 24px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .captcha-field input { max-width: none; }
  footer { padding: 28px 0; align-items: flex-start; flex-direction: column; }
}

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