/* ============================================================
   ABOUT PAGE — about.css
   ============================================================ */

/* ---- SPLIT LAYOUT ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}
.about-left {
  border-right: 1px solid var(--border);
  padding: 0 40px;
}
.about-right {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow: hidden;
}
.about-right-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 24px 0;
  gap: 16px;
}
.racing-photo-placeholder {
  flex: 1;
  background: linear-gradient(135deg, #1a0800 0%, #2d1000 100%);
  border: 1px solid #3d2000;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  min-height: 300px;
  line-height: 1.7;
}

/* ---- HERO ---- */
.about-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

/* ---- INTRO SECTION ---- */
.about-intro-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 200px;
  overflow: hidden;
  position: relative;
}
.video-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d1a2e 0%, #1a2d4a 100%);
}
.video-tag {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.play-circle {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.person-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.person-photo-placeholder {
  height: 160px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.person-name {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px 2px;
}
.person-role {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0 16px 12px;
}

/* ---- STORY SECTIONS ---- */
.story-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.story-section.alt {
  background: var(--bg-2);
  margin: 0 -40px;
  padding: 60px 40px;
}
.story-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  align-items: start;
}
.story-number {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  padding-top: 6px;
  letter-spacing: 0.05em;
}
.story-year {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-content .section-heading { margin-bottom: 0; }
.story-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.story-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.story-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}

/* ---- MEDIA PLACEHOLDERS ---- */
.story-media-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.story-media-placeholder.orange-tint {
  background: linear-gradient(135deg, #1a0800 0%, #2d1000 100%);
  border-color: #3d2000;
}

/* ---- BRAND LOGOS ---- */
.brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-logos-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-logo-item {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.brand-logo-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.brand-logo-arrow {
  color: var(--text-dim);
  font-size: 14px;
}

/* ---- BRAND ROW SECTION ---- */
.brand-row-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

/* ---- CONFERENCE CARD ---- */
.conference-card {}
.conference-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.conference-media-placeholder {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4px;
}
.conference-overlay {
  text-align: center;
  padding: 20px;
}
.conf-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}
.conf-title.orange { color: var(--orange); }
.conf-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 6px 0;
}
.conf-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}
.conf-url {
  font-size: 11px;
  color: var(--orange);
  margin-top: 4px;
}

/* ---- RIGHT PANEL FEATURED CARD ---- */
.right-featured-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.featured-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 10px;
  font-weight: 600;
}
.right-testimonial {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.read-more {
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.read-more:hover { text-decoration: underline; }
.right-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- PAGE SECTIONS (new content blocks) ---- */
.about-page-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.about-page-section.about-page-alt {
  background: var(--bg-2);
  margin: 0 -40px;
  padding: 60px 40px;
}
.about-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-page-eyebrow i { font-size: 14px; }

/* ---- ROLE LIST ---- */
.about-role-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-role-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-role-list li i {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-role-list li strong { color: var(--text); }

/* ---- STATS GRID ---- */
.about-page-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-page-stat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.about-page-stat-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.about-page-stat-card h4 i {
  color: var(--orange);
  font-size: 18px;
}
.about-page-stat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-page-stat-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-page-stat-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.about-page-stat-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 11px;
}

/* ---- VIDEO EMBED ---- */
.about-video-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}
.about-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- FAQ ACCORDION ---- */
.about-faq-section { border-bottom: none; }
.about-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.about-faq-item.open { border-color: #333; }
.about-faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-2);
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.about-faq-question:hover { background: var(--bg-3); }
.about-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.about-faq-item.open .about-faq-icon { transform: rotate(45deg); }
.about-faq-answer {
  display: none;
  padding: 8px 24px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.about-faq-item.open .about-faq-answer { display: block; }
.about-faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-faq-answer p:last-child { margin-bottom: 0; }
.about-faq-answer p strong { color: var(--text); }
.about-faq-answer ul {
  margin: 6px 0 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-faq-answer ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.about-faq-answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
  top: 2px;
}
.about-faq-disclaimer p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .about-left { padding: 0 24px; border-right: none; }
  .story-section.alt { margin: 0 -24px; padding: 60px 24px; }
  .about-page-section.about-page-alt { margin: 0 -24px; padding: 60px 24px; }
}
@media (max-width: 600px) {
  .people-grid { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .story-number { padding-top: 0; }
  .about-page-stats-grid { grid-template-columns: 1fr; }
  .about-faq-question { font-size: 14px; padding: 16px 18px; }
  .about-faq-answer { padding: 8px 18px 18px; }
}
