/* About page styles. brand.css must load first. */

    color: var(--ink);
    border-top-color: var(--hairline-light);
  }
  .frame {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
  }

  /* ── Hero ── */
  .about-hero {
    padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(48px, 6vw, 80px);
    max-width: var(--grid-max);
    margin: 0 auto;
  }
  .about-hero .eyebrow { margin-bottom: clamp(32px, 4vw, 48px); }
  .about-hero h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(48px, 7.5vw, 104px);
    line-height: 1;
    letter-spacing: -0.035em;
    max-width: 18ch;
    margin-bottom: clamp(28px, 3.4vw, 44px);
  }
  .about-hero h1 .signal { color: var(--signal); }
  .about-hero .lede { max-width: 60ch; }
  .about-hero .lede strong {
    color: var(--bone);
    font-weight: 600;
    opacity: 1;
  }

  /* ── Our view — the protection gap (stats) ── */
  .about-view .eyebrow { letter-spacing: 0.28em; font-weight: 700; margin-bottom: clamp(24px, 3vw, 32px); }
  .about-view-lead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  @media (min-width: 860px) {
    .about-view-lead { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; }
  }
  .about-view-title {
    font-size: clamp(30px, 3.6vw, 40px);
    letter-spacing: -0.025em;
    line-height: 1.05;
    max-width: none;
    margin: 0;
  }
  .about-view-intro {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: rgba(12, 34, 64, 0.7);
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: clamp(40px, 5vw, 56px);
  }
  @media (min-width: 760px) {
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 48px); }
  }
  .about-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 3px solid var(--signal);
    padding-top: clamp(28px, 4vw, 48px);
  }
  .about-stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(64px, 9vw, 96px);
    letter-spacing: -0.035em;
    line-height: 1;
  }
  .about-stat-unit { color: var(--signal); }
  .about-stat-desc {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(12, 34, 64, 0.7);
    margin-top: 12px;
  }
  .about-stat-src {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(12, 34, 64, 0.6);
    margin-top: auto;
    padding-top: 12px;
    text-decoration: underline;
    text-decoration-color: rgba(12, 34, 64, 0.25);
    text-underline-offset: 3px;
    transition: color 0.15s;
  }
  .about-stat-src:hover { color: var(--signal); }
  .about-view-rule {
    height: 3px;
    background: var(--signal);
    margin-top: clamp(40px, 5vw, 48px);
  }

  /* ── From chat to action (dark, grid texture, bulleted) ── */
  .about-omni { overflow: hidden; }
  .about-omni::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
      linear-gradient(rgba(242, 237, 226, 0.14) 1px, transparent 1px),
      linear-gradient(90deg, rgba(242, 237, 226, 0.14) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 80%);
    mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 80%);
  }
  .about-omni .frame { position: relative; z-index: 1; }
  .about-omni-title {
    font-size: clamp(30px, 3.6vw, 44px);
    letter-spacing: -0.025em;
    line-height: 1.08;
    max-width: 26ch;
    margin: 0 0 clamp(28px, 3.5vw, 40px);
    text-wrap: balance;
  }
  .about-omni-list {
    /* convo.css (which gives .fact-list its list-style reset) isn't loaded
       on this page, so kill the default markers here. */
    list-style: none;
    background-image: none;
    border-top: none;
    margin-bottom: 0;
  }
  .about-omni-list li {
    position: relative;
    padding: 15px 0 15px 23px;
    border-bottom: none;
    max-width: none;
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(242, 237, 226, 0.8);
    background-image: linear-gradient(90deg, rgba(229, 39, 60, 0.9), var(--hairline-dark) 30%, var(--hairline-dark) 100%);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
  }
  .about-omni-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.4em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--signal);
  }

  /* ── Why intro section (under hero) ── */
  .why-intro {
    padding: clamp(80px, 9vw, 128px) 0;
  }
  .why-intro .frame {
    max-width: 880px;
  }
  .why-intro .eyebrow { margin-bottom: 32px; }
  .why-intro .h2 {
    margin-bottom: clamp(28px, 3vw, 40px);
    max-width: 22ch;
  }
  .why-intro .h2 .signal { color: var(--signal); }
  .why-intro-prose p {
    font-family: var(--sans);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--mute-dark);
    margin-bottom: 24px;
    max-width: 60ch;
  }
  .why-intro-prose p:last-child { margin-bottom: 0; }
  .why-intro-prose strong {
    color: var(--bone);
    font-weight: 600;
  }

  /* ── Founder sections ── */
  .founder {
    padding: clamp(80px, 10vw, 144px) 0;
  }
  .founder-grid {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 80px);
  }
  @media (min-width: 900px) {
    .founder-grid { grid-template-columns: 360px 1fr; gap: clamp(56px, 6vw, 96px); }
  }

  /* ID card (portrait + name + links) */
  .founder-id {
    position: relative;
  }
  @media (min-width: 900px) {
    .founder-id {
      position: sticky;
      top: 96px;
      align-self: start;
    }
  }
  .founder-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bone-warm);
    border: 1px solid var(--hairline-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .founder-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .founder-portrait-fallback {
    font-family: var(--display);
    font-weight: 800;
    font-size: 120px;
    color: var(--signal);
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .light .founder-portrait { background: rgba(12,34,64,0.04); }
  .founder:not(.light) .founder-portrait { border: none; }
  .founder-portrait-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bone);
    background: rgba(12, 34, 64, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 10px;
  }
  .founder-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(28px, 2.8vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
  }
  .founder-role {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 20px;
  }
  .founder-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .founder-links a {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--hairline-dark);
    padding-bottom: 4px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.15s, border-color 0.15s;
  }
  .light .founder-links a { border-bottom-color: var(--hairline-light); }
  .founder-links a:hover {
    color: var(--signal);
    border-bottom-color: var(--signal);
  }
  .founder-links a::after {
    content: "↗";
    font-family: var(--mono);
    font-size: 11px;
    color: var(--signal);
    opacity: 0.7;
  }

  /* Bio body */
  .founder-bio {
    max-width: 60ch;
  }
  .founder-quote {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: clamp(40px, 4vw, 56px);
    max-width: 22ch;
  }
  .founder-quote .signal { color: var(--signal); }
  .founder-list {
    list-style: none;
    counter-reset: milestone;
    margin-bottom: clamp(40px, 4vw, 56px);
    padding: clamp(28px, 3vw, 40px) 0;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
  }
  .light .founder-list {
    border-color: var(--hairline-light);
  }
  .founder-list li {
    counter-increment: milestone;
    position: relative;
    padding-left: 56px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--hairline-dark);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.5;
    color: var(--mute-dark);
  }
  .light .founder-list li {
    color: var(--mute-light);
    border-bottom-color: var(--hairline-light);
  }
  .founder-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .founder-list li::before {
    content: "0" counter(milestone);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: var(--mono);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--signal);
  }
  .founder-list strong {
    color: var(--bone);
    font-weight: 600;
  }
  .light .founder-list strong { color: var(--ink); }
  .founder-body p {
    margin-bottom: 20px;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    max-width: 60ch;
  }
  .founder-body strong {
    color: var(--bone);
    font-weight: 600;
  }
  .light .founder-body strong { color: var(--ink); }
  .founder-body a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--signal);
    padding-bottom: 1px;
    transition: color 0.15s;
  }
  .founder-body a:hover { color: var(--signal); }
  .founder-closer {
    margin-top: clamp(40px, 4vw, 56px);
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid var(--hairline-dark);
    font-family: var(--sans);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.018em;
    color: var(--bone);
    max-width: 30ch;
  }
  .light .founder-closer {
    border-top-color: var(--hairline-light);
    color: var(--ink);
  }

  /* TODO bracketed placeholders for Mike */
  .todo-placeholder {
    color: var(--signal) !important;
    opacity: 0.65;
    font-style: italic;
    font-weight: 500;
  }

  /* ── Closer "Why we built Subcontext" section ── */
  .why-closer {
    padding: clamp(80px, 9vw, 128px) 0;
  }
  .why-closer .frame { max-width: 760px; text-align: center; }
  .why-closer .eyebrow { margin-bottom: 28px; }
  .why-closer .h2 {
    margin: 0 auto clamp(32px, 4vw, 48px);
    max-width: 20ch;
  }
  .why-closer-prose p {
    font-family: var(--sans);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    margin: 0 auto 22px;
    max-width: 56ch;
  }
  .why-closer-cta { margin-top: clamp(36px, 4vw, 48px); display: inline-flex; }

  /* ── Final CTA ── */
  .final-cta {
    background: var(--bone);
    color: var(--ink);
    border-top: none;
    text-align: center;
  }
  .final-cta .frame { max-width: 860px; }
  .final-cta .h1 {
    color: var(--ink);
    max-width: 16ch;
    margin: 0 auto clamp(32px, 4vw, 48px);
  }
  .final-cta-actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .final-cta .btn-primary {
    background: var(--signal);
    color: var(--bone);
  }
  .final-cta .btn-secondary { color: var(--ink); border-color: var(--ink); }
  .final-cta .btn-secondary:hover {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--ink);
  }

  /* ── Footer ── */
