/* ============================================================================
   Inteople v2 — About page components
   Page hero · why-we-exist · story · mission/vision · values · milestones ·
   leadership · founder profile. Reuses header/footer/CTA chrome from home.css.
   ========================================================================== */

/* ============================ PAGE HERO (inner) ============================ */
.page-hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--on-dark);
  overflow: hidden;
  margin-top: -74px;
  padding-top: calc(74px + clamp(48px, 6vw, 88px));
  padding-bottom: clamp(56px, 6vw, 96px);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
  margin-bottom: var(--sp-5);
}

.breadcrumb a {
  color: var(--on-dark-muted);
  transition: color var(--dur) var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent-2);
}

.breadcrumb [aria-current] {
  color: var(--on-dark);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.page-hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  margin: var(--sp-4) 0 var(--sp-4);
}

.page-hero h1 .grad-text {
  background: var(--grad-text);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero .lead {
  color: var(--on-dark-muted);
  max-width: 620px;
}

/* ============================ WHY WE EXIST ============================ */
.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.why-statement {
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.why-statement b {
  color: var(--accent-ink);
}

.why-body p + p {
  margin-top: var(--sp-4);
}

@media (max-width: 820px) {
  .why {
    grid-template-columns: 1fr;
  }
}

/* ============================ STORY ============================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.story-media figcaption {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  right: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  background: rgba(14, 22, 38, 0.62);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  font-size: var(--fs-xs);
}

.story-body p + p {
  margin-top: var(--sp-4);
}

.story-body .lead {
  margin-bottom: var(--sp-4);
  color: var(--ink-2);
}

@media (max-width: 820px) {
  .story {
    grid-template-columns: 1fr;
  }

  .story-media {
    order: -1;
  }
}

/* ============================ MISSION + VISION ============================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.mv {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--r-lg);
  background: var(--dark-surface);
  border: 1px solid var(--dark-line);
  overflow: hidden;
}

.mv::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: var(--grad-accent);
}

.mv .ic {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255, 106, 80, 0.14);
  color: var(--accent-2);
  margin-bottom: var(--sp-4);
}

.mv .ic svg {
  width: 26px;
  height: 26px;
}

.mv h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-3);
}

.mv p {
  font-size: var(--fs-lead);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ VALUES ============================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.value {
  padding: var(--sp-5);
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.value:hover {
  transform: translateY(-4px);
  border-color: var(--accent-3);
}

.value .ic {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-ink);
  margin-bottom: var(--sp-4);
}

.value .ic svg {
  width: 24px;
  height: 24px;
}

.value h4 {
  margin-bottom: var(--sp-2);
}

.value p {
  font-size: var(--fs-sm);
}

@media (max-width: 880px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================ MILESTONES (timeline) ============================ */
.timeline {
  position: relative;
  display: grid;
  gap: var(--sp-5);
  padding-left: clamp(28px, 4vw, 48px);
}

.timeline::before {
  content: "";
  position: absolute;
  left: clamp(8px, 1.2vw, 14px);
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent) 0%,
    var(--dark-line) 100%
  );
}

.milestone {
  position: relative;
}

.milestone::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(28px, 4vw, 48px) + clamp(4px, 1.2vw, 10px));
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 106, 80, 0.18);
}

.milestone .year {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--accent-2);
}

.milestone h4 {
  margin: 2px 0 var(--sp-2);
}

.milestone p {
  font-size: var(--fs-sm);
  max-width: 640px;
}

/* ============================ LEADERSHIP ============================ */
.leaders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.leader {
  text-align: center;
  padding: var(--sp-5);
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.leader:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.leader-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
}

.leader-photo.placeholder {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: var(--fw-black);
  color: var(--brand-3);
  background: var(--bg-2);
}

.leader b {
  display: block;
  color: var(--ink);
}

.leader span {
  font-size: var(--fs-sm);
  color: var(--accent-ink);
  font-weight: var(--fw-semibold);
}

.leader .leader-links {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

.leader .leader-links a {
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

.leader .leader-links a:hover {
  color: var(--accent-ink);
}

.leader .leader-links svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 880px) {
  .leaders {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .leaders {
    grid-template-columns: 1fr;
  }
}

/* ============================ FOUNDER PROFILE ============================ */
.founder {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.founder-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.founder-body .eyebrow {
  margin-bottom: var(--sp-4);
}

.founder-name {
  font-size: var(--fs-h2);
  margin-bottom: 2px;
}

.founder-role {
  font-size: var(--fs-lead);
  font-weight: var(--fw-semibold);
  color: var(--accent-ink);
  margin-bottom: var(--sp-5);
}

.founder-body p {
  color: var(--ink-2);
}

.founder-body p + p {
  margin-top: var(--sp-4);
}

.founder-sign {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}

.founder-sign .btn {
  flex: none;
}

.founder-sign span {
  font-size: var(--fs-sm);
  color: var(--muted);
}

@media (max-width: 820px) {
  .founder {
    grid-template-columns: 1fr;
  }

  .founder-media {
    max-width: 360px;
  }
}
