/* About page — Alpha Strategy / TradeCore */

.about-page {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 120px;
}

.about-hero {
  text-align: center;
  padding: 8px 0 40px;
}

.about-hero-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(91, 141, 239, 0.45), 0 8px 32px rgba(0, 0, 0, 0.4);
  background: #050608;
}

.about-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.22);
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #b8c0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--tc-text-muted, #9ca3af);
  max-width: 640px;
  margin: 0 auto;
}

.about-lead strong {
  color: var(--tc-alpha, #a78bfa);
  font-weight: 700;
}

/* Stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.about-stat-card {
  background: var(--tc-bg-card, rgba(18, 22, 31, 0.92));
  border: 1px solid var(--tc-border, rgba(255, 255, 255, 0.07));
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.about-stat-card:hover {
  border-color: rgba(91, 141, 239, 0.35);
  transform: translateY(-2px);
}

.about-stat-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--tc-accent-bright, #7eb3ff);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--tc-text-muted, #9ca3af);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Content */
.about-content {
  background: var(--tc-bg-card, rgba(18, 22, 31, 0.92));
  border: 1px solid var(--tc-border, rgba(255, 255, 255, 0.07));
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 32px;
  box-shadow: var(--tc-shadow-card, 0 4px 24px rgba(0, 0, 0, 0.45));
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d4d4d8;
  margin-bottom: 18px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--tc-border, rgba(255, 255, 255, 0.07));
}

.about-section-title:first-child {
  margin-top: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #d4d4d8;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-accent, #5b8def), var(--tc-alpha, #a78bfa));
  box-shadow: 0 0 10px rgba(91, 141, 239, 0.5);
}

.about-philosophy {
  margin-top: 28px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.08), rgba(167, 139, 250, 0.06));
  border: 1px solid rgba(91, 141, 239, 0.2);
}

.about-philosophy p {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.about-philosophy p:last-child {
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
}

/* CTA */
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.about-cta .about-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--tc-text, #f4f4f5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--tc-border-strong, rgba(255, 255, 255, 0.12));
  transition: background 0.2s, border-color 0.2s;
}

.about-cta .about-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(91, 141, 239, 0.4);
}

.about-cta .banner-btn,
.about-cta .cw-connect-button.cw-withdraw-button {
  margin: 0;
  text-decoration: none !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.about-cta .banner-btn:hover,
.about-cta .banner-btn:focus,
.about-cta .banner-btn:active {
  text-decoration: none !important;
}

/* Nav */
.nav-item--active {
  color: var(--tc-accent-bright, #7eb3ff) !important;
  cursor: default;
}

.nav-item--link {
  text-decoration: none;
  color: inherit;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

body.page-about .registration-banner {
  display: none;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-content {
    padding: 24px 18px;
    margin-left: 0;
    margin-right: 0;
  }

  .about-stat-card {
    padding: 16px 12px;
  }

  .about-stat-value {
    font-size: 1.35rem;
  }

  .about-cta {
    flex-direction: column;
    width: 100%;
  }

  .about-cta .about-btn-secondary,
  .about-cta .banner-btn,
  .about-cta .cw-connect-button {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 14px 20px !important;
    font-size: 15px !important;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding-bottom: 48px;
  }

  .about-cta {
    padding: 0 12px;
    gap: 12px;
  }

  .about-cta .about-btn-secondary,
  .about-cta .banner-btn {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
