@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
  /* Brand palette */
  --basic: #035F5A;
  --secondary: #B8D7E5;
--dark: #035F5A;


  --accent-pink: #D997A8;
  --accent-gold: #BC3850;
  --accent-terracotta: #BE5D33;
  --accent-blue: #768EBA;

  --text-main: #393538;
  --bg: #F6F5F7;
  --white: #ffffff;
}

* {
box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background: var(--bg);
}

/* Navigation */
.nav {
position: sticky;
top: 0;
z-index: 100;
background: var(--bg);
color: var(--text-main);
border-bottom: 1px solid rgba(57, 53, 56, 0.12);
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 5vw;
}

/* Logo in nav — prevent huge rendering */
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;              /* prevents extra vertical space */
}

.nav-logo-img {
  height: 62px;
  width: auto;
  max-height: none;
  max-width: none;
}

.nav-logo span {
color: var(--basic);
}

.nav-links a {
margin-left: 24px;
text-decoration: none;
color: var(--text-main);
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}

.nav-links a:hover {
color: var(--basic);
}

/* HERO SECTION */
.hero {
  background: var(--basic);
  color: var(--white);
  padding: 80px 5vw;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-text {
  max-width: 900px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(246, 245, 247, 0.85);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--white);
  line-height: 1.3;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px;
  color: rgba(246, 245, 247, 0.92);
}

.hero-highlight {
  border-left: 3px solid var(--accent-gold);
  padding-left: 14px;
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(246, 245, 247, 0.92);
}

.hero-cta {
  margin-top: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--accent-gold);
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Responsive hero (text-only) */
@media (max-width: 900px) {
  .hero {
    padding: 70px 5vw;
  }
  .hero h1 {
    font-size: 2.0rem;
  }
}


/* General sections */
section {
padding: 70px 5vw;
}

section h2 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--text-main);
}

section p {
font-size: 1rem;
line-height: 1.7;
max-width: 860px;
margin: 0 0 14px;
}

.section-subtitle {
text-transform: uppercase;
letter-spacing: 0.16em;
font-size: 0.8rem;
color: #777777;
margin-bottom: 8px;
}

.section-alt {
background: rgba(184, 215, 229, 0.25);
}

/* Cards layout */
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
margin-top: 30px;
max-width: 1000px;
}

.card {
background: var(--white);
border-radius: 8px;
padding: 18px 18px 20px;
border: 1px solid #e0e0e0;
}

.card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--text-main);
}

.card-role {
  font-size: 0.9rem;
  color: var(--basic);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card p {
font-size: 0.92rem;
margin: 0;
}

/* Team */
.team-photo {
width: 50%;
height: auto;
object-fit: cover;
border-radius: 6px;
margin-bottom: 10px;
display: block;
margin-left: 0;
}

/* Portfolio */
.portfolio-note {
font-size: 0.9rem;
color: #666666;
margin-top: 20px;
max-width: 860px;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(3, 95, 90, 0.45);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 10px;
  color: var(--basic);
  background: rgba(184, 215, 229, 0.35);
}

.status-pill {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;              
  border-radius: 999px;
  font-size: 0.85rem;              
  font-weight: 500;
  letter-spacing: 0.1em;           
  text-transform: uppercase;
  background: rgba(3, 95, 90, 0.12);
  color: var(--basic);
  border: 1px solid rgba(3, 95, 90, 0.35);
}

.cta-pill {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: #BC3850; /* Ligase accent */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.status-button {
  display: inline-block;
  margin-top: 16px;
}

.portfolio-company-name {
font-weight: 600;
margin-top: 4px;
}

.portfolio-stage {
font-size: 0.8rem;
color: #555555;
margin-top: 4px;
margin-bottom: 6px;
}

/* Linked logos only */
.portfolio-card-link {
display: block;
margin-bottom: 10px;
border-radius: 6px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
}

.portfolio-card-link:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Portfolio card images (all logos) */
.portfolio-card-image {
width: 100%;
height: 140px;
object-fit: contain;
display: block;
background: #ffffff; /* white background */
padding: 8px; /* some whitespace around logos */
border-radius: 6px;
box-sizing: border-box;
}

/* Logo scaling for specific companies */
.portfolio-card-image[alt^="Simmunext"] {
transform: scale(0.5);
transform-origin: center;
}

.portfolio-card-image[alt^="Genase"] {
transform: scale(0.8);
transform-origin: center;
}

.portfolio-card-image[alt^="Oncosence"] {
transform: scale(0.9);
transform-origin: center;
}

.portfolio-card-image[alt^="Cell Control"] {
transform: scale(0.5);
transform-origin: center;
}

.portfolio-card-image[alt^="Polar"] {
transform: scale(0.5);
transform-origin: center;
}

.portfolio-card-image[alt^="sCellGen"] {
transform: scale(0.9);
transform-origin: center;
}

/* Contact */
.contact-wrapper {
max-width: 780px;
display: grid;
grid-template-columns: 1fr;
gap: 30px;
align-items: flex-start;
}

.contact-form label {
display: block;
font-size: 0.9rem;
margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 9px 10px;
margin-bottom: 14px;
border-radius: 4px;
border: 1px solid #cccccc;
font-family: inherit;
font-size: 0.95rem;
}

.contact-form textarea {
min-height: 120px;
resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(57,53,56,0.12);
  border-radius: 16px;
  padding: 22px 20px;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
}

/* Regulation section lists */
.regulation-section ul {
padding-left: 20px;
margin-top: 6px;
margin-bottom: 10px;
}

.regulation-section li {
margin-bottom: 4px;
}

/* Unified footer */
.site-footer {
  background: #035F5A;
  color: #F6F5F7;
  padding: 32px 5vw;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;   /* key change */
}

.footer-copy {
  flex: 1;
  text-align: center;
}

.footer-avatar {
  width: 42px;
  height: 42px;
  object-fit: contain;
}


/* Fund page spacing */
.fund-panel {
  padding: 28px 5vw;
}
/* Page title styling */
.page-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text-main);
}

.page-intro {
  font-size: 1.05rem;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(57, 53, 56, 0.8);
}

/* Fund II status spacing */
.status-text {
  margin-top: 8px;
  margin-bottom: 18px;
}

.status-button {
  margin-top: 8px;
}

/* Regulatory section styling */
.regulatory-title {
  font-size: 1.3rem;      /* smaller than fund title */
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.regulation-section a {
  font-size: 0.95rem;
}

.regulation-section + p {
  font-size: 0.8rem;
  color: rgba(57,53,56,0.7);
}

.fund-panel .btn-primary {
  margin-top: 28px;
}

.pillars-section {
  padding: 90px 5vw;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(57,53,56,0.12);
}

.pillar-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pillar-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Pillar colors */
.pillar-basic {
  background: #035F5A;
  color: #F6F5F7;
  border: none;
}

.pillar-basic p { color: rgba(246,245,247,0.92); }

.pillar-secondary {
  background: #B8D7E5;
  color: #393538;
  border: none;
}

.pillar-accent {
  background: #BC3850;
  color: #F6F5F7;
  border: none;
}

.pillar-accent p { color: rgba(246,245,247,0.92); }

.about-hero-line {
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .about-hero-line { white-space: normal; }
}
.about-hero {
  min-height: 100vh;              /* full screen */
  display: flex;
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  text-align: center;
  background: var(--bg);
  padding: 0 5vw;
}


.scroll-cue {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(57,53,56,0.6);
  margin-bottom: 30px;
}

.about-hero {
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-hero.fade-out {
  opacity: 0;
  transform: translateY(-40px);
}

#pillars.fade-in {
  opacity: 1;
  transform: translateY(0);
}

#pillars {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
}

.network-image {
  width: 100%;
  border-radius: 16px;
  display: block;
  background: transparent;
  border: none;
}

/* Film transition: pillars -> network */
.pillars-section.fade-out {
  opacity: 0;
  transform: translateY(-35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}

.network-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}

.network-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.news-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(57,53,56,0.12);
}

.news-date {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--basic);
  margin-bottom: 6px;
}

.news-item h3 {
  margin: 0 0 8px;
}

.news-item h3 a {
  text-decoration: none;
  color: var(--text-main);
}

.news-item h3 a:hover {
  color: var(--basic);
}
