:root {
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #606060;
  --line: #ededed;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.42;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.menu a {
  font-size: 15px;
  color: #161616;
}

.menu .cta {
  border: 1px solid #111;
  padding: 11px 16px;
  font-weight: 700;
}

.hero {
  padding: 70px 0 46px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(52px, 7.7vw, 100px);
  line-height: .91;
  letter-spacing: -.06em;
  font-weight: 700;
  max-width: 9.1ch;
}

.hero-kicker {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hero-art {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 20%, rgba(0,0,0,.08), transparent 24%),
    radial-gradient(circle at 25% 74%, rgba(0,0,0,.05), transparent 31%),
    linear-gradient(180deg, #fcfcfc 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.ring {
  position: absolute;
  border: 1px solid #dadada;
  border-radius: 50%;
}

.ring-a {
  width: 64%;
  height: 64%;
  top: -6%;
  right: -6%;
}

.ring-b {
  width: 41%;
  height: 41%;
  left: 8%;
  bottom: 11%;
}

.ring-c {
  width: 18%;
  height: 18%;
  left: 47%;
  bottom: 16%;
}

section {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: .98;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.section-lead,
.team-intro {
  margin: 0;
  max-width: 1100px;
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.5;
}

.focus-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.focus-card {
  border: 1px solid var(--line);
  min-height: 286px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.focus-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.focus-icon {
  width: 46px;
  height: 46px;
  border: 2px solid #111111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  flex-shrink: 0;
}

.focus-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.focus-art {
  margin-top: 28px;
  aspect-ratio: 1.02 / 1;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fafafa, #f0f0f0);
  position: relative;
  overflow: hidden;
}

.art-1::before, .art-2::before, .art-3::before, .art-4::before,
.portfolio-thumb::before {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  border: 1px solid #dddddd;
}

.art-1::before { width: 58%; height: 58%; top: 10%; right: -8%; }
.art-2::before { width: 40%; height: 40%; bottom: 12%; left: 9%; }
.art-3::before { width: 48%; height: 48%; top: 18%; left: 24%; }
.art-4::before { width: 60%; height: 60%; bottom: -8%; right: 10%; }

.subhead {
  margin: 34px 0 18px;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}

.team-grid-small {
  margin-top: 0;
}

.team-card {
  display: block;
  padding: 4px 0;
}


.team-card h3 {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.team-card p {
  margin: 0;
  color: #333;
  font-size: 16px;
}

.team-card h3 + p {
  margin-top: 2px;
}

.quote {
  margin: 18px 0 26px;
  font-size: 25px;
  line-height: 1.36;
}

.quote small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 20px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-thumb {
  aspect-ratio: 1.22 / 1;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 28%, rgba(0,0,0,.05), transparent 24%),
    linear-gradient(180deg, #fbfbfb, #f1f1f1);
  position: relative;
  overflow: hidden;
}

.thumb-1::before { width: 54%; height: 54%; right: -6%; top: 10%; }
.thumb-2::before { width: 42%; height: 42%; left: 10%; bottom: 10%; }
.thumb-3::before { width: 46%; height: 46%; right: 15%; bottom: 8%; }
.thumb-4::before { width: 60%; height: 60%; left: -6%; top: 8%; }
.thumb-5::before { width: 34%; height: 34%; left: 36%; top: 28%; }
.thumb-6::before { width: 52%; height: 52%; right: 8%; top: 12%; }
.thumb-7::before { width: 44%; height: 44%; left: 8%; top: 14%; }
.thumb-8::before { width: 40%; height: 40%; right: 22%; bottom: 12%; }
.thumb-9::before { width: 58%; height: 58%; right: -7%; top: 10%; }
.thumb-10::before { width: 38%; height: 38%; left: 16%; bottom: 14%; }
.thumb-11::before { width: 49%; height: 49%; right: 16%; top: 18%; }
.thumb-12::before { width: 36%; height: 36%; left: 12%; top: 18%; }
.thumb-13::before { width: 63%; height: 63%; right: 8%; bottom: -10%; }
.thumb-14::before { width: 36%; height: 36%; left: 40%; top: 18%; }
.thumb-15::before { width: 46%; height: 46%; right: 14%; bottom: 8%; }
.thumb-16::before { width: 56%; height: 56%; left: -8%; top: 10%; }
.thumb-17::before { width: 39%; height: 39%; left: 12%; bottom: 12%; }
.thumb-18::before { width: 50%; height: 50%; right: 10%; top: 10%; }
.thumb-19::before { width: 44%; height: 44%; left: 24%; top: 20%; }
.thumb-20::before { width: 58%; height: 58%; right: 4%; bottom: -8%; }

.portfolio-card p {
  margin: 0;
  font-size: 15px;
  color: #2f2f2f;
  min-height: 96px;
}

.portfolio-card a {
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
}

.exit {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .08em;
}

.touch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.touch-card {
  border: 1px solid var(--line);
  padding: 24px;
  min-height: 214px;
}

.touch-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1;
}

.touch-card p {
  margin: 0 0 10px;
  color: #303030;
  font-size: 16px;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.socials a {
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.footer {
  padding: 32px 0 56px;
  border-bottom: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}

.cofinancing {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  max-width: 1160px;
  color: #363636;
  font-size: 14px;
  line-height: 1.6;
}

.sfdr-links {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero-grid, .focus-grid, .portfolio-grid, .touch-grid, .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { padding: 14px 0; flex-direction: column; align-items: start; }
  .hero { padding-top: 38px; }
  .hero-grid, .focus-grid, .portfolio-grid, .touch-grid, .team-grid {
    grid-template-columns: 1fr;
  }
    .hero h1 { max-width: 11ch; }
}


.investment-art::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 16%;
  height: 1px;
  background: #d8d8d8;
}

.chart-line {
  position: absolute;
  left: 14%;
  top: 46%;
  width: 58%;
  height: 2px;
  background: #111;
  transform: rotate(-18deg);
  transform-origin: left center;
  box-shadow:
    82px 24px 0 -1px #111,
    168px -6px 0 -1px #111;
}

.chart-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
}

.dot-1 { left: 18%; top: 60%; }
.dot-2 { left: 34%; top: 51%; }
.dot-3 { left: 50%; top: 55%; }
.dot-4 { left: 68%; top: 39%; }

.chart-bar {
  position: absolute;
  bottom: 16%;
  width: 34px;
  background: linear-gradient(180deg, #f7f7f7, #eaeaea);
  border: 1px solid #d8d8d8;
}

.bar-1 { left: 16%; height: 14%; }
.bar-2 { left: 26%; height: 20%; }
.bar-3 { left: 36%; height: 17%; }
.bar-4 { left: 46%; height: 28%; }
.bar-5 { left: 56%; height: 34%; }

.coin {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f3f3f3 45%, #e5e5e5 100%);
}

.coin::before {
  content: "$";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #111;
}

.coin-1 { right: 11%; top: 14%; }
.coin-2 { right: 20%; bottom: 12%; width: 48px; height: 48px; }

@media (max-width: 760px) {
  .coin-1 { right: 8%; top: 10%; }
  .coin-2 { right: 16%; bottom: 10%; }
}


.sector-logo {
  background: linear-gradient(180deg, #fbfbfb, #f0f0f0);
  position: relative;
  overflow: hidden;
}

.sector-logo::after {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(0,0,0,.04);
}

.martech-logo .m-node,
.medtech-logo .med-dot,
.industry-logo .ind-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}

.martech-logo .m-line,
.industry-logo .ind-line {
  position: absolute;
  height: 2px;
  background: #111;
  transform-origin: left center;
}

.martech-logo .m1 { left: 18%; top: 24%; }
.martech-logo .m2 { left: 62%; top: 20%; }
.martech-logo .m3 { left: 30%; top: 66%; }
.martech-logo .m4 { left: 70%; top: 62%; }
.martech-logo .l1 { left: 24%; top: 30%; width: 42%; transform: rotate(-6deg); }
.martech-logo .l2 { left: 26%; top: 34%; width: 18%; transform: rotate(56deg); }
.martech-logo .l3 { left: 38%; top: 70%; width: 34%; transform: rotate(-10deg); }
.martech-logo .m-megaphone {
  position: absolute;
  left: 40%;
  top: 36%;
  width: 22%;
  height: 18%;
  border: 2px solid #111;
  border-left-width: 8px;
  transform: skew(-12deg);
  background: #fff;
}
.martech-logo .m-megaphone::before {
  content: "";
  position: absolute;
  right: -18%;
  top: 24%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #111;
}
.martech-logo .m-megaphone::after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: -34%;
  width: 18%;
  height: 38%;
  border: 2px solid #111;
  background: #fff;
}

.fintech-logo .f-card {
  position: absolute;
  left: 18%;
  top: 24%;
  width: 54%;
  height: 42%;
  border: 2px solid #111;
  border-radius: 16px;
  background: #fff;
}
.fintech-logo .f-chip {
  position: absolute;
  left: 30%;
  top: 36%;
  width: 14%;
  height: 12%;
  border: 2px solid #111;
  border-radius: 4px;
  background: #f5f5f5;
}
.fintech-logo .f-line {
  position: absolute;
  height: 2px;
  background: #111;
}
.fintech-logo .fl1 { left: 52%; top: 40%; width: 14%; }
.fintech-logo .fl2 { left: 52%; top: 48%; width: 10%; }
.fintech-logo .f-coin {
  position: absolute;
  right: 16%;
  bottom: 18%;
  width: 22%;
  aspect-ratio: 1;
  border: 2px solid #111;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f3f3f3 60%, #e8e8e8 100%);
}
.fintech-logo .f-coin::before {
  content: "$";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.medtech-logo .med-cross {
  position: absolute;
  left: 38%;
  top: 26%;
  width: 24%;
  height: 36%;
}
.medtech-logo .med-cross::before,
.medtech-logo .med-cross::after {
  content: "";
  position: absolute;
  background: #111;
  border-radius: 3px;
}
.medtech-logo .med-cross::before {
  left: 36%;
  top: 0;
  width: 28%;
  height: 100%;
}
.medtech-logo .med-cross::after {
  left: 0;
  top: 36%;
  width: 100%;
  height: 28%;
}
.medtech-logo .med-ring {
  position: absolute;
  left: 24%;
  top: 16%;
  width: 52%;
  height: 52%;
  border: 2px solid #d8d8d8;
  border-radius: 50%;
}
.medtech-logo .md1 { left: 18%; top: 64%; }
.medtech-logo .md2 { left: 48%; top: 74%; }
.medtech-logo .md3 { left: 72%; top: 62%; }
.medtech-logo .med-pulse {
  position: absolute;
  left: 18%;
  top: 68%;
  width: 58%;
  height: 2px;
  background: #111;
}
.medtech-logo .med-pulse::before {
  content: "";
  position: absolute;
  left: 18%;
  top: -12px;
  width: 26%;
  height: 26px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: skewX(-28deg);
}
.medtech-logo .med-pulse::after {
  content: "";
  position: absolute;
  left: 44%;
  top: -18px;
  width: 22%;
  height: 34px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: skewX(24deg);
}

.industry-logo .gear {
  position: absolute;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
}
.industry-logo .gear::before {
  content: "";
  position: absolute;
  inset: 26%;
  border: 2px solid #111;
  border-radius: 50%;
}
.industry-logo .gear-a {
  left: 24%;
  top: 24%;
  width: 24%;
  height: 24%;
}
.industry-logo .gear-b {
  left: 52%;
  top: 42%;
  width: 20%;
  height: 20%;
}
.industry-logo .gear-a::after,
.industry-logo .gear-b::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1px dashed #d4d4d4;
}
.industry-logo .il1 { left: 36%; top: 40%; width: 24%; transform: rotate(22deg); }
.industry-logo .il2 { left: 26%; top: 68%; width: 46%; transform: rotate(-8deg); }
.industry-logo .il3 { left: 56%; top: 56%; width: 16%; transform: rotate(68deg); }
.industry-logo .in1 { left: 18%; top: 66%; }
.industry-logo .in2 { left: 46%; top: 62%; }
.industry-logo .in3 { left: 72%; top: 52%; }

@media (max-width: 760px) {
  .martech-logo .m-node,
  .medtech-logo .med-dot,
  .industry-logo .ind-node {
    width: 14px;
    height: 14px;
  }
}


.logo-thumb {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.logo-thumb::before {
  display: none;
}

.logo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}


.spantium-white {
  background: #ffffff !important;
  padding: 22px !important;
}

.spantium-white img {
  background: #ffffff !important;
  object-fit: contain;
  padding: 12px;
  border-radius: 12px;
}


.touch-card .stay-inline-name {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 16px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .touch-card .stay-inline-name {
    font-size: 24px;
    white-space: normal;
  }
}


.focus-icon-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
