/* ======================================== */
/* TRAINING PLATFORM PREVIEW                */
/* ======================================== */

.orion-training-platform {
  background: var(--orion-color-bg);
  color: var(--orion-color-text);
}

.orion-training-platform *,
.orion-training-platform *::before,
.orion-training-platform *::after {
  box-sizing: border-box;
}

.tp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.tp-section {
  padding: 72px 0;
}

.tp-section-alt {
  background: var(--orion-color-bg-soft);
}

.tp-header {
  max-width: 920px;
  margin: 0 auto 34px;
}

.tp-header-center {
  text-align: center;
}

.tp-header-center h2,
.tp-header-center p {
  margin-left: auto;
  margin-right: auto;
}

.orion-eyebrow.center {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.orion-eyebrow.center::after {
  margin: 10px auto 0;
}

.tp-header h2,
.tp-card h3,
.tp-hero-content h1,
.tp-final-box h2 {
  margin: 0;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-weight: 400;
  color: var(--orion-color-dark);
}

.tp-header h2,
.tp-final-box h2 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.tp-header p,
.tp-card p,
.tp-final-box p,
.tp-hero-copy {
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* HERO */

.tp-hero-wrap {
  padding: 28px 0 44px;
}

.tp-hero-box {
  background: linear-gradient(135deg, #1f1f1f 0%, var(--orion-color-dark) 100%);
  border-radius: 34px;
  padding: 64px 42px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
}

.tp-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tp-hero-content h1 {
  color: var(--orion-color-white);
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -1.8px;
}

.tp-hero-copy {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

/* GRID */

.tp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */

.tp-card,
.tp-final-box {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.04);
}

.tp-card {
  padding: 32px;
  transition: all 0.2s ease;
}

.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

.tp-card h3 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.tp-final-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px 48px;
  text-align: center;
}

.tp-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.tp-actions .orion-btn-primary {
  min-width: 280px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .tp-grid-3 {
    grid-template-columns: 1fr;
  }

  .tp-hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 640px) {
  .tp-hero-box,
  .tp-card,
  .tp-final-box {
    padding: 24px;
  }

  .tp-hero-content h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .tp-header h2,
  .tp-final-box h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .tp-actions .orion-btn {
    width: 100%;
  }

  .tp-actions .orion-btn-primary {
    min-width: 0;
  }
}