/* -- Page canvas: true linear-gradient diagonal sweep (120deg, plum ->
   transparent -> red), the same "type" used on Investor Center but at
   the opposite angle and with soft feathered transparent stops rather
   than hard bands -- a flowing narrative sweep fitting a brand-story
   page, distinct from every radial-glow page elsewhere on the site. -- */
body.page-about {
  background:
    linear-gradient(120deg, rgba(89,28,83,0.16) 0%, transparent 38%, transparent 62%, rgba(195,34,31,0.14) 100%),
    var(--clr-dark);
}
:root[data-theme="light"] body.page-about {
  background:
    linear-gradient(120deg, rgba(89,28,83,0.09) 0%, transparent 38%, transparent 62%, rgba(195,34,31,0.08) 100%),
    var(--clr-dark);
}

/* ── SHARED SECTION HEADER (self-contained copy, see haythive-site-architecture memory) ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ── OVERVIEW / HERO ─────────────────────────────────────── */
#about-overview {
  position: relative;
  overflow: hidden;
}
.au-hero-bg-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #0a0a10;
}
.au-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) saturate(1.1);
  opacity: 0;
  animation: fadeInVideo 1.5s ease forwards;
}
@keyframes fadeInVideo {
  to { opacity: 1; }
}
.au-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,16,0.35) 0%,
    rgba(89,28,83,0.14) 40%,
    rgba(10,10,16,0.88) 85%,
    #0a0a10 100%
  );
}
#about-overview .container {
  position: relative;
  z-index: 2;
}
/* Hero section always sits over a dark video; force dark-mode text
   variables here even when light theme is active, same treatment as
   the homepage hero (see app.css :root[data-theme="light"] #hero). */
:root[data-theme="light"] #about-overview {
  --clr-white: #ffffff;
  --clr-text: #e8e8f0;
  --clr-text-muted: #9090a8;
}
#about-overview .au-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.au-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.au-fact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.au-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.au-fact-value {
  font-family: var(--font-title);
  font-size: 1.15rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.au-fact-label {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── MISSION & VISION ────────────────────────────────────── */
#about-mission {
  background:
    radial-gradient(ellipse 700px 450px at 0% 0%, rgba(89,28,83,0.09), transparent 55%),
    var(--clr-dark-2);
}
:root[data-theme="light"] #about-mission {
  background:
    radial-gradient(ellipse 700px 450px at 0% 0%, rgba(89,28,83,0.06), transparent 55%),
    var(--clr-dark-2);
}
.au-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.au-mv-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-plum);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.au-mv-card:nth-child(2) {
  border-top-color: var(--clr-red);
}
.au-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.au-mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
}
.au-mv-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.au-mv-card p {
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── OUR STORY ───────────────────────────────────────────── */
#about-story .au-story-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}
.au-story-copy p + p {
  margin-top: 1.25rem;
}
.au-story-callout {
  margin: 2.5rem 0 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-red);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}
.au-story-callout strong {
  display: block;
  color: var(--clr-white);
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.au-story-callout p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── CORE VALUES ─────────────────────────────────────────── */
#about-values {
  background:
    radial-gradient(ellipse 700px 450px at 100% 100%, rgba(195,34,31,0.09), transparent 55%),
    var(--clr-dark-2);
}
:root[data-theme="light"] #about-values {
  background:
    radial-gradient(ellipse 700px 450px at 100% 100%, rgba(195,34,31,0.06), transparent 55%),
    var(--clr-dark-2);
}
.au-value-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.au-value-card {
  grid-column: span 2;
}
.au-value-card:nth-child(4),
.au-value-card:nth-child(5) {
  grid-column: span 3;
}
.au-value-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.au-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.au-value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
}
.au-value-card h4 {
  color: var(--clr-white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.au-value-card p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── CTA ──────────────────────────────────────────────────── */
.au-cta {
  text-align: center;
}
.au-cta p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.au-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BRAND VISUAL (image) & STORY MEDIA (video) SPLIT LAYOUTS ── */
.au-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: stretch;
}
.au-split-reverse { grid-template-columns: 1.15fr 1fr; }
.au-split-reverse .au-split-media { order: 2; }
.au-split-reverse .au-split-body { order: 1; }
.au-split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.au-split-media img,
.au-split-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.au-split-body .section-header { text-align: left; margin-bottom: 1.75rem; }
.au-split-body .section-header p { margin-left: 0; }
:root[data-theme="light"] .au-split-media {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .au-fact-grid { grid-template-columns: repeat(2, 1fr); }
  .au-mv-grid { grid-template-columns: 1fr; }
  .au-value-grid { grid-template-columns: 1fr; }
  .au-split,
  .au-split-reverse { grid-template-columns: 1fr; }
  .au-split-reverse .au-split-media,
  .au-split-reverse .au-split-body { order: initial; }
  .au-split-media img,
  .au-split-media video { min-height: 260px; }
  .au-split-body .section-header { text-align: center; }
  .au-split-body .section-header p { margin: 1rem auto 0; }
}
@media (max-width: 480px) {
  .au-fact-grid { grid-template-columns: 1fr; }
}
