/* ============================================================
   FOUNDER PAGE — Edgar Alan Rangel Jiménez
   Reuses tokens/components from /style.css (topbar, footer,
   .container, .section-title, gradient accents). This file only
   adds page-specific layout: hero, timeline, cards, chips.
============================================================ */

.founder-page .logo {
  text-decoration: none;
}

.founder-page main {
  padding-top: 110px;
}

/* ===== HERO ===== */
.founder-hero {
  padding: 3rem 0 3.5rem;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(0,188,212,0.12) 0%, transparent 70%),
    #000;
}

.founder-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.founder-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.founder-eyebrow {
  background: linear-gradient(135deg, #00bcd4 0%, #e91e63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.founder-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 0.6rem;
}

.founder-role {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.founder-location {
  font-size: 0.92rem;
  color: #9ca3af;
  margin-bottom: 1.75rem;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.founder-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db;
  transition: all 0.3s ease;
}
.founder-btn:hover {
  background: rgba(0,188,212,0.1);
  border-color: rgba(0,188,212,0.5);
  color: #00bcd4;
  transform: translateY(-2px);
}
.founder-btn-primary {
  background: linear-gradient(135deg, #00bcd4 0%, #e91e63 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,188,212,0.3);
}
.founder-btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,188,212,0.5);
}

.founder-lang-switch {
  margin-top: 1.5rem;
  font-size: 0.88rem;
}
.founder-lang-switch a {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: none;
}
.founder-lang-switch a:hover {
  text-decoration: underline;
}

/* ===== SECTIONS ===== */
.founder-section {
  padding: 3.5rem 20px;
}
.founder-section-alt {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.founder-section .container {
  padding: 0 20px;
}

.founder-section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.founder-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.founder-prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
}
.founder-prose p {
  color: #9ca3af;
  line-height: 1.75;
}
.founder-prose p + p {
  margin-top: 1.1rem;
}

/* ===== TIMELINE ===== */
.founder-timeline {
  list-style: none;
  max-width: 760px;
  border-left: 2px solid rgba(255,255,255,0.1);
  margin: 0 auto;
}
.founder-timeline li {
  position: relative;
  padding: 0 0 2.25rem 2rem;
}
.founder-timeline li:last-child {
  padding-bottom: 0;
}
.founder-timeline li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bcd4 0%, #e91e63 100%);
  box-shadow: 0 0 0 4px rgba(0,188,212,0.15);
}
.founder-timeline h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.founder-timeline p {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* ===== CARDS ===== */
.founder-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.founder-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.founder-card:hover {
  border-color: rgba(0,188,212,0.5);
  transform: translateY(-4px);
}
.founder-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.founder-card-tag {
  color: #00bcd4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.founder-card p:not(.founder-card-tag) {
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== CHIPS ===== */
.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.founder-stack-group {
  margin-bottom: 1.75rem;
}
.founder-stack-group:last-child {
  margin-bottom: 0;
}
.founder-stack-group h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.85rem;
}
.founder-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ===== CLOSING ===== */
.founder-closing {
  text-align: center;
}
.founder-signature {
  font-style: italic;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}
.founder-cross-link {
  color: #9ca3af;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.founder-cross-link a {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: none;
}
.founder-cross-link a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .founder-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .founder-page main {
    padding-top: 90px;
  }
  .founder-hero {
    padding: 2.5rem 0 2.5rem;
  }
  .founder-photo {
    width: 116px;
    height: 116px;
  }
  .founder-section {
    padding: 2.5rem 20px;
  }
}
