/* Founder / Ansprechpartner block */
.founder {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 15% 40%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.founder > * { position: relative; }

.founder-grid {
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.founder-photo-wrap { position: relative; }

.founder-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.5),
    0 0 0 1px var(--line);
  transform: rotate(-1.2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.founder-photo-frame:hover { transform: rotate(0deg) scale(1.01); }
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03) saturate(0.92);
}

/* Film-strip corner marks */
.founder-photo-frame::after {
  content: '';
  position: absolute;
  top: 10px; left: 10px;
  width: 40px; height: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-left: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
}

.founder-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  padding: 12px 14px;
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.fpt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.fpt-l { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.fpt-s { font-family: var(--mono); font-size: 10px; opacity: 0.6; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 1px; }

.founder-photo-meta {
  margin-top: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  padding: 0 4px;
}
.fpm-l::before { content: '◦ '; color: var(--accent); }

/* Right column */
.founder-content { max-width: 640px; }

.founder-quote {
  margin: 28px 0 32px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.founder-quote strong { color: var(--ink); font-family: var(--sans); font-size: 0.85em; font-weight: 600; font-style: normal; }

.founder-sig {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.sig-mark { flex-shrink: 0; opacity: 0.85; }
.sig-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}
.sig-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sig-name {
  font-family: var(--serif); font-size: 24px;
  letter-spacing: -0.01em;
}
.sig-role {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
  margin-top: 2px;
}

.founder-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.ff {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.ff:last-child { border-right: none; }
.ff-n {
  font-family: var(--serif); font-size: 34px;
  line-height: 1; letter-spacing: -0.02em;
}
.ff-n span {
  color: var(--accent); font-style: italic;
  font-size: 22px; margin-left: 2px;
}
.ff-l {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 8px;
}

.founder-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-frame { transform: rotate(0); max-width: 400px; margin: 0 auto; }
  .founder-facts { grid-template-columns: 1fr 1fr; }
  .ff:nth-child(2) { border-right: none; }
  .ff:nth-child(1), .ff:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Team section ---------- */
.team {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 60px;
}
.team-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent-line);
  overflow: hidden;
  flex-shrink: 0;
}
.team-name {
  font-family: var(--serif); font-size: 26px;
  letter-spacing: -0.01em; line-height: 1.1;
}
.team-role {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.team-bio {
  font-size: 14px; color: var(--ink-2); line-height: 1.6;
}
.team-creds {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.team-creds .c {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

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