/* ════════════════════════════════════════════
   about.css : manifesto pin + word reveal
   ════════════════════════════════════════════ */

.fw-about-section {
  padding: 0;
  background: var(--bg-about);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.fw-about-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

/* Ghost text deep background, parallax horizontal */
.fw-about-ghost {
  position: absolute;
  left: 0;
  bottom: -0.22em;
  z-index: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(140px, 24vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--text);
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.fw-about-stage {
  position: relative;
  z-index: 2;
}

.fw-about-stage {
  width: 100%;
  max-width: 1320px;
  padding: calc(var(--nav-h) + 48px) 48px 40px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

/* ── Top label row ─────────────────────────── */
.fw-about-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.fw-about-top .fw-about-num { color: var(--text-2); }
.fw-about-top .fw-about-tag { color: var(--text); }

/* ── Manifesto (dominant alive text) ──────── */
.fw-about-manifesto {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.8vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 1180px;
  align-self: center;
  margin: 0;
}
.fw-about-word {
  display: inline-block;
  will-change: opacity, transform;
}

/* ── Bottom signature row ─────────────────── */
.fw-about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.fw-about-sign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.fw-about-sign-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid var(--text);
  border-radius: 5px;
  font-size: 9px;
  color: var(--text);
}
.fw-about-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.fw-about-cue-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: breathe 2.4s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .fw-about-stage { padding: calc(var(--nav-h) + 40px) 32px 32px; }
}
@media (max-width: 900px) {
  .fw-about-stage {
    padding: calc(var(--nav-h) + 28px) 24px 28px;
    gap: 28px;
  }
  .fw-about-manifesto { font-size: clamp(28px, 7vw, 60px); }
  .fw-about-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
  }
}
@media (max-width: 600px) {
  .fw-about-stage { padding: calc(var(--nav-h) + 24px) 18px 24px; }
  .fw-about-top, .fw-about-bottom { font-size: 10px; }
  .fw-about-manifesto { font-size: clamp(24px, 8vw, 44px); }
}
