/* ============================================================
   Complyn — partner-training.css
   Partner training & walkthrough page styles
   ============================================================ */

/* ===== HERO ===== */
.training-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #0a0d14 0%, #0f1218 100%);
}

.training-hero-inner {
  max-width: 800px;
}

/* ===== TOC / MODULE NAV ===== */
.training-toc {
  background: linear-gradient(180deg, rgba(79, 240, 194, 0.04) 0%, rgba(79, 240, 194, 0.01) 100%);
  border: 1px solid rgba(79, 240, 194, 0.15);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
}

.training-toc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4ff0c2;
  margin-bottom: 20px;
}

.training-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

@media (max-width: 700px) {
  .training-toc-list {
    grid-template-columns: 1fr;
  }
}

.training-toc-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
}

.training-toc-item a {
  color: #b8bdc9;
  text-decoration: none;
  transition: color 0.15s ease;
}

.training-toc-item a:hover {
  color: #4ff0c2;
}

.training-toc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #4ff0c2;
  flex-shrink: 0;
}

/* ===== MODULES ===== */
.training-content {
  padding: 60px 0 100px;
  background: #0a0d14;
}

.training-module {
  max-width: 800px;
  margin: 0 auto 80px;
  scroll-margin-top: 80px;
}

.training-module:last-child {
  margin-bottom: 0;
}

.module-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #4ff0c2;
  flex-shrink: 0;
}

.module-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  color: #e8eaf0;
  letter-spacing: -0.01em;
  margin: 0;
}

.module-title em {
  font-style: italic;
  color: #4ff0c2;
}

.module-lede {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #b8bdc9;
  margin-bottom: 32px;
}

.module-body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #b8bdc9;
  margin-bottom: 16px;
}

.module-body strong {
  color: #e8eaf0;
  font-weight: 600;
}

.module-body em {
  color: #d4d8e1;
}

.module-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: #e8eaf0;
  margin-top: 32px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.module-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.module-body ul li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #b8bdc9;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.module-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #4ff0c2;
}

/* ===== SIGNAL CARDS (qualifying signals) ===== */
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 600px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

.signal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
}

.signal-card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: #4ff0c2;
}

.signal-card-icon svg { width: 100%; height: 100%; }

.signal-card h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #e8eaf0;
  margin-bottom: 6px;
}

.signal-card p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #9ba2b3;
  margin: 0;
}

/* ===== SCRIPT BLOCKS ===== */
.script-block {
  background: linear-gradient(180deg, rgba(79, 240, 194, 0.04) 0%, rgba(79, 240, 194, 0.01) 100%);
  border-left: 3px solid #4ff0c2;
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 20px 0;
  position: relative;
}

.script-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ff0c2;
  margin-bottom: 12px;
}

.script-block p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #d4d8e1;
  font-style: italic;
  margin-bottom: 0;
}

.script-block p + p {
  margin-top: 12px;
}

/* ===== OBJECTIONS ===== */
.objection-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.objection-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.objection-q {
  padding: 18px 24px;
  background: rgba(255, 89, 89, 0.04);
  border-bottom: 1px solid rgba(255, 89, 89, 0.12);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #e8eaf0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.objection-q::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 28px;
  line-height: 0.6;
  color: rgba(255, 138, 138, 0.6);
  flex-shrink: 0;
  margin-top: 4px;
}

.objection-a {
  padding: 18px 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #b8bdc9;
}

.objection-a strong {
  color: #4ff0c2;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* ===== HANDOFF / EMAIL TEMPLATE ===== */
.template-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}

.template-head {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6478;
}

.template-head .template-tag {
  color: #4ff0c2;
}

.template-body {
  padding: 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #d4d8e1;
}

.template-field {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.template-field:last-of-type {
  margin-bottom: 16px;
}

.template-field-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6478;
  margin-right: 10px;
}

/* ===== CHECKLIST ===== */
.checklist {
  background: linear-gradient(180deg, rgba(79, 240, 194, 0.03) 0%, rgba(79, 240, 194, 0.01) 100%);
  border: 1px solid rgba(79, 240, 194, 0.15);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 24px 0;
}

.checklist-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4ff0c2;
  margin-bottom: 16px;
}

.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #d4d8e1;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #4ff0c2;
  border-radius: 4px;
  background: rgba(79, 240, 194, 0.05);
}

.checklist li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 14px;
  color: #4ff0c2;
  font-weight: 700;
}

/* ===== TIMELINE (what happens after) ===== */
.timeline {
  position: relative;
  margin: 24px 0;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(79, 240, 194, 0.4) 0%, rgba(79, 240, 194, 0.1) 100%);
}

.timeline-step {
  position: relative;
  padding-bottom: 24px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 17px;
  height: 17px;
  border: 2px solid #4ff0c2;
  border-radius: 50%;
  background: #0a0d14;
}

.timeline-when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ff0c2;
  margin-bottom: 6px;
}

.timeline-step h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e8eaf0;
  margin-bottom: 6px;
}

.timeline-step p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #9ba2b3;
  margin: 0;
}

/* ===== PITCH FRAMEWORK ===== */
.pitch-framework {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 700px) {
  .pitch-framework {
    grid-template-columns: 1fr;
  }
}

.pitch-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.pitch-step-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: rgba(79, 240, 194, 0.4);
  margin-bottom: 8px;
}

.pitch-step h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e8eaf0;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.pitch-step p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #9ba2b3;
  margin: 0;
}

/* ===== CTA AT END ===== */
.training-final-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(180deg, rgba(79, 240, 194, 0.04) 0%, rgba(79, 240, 194, 0.01) 100%);
  border: 1px solid rgba(79, 240, 194, 0.15);
  border-radius: 16px;
  margin-top: 60px;
}

.training-final-cta h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 500;
  color: #e8eaf0;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.training-final-cta p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: #9ba2b3;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
