.page-header {
  background: linear-gradient(135deg, #0b1220 0%, #111b2e 100%);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.page-header h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.page-header p { color: #94a3b8; font-size: 1.05rem; }

.about-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(11,18,32,.08);
}

.about-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  background: #0b1220;
}

.about-hero h2 {
  font-size: 1.8rem;
  color: #0b1220;
  margin-bottom: 6px;
  font-weight: 800;
}

.about-hero .role {
  color: #d48f00;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-hero .lead {
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  margin-top: 10px;
}

.about-story {
  color: #334155;
  font-size: 1rem;
  line-height: 1.85;
  white-space: pre-line;
}

.info-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.92rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .k { color: #64748b; font-weight: 600; }
.info-row .v { color: #0b1220; font-weight: 600; text-align: end; word-break: break-word; }

.about-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.about-skill-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(11,18,32,.05);
}

.about-skill-card .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0b1220;
  font-size: 0.92rem;
}

.about-skill-card .pct { color: #64748b; font-weight: 600; }

.about-skill-card .bar {
  height: 8px;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
}

.about-skill-card .fill {
  height: 100%;
  background: linear-gradient(90deg, #f0a500, #ffc107);
  border-radius: 999px;
}

.about-skill-card .cat {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #d48f00;
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(135deg, #0b1220, #152238);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h3 { font-size: 1.35rem; margin-bottom: 6px; }
.cta-band p { color: #94a3b8; font-size: 0.95rem; }

@media (max-width: 800px) {
  .about-hero { grid-template-columns: 1fr; text-align: center; }
  .about-hero img { max-width: 220px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
}
