    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:       #FAFAF9;
      --bg2:      #F4F3F0;
      --white:    #FFFFFF;
      --ink:      #0F0F0E;
      --ink2:     #2C2C2A;
      --muted:    #6B6B67;
      --dim:      #A8A8A3;
      --border:   #E4E2DC;
      --border2:  #D4D2CC;
      --blue:     #1B4FD8;
      --blue-h:   #1641B8;
      --blue-lt:  #EEF2FD;
      --green:    #16A34A;
      --red:      #DC2626;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--white);
      color: var(--ink2);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }

    /* ─── NAV ─── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-bar {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 60px;
      max-width: 1440px; margin: 0 auto;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      font-weight: 600; font-size: 17px; color: var(--ink);
      letter-spacing: -0.3px; flex-shrink: 0;
    }
    .nav-logo-img { width: 28px; height: 28px; display: block; }
    .footer-logo-img { width: 32px; height: 32px; display: block; margin-bottom: 10px; }

    .nav-center {
      display: flex; align-items: center; gap: 2px;
    }
    .nav-item {
      position: relative;
    }
    .nav-trigger {
      display: flex; align-items: center; gap: 4px;
      padding: 0 14px; height: 60px;
      font-size: 14px; font-weight: 500; color: var(--muted);
      cursor: pointer; user-select: none;
      transition: color .12s;
      border: none; background: none; font-family: inherit;
    }
    .nav-trigger svg { width: 12px; height: 12px; transition: transform .15s; }
    .nav-item:hover .nav-trigger,
    .nav-item.open .nav-trigger { color: var(--ink); }
    .nav-item.open .nav-trigger svg { transform: rotate(180deg); }
    .nav-plain {
      display: flex; align-items: center;
      padding: 0 14px; height: 60px;
      font-size: 14px; font-weight: 500; color: var(--muted);
      transition: color .12s;
    }
    .nav-plain:hover { color: var(--ink); }

    .mega {
      position: fixed; top: 60px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      opacity: 0; pointer-events: none;
      transition: opacity .15s;
      z-index: 199;
    }
    .nav-item.open .mega {
      opacity: 1; pointer-events: auto;
    }
    .nav-item.open::before {
      content: ''; position: absolute;
      top: 100%; left: 0; right: 0; height: 8px;
    }
    .mega-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 36px 48px;
      display: grid; gap: 0;
    }
    .mega-inner.cols-3-1 {
      grid-template-columns: 2fr 1fr 1fr;
      max-width: 1280px;
      gap: 0;
    }
    .mega-cta {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .mega-cta-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 12px 48px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: var(--muted);
    }
    .mega-cta-inner a {
      font-weight: 600;
      color: var(--blue);
      white-space: nowrap;
      transition: color .12s;
    }
    .mega-cta-inner a:hover {
      color: var(--blue-h);
      text-decoration: underline;
    }
    .mega-col-2cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 32px;
      align-content: start;
    }
    .mega-col-2cols .mega-col-head {
      grid-column: 1 / -1;
    }
    .mega-inner.cols-2-1 {
      grid-template-columns: 1fr 1fr 300px;
      gap: 0;
    }
    .mega-col {
      padding: 0 32px 0 0;
      border-right: 1px solid var(--border);
      margin-right: 32px;
    }
    .mega-col:last-of-type { border-right: none; margin-right: 0; }
    .mega-col-head {
      font-size: 10.5px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--dim); margin-bottom: 16px;
    }
    .mega-link {
      display: block; padding: 9px 0;
      border-bottom: 1px solid transparent;
      transition: border-color .1s;
    }
    .mega-link:hover .mega-link-title { color: var(--blue); }
    .mega-link-title {
      font-size: 13.5px; font-weight: 600; color: var(--ink);
      margin-bottom: 2px; transition: color .12s;
      display: flex; align-items: center; gap: 6px;
    }
    .mega-link-title > svg:not(.lucide) { width: 12px; height: 12px; opacity: 0; transition: opacity .1s, transform .1s; margin-left: auto; }
    .mega-link:hover .mega-link-title > svg:not(.lucide) { opacity: 1; transform: translateX(2px); }
    .mega-link-title .lucide {
      flex-shrink: 0;
      color: var(--dim);
      transition: color .12s;
    }
    .mega-link:hover .mega-link-title .lucide { color: var(--blue); }
    .mega-link-desc {
      font-size: 12px; color: var(--dim); line-height: 1.5;
    }

    .mega-featured {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 20px;
      display: flex; flex-direction: column;
      align-self: start;
    }
    .mega-featured-tag {
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.09em; color: var(--blue); margin-bottom: 10px;
    }
    .mega-featured-title {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 17px; color: var(--ink); line-height: 1.3;
      margin-bottom: 8px; font-weight: 400;
    }
    .mega-featured-desc {
      font-size: 12.5px; color: var(--muted); line-height: 1.6;
      margin-bottom: 16px; flex: 1;
    }
    .mega-featured-link {
      font-size: 13px; font-weight: 600; color: var(--blue);
      display: flex; align-items: center; gap: 5px;
    }
    .mega-featured-link svg { width: 12px; height: 12px; }

    .nav-item.open::after {
      content: ''; display: block;
      position: absolute; bottom: 0; left: 14px; right: 14px;
      height: 2px; background: var(--blue); border-radius: 2px 2px 0 0;
    }

    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .btn-nav-ghost {
      font-size: 14px; font-weight: 500; color: var(--muted);
      padding: 7px 14px; border-radius: 7px;
      transition: color .12s;
    }
    .btn-nav-ghost:hover { color: var(--ink); }
    .btn-nav-secondary {
      font-size: 14px; font-weight: 500; color: var(--ink);
      border: 1px solid var(--border2);
      padding: 7px 16px; border-radius: 7px;
      transition: border-color .12s, color .12s;
    }
    .btn-nav-secondary:hover { border-color: var(--dim); }
    .btn-nav-primary {
      font-size: 14px; font-weight: 600; color: var(--white);
      background: var(--ink);
      padding: 7px 16px; border-radius: 7px;
      transition: background .12s;
    }
    .btn-nav-primary:hover { background: var(--ink2); }

    /* ─── MOBILE NAV ─── */
    .nav-hamburger {
      display: none;
      align-items: center; justify-content: center;
      width: 40px; height: 40px;
      background: transparent; border: none;
      cursor: pointer;
      flex-direction: column; gap: 4px;
      padding: 0;
    }
    .nav-hamburger span {
      display: block;
      width: 20px; height: 1.5px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }
    body.mobile-menu-open .nav-hamburger span:nth-child(1) {
      transform: translateY(5.5px) rotate(45deg);
    }
    body.mobile-menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
    body.mobile-menu-open .nav-hamburger span:nth-child(3) {
      transform: translateY(-5.5px) rotate(-45deg);
    }

    .mobile-backdrop {
      position: fixed; inset: 0;
      background: rgba(15, 15, 14, 0.4);
      opacity: 0; pointer-events: none;
      transition: opacity .2s;
      z-index: 198;
    }
    body.mobile-menu-open .mobile-backdrop {
      opacity: 1; pointer-events: auto;
    }

    .mobile-panel {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(380px, 88vw);
      background: var(--white);
      border-left: 1px solid var(--border);
      box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
      transform: translateX(100%);
      transition: transform .25s ease;
      z-index: 199;
      display: flex; flex-direction: column;
    }
    body.mobile-menu-open .mobile-panel {
      transform: translateX(0);
    }
    .mobile-panel-scroll {
      flex: 1;
      overflow-y: auto;
      padding: 80px 8px 16px;
    }
    .mobile-panel-footer {
      padding: 16px;
      border-top: 1px solid var(--border);
      background: var(--white);
    }
    .mobile-cta {
      display: block; text-align: center;
      padding: 12px 16px;
    }

    .mobile-section-trigger {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 16px;
      background: transparent; border: none;
      font-family: inherit;
      font-size: 16px; font-weight: 600; color: var(--ink);
      text-align: left; cursor: pointer;
      border-radius: 8px;
      transition: background .12s;
    }
    .mobile-section-trigger:hover { background: var(--bg); }
    .mobile-chev {
      width: 12px; height: 12px;
      transition: transform .2s;
      color: var(--muted);
    }
    .mobile-section-trigger.expanded .mobile-chev { transform: rotate(180deg); }

    .mobile-section-content {
      display: none;
      padding: 4px 8px 12px;
    }
    .mobile-section-content.expanded { display: block; }

    .mobile-bucket-head {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.09em;
      color: var(--dim);
      padding: 12px 8px 6px;
    }
    .mobile-link {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 8px;
      font-size: 14.5px; color: var(--muted);
      border-radius: 6px;
      transition: background .12s, color .12s;
    }
    .mobile-link:hover { background: var(--bg); color: var(--ink); }
    .mobile-link .lucide { color: var(--dim); flex-shrink: 0; }
    .mobile-link--flat {
      padding: 14px 16px;
      font-size: 16px; font-weight: 600; color: var(--ink);
      border-top: 1px solid var(--border);
      margin-top: 4px;
    }

    /* ─── HERO ─── */
    .hero {
      max-width: 1080px; margin: 0 auto;
      padding: 88px 48px 72px;
    }
    .hero-eyebrow {
      font-size: 13px; font-weight: 500; color: var(--blue);
      letter-spacing: 0.01em; margin-bottom: 20px;
    }
    h1 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 400;
      line-height: 1.06;
      letter-spacing: -1px;
      color: var(--ink);
      max-width: 820px;
      margin-bottom: 24px;
    }
    h1 em {
      font-style: italic;
      color: var(--blue);
    }
    .hero-sub {
      font-size: 17px; color: var(--muted);
      max-width: 520px;
      font-weight: 400;
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .hero-ctas {
      display: flex; align-items: center;
      gap: 12px; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--ink); color: var(--white);
      font-size: 14px; font-weight: 600;
      padding: 11px 22px; border-radius: 8px;
      transition: background .12s;
    }
    .btn-primary:hover { background: var(--ink2); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 7px;
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--muted);
      font-size: 14px; font-weight: 500;
      padding: 11px 22px; border-radius: 8px;
      transition: border-color .12s, color .12s;
    }
    .btn-secondary:hover { border-color: var(--dim); color: var(--ink); }
    .hero-footnote {
      margin-top: 16px; font-size: 12.5px; color: var(--dim);
    }

    /* ─── DASHBOARD MOCKUP ─── */
    .mockup-wrap {
      max-width: 1080px; margin: 0 auto;
      padding: 0 48px 96px;
    }
    .mockup {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.06),
        0 24px 64px rgba(0,0,0,0.08);
    }
    .mockup-chrome {
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 12px 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .chrome-dots { display: flex; gap: 5px; }
    .chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .chrome-dots span:nth-child(1) { background: #FF5F57; }
    .chrome-dots span:nth-child(2) { background: #FFBD2E; }
    .chrome-dots span:nth-child(3) { background: #28C840; }
    .chrome-url {
      flex: 1; background: var(--white);
      border: 1px solid var(--border);
      border-radius: 5px; padding: 3px 10px;
      font-size: 11.5px; color: var(--dim);
    }
    .mockup-layout {
      display: grid;
      grid-template-columns: 200px 1fr 280px;
      min-height: 420px;
    }

    .mock-side {
      border-right: 1px solid var(--border);
      padding: 16px 12px;
      background: var(--bg);
    }
    .mock-side-group { margin-bottom: 20px; }
    .mock-side-label {
      font-size: 10px; font-weight: 650;
      text-transform: uppercase; letter-spacing: 0.09em;
      color: var(--dim); margin-bottom: 6px; padding: 0 6px;
    }
    .mock-nav-item {
      display: flex; align-items: center; gap: 8px;
      padding: 6px 8px; border-radius: 6px;
      font-size: 12.5px; font-weight: 500; color: var(--muted);
      margin-bottom: 1px;
    }
    .mock-nav-item.active {
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    }
    .comp-row {
      display: flex; align-items: center; gap: 8px;
      padding: 5px 8px; border-radius: 6px;
      font-size: 12.5px; color: var(--muted);
    }
    .comp-tag {
      font-size: 9px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; padding: 1px 5px; border-radius: 3px;
      margin-left: auto;
    }
    .comp-tag-direct { background: #FEE2E2; color: #991B1B; }
    .comp-tag-indirect { background: var(--bg2); color: var(--dim); }
    .comp-avatar {
      width: 22px; height: 22px; border-radius: 5px;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: white; flex-shrink: 0;
    }

    .mock-main { padding: 20px 24px; }
    .mock-main-header {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 16px;
    }
    .mock-main-title { font-size: 15px; font-weight: 650; color: var(--ink); }
    .mock-main-date { font-size: 11.5px; color: var(--dim); }
    .mock-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
    .mock-stat {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 12px 14px;
    }
    .mock-stat-label { font-size: 10.5px; color: var(--dim); font-weight: 500; margin-bottom: 3px; }
    .mock-stat-value { font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1; }
    .mock-stat-sub { font-size: 10.5px; color: var(--muted); margin-top: 2px; }

    .mock-item {
      border: 1px solid var(--border);
      border-radius: 8px; padding: 12px 14px;
      margin-bottom: 8px; background: var(--white);
    }
    .mock-item-meta {
      display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
    }
    .mock-chip {
      font-size: 10px; font-weight: 650; text-transform: uppercase;
      letter-spacing: 0.05em; padding: 2px 7px; border-radius: 4px;
    }
    .chip-pricing  { background: #FEF3C7; color: #92400E; }
    .chip-hiring   { background: #F0F9FF; color: #0369A1; }
    .chip-feature  { background: #F0FDF4; color: #166534; }
    .chip-narrative{ background: #F5F3FF; color: #6D28D9; }
    .chip-insight  { background: #FFF7ED; color: #C2410C; }
    .mock-item-co { font-size: 11.5px; font-weight: 600; color: var(--ink2); }
    .mock-item-text { font-size: 12px; color: var(--muted); line-height: 1.55; }
    .mock-item-text strong { color: var(--ink2); font-weight: 600; }

    .mock-panel {
      border-left: 1px solid var(--border);
      padding: 20px 18px;
      background: var(--bg);
    }
    .mock-panel-title { font-size: 11.5px; font-weight: 650; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.07em; }
    .mock-bc {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 12px 14px;
      margin-bottom: 10px;
    }
    .mock-bc-name { font-size: 12px; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
    .mock-bc-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
    .mock-bc-label { font-size: 10.5px; color: var(--dim); }
    .mock-bc-val { font-size: 10.5px; color: var(--ink2); font-weight: 500; }
    .mock-bc-tag-row { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
    .mock-tag {
      font-size: 10px; color: var(--muted);
      background: var(--bg2); border: 1px solid var(--border);
      padding: 2px 6px; border-radius: 4px;
    }
    .mock-blur-row {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 8px; padding: 10px 14px; margin-bottom: 8px;
      position: relative; overflow: hidden;
    }
    .mock-blur-text {
      font-size: 11.5px; color: transparent;
      text-shadow: 0 0 7px rgba(0,0,0,0.18);
      user-select: none; line-height: 1.5;
      filter: blur(3.5px);
    }
    .mock-blur-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(250,250,249,0.6);
      font-size: 10.5px; font-weight: 600; color: var(--blue);
    }

    /* ─── LOGOS ─── */
    .logos-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg);
      padding: 28px 48px;
    }
    .logos-inner { max-width: 1080px; margin: 0 auto; }
    .logos-label {
      font-size: 11.5px; font-weight: 500;
      color: var(--dim); text-align: center; margin-bottom: 20px;
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .logos-row {
      display: flex; align-items: center; justify-content: center;
      gap: 52px; flex-wrap: wrap;
    }
    .logo-name {
      font-size: 15px; font-weight: 600;
      color: var(--border2);
      letter-spacing: -0.2px; user-select: none;
    }
    .kpi-row { gap: 64px; }
    .kpi-cell { text-align: center; user-select: none; }
    .kpi-num {
      font-family: 'Instrument Serif', serif;
      font-size: 38px; font-weight: 400;
      color: var(--ink); line-height: 1;
      letter-spacing: -0.01em;
    }
    .kpi-cap {
      font-size: 11.5px; font-weight: 500;
      color: var(--dim); margin-top: 8px;
      text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ─── FAQ (uses native <details>/<summary>) ─── */
    .faq {
      margin: 36px auto 0;
      max-width: 760px;
      border-top: 1px solid var(--border);
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      list-style: none;
      cursor: pointer;
      user-select: none;
      position: relative;
      display: block;
      padding: 22px 56px 22px 0;
      font-size: 16.5px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.45;
      transition: color 120ms;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::marker { content: ""; }
    .faq-q:hover { color: var(--blue); }
    .faq-q::after {
      content: "";
      position: absolute;
      right: 8px;
      top: 50%;
      width: 14px;
      height: 14px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F0F0E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
      background-repeat: no-repeat;
      background-size: contain;
      transform: translateY(-50%) rotate(0deg);
      transition: transform 200ms;
    }
    .faq-item[open] .faq-q::after {
      transform: translateY(-50%) rotate(180deg);
    }
    .faq-q:hover::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B4FD8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    }
    .faq-a {
      padding: 0 0 24px 0;
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.7;
    }
    .faq-a p { margin: 0 0 12px; }
    .faq-a p:last-child { margin-bottom: 0; }
    .faq-a a {
      color: var(--blue);
      text-decoration: none;
      border-bottom: 1px solid var(--blue);
    }
    .faq-a a:hover { background: var(--blue-lt); }

    @media (max-width: 600px) {
      .faq-q { padding: 18px 40px 18px 0; font-size: 15.5px; }
      .faq-a { padding-bottom: 20px; font-size: 15px; }
    }

    /* ─── SECTION UTILS ─── */
    .section { max-width: 1080px; margin: 0 auto; padding: 88px 48px; }
    .section.bg-tinted { background: var(--bg); }
    .section-full { padding: 88px 0; }
    .section-full .section-inner { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

    .tag-line {
      font-family: 'Inter', sans-serif;
      font-size: 12px; font-weight: 600; color: var(--blue);
      text-transform: uppercase; letter-spacing: 0.09em;
      line-height: 1.5;
      margin-bottom: 14px;
    }
    h2 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: clamp(28px, 3.8vw, 46px);
      font-weight: 400; letter-spacing: -0.5px;
      color: var(--ink); line-height: 1.12;
      margin-bottom: 16px;
    }
    h2 em { font-style: italic; }
    .lead {
      font-size: 16px; color: var(--muted);
      line-height: 1.75; max-width: 500px;
    }

    /* ─── PROBLEM ─── */
    .problem-cols {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      margin-top: 52px;
    }
    .problem-col {
      background: var(--white);
      padding: 32px 28px;
    }
    .problem-label {
      font-size: 11px; font-weight: 650;
      text-transform: uppercase; letter-spacing: 0.09em;
      color: var(--dim); margin-bottom: 14px;
    }
    .problem-col h3 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 20px; font-weight: 400;
      color: var(--ink); line-height: 1.25;
      margin-bottom: 10px;
    }
    .problem-col p {
      font-size: 13.5px; color: var(--muted); line-height: 1.7;
    }

    /* ─── TRIGGER MOMENTS ─── */
    .triggers-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 12px; margin-top: 52px;
    }
    .trigger-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 20px;
    }
    .trigger-number {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.09em;
      color: var(--dim); margin-bottom: 10px;
    }
    .trigger-card h3 {
      font-size: 14px; font-weight: 650; color: var(--ink);
      margin-bottom: 8px; line-height: 1.35;
    }
    .trigger-card p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
    .trigger-card.hot { border-color: var(--ink); }
    .trigger-hot-badge {
      display: inline-block;
      font-size: 9.5px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.07em; color: var(--red);
      background: #FEE2E2; padding: 2px 7px; border-radius: 4px;
      margin-bottom: 10px;
    }

    /* ─── HOW IT WORKS ─── */
    .how-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
      margin-top: 52px;
    }
    .how-text h3 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 26px; font-weight: 400;
      color: var(--ink); margin-bottom: 12px;
    }
    .how-text p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
    .how-checklist { margin-top: 20px; list-style: none; }
    .how-checklist li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--muted); margin-bottom: 10px;
    }
    .how-checklist li::before {
      content: '';
      display: block; width: 16px; height: 16px; flex-shrink: 0;
      margin-top: 2px;
      background: var(--blue-lt); border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B4FD8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-position: center; background-repeat: no-repeat;
    }
    .how-visual {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 28px;
    }
    .how-visual-title {
      font-size: 11px; font-weight: 650; text-transform: uppercase;
      letter-spacing: 0.09em; color: var(--dim); margin-bottom: 16px;
    }
    .how-alert {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 8px; padding: 14px 16px; margin-bottom: 8px;
    }
    .how-alert-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
    .how-alert-title { font-size: 13px; font-weight: 600; color: var(--ink); }
    .how-alert-body { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
    .how-alert-body strong { color: var(--ink2); font-weight: 600; }
    .dot-red    { width: 7px; height: 7px; border-radius: 50%; background: #EF4444; flex-shrink: 0; }
    .dot-amber  { width: 7px; height: 7px; border-radius: 50%; background: #F59E0B; flex-shrink: 0; }
    .dot-green  { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }

    /* ─── AGENTS GRID ─── */
    .agents-section { background: var(--bg); }
    .agents-categories {
      margin-top: 52px;
      display: flex; flex-direction: column; gap: 32px;
    }
    .agents-category-label {
      font-size: 10.5px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--dim);
      margin-bottom: 12px; padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .agents-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .agents-row.cols-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    .agent-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 18px 16px;
    }
    .agent-card h3 {
      font-size: 13.5px; font-weight: 650; color: var(--ink);
      margin-bottom: 6px;
    }
    .agent-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }
    .agent-frameworks {
      display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px;
    }
    .agent-framework-tag {
      font-size: 9.5px; color: var(--dim);
      background: var(--bg2); border: 1px solid var(--border);
      padding: 2px 6px; border-radius: 4px;
    }
    .agent-mvp-badge {
      display: inline-block;
      font-size: 9px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; color: var(--blue);
      background: var(--blue-lt); padding: 2px 6px; border-radius: 3px;
      margin-bottom: 8px;
    }

    /* ─── FEATURES GRID (kept for supplemental) ─── */
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      margin-top: 52px;
    }
    .feature-cell {
      background: var(--white); padding: 28px 24px;
    }
    .feature-cell h3 {
      font-size: 14.5px; font-weight: 650; color: var(--ink);
      margin-bottom: 8px;
    }
    .feature-cell p { font-size: 13px; color: var(--muted); line-height: 1.7; }
    .feature-label {
      font-size: 10px; font-weight: 650; text-transform: uppercase;
      letter-spacing: 0.09em; color: var(--blue); margin-bottom: 10px;
    }

    /* ─── TESTIMONIALS ─── */
    .testi-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; margin-top: 52px;
    }
    .testi-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 24px;
    }
    .testi-quote {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 16px; font-style: italic;
      color: var(--ink2); line-height: 1.6;
      margin-bottom: 20px;
    }
    .testi-rule { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-initials {
      width: 34px; height: 34px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; color: white; flex-shrink: 0;
    }
    .testi-name { font-size: 13px; font-weight: 600; color: var(--ink); }
    .testi-role { font-size: 12px; color: var(--dim); }

    /* ─── PRICING ─── */
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; margin-top: 52px; max-width: 1080px;
    }
    .pricing-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 28px;
    }
    .pricing-card.featured {
      border-color: var(--ink);
      box-shadow: 0 0 0 1px var(--ink);
    }
    .pricing-tier {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.09em; color: var(--muted); margin-bottom: 10px;
    }
    .pricing-amount {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 48px; font-weight: 400;
      color: var(--ink); line-height: 1; margin-bottom: 4px;
    }
    .pricing-amount span { font-size: 18px; color: var(--muted); font-family: 'Inter', sans-serif; }
    .pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
    .pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
    .pricing-list { list-style: none; margin-bottom: 24px; }
    .pricing-list li {
      position: relative;
      padding-left: 22px;
      font-size: 13.5px; color: var(--muted);
      margin-bottom: 10px;
      line-height: 1.55;
    }
    .pricing-list li .ok {
      position: absolute;
      left: 0; top: 1px;
      color: var(--green); font-size: 14px;
    }
    .pricing-list li.off { opacity: 0.38; }
    .pricing-list li.off .ok { color: var(--dim); }
    .btn-plan-primary {
      display: block; text-align: center;
      background: var(--ink); color: var(--white);
      font-size: 14px; font-weight: 600;
      padding: 11px 20px; border-radius: 8px;
      transition: background .12s;
    }
    .btn-plan-primary:hover { background: var(--ink2); }
    .btn-plan-secondary {
      display: block; text-align: center;
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--muted);
      font-size: 14px; font-weight: 500;
      padding: 11px 20px; border-radius: 8px;
      transition: border-color .12s, color .12s;
    }
    .btn-plan-secondary:hover { border-color: var(--dim); color: var(--ink); }
    .pricing-footnote { font-size: 12.5px; color: var(--dim); margin-top: 14px; }

    /* ─── COMPARE TABLE ─── */
    .compare-table {
      width: 100%; border-collapse: collapse;
      margin-top: 52px; font-size: 13.5px;
    }
    .compare-table th {
      text-align: left; padding: 10px 16px;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--dim); border-bottom: 1px solid var(--border);
    }
    .compare-table th:not(:first-child) { text-align: center; }
    .compare-table td {
      padding: 12px 16px; border-bottom: 1px solid var(--border);
      color: var(--muted); vertical-align: middle;
    }
    .compare-table td:first-child { color: var(--ink2); font-weight: 500; }
    .compare-table td:not(:first-child) { text-align: center; }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table tr:hover td { background: var(--bg); }
    .compare-table .col-us { background: var(--blue-lt); }
    .compare-table th.col-us { background: var(--blue-lt); color: var(--blue); }
    .check-yes { color: var(--green); font-size: 15px; }
    .check-no  { color: var(--border2); font-size: 15px; }
    .check-part { color: var(--dim); font-size: 12px; font-weight: 500; }
    .price-cell { font-size: 13px; font-weight: 600; color: var(--ink2); }
    .price-cell.ours { color: var(--blue); font-weight: 700; }

    /* ─── CTA ─── */
    .cta-section { padding: 96px 48px; max-width: 1080px; margin: 0 auto; text-align: center; }
    .cta-inner {
      background: var(--ink); border-radius: 16px; padding: 72px 48px;
    }
    .cta-inner h2 {
      color: var(--white); max-width: none; margin-bottom: 16px;
    }
    .cta-inner .lead { color: rgba(255,255,255,0.55); margin: 0 auto 36px; }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--ink);
      font-size: 14px; font-weight: 700;
      padding: 13px 26px; border-radius: 8px;
      transition: opacity .12s;
    }
    .btn-cta:hover { opacity: 0.9; }
    .cta-note { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,0.35); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
    }
    .footer-inner {
      max-width: 1080px; margin: 0 auto;
      padding: 48px 48px 40px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 40px;
    }
    .footer-brand-name {
      font-size: 15px; font-weight: 600; color: #fff;
      margin-bottom: 8px; display: block;
    }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }
    .footer-col-head {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.09em; color: rgba(255,255,255,.35); margin-bottom: 14px;
    }
    .footer-col a {
      display: block; font-size: 13px; color: rgba(255,255,255,.55);
      margin-bottom: 9px; transition: color .12s;
    }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
      font-size: 12px; color: rgba(255,255,255,.35);
    }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { color: rgba(255,255,255,.35); }
    .footer-legal a:hover { color: rgba(255,255,255,.65); }

    /* ─── FORM CHROME (sign-in, onboard, future funnels) ─────────────────
       Shared primitives for funnel pages that swap out the global nav for a
       minimal header. New funnel pages should reuse these classes verbatim
       — only break out a page-scoped <style> block for layout that's truly
       unique (progress dots, multi-step animation, etc.). */

    body.form-page {
      background: var(--bg);
      min-height: 100vh;
      display: flex; flex-direction: column;
    }

    .minimal-header {
      padding: 20px 32px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }
    .minimal-header-logo {
      display: flex; align-items: center; gap: 9px;
      font-weight: 600; font-size: 16px; color: var(--ink);
      letter-spacing: -0.3px; text-decoration: none;
    }
    .minimal-header-logo img { width: 24px; height: 24px; }
    .minimal-header-note { font-size: 13px; color: var(--muted); }
    .minimal-header-note a { color: var(--blue); transition: color .12s; }
    .minimal-header-note a:hover { color: var(--blue-h); text-decoration: underline; }

    .form-page-body {
      flex: 1;
      display: flex; align-items: flex-start; justify-content: center;
      padding: 64px 24px 80px;
    }
    .form-page-wrap { width: 100%; max-width: 520px; }
    .form-page-wrap--narrow { max-width: 420px; }

    .form-eyebrow {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.09em;
      color: var(--muted); margin-bottom: 10px;
    }
    .form-h1 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 30px; font-weight: 400; color: var(--ink);
      line-height: 1.2; margin-bottom: 8px;
    }
    .form-h1 em { font-style: italic; }
    .form-sub {
      font-size: 14px; color: var(--muted); line-height: 1.6;
      margin-bottom: 32px;
    }

    .form-field { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 13px; font-weight: 600; color: var(--ink);
      margin-bottom: 6px;
    }
    .form-label-note { font-weight: 400; color: var(--muted); margin-left: 4px; }
    .form-input, .form-textarea, .form-select {
      width: 100%;
      font-family: 'Inter', sans-serif;
      /* 16px minimum so iOS Safari doesn't auto-zoom on focus */
      font-size: 16px; color: var(--ink);
      background: var(--white);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 11px 14px;
      transition: border-color .12s, box-shadow .12s;
      outline: none;
      appearance: none;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--ink);
      box-shadow: 0 0 0 3px rgba(15,15,14,.07);
    }
    .form-input.error, .form-textarea.error {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(220,38,38,.07);
    }
    .form-input.url-ok { border-color: var(--green); }
    .form-input.checking { border-color: var(--dim); color: var(--muted); }
    .form-textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '';
      position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%);
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--muted);
      pointer-events: none;
    }
    .form-select { padding-right: 32px; cursor: pointer; }
    .form-hint {
      font-size: 12px; color: var(--dim);
      margin-top: 5px; line-height: 1.5;
      transition: color .15s;
    }
    .form-error-msg {
      font-size: 12px; color: var(--red);
      margin-top: 5px; display: none;
    }
    .form-field.has-error .form-error-msg { display: block; }

    .btn-submit {
      width: 100%;
      background: var(--ink); color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px; font-weight: 600;
      padding: 12px 20px; border-radius: 8px;
      border: none; cursor: pointer;
      transition: background .12s;
      text-align: center;
    }
    .btn-submit:hover { background: var(--ink2); }
    .btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
    .btn-back {
      background: transparent; color: var(--muted);
      font-family: 'Inter', sans-serif;
      font-size: 14px; font-weight: 500;
      padding: 12px 16px; border-radius: 8px;
      border: 1px solid var(--border2);
      cursor: pointer;
      transition: color .12s, border-color .12s;
      white-space: nowrap;
    }
    .btn-back:hover { color: var(--ink); border-color: var(--dim); }

    .form-actions {
      display: flex; align-items: center; gap: 12px;
      margin-top: 32px;
    }
    .form-actions .btn-submit { flex: 1; width: auto; }

    .form-confirm { display: none; text-align: center; }
    .form-confirm.visible { display: block; animation: form-confirm-in .25s ease; }
    @keyframes form-confirm-in {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .form-confirm-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--ink); margin: 0 auto 24px;
      display: flex; align-items: center; justify-content: center;
    }
    .form-confirm-icon img { width: 32px; height: 32px; }
    .form-confirm h2 {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: 28px; font-weight: 400; color: var(--ink);
      margin-bottom: 10px;
    }
    .form-confirm h2 em { font-style: italic; }
    .form-confirm p {
      font-size: 14px; color: var(--muted); line-height: 1.65;
      max-width: 380px; margin: 0 auto 24px;
    }
    .form-confirm strong { color: var(--ink); font-weight: 600; }

    .form-switch {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid var(--border);
      font-size: 13.5px; color: var(--muted);
      text-align: center; line-height: 1.6;
    }
    .form-switch a {
      color: var(--blue); font-weight: 600;
      transition: color .12s;
    }
    .form-switch a:hover { color: var(--blue-h); text-decoration: underline; }

    a.text-link { color: var(--blue); transition: color .12s; }
    a.text-link:hover { color: var(--blue-h); text-decoration: underline; }

    /* ─── HOME: SAMPLE LINK UNDER MOCKUP ─── */
    .sample-link {
      max-width: 1080px; margin: 18px auto 0;
      text-align: center;
      font-size: 13px; color: var(--dim);
    }
    .sample-link a {
      color: var(--blue); font-weight: 600;
      transition: color .12s;
    }
    .sample-link a:hover { color: var(--blue-h); text-decoration: underline; }

    /* ─── HOME: TRIGGERS 3-COL VARIANT ─── */
    .triggers-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

    /* ─── HOME: BRIEF ANATOMY (11 sections × 28 cards) ─── */
    .brief-anatomy {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 44px;
    }
    .anatomy-col {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px 22px;
    }
    .anatomy-cat {
      font-size: 11.5px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--blue);
      padding-bottom: 12px; margin-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .anatomy-row {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; padding: 8px 0;
      font-size: 13.5px; color: var(--ink);
    }
    .anatomy-row + .anatomy-row { border-top: 1px solid var(--border); }
    .anatomy-name { font-weight: 500; }
    .anatomy-pill {
      flex-shrink: 0;
      font-size: 11px; font-weight: 600;
      color: var(--muted);
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2px 8px;
    }
    .anatomy-pill em {
      font-style: normal; color: var(--dim);
      text-transform: uppercase; letter-spacing: 0.04em;
      font-size: 9.5px; margin-left: 4px;
    }
    .anatomy-foot {
      text-align: center; margin-top: 32px;
      font-size: 14px;
    }

    /* ─── HOME: VS THE ALTERNATIVES ─── */
    .vs-table {
      width: 100%;
      max-width: 880px;
      margin: 44px auto 0;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      font-size: 13.5px;
    }
    .vs-table th, .vs-table td {
      padding: 14px 18px;
      text-align: left;
      vertical-align: middle;
      color: var(--ink);
    }
    .vs-table thead th {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--dim);
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .vs-table tbody tr + tr td { border-top: 1px solid var(--border); }
    .vs-table td:nth-child(2) { color: var(--muted); }
    .vs-table .vs-price { white-space: nowrap; text-align: right; }
    .vs-table .vs-self td {
      background: var(--blue-lt);
      color: var(--ink);
    }
    .vs-table .vs-self td:nth-child(2) { color: var(--ink2); }
    .vs-table .vs-self td:first-child { box-shadow: inset 3px 0 0 var(--blue); }
    .vs-foot {
      max-width: 880px; margin: 18px auto 0;
      text-align: center;
      font-size: 13px; color: var(--dim);
      font-style: italic;
    }

    @media (max-width: 600px) {
      .form-page-body { padding: 40px 16px 60px; }
      .form-h1 { font-size: 24px; }
      .minimal-header-note { display: none; }
    }

    /* ─── RESPONSIVE ─── */
    body.mobile-menu-open { overflow: hidden; }

    @media (max-width: 800px) {
      nav { padding: 0; }
      .nav-bar { padding: 0 20px; }
      .nav-center, .nav-actions { display: none; }
      .nav-hamburger { display: flex; }
      .hero, .mockup-wrap, .section, .cta-section { padding-left: 20px; padding-right: 20px; }
      h1 { font-size: 36px; }
      .problem-cols, .how-grid, .features-grid,
      .testi-grid, .pricing-grid, .footer-top { grid-template-columns: 1fr; }
      .pricing-grid { max-width: 100%; }
      .mockup-layout { grid-template-columns: 1fr; }
      .mock-side, .mock-panel { display: none; }
      .logos-strip { padding: 24px 20px; }
      .logos-row { gap: 24px; }
      .triggers-grid { grid-template-columns: 1fr 1fr; }
      .triggers-grid.cols-3 { grid-template-columns: 1fr; }
      .agents-row, .agents-row.cols-3 { grid-template-columns: 1fr 1fr; }
      .brief-anatomy { grid-template-columns: 1fr; }
      .vs-table { font-size: 12.5px; }
      .vs-table th, .vs-table td { padding: 12px 12px; }
      .mock-stat-row { grid-template-columns: 1fr 1fr; }
    }
