.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 5% 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease both;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}

.eyebrow-line { width: 32px; height: 1px; background: var(--cyan); opacity: 0.65; }

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.04;
  margin-bottom: 20px;
}

.page-header h1 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--accent-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--glass-bd), transparent);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.about-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(0,212,255,0.3));
}

.about-intro-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-intro-body h2 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--accent-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

.team-section { margin-bottom: 90px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--accent-lt));
  transition: width 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.team-card:hover::before { width: 100%; }

.member-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(0,212,255,0.35);
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.member-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
}

.team-card .role {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 90px;
}

.info-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--accent-lt));
  transition: width 0.4s ease;
}

.info-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.info-card:hover::before { width: 100%; }

.info-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--cyan);
}

.info-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 24px 0 10px;
  opacity: 0.8;
}

.info-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.cta-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(65,105,225,0.12) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--navy);
  padding: 18px 48px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,212,255,0.35);
  position: relative;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,212,255,0.5);
  background: #33e8ff;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@media (max-width: 1024px) {
  .about-intro  { grid-template-columns: 1fr; gap: 36px; }
  .split-section { grid-template-columns: 1fr; }
  .about-intro-visual { font-size: 80px; }
}

@media (max-width: 768px) {
  .content-wrapper { padding: 120px 5% 60px; }
  .page-header { margin-bottom: 52px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 48px 28px; }
  .info-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-intro-visual { font-size: 64px; }
}