.sn-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .sn-grid { grid-template-columns: 1fr; gap: 36px; }
}
/* founder avatar — small circle inline with the bio */
.sn-photo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.sn-photo-frame {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(167,139,250,.35);
  background: #0a0a0a;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(167,139,250,.1);
}
.sn-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.sn-photo-caption {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.sn-photo-caption small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}
.sn-promises {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) { .sn-promises { grid-template-columns: 1fr; } }
.sn-promise {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: #aaa; line-height: 1.55;
}
.sn-promise strong { color: #fff; font-family: 'Inter', sans-serif; font-size: 16px; display: block; margin-bottom: 8px; }
.sn-contact-item {
  font-family: 'Inter', sans-serif;
  color: #a78bfa; font-size: 18px; text-decoration: none;
  border: 1px solid rgba(167,139,250,.3);
  padding: 14px 24px; border-radius: 12px;
  transition: background .2s;
  display: inline-block;
}
.sn-contact-item:hover { background: rgba(167,139,250,.08); }
.sn-quote {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #a78bfa;
}
