/* ============================================================
 * ZIVOX — Founders Page (Premium, Equal Representation)
 * Hero + identical side-by-side founder cards
 * ============================================================ */

/* ---- Hero (equal representation) ---- */
.founders-eq-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 8vw, 80px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 800px at 20% 20%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(1000px 700px at 80% 80%, rgba(139, 92, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #0a0e1a 100%);
}
.founders-eq-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      rgba(59, 130, 246, 0.08),
      rgba(139, 92, 246, 0.08),
      rgba(6, 182, 212, 0.08),
      rgba(59, 130, 246, 0.08));
  filter: blur(80px);
  animation: heroAurora 40s linear infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes heroAurora {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.founders-eq-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
}

.founders-eq-hero .eq-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 24px;
}
.founders-eq-hero .eq-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.founders-eq-hero .eq-breadcrumbs a:hover { color: #fff; }

.founders-eq-hero .eq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
  animation: fadeInDown 0.7s ease both;
}
.founders-eq-hero .eq-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(1.25); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.founders-eq-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  color: #fff;
  animation: fadeInUp 0.7s ease 0.05s both;
}
.founders-eq-hero h1 .gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.founders-eq-hero .eq-sub {
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

/* Founder-names strip (both equal, in one line) */
.founders-eq-hero .eq-names {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  margin: 22px 0 8px;
  line-height: 1.4;
  animation: fadeInUp 0.7s ease 0.25s both;
}
.founders-eq-hero .eq-names .eq-name {
  display: inline-block;
  padding: 4px 10px;
}
.founders-eq-hero .eq-names .eq-sep {
  display: inline-block;
  color: #64748b;
  margin: 0 6px;
  font-weight: 400;
  vertical-align: middle;
}

.founders-eq-hero .eq-role {
  font-size: clamp(0.85rem, 1.6vw, 0.98rem);
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 6px 0 0;
  animation: fadeInUp 0.7s ease 0.35s both;
}
.founders-eq-hero .eq-role .eq-role-dot {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  color: #3b82f6;
}

/* ---- Founder Cards (identical, side-by-side) ---- */
.founders-eq-grid {
  padding: clamp(48px, 8vw, 96px) 0;
}
.founders-eq-grid .container {
  max-width: 1200px;
}
.founders-eq-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}
@media (max-width: 860px) {
  .founders-eq-grid-inner { grid-template-columns: 1fr; }
}

.founder-eq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.55), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  isolation: isolate;
}
/* Both founders animate identically (no staggered delay) */
.founder-eq-card:nth-child(2) { animation-delay: 0.25s; }

.founder-eq-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  background-size: 200% 100%;
  animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.founder-eq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(139, 92, 246, 0.20) inset;
}

.founder-eq-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0e1a;
}
.founder-eq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-eq-card:hover .founder-eq-photo img { transform: scale(1.04); }

.founder-eq-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 13, 0.85) 100%);
  pointer-events: none;
}

.founder-eq-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.founder-eq-badge i { color: #3b82f6; }

.founder-eq-body {
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.founder-eq-name {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.founder-eq-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: -6px 0 0;
}
.founder-eq-role span { color: #3b82f6; }

.founder-eq-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.20);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  align-self: flex-start;
}
.founder-eq-location i { color: #3b82f6; }

.founder-eq-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

.founder-eq-quote {
  position: relative;
  margin-top: 8px;
  padding: 16px 18px 16px 46px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.06);
  border-left: 3px solid #3b82f6;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.55;
}
.founder-eq-quote::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 12px;
  font-size: 3rem;
  color: rgba(59, 130, 246, 0.55);
  font-family: Georgia, serif;
  line-height: 1;
  font-style: normal;
}

.founder-eq-quote-attr {
  margin-top: 8px;
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.3px;
}

.founder-eq-socials {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.founder-eq-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}
.founder-eq-social:hover,
.founder-eq-social:focus-visible {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border-color: rgba(59, 130, 246, 0.4);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}
.founder-eq-social.wa:hover { color: #25D366; border-color: rgba(37, 211, 102, 0.4); }
.founder-eq-social.mail:hover { color: #93c5fd; }

/* ---- Homepage / About page "Meet the founders" band ---- */
.zvx-founders-band {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(600px 400px at 15% 0%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(600px 400px at 85% 100%, rgba(139, 92, 246, 0.08), transparent 60%);
  position: relative;
}
.zvx-founders-band .container { max-width: 1120px; }
.zvx-founders-band-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.zvx-founders-band-head .section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.30);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.zvx-founders-band-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.zvx-founders-band-head p {
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.02rem;
}

.zvx-founders-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 30px);
}
@media (max-width: 720px) {
  .zvx-founders-band-grid { grid-template-columns: 1fr; }
}

.zvx-founder-mini {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.zvx-founder-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}
.zvx-founder-mini-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0a0e1a;
}
.zvx-founder-mini-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35) inset;
  pointer-events: none;
}
.zvx-founder-mini-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.zvx-founder-mini-info { flex: 1; min-width: 0; }
.zvx-founder-mini-name {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.zvx-founder-mini-role {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.zvx-founder-mini-loc {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.zvx-founder-mini-loc i { color: #3b82f6; font-size: 0.75rem; }

.zvx-founders-band-cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
}

/* ---- Footer founders strip ---- */
.footer-founders {
  margin: 24px 0 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
}
.footer-founders-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  max-width: 100%;
}
.footer-founders-link:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.4);
  color: #fff;
  transform: translateY(-1px);
}
.footer-founders-avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-founders-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a0e1a;
  object-fit: cover;
  object-position: center top;
}
.footer-founders-avatars img + img { margin-left: -12px; }
.footer-founders-text {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-founders-text strong { color: #fff; font-weight: 700; }
.footer-founders-arrow {
  font-size: 0.8rem;
  color: #93c5fd;
  transition: transform 0.25s ease;
}
.footer-founders-link:hover .footer-founders-arrow { transform: translateX(4px); }

@media (max-width: 520px) {
  .footer-founders-link { padding: 8px 12px; font-size: 0.8rem; gap: 8px; }
  .footer-founders-text strong { display: block; margin-top: 2px; }
  .footer-founders-avatars img { width: 30px; height: 30px; }
}

/* ---- Prefers reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .founders-eq-hero::before,
  .founder-eq-card,
  .founder-eq-card::before,
  .founder-eq-card:hover,
  .zvx-founder-mini,
  .founder-eq-photo img,
  .footer-founders-arrow { animation: none !important; transition: none !important; transform: none !important; }
}
