/* Founder / team bio pages (SEO-06–10) */

.team-page main {
  padding-bottom: var(--space-2xl, 4rem);
}

.founder-hero {
  padding: calc(var(--header-h, 72px) + 2.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 90, 42, 0.12), transparent 60%);
}

.founder-hero__grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .founder-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-hero__photo {
    margin: 0 auto;
  }
}

.founder-hero__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent, #ff5a2a);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.founder-hero__eyebrow {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright, #ff7a52);
  margin: 0 0 0.5rem;
}

.founder-hero h1 {
  font-family: var(--display, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--text, #f5f5f5);
}

.founder-hero__role {
  font-size: 1.05rem;
  color: var(--text2, #a8a8b0);
  margin: 0 0 0.75rem;
}

.founder-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text3, #7a7a85);
  margin-bottom: 1rem;
}

.founder-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-hero__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.12));
  color: var(--text, #f5f5f5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.founder-hero__links a:hover {
  border-color: var(--accent, #ff5a2a);
  background: rgba(255, 90, 42, 0.08);
}

.founder-body {
  padding: 2.5rem 0;
}

.founder-body .prose-section {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.founder-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text, #f5f5f5);
}

.founder-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text2, #c8c8d0);
  margin: 0 0 1rem;
}

.founder-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--border, rgba(255, 255, 255, 0.1));
}

.founder-timeline li {
  position: relative;
  padding: 0 0 1.25rem 1.25rem;
}

.founder-timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent, #ff5a2a);
}

.founder-timeline strong {
  display: block;
  color: var(--text, #f5f5f5);
  font-size: 0.95rem;
}

.founder-timeline span {
  display: block;
  font-size: 0.85rem;
  color: var(--text3, #7a7a85);
  margin-top: 0.15rem;
}

.founder-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  background: rgba(255, 90, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.founder-cta p {
  margin: 0;
  max-width: 480px;
}

.team-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 3rem;
}

.team-card {
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s;
}

.team-card:hover {
  border-color: var(--accent, #ff5a2a);
}

.team-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--accent, #ff5a2a);
}

.team-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.team-card .role {
  color: var(--accent-bright, #ff7a52);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text2, #a8a8b0);
  margin: 0 0 1rem;
}

/* Homepage founders trust strip */
.founders-trust-strip {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: rgba(255, 255, 255, 0.02);
}

.founders-trust-strip__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.founders-trust-strip__label {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3, #7a7a85);
  margin-bottom: 0.75rem;
}

.founders-trust-strip h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin: 0 0 1.5rem;
}

.founders-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  text-align: left;
}

.founders-trust-strip__card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.founders-trust-strip__card:hover {
  border-color: var(--accent, #ff5a2a);
}

.founders-trust-strip__card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founders-trust-strip__card strong {
  display: block;
  color: var(--text, #f5f5f5);
}

.founders-trust-strip__card span {
  font-size: 0.85rem;
  color: var(--text3, #7a7a85);
}

/* Article author bylines (SEO-11+) */
.author-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 21, 0.45);
}

.author-byline__photo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.35), rgba(15, 17, 21, 0.9));
  border: 1px solid rgba(249, 115, 22, 0.35);
  flex-shrink: 0;
}

.author-byline__photo--img {
  object-fit: cover;
}

.author-byline__label {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3, #7a7a85);
}

.author-byline__name {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.author-byline__name a {
  color: inherit;
  text-decoration: none;
}

.author-byline__name a:hover {
  color: var(--accent-bright, #ff7a52);
}

.author-byline__role {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--text3, #7a7a85);
}

.author-byline-group {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.author-byline-group .author-byline {
  margin: 0;
}
