/* Shared pillar pages — v2 density (Julia approve gate) */

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-cta-pill {
  height: 40px;
  padding: 0 1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 480px) {
  .header-cta-pill { display: none; }
}

      /* ============================================================
         PILLAR V2 — disposable mock tokens
         Tommy: port these into lp/css/pillar.css (exact values below)
         ============================================================ */
      :root {
        --pillar-hero-pad-top: 2rem;
        --pillar-hero-pad-bottom: 1.15rem;
        --pillar-hero-gap: 1.5rem 2.25rem;
        --pillar-copy-stack: 0.85rem; /* dek→cta, cta→trust */
        --pillar-h1-mt: 0.7rem;
        --pillar-dek-mt: 0.85rem;
        --pillar-def-mt: 1.15rem; /* trust → definition callout */
        --pillar-def-pad: 0.8rem 0.95rem;
        --pillar-def-gap: 0.45rem; /* micro → body inside callout */
        --pillar-section-y: 2rem; /* mes / who / faq top padding */
        --pillar-section-y-end: 0.35rem;
        --pillar-section-head-mb: 1.15rem;
        --pillar-mes-step-pad: 1rem 1.1rem 1.05rem;
        --pillar-stripe-mt: 1.15rem;
        --pillar-stripe-pad: 1rem 1.1rem 1.05rem;
        --pillar-who-row-pad: 0.85rem 0 0.85rem 0.9rem;
        --pillar-who-gap: 0 1.35rem;
        --pillar-faq-summary-py: 0.9rem;
        --pillar-faq-answer-mb: 0.95rem;
        --pillar-cta-mt: 1.75rem;
        --pillar-cta-mb: 2.25rem;
        --pillar-cta-pad: 1.35rem 1.35rem;
      }

      
      
      
      
      
      
      
      

      
      
      
      
      
      

      /* —— Hero: complete first viewport, no dead band —— */
      .pillar-hero {
        padding: var(--pillar-hero-pad-top) 0 var(--pillar-hero-pad-bottom);
      }
      .pillar-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: var(--pillar-hero-gap);
        align-items: stretch;
      }
      .pillar-copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
      }
      .pillar-eyebrow {
        margin: 0;
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .pillar-eyebrow .brand {
        color: var(--ink);
        font-weight: 600;
      }
      .pillar-hero h1 {
        margin: var(--pillar-h1-mt) 0 0;
        font-size: clamp(2.05rem, 4.2vw, 3.05rem);
        letter-spacing: -0.04em;
        line-height: 1.1;
        font-weight: 800;
        max-width: 16ch;
        overflow: visible;
        padding-bottom: 0.08em;
      }
      .pillar-hero .dek {
        margin: var(--pillar-dek-mt) 0 0;
        max-width: 34em;
        font-size: 1.05rem;
        line-height: 1.55;
        color: var(--muted);
      }
      .pillar-cta-row {
        margin-top: var(--pillar-copy-stack);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 1.1rem;
      }
      .docs-link {
        color: var(--muted);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid transparent;
      }
      .docs-link:hover {
        color: var(--ink);
        border-bottom-color: var(--line);
      }
      .docs-link:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
        border-radius: 2px;
      }
      .pillar-trust {
        margin: 0.7rem 0 0;
        font-size: 0.82rem;
        color: var(--muted);
      }

      /* Definition = compact callout under hero copy (NOT orphan strip) */
      .def-callout {
        margin-top: var(--pillar-def-mt);
        margin-bottom: 0;
        padding: var(--pillar-def-pad);
        border: 1px solid var(--callout-border);
        border-radius: 12px;
        background: var(--callout-bg);
      }
      .def-callout .micro {
        display: block;
        margin: 0 0 var(--pillar-def-gap);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--callout-ink);
      }
      .def-callout p {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.55;
        color: var(--ink);
        letter-spacing: -0.01em;
      }
      .def-callout a {
        color: var(--blue);
      }

      /* Proof plane */
      .proof-plane {
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--card);
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(13, 18, 30, 0.055);
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      html[data-theme='dark'] .proof-plane {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
      }
      .proof-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.65rem 0.9rem;
        border-bottom: 1px solid var(--line);
        background: rgba(20, 26, 40, 0.02);
      }
      html[data-theme='dark'] .proof-head {
        background: rgba(231, 237, 255, 0.03);
      }
      .proof-head .live {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .proof-head .live::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
        animation: pulse-live 2.2s ease-out infinite;
      }
      .proof-flow {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: stretch;
        gap: 0;
        padding: 0.7rem 0.65rem 0.55rem;
        border-bottom: 1px solid var(--line);
      }
      .proof-step {
        padding: 0.3rem 0.4rem;
        text-align: center;
      }
      .proof-step .label {
        display: block;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.3rem;
      }
      .proof-step .name {
        display: block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--ink);
      }
      .proof-arrow {
        display: flex;
        align-items: center;
        color: var(--muted);
        font-size: 14px;
        opacity: 0.55;
        padding-bottom: 0.15rem;
      }
      .proof-log {
        padding: 0.65rem 0.9rem 0.85rem;
        font-size: 12px;
        line-height: 1.55;
        flex: 1;
      }
      .proof-log .line {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 0.65rem;
        padding: 0.32rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
      }
      .proof-log .line:last-child {
        border-bottom: 0;
      }
      .proof-log .ts {
        color: var(--muted);
        opacity: 0.75;
      }
      .proof-log .ok {
        color: #0f6f5f;
      }
      html[data-theme='dark'] .proof-log .ok {
        color: rgba(170, 245, 228, 0.95);
      }
      .proof-log .accent {
        color: var(--ink);
        font-weight: 500;
      }
      .proof-log .block {
        color: #b42318;
      }
      html[data-theme='dark'] .proof-log .block {
        color: #ff8a8a;
      }
      .proof-foot {
        padding: 0.5rem 0.9rem 0.65rem;
        border-top: 1px solid var(--line);
        font-size: 11px;
        letter-spacing: 0.04em;
        color: var(--muted);
      }

      @keyframes pulse-live {
        0% {
          box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
        }
        70% {
          box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        }
      }

      /* —— MES rail: keep, tighten —— */
      .mes-section {
        padding: var(--pillar-section-y) 0 var(--pillar-section-y-end);
        border-top: 1px solid var(--line);
      }
      .mes-section .section-head {
        max-width: 40em;
        margin-bottom: var(--pillar-section-head-mb);
      }
      .mes-section .section-head h2 {
        margin: 0;
        font-size: clamp(1.55rem, 3vw, 2.05rem);
        letter-spacing: -0.035em;
        line-height: 1.15;
      }
      .mes-section .section-head p {
        margin: 0.5rem 0 0;
        color: var(--muted);
        font-size: 0.98rem;
        line-height: 1.5;
      }
      .mes-rail {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        background: var(--card);
        align-items: stretch;
      }
      .mes-step {
        display: flex;
        flex-direction: column;
        padding: var(--pillar-mes-step-pad);
        border-right: 1px solid var(--line);
        min-width: 0;
      }
      .mes-step:last-child {
        border-right: 0;
      }
      .mes-step .num {
        display: block;
        margin-bottom: 0.4rem;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .mes-step h3 {
        margin: 0;
        font-size: 1.05rem;
        letter-spacing: -0.025em;
        line-height: 1.25;
      }
      .mes-step p {
        margin: 0.4rem 0 0;
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.45;
        flex: 1;
      }
      .mes-step .snippet {
        margin-top: auto;
        padding: 0.55rem 0.65rem;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: rgba(20, 26, 40, 0.025);
        font-size: 11.5px;
        line-height: 1.45;
        color: var(--muted);
      }
      html[data-theme='dark'] .mes-step .snippet {
        background: rgba(231, 237, 255, 0.03);
      }
      .mes-step .snippet b {
        color: var(--ink);
        font-weight: 500;
      }

      .stripe-strip {
        margin: var(--pillar-stripe-mt) 0 0;
        padding: var(--pillar-stripe-pad);
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--card);
      }
      .stripe-strip .micro {
        margin: 0 0 0.35rem;
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .stripe-strip h2 {
        margin: 0;
        font-size: clamp(1.15rem, 2vw, 1.35rem);
        letter-spacing: -0.03em;
        line-height: 1.25;
      }
      .stripe-strip p {
        margin: 0.4rem 0 0;
        max-width: 48em;
        color: var(--muted);
        font-size: 0.92rem;
        line-height: 1.5;
      }
      .stripe-strip a {
        color: var(--blue);
      }
      .stripe-strip .snippet {
        margin-top: 0.7rem;
        padding: 0.55rem 0.65rem;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: rgba(20, 26, 40, 0.025);
        font-size: 11.5px;
        line-height: 1.45;
        color: var(--muted);
        max-width: 36em;
      }
      html[data-theme='dark'] .stripe-strip .snippet {
        background: rgba(231, 237, 255, 0.03);
      }
      .stripe-strip .snippet b {
        color: var(--ink);
        font-weight: 500;
      }

      /* —— Who: denser, left accent (not lonely top hairlines) —— */
      .who-section {
        padding: var(--pillar-section-y) 0 var(--pillar-section-y-end);
      }
      .who-section h2 {
        margin: 0 0 0.4rem;
        font-size: clamp(1.55rem, 3vw, 2.05rem);
        letter-spacing: -0.035em;
        line-height: 1.15;
      }
      .who-section > .lede {
        margin: 0 0 1rem;
        max-width: 38em;
        color: var(--muted);
        font-size: 0.98rem;
        line-height: 1.5;
      }
      .who-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--pillar-who-gap);
        padding: 0;
        margin: 0;
        list-style: none;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }
      .who-list li {
        padding: var(--pillar-who-row-pad);
        border-left: 2px solid var(--ink);
        min-width: 0;
      }
      .who-list .role {
        display: block;
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 0.28rem;
      }
      .who-list p {
        margin: 0;
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.45;
      }
      .who-list a {
        color: var(--blue);
      }

      /* —— FAQ: polished accordion —— */
      .faq-section {
        padding: var(--pillar-section-y) 0 var(--pillar-section-y-end);
      }
      .faq-section h2 {
        margin: 0 0 0.35rem;
        font-size: clamp(1.55rem, 3vw, 2.05rem);
        letter-spacing: -0.035em;
        line-height: 1.15;
      }
      .faq-section .lede {
        margin: 0 0 0.85rem;
        color: var(--muted);
        max-width: 40em;
        font-size: 0.95rem;
      }
      .faq-list {
        border-top: 1px solid var(--line);
        max-width: 720px;
      }
      .faq-list details {
        border-bottom: 1px solid var(--line);
      }
      .faq-list summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: var(--pillar-faq-summary-py) 0;
        font-weight: 600;
        letter-spacing: -0.02em;
        font-size: 0.98rem;
        color: var(--ink);
      }
      .faq-list summary::-webkit-details-marker {
        display: none;
      }
      .faq-list summary:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
        border-radius: 4px;
      }
      .faq-list summary .chev {
        flex: 0 0 auto;
        width: 1.15rem;
        height: 1.15rem;
        color: var(--muted);
        transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .faq-list details[open] summary .chev {
        transform: rotate(180deg);
      }
      .faq-list details[open] summary {
        color: var(--ink);
      }
      .faq-list .faq-panel {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .faq-list details[open] .faq-panel {
        grid-template-rows: 1fr;
      }
      .faq-list .faq-panel-inner {
        overflow: hidden;
        min-height: 0;
      }
      .faq-list .answer {
        margin: 0 0 var(--pillar-faq-answer-mb);
        color: var(--muted);
        font-size: 0.94rem;
        line-height: 1.6;
        max-width: 42em;
      }
      .faq-list details[open] .answer {
        animation: faq-in 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
      }
      @keyframes faq-in {
        from {
          opacity: 0;
          transform: translateY(-4px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* —— One primary CTA band —— */
      .cta-band {
        margin: var(--pillar-cta-mt) 0 var(--pillar-cta-mb);
        padding: var(--pillar-cta-pad);
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--card);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem 1.5rem;
      }
      .cta-band h2 {
        margin: 0;
        font-size: clamp(1.25rem, 2.3vw, 1.5rem);
        letter-spacing: -0.03em;
        line-height: 1.25;
      }
      .cta-band p {
        margin: 0.3rem 0 0;
        color: var(--muted);
        font-size: 0.9rem;
      }
      .cta-band .cta-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 1rem;
      }

      /* Motion */
      .hero-in,
      .hero-in-2,
      .hero-in-3,
      .hero-in-4 {
        animation: hero-in 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
      }
      .hero-in-2 {
        animation-delay: 0.06s;
      }
      .hero-in-3 {
        animation-delay: 0.12s;
      }
      .hero-in-4 {
        animation-delay: 0.18s;
      }
      @keyframes hero-in {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero-in,
        .hero-in-2,
        .hero-in-3,
        .hero-in-4,
        .faq-list details[open] .answer,
        .faq-list .faq-panel,
        .faq-list summary .chev,
        .proof-head .live::before {
          animation: none !important;
          transition: none !important;
        }
      }

      @media (max-width: 1000px) {
        .pillar-hero-grid,
        .mes-rail,
        .who-list {
          grid-template-columns: 1fr;
        }
        .pillar-hero h1 {
          max-width: none;
        }
        .proof-plane {
          height: auto;
        }
        .proof-flow {
          grid-template-columns: 1fr;
          gap: 0.3rem;
          text-align: left;
        }
        .proof-step {
          text-align: left;
          display: flex;
          align-items: baseline;
          gap: 0.65rem;
        }
        .proof-step .label {
          margin-bottom: 0;
          min-width: 4.5rem;
        }
        .proof-arrow {
          display: none;
        }
        .mes-step {
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }
        .mes-step:last-child {
          border-bottom: 0;
        }
        .who-list li {
          border-left: 0;
          border-top: 1px solid var(--line);
          padding: 0.85rem 0;
        }
        .who-list li:first-child {
          border-top: 0;
        }
        .who-list {
          border-bottom: 0;
        }
      }

      @media (max-width: 760px) {
        :root {
          --pillar-hero-pad-top: 1.65rem;
          --pillar-hero-pad-bottom: 1rem;
          --pillar-section-y: 1.65rem;
        }
        .pillar-hero h1 {
          font-size: clamp(1.95rem, 9vw, 2.45rem);
        }
        .pillar-cta-row {
          flex-direction: column;
          align-items: flex-start;
        }
        .cta-band {
          padding: 1.15rem 1.05rem;
        }
      }
    
