.founder { background: var(--surface); }

.founder__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.founder__portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
}

.founder__portrait-inner {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(158deg, #c67232 0%, #a1521f 52%, #7c3d14 100%);
}

.founder__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.founder h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 16px;
}

.founder__role-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
}

.founder__role-line span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.founder__role-line span:last-child {
  width: 130px;
  height: 2px;
  background: rgba(22, 21, 15, 0.16);
  border-radius: 2px;
}

.founder__role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.founder__bio {
  color: var(--ink-muted);
  font-size: 16.5px;
  line-height: 1.66;
  margin-top: 24px;
  max-width: 56ch;
}

.profile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  text-decoration: none;
}

a.profile-toggle:hover,
button.profile-toggle:hover { border-color: var(--accent); color: var(--accent); }

.profile-toggle__sign {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edeae3;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
}

.profile-detail {
  margin-top: 26px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  max-width: 60ch;
}

.profile-detail[hidden] { display: none; }

.profile-detail h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.profile-detail p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.68;
  margin: 0 0 12px;
}

.profile-block + .profile-block { margin-top: 26px; }

.pminfinity {
  background: var(--dark);
  color: var(--white);
  padding: 0;
}

.pminfinity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  align-items: stretch;
}

.pminfinity__copy {
  padding: clamp(56px, 7vw, 104px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pminfinity__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 16px 0 10px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.pminfinity__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-bright);
  margin: 0 0 24px;
}

.pminfinity__copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 18px;
  max-width: 52ch;
}

.pminfinity__visual {
  position: relative;
  min-height: 440px;
  background: #021a12;
}

.pminfinity__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes ccsBlink {
  0%, 45% { opacity: 1; }
  55%, 100% { opacity: 0.18; }
}

.blink-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  animation: ccsBlink 2.6s ease-in-out infinite;
}

.blink-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  flex: none;
}

@media (max-width: 720px) {
  .founder__portrait {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: 22px;
  }

  .founder__portrait-inner {
    inset: 10px;
    border-radius: 16px;
  }
}
