.lime { color: #D6FE99; }
.blink { animation: blink 1.2s steps(1) infinite; }

/* ============ intro ============ */
.about-intro {
  max-width: 1440px; margin: 0 auto; padding: 120px 80px 40px; box-sizing: border-box;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-tag {
  font-family: 'VCR OSD Mono', monospace; font-size: 12px; letter-spacing: 0.12em;
  color: #747474; text-transform: uppercase;
}
.about-h1 {
  margin: 28px 0 0; display: flex; flex-direction: column;
  font-family: Inter, -apple-system, sans-serif; font-weight: 400;
  font-size: clamp(44px, 6vw, 88px); line-height: 1.03; letter-spacing: -0.035em;
  color: #FFFFFF; white-space: nowrap; cursor: default;
}
.about-h1:hover { animation: glitch 0.35s steps(2) infinite; }
.about-h1 .scramble { color: #3E4A2B; font-family: 'VCR OSD Mono', monospace; letter-spacing: -0.06em; }

.about-copy { max-width: 720px; margin-top: 56px; display: flex; flex-direction: column; gap: 26px; }
.about-lead { margin: 0; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; color: #D1D1D1; }
.about-body { margin: 0; font-size: clamp(18px, 2vw, 22px); line-height: 1.35; color: #8B8B8B; }

/* ============ manifesto ============ */
.about-manifesto { max-width: 1440px; margin: 0 auto; padding: 80px 80px; box-sizing: border-box; }
.manifesto-copy {
  margin: 0; max-width: 1100px; font-family: 'VCR OSD Mono', 'Courier New', monospace;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.2; color: #565656;
  text-transform: uppercase; text-wrap: pretty;
}
.manifesto-copy .white { color: #FFFFFF; }
.manifesto-copy .lime { color: #D6FE99; }

/* ============ founder (terminal "whoami" panel) ============ */
.about-team { max-width: 1440px; margin: 0 auto; padding: 40px 80px 60px; box-sizing: border-box; }
.team-h {
  margin: 0 0 40px; font-family: Inter, -apple-system, sans-serif; font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.03em; color: #565656;
}

.team-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 32px; }

.founder-term {
  flex: 1 1 460px; max-width: 620px; background: #141414; border: 1px solid #2A2A2A; border-radius: 6px;
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.founder-term-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: #1D1D1D; border-bottom: 1px solid #2A2A2A;
}
.founder-dot { width: 9px; height: 9px; border-radius: 50%; background: #3A3A3A; }
.founder-term-path {
  margin-left: 10px; font-family: 'VCR OSD Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; color: #565656;
}

.founder-term-body { display: flex; gap: 28px; padding: 32px; box-sizing: border-box; align-items: flex-start; }
/* real photo now (was a 15x27 hand-drawn pixel-art placeholder) — sized to
   actually be seen, at the same 4:5 crop as the source asset so nothing
   stretches. align-items: flex-start on the row above keeps this from
   being stretched to match the text column's height. */
.founder-fig {
  flex: 0 0 220px; width: 220px; position: relative; aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: 4px; animation: cardglitch 9s linear infinite;
}
.founder-fig::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(0deg, rgba(26,26,26,0.08) 0px, rgba(26,26,26,0.08) 1px, transparent 1px, transparent 3px);
}
.founder-photo { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.founder-term-out { min-width: 0; display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.founder-line {
  margin: 0; display: flex; gap: 12px;
  font-family: 'VCR OSD Mono', 'Courier New', monospace; font-size: 15px; line-height: 1.5;
  color: #D1D1D1;
}
.founder-prompt { flex: none; color: #565656; }
/* the typewriter used to grow each line's own textContent char by char,
   so a multi-line line (the bio) visibly wrapped to more and more rows
   as it typed, expanding the whole card underneath it. Fixed by
   reserving the final size upfront: an invisible ::before ghost holds
   the full data-type string in normal flow (so it, not the animated
   text, determines this box's width/height from the very first frame),
   and the real animated text lives in .ft-live, absolutely positioned
   on top so its growing content never touches layout. */
.founder-type { position: relative; display: block; white-space: pre-wrap; word-break: break-word; }
.founder-type::before { content: attr(data-type); visibility: hidden; display: block; }
.founder-type .ft-live { position: absolute; inset: 0; }
.founder-type-name { font-size: 18px; color: #FFFFFF; }
.founder-type-role { color: #BCFF56; text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; }
.founder-line-bio { max-width: 520px; }
.founder-type-bio { color: #8B8B8B; }
.founder-type-since { color: #565656; }
.founder-cursor { margin-left: -6px; }

/* ============ contact ============ */
.about-contact { max-width: 1440px; margin: 0 auto; padding: 100px 80px 140px; box-sizing: border-box; }
.about-contact-copy { margin: 0; max-width: 560px; font-size: 24px; line-height: 1.25; color: #8B8B8B; }
.about-contact-email {
  display: inline-block; margin-top: 48px; font-family: 'VCR OSD Mono', monospace;
  font-size: clamp(28px, 5.4vw, 72px); color: #FFFFFF; text-decoration: none;
  text-transform: uppercase; line-height: 1.1; word-break: break-all;
}
.about-contact-email:hover { color: #BCFF56; animation: glitch 0.35s steps(2) infinite; }

/* ============ mobile ============ */
@media (max-width: 760px) {
  .team-row { flex-direction: column; }
  /* .founder-term carries flex: 1 1 460px for the desktop side-by-side
     row, where 460px is a WIDTH basis. Once .team-row switches to a
     column here, that same flex-basis is read as a HEIGHT basis instead
     — every card locked to exactly 460px tall regardless of its actual
     content, so the typed-out bio and "since" line were being clipped by
     the card's overflow:hidden. Reset to auto so height goes back to
     tracking real content. */
  .founder-term { max-width: none; flex: 0 1 auto; }
  .founder-term-body { flex-direction: column; gap: 20px; padding: 24px; }
  .founder-fig { width: 150px; flex-basis: auto; }
  .founder-line { font-size: 14px; }
  .about-h1 { white-space: normal !important; }
  .about-intro,
  .about-manifesto,
  .about-team,
  .about-contact {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

/* ============ protocol strip (link to how-we-work) ============ */
.hw-strip { max-width: 1440px; margin: 0 auto; padding: 0 80px; box-sizing: border-box; }
.hw-strip-link {
  display: flex; align-items: baseline; gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 4px; text-decoration: none;
}
.hw-strip-kicker {
  flex: 0 0 auto; font-family: 'VCR OSD Mono', monospace; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #747474;
  transition: color 0.2s ease;
}
.hw-strip-copy { flex: 1; font-size: 19px; line-height: 1.4; color: #9C9C9C; transition: color 0.2s ease; }
.hw-strip-arrow { font-size: 26px; color: #565656; transition: color 0.2s ease, transform 0.3s ease; }
.hw-strip-link:hover .hw-strip-kicker { color: #BCFF56; }
.hw-strip-link:hover .hw-strip-copy { color: #E8E8E3; }
.hw-strip-link:hover .hw-strip-arrow { color: #BCFF56; transform: translateX(8px); }
@media (max-width: 760px) {
  .hw-strip { padding: 0 22px; }
  .hw-strip-link { flex-direction: column; gap: 12px; }
  .hw-strip-arrow { display: none; }
}
