/* =========================================================
   ABOUT – INVEST TRUST STYLE
========================================================= */

/* ---------- Color System ---------- */
:root {
  --bg-main: #0b1220;
  --bg-section: #0f172a;
  --bg-card: #111c33;

  --text-main: #e5e7eb;
  --text-sub: #9ca3af;
  --text-muted: #6b7280;

  --accent: #4f46e5;
  --line: rgba(148,163,184,.15);
}

/* ---------- Base ---------- */
.about {
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.about section:last-child {
  border-bottom: none;
}

/* ---------- Section Head ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-sub);
  font-size: 16px;
}

/* =========================================================
   1. HERO
========================================================= */
.hero {
  background: linear-gradient(
    180deg,
    #0b1220 0%,
    #0f172a 100%
  );
  padding: 160px 0 180px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 520px;
}

/* =========================================================
   2. METRICS
========================================================= */
.metrics {
  background: var(--bg-section);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 36px 28px;
}

.metric strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.metric span {
  font-size: 14px;
  color: var(--text-sub);
}

/* =========================================================
   3. VERIFY
========================================================= */
.verify-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.step h3 {
  font-size: 18px;
  margin: 10px 0 6px;
}

.step p {
  font-size: 14px;
  color: var(--text-sub);
}

/* =========================================================
   4. RISK
========================================================= */
.risk {
  background: #0b1220;
}

.risk-list {
  list-style: none;
  padding: 0;
  max-width: 520px;
}

.risk-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-main);
}

.risk-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* =========================================================
   5. SYSTEM
========================================================= */
.system {
  background: var(--bg-section);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.system-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px;
}

.system-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.system-item p {
  font-size: 14px;
  color: var(--text-sub);
}

/* =========================================================
   6. PARTNERS
========================================================= */
.partner-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 15px;
}

/* =========================================================
   7. CTA
========================================================= */
.cta {
  background: linear-gradient(
    180deg,
    #0f172a 0%,
    #0b1220 100%
  );
  text-align: left;
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  color: #fff;
  font-weight: 600;
  transition: .25s ease;
}

.cta-btn:hover {
  background: var(--accent);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .metrics-grid,
  .verify-steps,
  .system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .about section {
    padding: 80px 0;
  }

  .metrics-grid,
  .verify-steps,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }
}
