/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* STORY */
.story-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.logo {
  width: 3.5vw;      /* scales with screen */
  max-width: 150px; /* prevents it getting huge */
  height: auto;
}

.logo-main {
  width: 20vw;      /* scales with screen */
  max-width: 750px; /* prevents it getting huge */
  height: auto;
  margin-bottom: 10px;
}

.story-text .section-tag { margin-bottom: 1rem; }

.story-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s;
}

.story-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.story-stat-card.accent {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.05));
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  min-width: 90px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* FOUNDERS */
.founders-section {
  padding: 7rem 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
}

.founder-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.15);
}

.founder-card.featured {
  border-color: rgba(249, 115, 22, 0.3);
}

.founder-image-wrap {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(59,130,246,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-image-placeholder {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15));
}

.founder-initials {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(30px);
  z-index: -1;
}

.founder-glow.orange { background: rgba(249, 115, 22, 0.2); }
.founder-glow.blue { background: rgba(59, 130, 246, 0.2); }

.founder-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.founder-badge.orange {
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

.founder-badge.blue {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.founder-info {
  padding: 1.75rem;
}

.founder-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.founder-role {
  font-size: 0.78rem;
  color: var(--orange-light);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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

.founder-tags span {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--purple-light);
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* TEAM */
.team-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.1);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1.25rem;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.team-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* VALUES */
.values-section {
  padding: 7rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.value-card:hover::after { opacity: 1; }

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section-tag {
    color: rgba(255, 255, 255, 0.95);        /* white text */
    background: rgba(255, 255, 255, 0.4);    /* semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;                       /* slightly smaller */
    letter-spacing: 0.1em;
    padding: 0.25rem 0.9rem;

    backdrop-filter: blur(6px);              /* glass effect */
  }
}
@media (max-width: 768px) {

  .packages {
    grid-template-columns: 1fr;
  }

  .packages-section h1 {
    font-size: 2rem;
  }

  /* LOGO BIGGER ON MOBILE */
  .logo {
    width: 10vw;
  }

  .logo-main {
    width: 45vw;
  }

  /* BUTTON FULL WIDTH + CENTER */
  .package-btn {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0 auto; /* THIS centers it */
  }
}

@media (max-width: 480px) {
  .package {
    padding: 25px 18px;
  }

  .package-btn {
    max-width: 100%;
  }
}
