/* ═══════════════════════════════════════════
   ABOUT PAGE — stubease.com
   Personal, story-driven. Colors: #FE5000 | #1a2744
═══════════════════════════════════════════ */

.text-orange-label { color: rgba(254,80,0,0.85); }
.section-title-light {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ── STORY SECTION — split layout ── */
.story-section {
  padding: 0;
  background: var(--color-bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 640px;
}
.story-sidebar {
  background: linear-gradient(160deg, #1a2744 0%, #0d1627 100%);
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-sidebar::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: #FE5000;
}
.story-sidebar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 20px;
}
.story-pullquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #fff;
  line-height: 1.35;
  margin-bottom: 28px;
}
.story-pullquote-cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.story-pullquote-cite strong { color: #FE5000; display: block; margin-bottom: 4px; }

.story-main {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-main .section-label { margin-bottom: 8px; }
.story-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 28px;
}
.story-main p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-main p strong { color: var(--color-text); }

/* ── COMPANY INFO STRIP ── */
.company-strip {
  padding: 56px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.company-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.company-strip-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 10px;
}
.company-strip-item p, .company-strip-item a {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
  display: block;
}
.company-strip-item a:hover { color: #FE5000; }

/* ── TIMELINE ── */
.timeline-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.timeline {
  position: relative;
  max-width: 820px;
  margin: 56px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #FE5000 0%, rgba(254,80,0,0.15) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FE5000;
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 2px rgba(254,80,0,0.3);
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #FE5000;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── WHAT MAKES IT DIFFERENT ── */
.difference-section {
  padding: 100px 0;
  background: #0d1627;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.difference-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.difference-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: rgba(254,80,0,0.5);
  flex-shrink: 0;
  line-height: 1;
}
.difference-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.difference-card strong { color: #fff; }

/* ── VALUES ── */
.values-section {
  padding: 96px 0;
  background: #1a2744;
  text-align: center;
}
.values-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.value-item {
  max-width: 220px;
}
.value-item-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: #FE5000;
}
.value-item-icon svg { width: 100%; height: 100%; }
.value-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.value-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #FE5000 0%, #cc3f00 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.btn-ghost-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-sidebar { padding: 56px 40px; }
  .story-main { padding: 56px 40px; }
  .company-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .story-sidebar, .story-main { padding: 40px 24px; }
  .company-strip-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-row { gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ─── FOUNDER VIDEO SECTION ─────────────────────────── */
.founder-video-section {
  padding: 80px 0;
  background: var(--color-surface);
}

.founder-video-wrap {
  max-width: 820px;
  margin: 48px auto 0;
}

.founder-video-wrap video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.founder-video-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-left: 4px;
}

.founder-video-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.founder-video-title {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.founder-pullquote {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text);
  border: none;
  padding: 0;
  quotes: none;
}

.founder-pullquote::before,
.founder-pullquote::after {
  content: none;
}
