/* ================================================
   Step Up — about.css
   About page styles
   Rules: px only · no rem · no :root variables
   ================================================ */

/* ------------------------------------------------
   PAGE HERO
   ------------------------------------------------ */
.page-hero {
  padding: 80px 48px 56px;
  max-width: 720px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.07);
}

.page-hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-title em {
  font-style: normal;
  color: #c9a84c;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 500px;
}

/* ------------------------------------------------
   FOUNDER SECTION
   ------------------------------------------------ */
.founder-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Left — avatar + socials */
.founder-left {
  background: #0f0f0d;
  padding: 52px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* Avatar circle */
.founder-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.avatar-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.07);
  border: 2px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.06);
  overflow: hidden;
}

/* When you add a real photo: */
.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-icon { font-size: 48px; }

.avatar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.avatar-badge i { font-size: 12px; color: #c9a84c; }

/* Social links */
.founder-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.founder-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.founder-social-link:hover {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
}

.founder-social-link i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Right — story */
.founder-right {
  background: #111111;
  padding: 52px 48px;
}

.founder-name {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 28px;
}

.wave {
  display: inline-block;
  animation: wave 2.5s ease infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%           { transform: rotate(14deg); }
  20%           { transform: rotate(-8deg); }
  30%           { transform: rotate(14deg); }
  40%           { transform: rotate(-4deg); }
  50%           { transform: rotate(10deg); }
}

.founder-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.founder-story p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
}

.founder-story p:first-child {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
}

.founder-signature {
  font-size: 18px;
  font-style: italic;
  color: #c9a84c;
  letter-spacing: 0.5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ------------------------------------------------
   MISSION SECTION
   ------------------------------------------------ */
.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mission-left {
  background: #111111;
  padding: 52px 48px;
}

.mission-heading {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.mission-heading em {
  font-style: normal;
  color: #c9a84c;
}

.mission-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
}

.mission-right {
  background: #0f0f0d;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mission-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-value:last-child { border-bottom: none; }

.mv-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  font-size: 16px;
  color: #c9a84c;
  flex-shrink: 0;
}

.mv-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.mv-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
}

/* ------------------------------------------------
   WHAT MAKES US DIFFERENT
   ------------------------------------------------ */
.diff-section {
  padding: 64px 48px;
}

.diff-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

.diff-card {
  background: #111111;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.18s;
}

.diff-card:hover { background: #161616; }

.diff-card--featured {
  background: #131310;
  border-top: 2px solid #c9a84c;
}

.diff-card--featured:hover { background: #171714; }

.diff-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  font-size: 18px;
  color: #c9a84c;
}

.diff-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.diff-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ------------------------------------------------
   STATS SECTION
   ------------------------------------------------ */
.stats-section {
  background: #0f0f0d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 52px 48px;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
  text-align: center;
}

.stat-num {
  font-size: 44px;
  font-weight: 500;
  color: #c9a84c;
  line-height: 1;
}

.stat-unit {
  font-size: 28px;
  font-weight: 400;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ------------------------------------------------
   CTA BANNER
   ------------------------------------------------ */
.cta-banner {
  margin: 64px 48px 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  background: #111111;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 52px 56px;
  gap: 48px;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 360px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ------------------------------------------------
   RESPONSIVE — Tablet <= 1024px
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    gap: 0;
  }

  .stat-block {
    padding: 20px 32px;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile <= 768px
   ------------------------------------------------ */
@media (max-width: 768px) {
  .page-hero {
    padding: 48px 20px 36px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 24px;
  }

  .founder-right {
    padding: 36px 24px;
  }

  .founder-name {
    font-size: 22px;
  }

  .mission-section {
    grid-template-columns: 1fr;
  }

  .mission-left {
    padding: 36px 24px;
  }

  .mission-right {
    padding: 28px 24px;
  }

  .diff-section {
    padding: 40px 20px;
  }

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

  .stats-inner {
    flex-wrap: wrap;
    padding: 36px 20px;
    gap: 0;
  }

  .stat-block {
    flex: 0 0 50%;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-divider {
    display: none;
  }

  .cta-banner {
    margin: 40px 20px 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 28px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Small <= 480px
   ------------------------------------------------ */
@media (max-width: 480px) {
  .page-hero-title { font-size: 26px; }
  .mission-heading { font-size: 22px; }
  .diff-heading    { font-size: 20px; }
  .cta-heading     { font-size: 20px; }
  .stat-num        { font-size: 36px; }
}