.about-page {
  padding-top: 100px;
  min-height: 100dvh;
}

/* Hero Section */
.about-hero {
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(43, 191, 143, 0.1);
  border: 1px solid rgba(43, 191, 143, 0.3);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.about-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-hero__desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Narrative Grid */
.about-narrative {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.about-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-card h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.about-card p:last-child {
  margin-bottom: 0;
}

/* Core Values */
.about-values {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.about-values__title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.value-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 157, 116, 0.3);
  box-shadow: 0 10px 40px -10px rgba(31, 157, 116, 0.15);
}

.value-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(31, 157, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  border: 1px solid rgba(31, 157, 116, 0.2);
  margin-bottom: 0.5rem;
}

.value-item h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 640px) {
  .about-hero__title {
    font-size: 2.2rem;
  }
  .about-card {
    padding: 2rem;
  }
}

/* ========================
   Founding Team Section
   ======================== */
.about-team {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--glass-border);
}

.about-team__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-team__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.team-tier-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid--founders {
    grid-template-columns: 1fr 1fr;
  }
}

/* Interns Grid */
.team-grid--interns {
  max-width: 1000px;
}
@media (min-width: 640px) {
  .team-grid--interns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .team-grid--interns {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Bento Card General Styles */
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}

.bento-card:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.bento-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bento-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(80%) contrast(1.1);
  transform: scale(var(--img-scale, 1)) translateY(var(--img-y, 0));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.bento-card:hover .bento-card__bg img {
  transform: scale(calc(var(--img-scale, 1) + 0.05)) translateY(var(--img-y, 0));
  filter: grayscale(0%) contrast(1);
}

.bento-card__overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-card__overlay {
  transform: translateY(0);
}

.bento-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #fff;
}

.bento-card__role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-primary);
  margin-bottom: 0;
  transition: margin 0.4s ease;
}

.bento-card:hover .bento-card__role {
  margin-bottom: 1rem;
}

.bento-card__bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

.bento-card:hover .bento-card__bio {
  opacity: 1;
  max-height: 200px; /* arbitrary height to allow expansion */
}

/* Founder Specific Sizing & Punch */
.bento-card--founder {
  min-height: 560px;
  box-shadow: 0 0 0 1px rgba(31, 157, 116, 0.2), 0 20px 50px -10px rgba(31, 157, 116, 0.15);
}

.bento-card--founder:hover {
  box-shadow: 0 0 0 2px rgba(31, 157, 116, 0.5), 0 30px 60px -15px rgba(31, 157, 116, 0.25);
}

.bento-card--founder .bento-card__overlay {
  padding: 3rem;
}

.bento-card--founder .bento-card__name {
  font-size: 2.5rem;
  letter-spacing: -1px;
}

.bento-card--founder .bento-card__role {
  font-size: 1rem;
}

.bento-card--founder .bento-card__bio {
  font-size: 1.1rem;
  max-width: 90%;
}

/* Intern Specific Sizing */
.bento-card--intern {
  min-height: 380px;
}

.bento-card--intern .bento-card__overlay {
  padding: 1.5rem;
}

.bento-card--intern .bento-card__name {
  font-size: 1.25rem;
}

.bento-card--intern .bento-card__role {
  font-size: 0.75rem;
}

.bento-card--intern .bento-card__bio {
  font-size: 0.85rem;
}

/* Company Info Strip */
.team-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.team-strip__item {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-strip__divider {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--text-muted);
  opacity: 0.4;
}

/* Team responsive adjustments */
@media (max-width: 640px) {
  .about-team__title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .team-card {
    padding: 2rem 1.5rem;
  }

  .team-strip {
    gap: 0.75rem;
  }

  .team-strip__item {
    font-size: 0.75rem;
  }
}
