/* ═══════════════════════════════════════════════
   ABOUT PAGE — Page-specific styles
   Shared design tokens live in styles.css.
═══════════════════════════════════════════════ */

/* ── Section subtitle (used across about page sections) ── */
.section-sub {
  font-size: var(--fs-lg);
  color: var(--text-2);
  line-height: 1.7;
  margin-top: .75rem;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.about-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--white);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--navy);
  margin: .75rem 0 1.25rem;
}

.about-hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
}

/* 2×2 stat grid */
.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
  min-width: 260px;
}

.about-stat {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.about-stat-n {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1;
}

.about-stat-l {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-3);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-hero-stats {
    min-width: unset;
    max-width: 400px;
  }
}

/* ═══════════════════════════════════════════════
   S — STATUS: 3-column differentiator cards
═══════════════════════════════════════════════ */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.status-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: box-shadow .2s, border-color .2s;
}

.status-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}

.status-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-glow);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.status-card h3 { font-size: 1rem; margin: 0; }

.status-card p {
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* Founding-member progress bar inside status card */
.founding-bar {
  background: var(--surface);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
  margin-top: .25rem;
}

.founding-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  transition: width .8s ease;
}

.founding-count {
  font-size: var(--fs-xs);
  margin: .25rem 0 0;
}

@media (max-width: 900px) {
  .status-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-grid .status-card:last-child { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   P — POWER: Case study cards
═══════════════════════════════════════════════ */
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.power-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.power-card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.power-sector {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.power-numbers {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  padding: 1.125rem;
  background: var(--off-white);
  border-radius: var(--r-sm);
}

.power-num-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}

.power-num-label {
  font-size: var(--fs-xs);
  color: var(--text-3);
  white-space: nowrap;
}

.power-num-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

.power-before {
  color: var(--text-2);
  text-decoration: line-through;
  text-decoration-color: rgba(10,22,40,.35);
}

.power-after { color: var(--green); }

.power-saving {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  padding-top: .5rem;
  border-top: 1px solid var(--border);
  margin: .25rem 0 0;
}

.power-saving strong { color: var(--green); }

.power-context {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.power-disclaimer {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-3);
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .power-grid { grid-template-columns: 1fr 1fr; }
  .power-grid .power-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  .power-grid { grid-template-columns: 1fr; }
  .power-grid .power-card:last-child { grid-column: unset; max-width: unset; }
}

/* ═══════════════════════════════════════════════
   C — CREDIBILITY: 2-column trust grid
═══════════════════════════════════════════════ */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cred-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.cred-item:hover { background: var(--white); }

/* Remove right border on right-column items */
.cred-item:nth-child(even) { border-right: none; }

/* Remove bottom border on last row */
.cred-item:nth-last-child(-n+2) { border-bottom: none; }

.cred-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow-glow);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.cred-item h3 { font-size: .95rem; margin-bottom: .4rem; }
.cred-item p { font-size: var(--fs-base); color: var(--text-2); line-height: 1.6; margin: 0; }

@media (max-width: 640px) {
  .cred-grid { grid-template-columns: 1fr; }
  .cred-item { border-right: none; }
  .cred-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cred-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   L — LIKENESS: 2-column founder story
═══════════════════════════════════════════════ */
.likeness-section { background: var(--white); }

.likeness-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.likeness-quote {
  position: relative;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.75;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--yellow);
  background: var(--off-white);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.25rem 0 1.5rem;
}

.likeness-copy p { font-size: var(--fs-lg); color: var(--text-2); line-height: 1.75; margin: 0; }
.likeness-copy em { font-style: italic; color: var(--navy); }

.likeness-values h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.criteria-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.criteria-list li:last-child { border-bottom: none; }

.criteria-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--yellow-dark);
  flex-shrink: 0;
  padding-top: .15rem;
  min-width: 24px;
}

.criteria-list strong { font-size: var(--fs-base); color: var(--navy); display: block; margin-bottom: .25rem; }
.criteria-list p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .likeness-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════
   LIMITS: Damaging admissions — 2-column
═══════════════════════════════════════════════ */
.limits-section { background: var(--off-white); }

.limits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.limits-copy p { font-size: var(--fs-lg); color: var(--text-2); line-height: 1.75; margin: 0; }
.limits-copy .section-title { margin-bottom: 1.25rem; }

/* 2×2 fact grid */
.limits-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.limits-fact {
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.limits-n {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1;
}

.limits-l {
  font-size: var(--fs-xs);
  color: var(--text-3);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .limits-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .limits-facts { max-width: 400px; }
}

/* ═══════════════════════════════════════════════
   CTA — FOUNDING MEMBER
═══════════════════════════════════════════════ */
.cta-about-section {
  background: var(--navy);
  color: var(--white);
}

.cta-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-about-copy .eyebrow { color: var(--yellow); }
.cta-about-copy .section-title { color: var(--white); }
.cta-about-copy p { font-size: var(--fs-lg); color: rgba(255,255,255,.72); line-height: 1.75; margin-top: 1rem; }

.cta-about-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Progress bar in CTA */
.founding-prog-track {
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.founding-prog-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.founding-prog-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
}

.cta-about-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* Override .btn-primary on dark bg — stays the same, just ensure contrast */
.cta-about-section .btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

@media (max-width: 900px) {
  .cta-about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════
   REGULATORY FRAMEWORK SECTION
═══════════════════════════════════════════════ */
.reg-section { background: var(--bg-off); }

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.reg-col-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.reg-col-sub {
  font-size: var(--fs-base);
  color: var(--text-2);
  margin-bottom: 1.5rem;
  margin-top: -.75rem;
}

.reg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.reg-card-alert {
  border-color: #F5C400;
  background: #FFFBEA;
}

.reg-card-hdr {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}

.reg-badge {
  font-size: var(--fs-xs);
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: .2em .65em;
  white-space: nowrap;
}

.reg-badge-alert {
  background: #B87800;
  color: var(--white);
}

.reg-year {
  font-size: var(--fs-xs);
  color: var(--text-3);
  font-weight: 500;
}

.reg-card p {
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.reg-card p em { color: var(--navy); font-style: normal; font-weight: 500; }

/* EN standards table */
.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  margin-bottom: 1.5rem;
}

.reg-table th {
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  padding: .55rem .75rem;
  border-bottom: 2px solid var(--border);
}

.reg-table td {
  padding: .65rem .75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  line-height: 1.5;
}

.reg-table tr:last-child td { border-bottom: none; }

.reg-table tr:hover td { background: var(--white); }

.reg-table td strong { color: var(--navy); }

.reg-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
}

.reg-note p {
  font-size: var(--fs-base);
  color: var(--text-2);
  margin: 0 0 .9rem;
  line-height: 1.6;
}

.reg-cta { display: inline-flex; }

@media (max-width: 960px) {
  .reg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
