/* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* Hero dot pattern lives on .hero::before — see below */

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.11) 1px, transparent 0);
    background-size: 24px 24px;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0px, rgba(0,0,0,1) 220px, transparent 380px);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0px, rgba(0,0,0,1) 220px, transparent 380px);
    pointer-events: none;
    z-index: 0;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 92%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: #d97706;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 64px 0 40px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 56px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
  }
  .trust-sep {
    color: var(--text-tertiary);
    opacity: 0.5;
    user-select: none;
  }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 0;
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .pricing-card { overflow: visible; }

  /* Pro bar — lives outside the masked card so it can protrude freely */
  .pricing-wrap {
    position: relative;
  }
  .pro-bar {
    position: absolute;
    /* Pro is the 3rd tier inside the pricing card — measured top:206px, height:66px */
    left: -3px;
    top: 213px;
    height: 52px;
    width: 5px;
    background: var(--primary);
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
  }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* === Right-bleed: cards extend off-page right with fade === */
  .pricing-card,
  .risk-card {
    width: calc(100% + 240px);
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 240px), transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 240px), transparent 100%);
    -webkit-mask-size: calc(100% + 24px) 100%;
            mask-size: calc(100% + 24px) 100%;
    -webkit-mask-position: -24px 0;
            mask-position: -24px 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  /* Compensate inner padding to keep right-aligned content (prices, $ amounts) anchored */
  .pricing-card .card-header,
  .pricing-card .tier,
  .pricing-card .card-footer,
  .risk-card .card-header,
  .risk-card .risk-row,
  .risk-card .risk-resolve {
    padding-right: calc(22px + 240px);
  }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
    .pricing-card,
    .risk-card {
      width: 100%;
      -webkit-mask-image: none;
              mask-image: none;
    }
    .pricing-card .card-header,
    .pricing-card .tier,
    .pricing-card .card-footer,
    .risk-card .card-header,
    .risk-card .risk-row,
    .risk-card .risk-resolve {
      padding-right: 22px;
    }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === WHY PAGE CSS === */

  /* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* Page-level dots removed in packaged site — only homepage hero has them */
  .page::before { display: none; }

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 78%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: var(--secondary);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 48px 0 32px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .trust-item svg { width: 14px; height: 14px; opacity: 1; color: var(--text-primary); }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .tier.featured::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 7px;
    bottom: 7px;
    width: 5px;
    background: var(--primary);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(31, 79, 208, 0.3);
  }
  .pricing-card { overflow: visible; }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === Why intro === */
  .why-intro {
    padding: 56px 0 40px;
    max-width: 720px;
  }
  .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.08);
  }
  .intro-eyebrow-mark {
    color: var(--primary);
    font-weight: 700;
  }
  h1.page-title {
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0 0 20px;
    color: var(--text-primary);
  }
  .title-mark {
    color: var(--primary);
  }
  .page-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0;
  }

  /* === Why split (screenshot + list) === */
  .why-split {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding: 16px 0 80px;
    align-items: start;
  }
  .dashboard-peek {
    position: relative;
    margin-left: calc(50% - 50vw + 32px);
    height: 580px;
    overflow: hidden;
  }
  .dashboard-peek img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 14px 14px 0;
    border: 1px solid var(--divider);
    border-left: none;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1), 0 4px 14px rgba(15, 23, 42, 0.05);
    -webkit-mask-image: linear-gradient(to left, #000 0%, #000 75%, transparent 100%);
            mask-image: linear-gradient(to left, #000 0%, #000 75%, transparent 100%);
  }

  /* Problem list — no cards, just numbered rows */
  .problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }
  .problem-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--divider);
  }
  .problem-row:first-child { border-top: none; padding-top: 8px; }
  .problem-num {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    padding-top: 2px;
    color: var(--text-tertiary);
  }
  .problem-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
    margin: 0 0 6px;
    color: var(--text-primary);
  }
  .problem-fix {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
  }
  .problem-fix .fix-arrow {
    color: var(--primary);
    font-weight: 700;
    margin-right: 4px;
  }

  /* CTA below the split */
  .why-cta {
    padding: 8px 0 96px;
    text-align: center;
  }

  @media (max-width: 980px) {
    .why-split { grid-template-columns: 1fr; gap: 32px; }
    .dashboard-peek { margin-left: calc(50% - 50vw + 20px); height: 420px; }
  }
  @media (max-width: 640px) {
    h1.page-title { font-size: 40px; }
    .problem-row { grid-template-columns: 44px 1fr; gap: 14px; }
    .problem-num { font-size: 24px; }
    .dashboard-peek { height: 320px; }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === ADVANTAGE PAGE CSS === */

  /* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* No background dot pattern on this page */

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 78%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: var(--secondary);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 48px 0 32px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .trust-item svg { width: 14px; height: 14px; opacity: 1; color: var(--text-primary); }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .tier.featured::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 7px;
    bottom: 7px;
    width: 5px;
    background: var(--primary);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(31, 79, 208, 0.3);
  }
  .pricing-card { overflow: visible; }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === Advantage intro === */
  .adv-intro {
    padding: 56px 0 40px;
    max-width: 760px;
  }
  .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.08);
  }
  .intro-eyebrow-mark {
    color: var(--primary);
    font-weight: 700;
  }
  h1.page-title {
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0 0 20px;
    color: var(--text-primary);
  }
  .title-mark {
    color: var(--primary);
  }
  .page-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0;
  }

  /* === Comparison table === */
  .comparison {
    padding: 16px 0 64px;
  }
  .cmp-table {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }
  .cmp-head, .cmp-row {
    display: contents;
  }
  .cmp-cell {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-primary);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .cmp-head .cmp-cell {
    border-top: none;
    background: var(--bg-default);
    padding: 18px 20px 16px;
    flex-direction: column;
    gap: 4px;
  }
  .cmp-head + .cmp-row .cmp-cell { border-top: none; }
  .cmp-feature-head {
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .cmp-feature {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-paper);
  }
  .col-eyebrow {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .col-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
  }

  /* ContractsIQ column emphasis */
  .cmp-col-head--us {
    background: rgba(31, 79, 208, 0.06) !important;
    position: relative;
  }
  .cmp-col-head--us .col-eyebrow {
    color: var(--primary);
  }
  .col-mark {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
  }
  .cmp-cell--us {
    background: rgba(31, 79, 208, 0.04);
    font-weight: 500;
  }
  .cmp-cell--us strong {
    color: var(--primary);
    font-weight: 700;
  }

  /* Icons */
  .cmp-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 1px;
  }
  .cmp-icon--bad {
    background: rgba(220, 38, 38, 0.1);
    color: var(--risk-high, #dc2626);
  }
  .cmp-icon--mid {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
  }
  .cmp-icon--good {
    background: var(--primary);
    color: white;
    font-size: 11px;
  }

  /* CTA below comparison */
  .adv-cta {
    padding: 8px 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .adv-cta-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-tertiary);
  }

  @media (max-width: 900px) {
    .cmp-table {
      grid-template-columns: 1fr;
    }
    .cmp-head { display: none; }
    .cmp-row {
      display: block;
      padding: 20px;
      border-top: 1px solid var(--divider);
    }
    .cmp-row:first-of-type { border-top: none; }
    .cmp-cell {
      padding: 8px 0;
      border-top: none;
    }
    .cmp-feature {
      background: transparent;
      font-size: 15px;
      margin-bottom: 6px;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--divider);
    }
    .cmp-cell--us { background: transparent; }
    .cmp-cell::before {
      content: attr(data-label);
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-tertiary);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      width: 110px;
      flex-shrink: 0;
    }
  }

  /* === Platform slider === */
  .platform {
    padding: 24px 0 80px;
  }
  .platform-head {
    max-width: 720px;
    margin-bottom: 32px;
  }
  .platform-title {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 16px 0 14px;
    color: var(--text-primary);
  }
  .platform-lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    max-width: 580px;
  }
  .platform-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .tab-group {
    display: inline-flex;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
  }
  .tab {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--text-secondary);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: -0.005em;
  }
  .tab:hover { color: var(--text-primary); }
  .tab--active {
    background: var(--primary);
    color: white;
    box-shadow: 0 1px 3px rgba(31, 79, 208, 0.25);
  }
  .tab--active:hover { color: white; }

  .theme-toggle {
    display: inline-flex;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
  }
  .theme-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--text-tertiary);
    font: inherit;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.005em;
  }
  .theme-btn svg { width: 14px; height: 14px; }
  .theme-btn:hover { color: var(--text-primary); }
  .theme-btn--active {
    background: var(--bg-default);
    color: var(--text-primary);
    box-shadow: inset 0 0 0 1px var(--divider);
  }

  .platform-screenshot {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--divider);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1), 0 4px 14px rgba(15, 23, 42, 0.05);
    background: var(--bg-paper);
    aspect-ratio: 1680 / 992;
  }
  .platform-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .platform-img--active {
    opacity: 1;
    pointer-events: auto;
  }

  @media (max-width: 760px) {
    .platform-controls { flex-direction: column; align-items: stretch; }
    .tab-group, .theme-toggle { width: 100%; justify-content: center; }
    .tab { flex: 1; }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === EXAMPLES PAGE CSS === */

  /* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* No background dot pattern on this page */

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 78%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: var(--secondary);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 48px 0 32px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .trust-item svg { width: 14px; height: 14px; opacity: 1; color: var(--text-primary); }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .tier.featured::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 7px;
    bottom: 7px;
    width: 5px;
    background: var(--primary);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(31, 79, 208, 0.3);
  }
  .pricing-card { overflow: visible; }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === Examples intro === */
  .ex-intro {
    padding: 56px 0 32px;
  }
  .ex-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 40px;
  }
  .ex-intro-content { max-width: 720px; }
  .ex-intro-visual {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Annotation card — a contract risk flagged inline */
  .annotation {
    position: relative;
    width: 320px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 16px 18px 18px 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transform: rotate(-2.5deg);
    opacity: 0;
    animation: anno-in 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high, #dc2626);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 3px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high, #dc2626);
    color: white;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--text-secondary);
    padding-left: 10px;
    border-left: 2px solid var(--divider);
    margin: 0 0 10px;
  }
  .annotation-why {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.45;
    margin: 0;
  }
  .annotation-why strong {
    font-weight: 700;
    color: var(--primary);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(16px) scale(0.96); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }

  @media (max-width: 980px) {
    .ex-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .annotation { margin: 0 auto; }
  }

  .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.08);
  }
  .intro-eyebrow-mark { color: var(--primary); font-weight: 700; }
  h1.page-title {
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 22px;
    color: var(--text-primary);
  }
  .title-mark { color: var(--primary); }
  .page-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0;
  }

  .hbr-callout {
    margin-top: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 32px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
  }
  .hbr-stat {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--primary);
  }
  .hbr-pct { font-size: 36px; color: var(--text-tertiary); font-weight: 600; margin-left: 2px; }
  .hbr-text { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
  .hbr-text strong { color: var(--text-primary); font-weight: 700; }

  /* === Scenarios carousel (Option 3) === */
  .scenarios-carousel {
    padding: 24px 0 64px;
  }
  .scenario-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .scenario-tab {
    appearance: none;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    color: var(--text-secondary);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.005em;
    flex-shrink: 0;
  }
  .scenario-tab-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 700;
  }
  .scenario-tab:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
  }
  .scenario-tab--active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  .scenario-tab--active .scenario-tab-num { color: rgba(255,255,255,0.65); }
  .scenario-tab--active:hover { color: white; border-color: var(--primary); }

  .scenario-stage {
    position: relative;
    min-height: 380px;
  }
  .scenario-panel {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: none;
  }
  .scenario-panel--active { display: block; }

  .scenario-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--divider);
    background: var(--bg-default);
  }
  .scenario-num {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .scenario-persona {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    line-height: 1.3;
  }
  .scenario-topic {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 3px;
    letter-spacing: -0.005em;
  }
  .scenario-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .scenario-side {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    background: var(--bg-paper);
  }
  .scenario-side--without {
    border-right: 1px solid var(--divider);
  }
  .side-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-tertiary);
  }
  .side-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }
  .scenario-side--without .side-label { color: var(--text-secondary); }
  .scenario-side--with .side-label { color: var(--primary); }
  .side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .side-list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .side-list li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 5px;
  }
  .scenario-side--without .side-list li::before {
    width: 8px;
    height: 1.5px;
    background: var(--text-tertiary);
    border-radius: 1px;
    margin-top: 10px;
    margin-left: 4px;
  }
  .scenario-side--with .side-list li::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-top: 2px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
  }
  .scenario-side--with .side-list li { color: var(--text-primary); font-weight: 500; }
  .side-cost {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
  }
  .cost-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 999px;
  }
  .cost-label {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--risk-high, #dc2626);
    opacity: 0.8;
  }
  .cost-amount {
    font-size: 13px;
    font-weight: 700;
    color: var(--risk-high, #dc2626);
    letter-spacing: -0.01em;
  }

  /* Closing block */
  .ex-closing {
    padding: 48px 0 96px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .closing-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--text-primary);
  }
  .closing-emphasis { color: var(--primary); }
  .closing-lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 auto 24px;
    max-width: 560px;
  }
  .closing-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .closing-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 12px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.06);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.005em;
  }
  .tag-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
  }
  .closing-cta {
    display: flex;
    justify-content: center;
  }

  @media (max-width: 760px) {
    .hbr-callout { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
    .hbr-stat { font-size: 56px; }
    .scenario-body { grid-template-columns: 1fr; }
    .scenario-side--without { border-right: none; border-bottom: 1px solid var(--divider); }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === PRICING PAGE CSS === */

  /* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* No background dot pattern on this page */

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 78%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: var(--secondary);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 48px 0 32px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .trust-item svg { width: 14px; height: 14px; opacity: 1; color: var(--text-primary); }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .tier.featured::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 7px;
    bottom: 7px;
    width: 5px;
    background: var(--primary);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(31, 79, 208, 0.3);
  }
  .pricing-card { overflow: visible; }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === Pricing intro === */
  .pricing-intro {
    padding: 56px 0 24px;
    max-width: 760px;
  }
  .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.08);
  }
  .intro-eyebrow-mark { color: var(--primary); font-weight: 700; }
  h1.page-title {
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0 0 20px;
    color: var(--text-primary);
  }
  .title-mark { color: var(--primary); }
  .page-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0;
  }

  /* === Billing toggle === */
  .billing-toggle-section {
    padding: 8px 0 24px;
  }
  .billing-toggle {
    display: inline-flex;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 5px;
    gap: 2px;
  }
  .billing-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--text-secondary);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .billing-btn:hover { color: var(--text-primary); }
  .billing-btn--active {
    background: var(--primary);
    color: white;
  }
  .billing-btn--active:hover { color: white; }
  .billing-save {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.15);
    color: #d97706;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .billing-btn--active .billing-save {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  /* === Pricing grid === */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 0 24px;
    align-items: stretch;
  }
  .tier-card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.15s, transform 0.15s;
  }
  .tier-card:hover {
    border-color: var(--border-strong);
  }
  .tier-card--featured {
    border-color: var(--primary);
    border-width: 2px;
    padding: 27px 25px 29px;
    box-shadow: 0 18px 48px rgba(31, 79, 208, 0.12), 0 4px 14px rgba(15, 23, 42, 0.05);
  }
  .tier-card-head { margin-bottom: 20px; }
  .tier-card-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .tier-card-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }
  .tier-tag {
    display: inline-flex;
    padding: 3px 8px 2px;
    border-radius: 5px;
    background: var(--primary);
    color: white;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .tier-card-lead {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
  }
  .tier-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
  }
  .price-currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
  }
  .price-num {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
  }
  .price-unit {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-left: 8px;
    font-weight: 500;
  }
  .tier-card-billing {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }
  .tier-card-quota {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    margin-bottom: 20px;
  }
  .quota-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .quota-icon {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
  }
  .btn-tier {
    width: 100%;
    justify-content: center;
    margin-bottom: 22px;
  }
  .btn-outline {
    background: var(--bg-paper);
    color: var(--text-primary);
    border: 1px solid var(--border-strong, #cbd5e1);
    padding: 10px 18px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s, border-color 0.15s;
  }
  .btn-outline:hover {
    background: var(--bg-default);
    border-color: var(--text-tertiary);
  }
  .tier-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .tier-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-secondary);
  }
  .feat-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
    margin-top: 2px;
  }

  /* === Fineprint row === */
  .pricing-fineprint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 0 56px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-tertiary);
  }
  .fineprint-item { display: inline-flex; align-items: center; gap: 6px; }
  .fineprint-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--risk-low, #16a34a);
  }
  .fineprint-sep { opacity: 0.5; user-select: none; }

  /* === Enterprise band === */
  .enterprise-band {
    padding: 0 0 80px;
  }
  .enterprise-band-inner {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  .enterprise-band-text { max-width: 640px; }
  .enterprise-band-eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }
  .enterprise-band-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 8px;
    color: white;
  }
  .enterprise-band-lead {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
  }
  .enterprise-band .btn-primary {
    background: white;
    color: var(--primary);
    flex-shrink: 0;
  }
  .enterprise-band .btn-primary:hover {
    background: rgba(255, 255, 255, 0.92);
  }

  /* === Discounts === */
  .discounts {
    padding: 0 0 80px;
  }
  .discounts-head {
    text-align: center;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .discounts-head .intro-eyebrow {
    margin-bottom: 18px;
  }
  .discounts-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--text-primary);
  }
  .discounts-lead {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
  }
  .discount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .discount-card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
  }
  .discount-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
  }
  .discount-icon svg { width: 22px; height: 22px; }
  .discount-icon--mil { background: rgba(31, 79, 208, 0.08); color: var(--primary); }
  .discount-icon--edu { background: rgba(124, 58, 237, 0.08); color: var(--secondary, #7c3aed); }
  .discount-icon--partner { background: rgba(217, 119, 6, 0.1); color: #d97706; }
  .discount-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin: 0 0 8px;
  }
  .discount-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 18px;
    flex: 1;
  }
  .discount-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.15s;
    align-self: flex-start;
  }
  .discount-link:hover { gap: 10px; }

  @media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .discount-grid { grid-template-columns: 1fr; }
    .enterprise-band-inner { grid-template-columns: 1fr; }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === FAQ PAGE CSS === */

  /* === ContractsIQ — site styles (design tokens in css/tokens.css) === */
  /* Design tokens centralized in css/tokens.css (loaded first). */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    color: var(--text-primary);
    background: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    overflow-x: hidden;
  }

  /* === Page chrome === */
  .page {
    position: relative;
    min-height: 100vh;
    background: var(--bg-default);
  }

  /* No background dot pattern on this page */

  .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === Nav === */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 20px; height: 20px; display: block; }
  .nav-brand { color: var(--text-primary); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* === Buttons === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--divider);
  }
  .btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .btn-arrow {
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* === Hero === */
  .hero {
    padding: 64px 0 80px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    letter-spacing: -0.005em;
  }
  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(31, 79, 208, 0.05); }
  }

  /* Bento grid */
  .bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }

  /* Left tile — headline */
  .headline-tile {
    padding: 8px 0;
  }
  h1.headline {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
  }
  .headline-line2 {
    display: inline-block;
    position: relative;
    color: var(--primary);
    margin-top: 4px;
  }
  .squiggle {
    position: absolute;
    left: 2%;
    bottom: -16px;
    width: 78%;
    height: 20px;
    pointer-events: none;
  }
  .squiggle path {
    stroke: var(--secondary);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }

  .headline-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 48px 0 32px;
    font-weight: 400;
  }
  .headline-sub strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .cta-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    flex-wrap: wrap;
  }
  .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .trust-item svg { width: 14px; height: 14px; opacity: 1; color: var(--text-primary); }

  /* Stats — inline pill chips, not a row of cards */
  .stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--divider);
    align-items: stretch;
  }
  .stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid var(--divider);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; border-right: none; }
  .stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-left: 2px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.35;
    max-width: 140px;
  }

  /* === Right column cards === */
  .cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover {
    border-color: var(--border-strong);
  }

  /* Pricing card */
  .pricing-card .card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .card-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2px 0 0;
  }
  .pricing-tiers {
    padding: 0;
  }
  .tier {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    transition: background 0.15s;
  }
  .tier:last-of-type { border-bottom: none; }
  .tier:hover { background: var(--bg-subtle); }
  .tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(31, 79, 208, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 400;
  }
  .tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: right;
  }
  .tier-price .price-unit {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 1px;
  }
  .tier.featured {
    position: relative;
    background: rgba(31, 79, 208, 0.03);
    padding-left: 22px;
  }
  .tier.featured::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 7px;
    bottom: 7px;
    width: 5px;
    background: var(--primary);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(31, 79, 208, 0.3);
  }
  .pricing-card { overflow: visible; }

  /* === Floating in-product annotation === */
  .annotation {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 290px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 13px 16px 14px 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    animation: anno-in 0.7s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .annotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--risk-high);
  }
  .annotation-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .annotation-pill {
    display: inline-flex;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .annotation-ref {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }
  .annotation-clause {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 9px;
    border-left: 2px solid var(--divider);
    margin: 0 0 9px;
  }
  .annotation-why {
    font-size: 11.5px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .annotation-why strong {
    font-weight: 600;
    color: var(--risk-high);
  }
  @keyframes anno-in {
    from { opacity: 0; transform: rotate(0deg) translateY(12px) scale(0.95); }
    to { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
  }
  @media (max-width: 1180px) {
    .annotation { display: none; }
  }
  .card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 8px; }

  /* Risk card — styled like the product's risk callouts */
  .risk-card .card-header {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .risk-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .risk-header-left .card-title { margin: 0; line-height: 1; }
  .risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 2px;
    border-radius: 4px;
    background: var(--risk-high);
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .risk-rows {
    padding: 0;
  }
  .risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
  }
  .risk-row:last-of-type { border-bottom: none; }
  .risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .risk-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
  }
  .risk-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--risk-high);
    letter-spacing: -0.01em;
    background: var(--risk-high-tint);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .risk-resolve {
    padding: 14px 22px;
    background: rgba(31, 79, 208, 0.04);
    border-top: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .resolve-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .resolve-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .resolve-check svg { width: 11px; height: 11px; }
  .resolve-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .strikethrough {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
  }

  /* Staggered entrance */
  .reveal { opacity: 0; transform: translateY(8px); animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
  .headline { opacity: 0; animation: reveal 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub, .cta-row, .trust-row { opacity: 0; animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .headline-sub { animation-delay: 0.5s; }
  .cta-row { animation-delay: 0.6s; }
  .trust-row { animation-delay: 0.7s; }
  .stats { opacity: 0; animation: reveal 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .pricing-card { opacity: 0; animation: reveal 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .risk-card { opacity: 0; animation: reveal 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

  /* Responsive — collapse to single column */
  @media (max-width: 980px) {
    .bento { grid-template-columns: 1fr; }
    .stats { flex-wrap: wrap; }
    h1.headline { font-size: 56px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    h1.headline { font-size: 44px; }
    .stat { padding: 0 16px; }
  }

  /* === FAQ intro === */
  .faq-intro {
    padding: 56px 0 32px;
    max-width: 760px;
  }
  .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(31, 79, 208, 0.18);
    border-radius: 999px;
    background: rgba(31, 79, 208, 0.08);
  }
  .intro-eyebrow-mark { color: var(--primary); font-weight: 700; }
  h1.page-title {
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0 0 20px;
    color: var(--text-primary);
  }
  .title-mark { color: var(--primary); }
  .page-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0;
  }
  .page-lead-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.15s;
  }
  .page-lead-link:hover { text-decoration: underline; }

  /* Category quick-jump pills */
  .cat-jump {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: border-color 0.15s, color 0.15s;
  }
  .cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  .cat-pill-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 700;
  }
  .cat-pill:hover .cat-pill-num { color: var(--primary); }

  /* === FAQ categories === */
  .faq-sections {
    padding: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }
  .faq-category { scroll-margin-top: 24px; }
  .faq-cat-head {
    margin-bottom: 16px;
  }
  .faq-cat-eyebrow {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .cat-num {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: -0.01em;
  }
  .faq-cat-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
  }

  /* === FAQ accordion items === */
  .faq-list {
    display: flex;
    flex-direction: column;
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .faq-item {
    border-top: 1px solid var(--divider);
  }
  .faq-item:first-child { border-top: none; }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-item:not([open]) .faq-q:hover { background: var(--bg-default); }
  .faq-q-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .faq-q-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-default);
    border: 1px solid var(--divider);
    position: relative;
    transition: background 0.15s, border-color 0.15s, transform 0.2s;
  }
  .faq-q-icon::before,
  .faq-q-icon::after {
    content: "";
    position: absolute;
    background: var(--text-secondary);
    border-radius: 1px;
  }
  .faq-q-icon::before {
    /* horizontal */
    left: 7px;
    right: 7px;
    top: 50%;
    height: 1.5px;
    transform: translateY(-50%);
  }
  .faq-q-icon::after {
    /* vertical */
    top: 7px;
    bottom: 7px;
    left: 50%;
    width: 1.5px;
    transform: translateX(-50%);
    transition: opacity 0.2s;
  }
  .faq-item[open] .faq-q-icon {
    background: var(--primary);
    border-color: var(--primary);
  }
  .faq-item[open] .faq-q-icon::before,
  .faq-item[open] .faq-q-icon::after {
    background: white;
  }
  .faq-item[open] .faq-q-icon::after { opacity: 0; }
  .faq-a {
    padding: 6px 22px 22px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 780px;
  }

  /* === Still stuck CTA === */
  .faq-still-stuck {
    padding: 24px 0 96px;
  }
  .still-stuck-inner {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  .still-stuck-text { max-width: 580px; }
  .still-stuck-text .intro-eyebrow { margin-bottom: 14px; }
  .still-stuck-title {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 8px;
    color: var(--text-primary);
  }
  .still-stuck-lead {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
  }

  @media (max-width: 760px) {
    .still-stuck-inner { grid-template-columns: 1fr; }
    .cat-jump { flex-direction: column; align-items: stretch; }
    .cat-pill { justify-content: center; }
  }

  /* === Lead capture band === */
  .lead-capture {
    background: var(--bg-paper);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 28px 0;
  }
  .lead-capture-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .lead-text h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
    color: var(--text-primary);
  }
  .lead-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
  }
  .lead-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lead-input {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    width: 280px;
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input::placeholder { color: var(--text-tertiary); }
  .lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 79, 208, 0.1);
  }

  /* === Final CTA === */
  .final-cta {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 104px 0 112px;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: white;
  }
  .final-cta .underlined {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .highlight-marker {
    position: absolute;
    left: -3%;
    top: 14%;
    width: 106%;
    height: 86%;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-1.2deg);
    filter: blur(0.6px);
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .btn-white {
    background: white;
    color: var(--primary);
  }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
  }

  /* === Footer === */
  .site-footer {
    background: var(--bg-default);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider);
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
  }
  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--primary); }
  .footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--divider);
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    transition: all 0.15s;
  }
  .footer-social a:hover {
    color: var(--primary);
    background: var(--bg-selected);
  }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-enterprise {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
  .footer-enterprise:hover { gap: 8px; }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .lead-capture-inner { flex-direction: column; align-items: flex-start; }
    .lead-form { width: 100%; }
    .lead-input { flex: 1; }
  }


/* === SPA + Mobile Nav + Sticky Strip === */
.page-view { display: none; }
.page-view.is-active { display: block; }

/* When inside the .container, page-view follows the container width.
   The home hero uses negative-bleed elements (right-bleed cards, dot pattern)
   so the page-view wrapping it must allow overflow. */
.page-view#page-home { overflow: visible; }

/* Mobile nav button */
.mobile-nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--text-primary);
}
.mobile-nav-toggle svg { width: 24px; height: 24px; display: block; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--bg-paper);
  padding: 24px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-drawer-close {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--text-secondary);
}
.mobile-drawer-close svg { width: 22px; height: 22px; display: block; }
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
}
.mobile-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mobile-drawer-links a:last-child { border-bottom: none; }
.mobile-drawer-links a:hover { color: var(--primary); }
.mobile-drawer-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-cta .btn { width: 100%; justify-content: center; }

/* Sticky trial strip */
.trial-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #0f172a;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.18);
  padding: 14px 24px 14px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.trial-strip.is-dismissed {
  transform: translateY(110%);
  pointer-events: none;
}
.trial-strip-text {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}
.trial-strip-title {
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.trial-strip-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
}
.trial-strip-cta {
  flex-shrink: 0;
  background: white !important;
  color: #0f172a !important;
}
.trial-strip-cta:hover {
  background: rgba(255, 255, 255, 0.92) !important;
}
.trial-strip-close {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.trial-strip-close:hover { background: rgba(255, 255, 255, 0.1); color: white; }
.trial-strip-close svg { width: 18px; height: 18px; display: block; }

/* Add padding to body to account for sticky strip */
body { padding-bottom: 72px; }

/* Hide trial strip on small mobile */
@media (max-width: 600px) {
  .trial-strip { gap: 12px; padding: 12px 14px 12px 18px; }
  .trial-strip-text { gap: 6px; }
  .trial-strip-title { font-size: 13.5px; }
  .trial-strip-sub { display: none; }
  body { padding-bottom: 64px; }
}

/* Mobile nav breakpoint */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .mobile-nav-toggle { display: inline-flex; }
}

/* Prevent body scroll when drawer is open */
body.drawer-open { overflow: hidden; }

.mobile-drawer-links a > span:first-child { display: inline-block; }
.drawer-arrow { color: var(--text-tertiary); font-weight: 600; }
.mobile-drawer-links a:hover .drawer-arrow { color: var(--primary); }

/* === FINAL OVERRIDES === */
/* Squiggle must be amber on homepage (other pages CSS was overriding) */
.squiggle path { stroke: #d97706 !important; }

/* Logo link should not be underlined */
a.logo { text-decoration: none; color: inherit; }
a.logo:hover { text-decoration: none; }

/* Examples page annotation card — restore positioning (later pages' CSS overrode it) */
.ex-intro-visual .annotation {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  width: 320px !important;
  display: block !important;
  transform: rotate(-2.5deg);
  opacity: 0;
  animation: anno-in 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (max-width: 980px) {
  .ex-intro-visual .annotation { margin: 0 auto !important; }
}

/* Annotation "why" emphasis must be primary blue on Examples (other pages' CSS made it red) */
.ex-intro-visual .annotation-why strong { color: var(--primary) !important; }

/* Lead-capture subscribe — success state */
.lead-form[hidden] { display: none; }
.lead-success {
  font-size: 14px;
  font-weight: 600;
  color: var(--risk-low);
  margin: 0;
}

/* === Design system alignment ===
   Brings marketing section/page titles to the product's heading weight
   (h1/h2 = 700, tracking -0.02em) and snaps a couple of off-scale values
   to the token scale. The hero .headline keeps weight 800 by design. */
h1.page-title,
.platform-title,
.discounts-title,
.closing-title,
.enterprise-band-title,
.still-stuck-title,
.final-cta h2 {
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
}
.headline-sub { font-size: var(--fs-subtitle1); }
.annotation { box-shadow: var(--shadow-lg); }

/* === Final CTA — dot texture removed === */
.final-cta::before { display: none; }

/* === Hero dot-grid texture removed === */
.hero::before { display: none; }

/* === Footer "Looking for Enterprise" — animate the arrow, not the gap.
   The gap change resized the link, which shoved the social icons. === */
.footer-enterprise:hover { gap: 4px; }
.footer-enterprise span {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}
.footer-enterprise:hover span { transform: translateX(3px); }