/* =====================================================================
   about.css — page-scoped styles ONLY. base.css + theme-*.css are
   the shared foundation in the repo root.

   Sparse-by-design page. Text-only hero, single narrow column for the
   body, stats band for facts. No photos, no founder references, no
   team grid — per the "legitimate-not-enamoring" posture.
   ===================================================================== */

/* =====  HERO — text-only, single column  ===== */
.about-hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: var(--hero-pad-y) 0 calc(var(--hero-pad-y) * 0.85);
  position: relative;
  overflow: hidden;
}
.about-hero-inner {
  position: relative; z-index: 2;
  max-width: 880px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: var(--hero-h-size);
  line-height: var(--hero-h-line);
  letter-spacing: var(--display-tracking);
  font-weight: var(--display-weight);
  color: var(--hero-text);
  margin: 18px 0 28px;
}
.about-hero .about-summary {
  font-size: 19px;
  line-height: 1.6;
  color: var(--hero-sub-text);
  max-width: 720px;
}

/* =====  ARTICLE BODY  ===== */
.about-body {
  background: var(--why-bg);
  padding: var(--section-pad-y) 0;
}
.about-article {
  max-width: 780px;
  margin: 0 auto;
}
.about-article h2 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  font-weight: var(--section-h-weight);
  color: var(--text-1);
  margin: 0 0 24px;
}
.about-article .section-eyebrow { margin-bottom: 18px; }
.about-article p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-1);
  margin-bottom: 20px;
}
.about-article p:last-child { margin-bottom: 0; }
.about-article .about-bring + .about-bring {
  margin-top: 56px;
}

/* =====  FACTS BAND  =====
   3-column horizontal strip of operational facts. Borrows the .stats
   primitive's visual language so /about feels consistent. */
.facts {
  background: var(--stats-bg);
  padding: calc(var(--section-pad-y) * 0.6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}
.fact {
  text-align: left;
}
.fact-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--display-weight);
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  color: var(--text-1);
}
.fact-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  margin-top: 8px;
}

/* ===========  LOBBY OVERRIDES  =========== */
.theme-lobby .about-hero {
  background:
    linear-gradient(180deg, rgba(26,30,38,0.0) 0%, rgba(26,30,38,0.75) 100%),
    linear-gradient(135deg, #1a1e26 0%, #2c303a 50%, #4a4f5a 100%);
}
.theme-lobby .about-hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 60%;
  background-image:
    linear-gradient(rgba(244,241,236,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,236,0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.55;
  pointer-events: none;
}
.theme-lobby .about-hero h1 { font-weight: 300; }
.theme-lobby .about-hero h1 em { font-weight: 500; }
.theme-lobby .about-article h2 { font-weight: 400; }
.theme-lobby .fact-value { font-weight: 300; }

/* ===========  CORPORATE OVERRIDES  =========== */
.theme-corporate .about-hero { background: #ffffff; }
.theme-corporate .about-hero h1 em { color: #226DB4; font-style: normal; }
.theme-corporate .about-article h2 em { color: #226DB4; font-style: normal; }
.theme-corporate .fact-value em { color: #226DB4; font-style: normal; }

/* =====================================================================
   AFTER HOURS — space enthusiasts easter egg
   Sits below the facts band. Lower-key tone, conversational, links out.
   Dark in both themes to evoke "space" — the page's only dark moment in
   Corporate, deliberate enough to signal "this section is the personality
   bit, not the main pitch."
   ===================================================================== */
.space {
  background: #0c0f15;
  color: rgba(244,241,236,0.92);
  padding: calc(var(--section-pad-y) * 0.85) 0;
  position: relative;
  overflow: hidden;
}
/* faint star-field — tiny radial highlights scattered as a CSS background */
.space::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 27% 62%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 41% 8%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 53% 88%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 64% 30%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 76% 72%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 88% 22%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 95% 58%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(2px 2px at 22% 44%, rgba(255,255,255,0.30), transparent 60%),
    radial-gradient(2px 2px at 72% 16%, rgba(255,255,255,0.30), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.space-head {
  position: relative; z-index: 2;
  margin-bottom: 40px;
  max-width: 720px;
}
.space-head .section-eyebrow { color: #b3a586; }
.space-head .section-eyebrow::before { background: #b3a586; }
.space-head h2 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  font-weight: 300;
  color: #f4f1ec;
  margin: 8px 0 14px;
}
.space-head h2 em {
  font-style: italic;
  color: #b3a586;
  font-weight: 400;
}
.space-head .space-lede {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244,241,236,0.65);
  max-width: 560px;
}

.space-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* ---- featured recent launch (left) ---- */
.space-feature {
  background: linear-gradient(180deg, rgba(244,241,236,0.04) 0%, rgba(244,241,236,0.01) 100%);
  border: 1px solid rgba(244,241,236,0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.space-feature-content {
  padding: 26px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* YouTube thumbnail block — clickable link that opens YouTube in a new tab */
.space-feature-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,241,236,0.18);
}
.space-feature-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.space-feature-thumb:hover img {
  opacity: 1;
  transform: scale(1.02);
}
.space-feature-thumb::after {
  /* darkening overlay for play-button contrast */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.space-feature-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.space-feature-thumb:hover .space-feature-play {
  background: rgba(255,94,58,0.85);
  transform: translate(-50%, -50%) scale(1.05);
}
.space-feature-play::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 18px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.space-feature-thumb-cap {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.space-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff5e3a;
  font-weight: 600;
}
.space-feature h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  font-weight: 300;
  color: #f4f1ec;
  margin: 0;
}
.space-feature h3 em { color: #b3a586; font-weight: 400; }
.space-feature-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(244,241,236,0.6);
  text-transform: uppercase;
}
.space-feature-meta strong {
  color: #b3a586;
  font-weight: 600;
  margin-right: 6px;
}
.space-feature-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,241,236,0.85);
  margin: 0;
}
.space-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b3a586;
  text-decoration: none;
  font-weight: 600;
  padding-top: 6px;
}
.space-feature-link::after { content: '→'; font-family: var(--font-body); font-size: 14px; }

/* ---- watching-next list (right) ---- */
.space-next {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}
.space-next-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b3a586;
  font-weight: 600;
  margin-bottom: 6px;
}
.space-next-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(244,241,236,0.12);
  align-items: start;
}
.space-next-item:last-child { border-bottom: 1px solid rgba(244,241,236,0.12); }
.space-next-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b3a586;
  margin-top: 2px;
}
.space-next-icon svg { width: 16px; height: 16px; stroke: currentColor; }
.space-next-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #f4f1ec;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.space-next-body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,241,236,0.62);
  margin: 0;
}
.space-next-body .space-when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b3a586;
  margin-right: 8px;
}

/* ---- footer link ---- */
.space-foot {
  position: relative; z-index: 2;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(244,241,236,0.5);
  font-style: italic;
}
.space-foot a {
  color: rgba(244,241,236,0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(179,165,134,0.5);
}
.space-foot a:hover { color: #b3a586; }

/* ===========  THEME OVERRIDES  =========== */
/* Lobby keeps the brass accents (default above) */
.theme-lobby .space {} /* defaults are already lobby-coded */

/* Corporate swaps brass → light blue for the accent moments */
.theme-corporate .space { background: #0b1828; }
.theme-corporate .space-head .section-eyebrow,
.theme-corporate .space-head h2 em,
.theme-corporate .space-feature h3 em,
.theme-corporate .space-feature-meta strong,
.theme-corporate .space-feature-link,
.theme-corporate .space-next-eyebrow,
.theme-corporate .space-next-icon,
.theme-corporate .space-next-body .space-when { color: #93c5fd; }
.theme-corporate .space-head .section-eyebrow::before { background: #93c5fd; }
.theme-corporate .space-feature {
  border-radius: 12px;
  border-color: rgba(147,197,253,0.20);
}
.theme-corporate .space-foot a {
  text-decoration-color: rgba(147,197,253,0.5);
}
.theme-corporate .space-foot a:hover { color: #93c5fd; }

/* ============================================================
   FIX — CTA-band secondary button on Corporate theme
   theme-corporate.css gives .btn-secondary a white background;
   on the dark .cta-band that produces a white-on-white invisible
   button. Restore transparent bg so the inv-styled white text +
   thin border read against the blue CTA band.
   ============================================================ */
.theme-corporate .cta-band .btn-secondary { background: transparent; }
.theme-corporate .cta-band .btn-secondary.inv:hover { background: rgba(255,255,255,0.1); }
