/* ==========================================================================
   aboutus.css — minimal supplement to oeos_platform.css for About Us page
   All rules scoped under .oeos-about-* or used as direct modifier on
   existing oeos_platform classes.  Uses root.css variables throughout.
   ========================================================================== */

.oeos-about-page-spacing {
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}


/* ── Page intro heading ──────────────────────────────────────── */

.oeos-about-page-intro {
  width: min(100%, 1120px);
  margin: 0 auto clamp(40px, 5vw, 72px);
  margin-bottom: -20px;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 4vw, 48px) clamp(28px, 4vw, 48px);
  text-align: center;
  position: relative;
}

.oeos-about-page-intro::before {
  content: "";
  position: absolute;
  inset: auto 50% 0 auto;
  transform: translateX(50%);
  width: min(520px, 70%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 137, 255, 0), rgba(47, 137, 255, 0.95), rgba(49, 211, 170, 0.9), rgba(47, 137, 255, 0));
}

.oeos-about-page-intro h1 {
  max-width: 840px;
  margin: 0 auto 16px;
  color: #06162d;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.oeos-about-page-intro h1::before {
  content: "About Us";
  display: block;
  margin-top: 12px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.8vw, 3.4rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #2f89ff;
}

.oeos-about-page-intro p {
  max-width: 860px;
  margin: 0 auto;
  color: #4f5b6b;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}


/* ── Vision / Mission: premium gradient cards ────────────────── */

.oeos-about-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.oeos-about-vm-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(6, 22, 45, 0.18);
  isolation: isolate;
}

.oeos-about-vm-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -2;
  opacity: 0.9;
}

.oeos-about-vm-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  z-index: -1;
}

.oeos-about-vm-card--vision::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(47, 137, 255, 0.5), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(49, 211, 170, 0.28), transparent 34%),
    linear-gradient(135deg, #06162d 0%, #0b2445 48%, #123e73 100%);
}

.oeos-about-vm-card--mission::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 211, 170, 0.42), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(47, 137, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #071a2f 0%, #0b2b3f 46%, #0f4d63 100%);
}

.oeos-about-vm-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.about-purpose-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.about-purpose-card-title {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.oeos-about-vm-icon i {
  font-size: 1.25rem;
}

.oeos-about-vm-label {
  display: block;
  margin-bottom: 14px;
  color: #8ed8ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.oeos-about-vm {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 550;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.oeos-about-vm-card .oeos-about-founder-quote-mark {
  color: rgba(142, 216, 255, 0.9);
}


/* ── Core Values: 4-col override for oeos-how-steps ─────────── */

.oeos-about-values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  .oeos-about-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .oeos-about-values-grid { grid-template-columns: 1fr; }
}


/* ── Our Story: 2-column editorial layout ───────────────────── */

.oeos-about-story-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-16);
  align-items: start;
}

.oeos-about-pull-quote {
  font-family: var(--font-primary);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--navy-blue);
  line-height: 1.55;
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 2px solid var(--primary-blue);
}

.oeos-about-story-body p {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.oeos-about-story-body p:last-child { margin-bottom: 0; }

.oeos-about-story-body strong {
  color: var(--navy-blue);
  font-weight: 600;
}


/* ── Founding Team: side-by-side 2-column layout ────────────── */

.oeos-about-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.oeos-about-founder-profile {
  text-align: center;
}

.oeos-about-founder-profile .oeos-founder-photo {
  display: block;
  margin: 0 auto;
}

.oeos-about-founder-description {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.8;
  text-align: left;
}

.oeos-about-founder-quote {
  margin-top: var(--space-5);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 700;
  color: var(--navy-blue-light);
  line-height: 1.6;
  text-align: center;
}

.oeos-about-founder-quote-mark {
  font-size: 1.6em;
  font-weight: 900;
  line-height: 0;
  vertical-align: -0.15em;
  color: var(--primary-blue);
}

.oeos-about-founder-quote-text {
  color: var(--navy-blue-light);
}


/* ── White background overrides ─────────────────────────────── */

.oeos-story,
.oeos-founders-section {
  background-color: var(--white) !important;
}

.oeos-founders-section {
  border-top: none !important;
}


/* ── Core Values: card depth on white background ────────────── */

.oeos-about-values-grid .oeos-how-step {
  box-shadow: 0 4px 18px rgba(12, 30, 56, 0.09), 0 1px 4px rgba(12, 30, 56, 0.05);
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 991px) {
  .oeos-about-vm-grid {
    grid-template-columns: 1fr;
  }

  .oeos-about-vm-card {
    min-height: auto;
  }

  .oeos-about-page-intro {
    padding-top: 32px;
  }
}

@media (max-width: 900px) {
  .oeos-about-story-inner { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .oeos-about-founders-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

@media (max-width: 576px) {
  .oeos-about-page-intro {
    padding-left: 0;
    padding-right: 0;
  }

  .oeos-about-page-intro h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .oeos-about-vm-card {
    border-radius: 24px;
    padding: 26px 22px;
  }
}
