/* /founders page styles */

.founders-page { display:block; }

/* ---------- Page hero ---------- */
.fp-hero { padding-top: clamp(120px, 14vw, 180px); padding-bottom: clamp(40px, 6vw, 80px); }
.fp-hero .section__title { max-width: 22ch; }

/* ---------- Founder hero cards ---------- */
.fp-cards { padding-top: 0; padding-bottom: clamp(60px, 8vw, 120px); }
.fp-cards__stack { display:flex; flex-direction:column; gap: clamp(28px, 4vw, 56px); }

.founder-hero {
  display:grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items:start;
  padding: clamp(24px, 3.5vw, 48px);
  border-radius: 28px;
  background: hsl(var(--surface) / 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.35);
  position:relative;
  overflow:hidden;
}
.founder-hero::before {
  content:""; position:absolute; inset:-1px; border-radius:inherit; pointer-events:none;
  background: linear-gradient(135deg, hsl(var(--brand-pink) / 0.35), transparent 50%, hsl(var(--brand-blue) / 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding:1px; opacity:.55;
}
.founder-hero[data-tone="blue"]::before {
  background: linear-gradient(135deg, hsl(var(--brand-blue) / 0.45), transparent 55%, hsl(var(--brand-teal) / 0.45));
}

.founder-hero__photo {
  position:relative;
  width:100%; aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow:hidden;
  background: linear-gradient(135deg, hsl(var(--brand-pink) / 0.22), hsl(var(--brand-blue) / 0.22));
  display:flex; align-items:center; justify-content:center;
  isolation:isolate;
}
.founder-hero[data-tone="blue"] .founder-hero__photo {
  background: linear-gradient(135deg, hsl(var(--brand-blue) / 0.22), hsl(var(--brand-teal) / 0.22));
}
.founder-hero__photo img { width:100%; height:100%; object-fit:cover; display:block; }
.founder-hero__initials {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
  opacity: 0.55;
}
.founder-hero__photo-glow {
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 30% 20%, hsl(var(--brand-pink) / 0.45), transparent 55%);
  filter: blur(30px);
  z-index:-1;
}
.founder-hero[data-tone="blue"] .founder-hero__photo-glow {
  background: radial-gradient(circle at 70% 30%, hsl(var(--brand-blue) / 0.45), transparent 55%);
}

.founder-hero__body { display:flex; flex-direction:column; gap: 14px; }
.founder-hero__role {
  font-family:"Sora", system-ui, sans-serif;
  font-size: 13px; font-weight:600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: hsl(var(--brand-pink));
}
.founder-hero[data-tone="blue"] .founder-hero__role { color: hsl(var(--brand-blue)); }

.founder-hero__name {
  font-family:"Sora", system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 2px 0 0;
}
.founder-hero__loc { font-size: 14px; color: hsl(var(--muted-foreground)); margin-top: 2px; }

.founder-hero__summary { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.65; margin: 8px 0 0; max-width: 60ch; }

.founder-hero__now {
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(var(--brand-teal) / 0.14);
  color: hsl(var(--brand-teal));
  font-size: 13px; font-weight: 600;
  align-self:flex-start;
  margin-top: 4px;
}
.founder-hero__now-dot {
  width:8px; height:8px; border-radius:50%;
  background: hsl(var(--brand-teal));
  box-shadow: 0 0 0 4px hsl(var(--brand-teal) / 0.18);
}

.founder-hero__edu { list-style:none; padding:0; margin: 6px 0 0; display:flex; flex-direction:column; gap: 4px; }
.founder-hero__edu li { font-size: 14px; color: hsl(var(--foreground)); }
.founder-hero__edu-school { font-weight: 600; }
.founder-hero__edu-detail { color: hsl(var(--muted-foreground)); }

.founder-hero__links { display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.founder-hero__link {
  display:inline-flex; align-items:center; gap:6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: hsl(var(--surface) / 0.6);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 13px; font-weight: 600;
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.founder-hero__link:hover {
  transform: translateY(-1px);
  background: hsl(var(--surface));
  border-color: hsl(var(--brand-pink) / 0.5);
}

@media (max-width: 760px) {
  .founder-hero { grid-template-columns: 1fr; }
  .founder-hero__photo { max-width: 240px; }
}

/* ---------- Logo wall ---------- */
.fp-logos { padding: clamp(60px, 8vw, 110px) 0; }
.logo-wall {
  margin-top: clamp(32px, 4vw, 56px);
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.logo-tile {
  display:flex; align-items:center; gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: hsl(var(--surface) / 0.55);
  border: 1px solid hsl(var(--border) / 0.55);
  text-decoration:none;
  color: hsl(var(--foreground));
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.logo-tile:hover {
  transform: translateY(-2px);
  background: hsl(var(--surface));
  border-color: hsl(var(--brand-blue) / 0.45);
  box-shadow: 0 14px 40px -20px rgba(0,0,0,0.3);
}
.logo-tile__mark {
  flex: 0 0 48px; width:48px; height:48px;
  border-radius: 12px;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  box-shadow: inset 0 0 0 1px hsl(var(--border));
}
.logo-tile__mark img { max-width: 80%; max-height: 80%; object-fit: contain; display:block; }
.logo-tile__monogram {
  font-family:"Sora", system-ui, sans-serif;
  font-weight: 800; font-size: 16px; color: hsl(var(--brand-blue));
}
.logo-tile__meta { display:flex; flex-direction:column; gap:2px; min-width:0; }
.logo-tile__name { font-family:"Sora", system-ui, sans-serif; font-weight: 700; font-size: 14px; line-height:1.2; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.logo-tile__note { font-size: 12px; color: hsl(var(--muted-foreground)); }

/* ---------- Selected projects ---------- */
.fp-projects { padding: 0 0 clamp(80px, 10vw, 140px); }
.fp-projects__grid {
  margin-top: clamp(28px, 3vw, 48px);
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.fp-project {
  padding: 20px 22px;
  border-radius: 20px;
  background: hsl(var(--surface) / 0.55);
  border: 1px solid hsl(var(--border) / 0.55);
  display:flex; flex-direction:column; gap: 10px;
  transition: transform .18s ease, border-color .18s ease;
}
.fp-project:hover { transform: translateY(-2px); border-color: hsl(var(--brand-pink) / 0.45); }
.fp-project__head { display:flex; align-items:baseline; justify-content:space-between; gap: 12px; }
.fp-project__name { font-family:"Sora", system-ui, sans-serif; font-weight: 700; font-size: 18px; margin:0; }
.fp-project__who { font-size: 12px; color: hsl(var(--brand-pink)); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.fp-project__desc { font-size: 14px; line-height: 1.55; color: hsl(var(--muted-foreground)); margin:0; }
a.fp-project { text-decoration:none; color:inherit; }
.fp-project__cta { margin-top: auto; padding-top: 8px; font-size: 13px; font-weight: 700; color: hsl(var(--brand-blue)); }

/* ---------- Publications ---------- */
.fp-pubs { padding: 0 0 clamp(80px, 10vw, 140px); }
.fp-pubs__list {
  margin-top: clamp(28px, 3vw, 48px);
  list-style:none; padding:0;
  display:flex; flex-direction:column; gap: 10px;
}
.fp-pub__link {
  display:flex; flex-direction:column; gap: 4px;
  padding: 16px 20px;
  border-radius: 16px;
  background: hsl(var(--surface) / 0.55);
  border: 1px solid hsl(var(--border) / 0.55);
  text-decoration:none; color: hsl(var(--foreground));
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.fp-pub__link:hover { transform: translateY(-1px); border-color: hsl(var(--brand-teal) / 0.5); background: hsl(var(--surface)); }
.fp-pub__title { font-family:"Sora", system-ui, sans-serif; font-weight: 600; font-size: 15px; line-height:1.35; }
.fp-pub__meta { font-size: 13px; color: hsl(var(--muted-foreground)); }

/* ---------- Awards timeline ---------- */
.fp-awards { padding: 0 0 clamp(60px, 8vw, 120px); }
.fp-awards__list {
  margin-top: clamp(28px, 3vw, 48px);
  list-style:none; padding:0;
  display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px;
}
.fp-award {
  display:flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 14px;
  background: hsl(var(--surface) / 0.55);
  border: 1px solid hsl(var(--border) / 0.55);
}
.fp-award__year {
  flex: 0 0 auto;
  font-family: "Sora", system-ui, sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .04em;
  color: hsl(var(--brand-orange));
  background: hsl(var(--brand-orange) / 0.10);
  padding: 6px 10px; border-radius: 999px;
}
.fp-award__title { font-family:"Sora", system-ui, sans-serif; font-weight: 600; font-size: 14px; line-height:1.35; }
.fp-award__org   { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 2px; }
