/* ── ABOUT PAGE ──────────────────────────────────────────── */

/* ── SHARED UTILS ────────────────────────────────────────── */
.glass-about {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
}

.about-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.about-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-section {
  position: relative;
  z-index: 10;
  padding: 100px 0;
}

.about-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 520px;
}
.about-body:last-child { margin-bottom: 0; }
.about-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── HERO ────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  z-index: 10;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 40px 80px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-hero-inner {
  max-width: 820px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* The editorial headline — Playfair Display for authority */
.about-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.about-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #8ab4ff 0%, #a78bfa 50%, #8ab4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
}

/* ── CRAFT SECTION ───────────────────────────────────────── */
.craft-section {
  border-top: 1px solid var(--border);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.craft-text .about-section-eyebrow { display: none; }

/* Stats row */
.craft-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.craft-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.4;
  max-width: 90px;
}

/* ── MASCOT BOX ──────────────────────────────────────────── */
.craft-mascot {
  display: flex;
  justify-content: center;
}

.mascot-box {
  padding: 40px 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mascot-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.wombat-svg {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(79,127,255,0.2));
}

.mascot-caption {
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── VISION SECTION ──────────────────────────────────────── */
.vision-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Canvas fills the section absolutely */
.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.vision-inner {
  position: relative;
  z-index: 1;
}

.vision-content {
  max-width: 680px;
}

.vision-eyebrow {
  /* same as about-section-eyebrow */
}

.vision-heading {
  color: var(--text-primary);
}

.vision-body {
  max-width: 600px;
}

.vision-counter-wrap {
  margin-top: 40px;
}

.vision-counter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 48px;
  gap: 6px;
}

.counter-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-primary);
}

.counter-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── PILLARS SECTION ─────────────────────────────────────── */
.pillars-section {
  border-top: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-icon {
  color: var(--accent);
  opacity: 0.8;
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.pillar-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── PULL QUOTE ──────────────────────────────────────────── */
.quote-section {
  border-top: 1px solid var(--border);
  text-align: center;
}

.quote-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 120px;
  line-height: 0.6;
  color: rgba(79,127,255,0.25);
  user-select: none;
  font-weight: 900;
}

.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  border: none;
  padding: 0;
  margin: 0;
}

.quote-attribution {
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-dash {
  color: var(--accent);
}

/* ── CLOSER / CTA ────────────────────────────────────────── */
.closer-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.closer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.closer-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.closer-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.closer-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.closer-btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .craft-mascot {
    order: -1;
  }

  .about-body {
    max-width: 100%;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 100px 20px 60px;
    min-height: 80vh;
    align-items: center;
  }

  .about-inner {
    padding: 0 20px;
  }

  .about-section {
    padding: 64px 0;
  }

  .craft-stat-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .mascot-box {
    padding: 28px 20px 20px;
  }

  .wombat-svg {
    width: 160px;
  }

  .vision-counter {
    padding: 20px 32px;
  }

  .pull-quote {
    font-size: 20px;
  }

  .quote-mark {
    font-size: 80px;
  }
}
