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

  :root {
    --bg: #fafaf8;
    --surface: #ffffff;
    --border: #e8e6e1;
    --border2: #d4d1cb;
    --ink: #1a1814;
    --ink2: #3d3a35;
    --ink3: #5f5953;
    --ink4: #706962;
    --accent: #1a3a8f;
    --accent2: #2952c4;
    --accent-light: #eef2fc;
    --warn: #92400e;
    --warn-bg: #fef3c7;
    --success: #065f46;
    --success-bg: #d1fae5;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── Nav ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }

  .logo em {
    color: #4f72c9;
    font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", "Lucida Handwriting", cursive;
    font-size: 2.25em;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    margin: 0 -2px 0 -8px;
    position: relative;
    top: 7px;
    display: inline-block;
    transform: rotate(-6deg);
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }

  .nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    color: var(--ink2);
    text-decoration: none;
    transition: color 0.15s;
  }

  .nav-link:hover { color: var(--ink); }

  .nav-cta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    letter-spacing: -0.01em;
  }

  .nav-cta:hover { background: var(--ink); }

  /* ── Hero ── */
  .hero {
    padding: 160px 48px 100px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .hero-main {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(280px, 1fr);
    gap: 40px;
    align-items: center;
    overflow: visible;
  }

  .hero-copy {
    min-width: 0;
  }

  .eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(52px, 7vw, 84px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 32px;
    max-width: 820px;
  }

  h1 strong { font-weight: 700; }

  .hero-two {
    color: #4f72c9;
  }

  .hero-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 22px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 48px;
  }

  .inline-logo {
    display: inline-flex;
    align-items: baseline;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.98em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
  }

  .inline-logo em {
    color: #4f72c9;
    font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", "Lucida Handwriting", cursive;
    font-size: 1.75em;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    margin: 0 -1px 0 -5px;
    position: relative;
    top: 4px;
    display: inline-block;
    transform: rotate(-6deg);
  }

  .hero-orbit {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1 / 1;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    background:
      radial-gradient(circle at center,
        rgba(190, 24, 64, 0.14) 0 16%,
        rgba(255, 255, 255, 0.84) 16% 31%,
        rgba(190, 24, 64, 0.1) 31% 48%,
        rgba(250, 250, 248, 0.92) 48% 66%,
        rgba(190, 24, 64, 0.08) 66% 100%
      ),
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,250,248,0.92));
    overflow: visible;
  }

  .hero-chip {
    position: absolute;
    left: 0;
    top: 0;
    width: 84px;
    height: 100px;
    padding: 12px 9px 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,248,0.94));
    border: 2px solid #93c5fd;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(26,24,20,0.06);
    pointer-events: none;
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }

  .hero-chip::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #f5f2ec;
    border-left: 2px solid #93c5fd;
    border-bottom: 2px solid #93c5fd;
  }

  .hero-chip::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f5f2ec 0 50%, rgba(255,255,255,0) 50% 100%);
    box-shadow: inset 0 -2px 0 #93c5fd;
  }

  .hero-chip-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(61,58,53,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .hero-chip-icon {
    width: 20px;
    height: 20px;
    display: block;
  }

  .hero-chip-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    z-index: 1;
    min-height: 28px;
  }

  .hero-chip-ext {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-top: auto;
    position: relative;
    z-index: 1;
  }

  .hero-chip.use-cases .hero-chip-icon-wrap { background: #eff6ff; }
  .hero-chip.prds .hero-chip-icon-wrap { background: #f0fdf4; }
  .hero-chip.journeys .hero-chip-icon-wrap { background: #f5f3ff; }
  .hero-chip.flows .hero-chip-icon-wrap { background: #fffbeb; }
  .hero-chip.bpmn .hero-chip-icon-wrap { background: #fff1f2; }
  .hero-chip.jira .hero-chip-icon-wrap { background: #eff6ff; }

  .hero-chip.use-cases,
  .hero-chip.prds,
  .hero-chip.journeys,
  .hero-chip.flows,
  .hero-chip.bpmn,
  .hero-chip.jira { border-color: #93c5fd; }

  /* ── Waitlist ── */
  .waitlist-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .waitlist-input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    width: 280px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .waitlist-input:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(41, 82, 196, 0.1);
  }

  .waitlist-input::placeholder { color: var(--ink4); }

  .waitlist-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: -0.01em;
  }

  .waitlist-btn:hover { background: var(--ink); }

  .waitlist-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-note {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    color: var(--ink4);
  }

  .success-msg {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
    background: var(--success-bg);
    border-radius: 6px;
    padding: 10px 16px;
    width: fit-content;
  }

  .how-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink4);
    padding-top: 6px;
  }

  .process-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 36px;
  }

  .process-step {
    position: relative;
    padding-top: 0;
  }

  .process-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent2), rgba(41, 82, 196, 0.18));
  }

  .process-step-n {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink4);
    margin-bottom: 18px;
  }

  .process-step h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--ink);
  }

  .process-step p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.55;
  }

  /* ── Initiatives banner ── */
  .initiatives-banner {
    display: block;
    width: 100%;
    background: #f3f1ec;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
  }

  .initiatives-banner:hover { background: #ece9e2; }

  .initiatives-banner:hover .initiatives-banner-link { color: var(--ink); }

  .initiatives-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .initiatives-banner-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent2);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 10px;
    flex-shrink: 0;
  }

  .initiatives-banner-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    color: var(--ink2);
    margin: 0;
    flex: 1 1 auto;
    min-width: 200px;
  }

  .initiatives-banner-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.15s ease;
  }

  .initiatives-banner-link:hover { color: var(--ink); }

  @media (max-width: 720px) {
    .initiatives-banner { margin-bottom: 36px; }
    .initiatives-banner-inner { padding: 14px 24px; gap: 12px; }
    .initiatives-banner-text { font-size: 14px; }
  }

  /* ── Matrix ── */
  .matrix-section {
    background:
      radial-gradient(circle at top right, rgba(41, 82, 196, 0.1), rgba(41, 82, 196, 0) 34%),
      linear-gradient(180deg, rgba(238, 242, 252, 0.96), rgba(250, 250, 248, 0.98) 26%, var(--bg) 100%);
    padding: 44px 48px 72px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-top: 1px solid rgba(41, 82, 196, 0.14);
    border-bottom: 1px solid rgba(41, 82, 196, 0.1);
    overflow: hidden;
  }

  .matrix-inner {
    position: relative;
    z-index: 2;
    position: sticky;
    top: 132px;
  }

  .section-header {
    display: block;
    margin-bottom: 28px;
    align-items: start;
  }

  .section-header .label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 12px;
    padding-top: 10px;
  }

  .section-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ink);
    max-width: 680px;
  }

  .section-header h2 strong { font-weight: 700; }

  .section-header p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 17px;
    color: var(--ink3);
    line-height: 1.6;
    max-width: 680px;
  }

  /* Node graph */
  .flow-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(41, 82, 196, 0.16);
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(26, 58, 143, 0.08);
    overflow-x: auto;
    padding: 28px 28px 24px;
  }

  .replay-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }

  .replay-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink3);
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  }

  .replay-btn:hover {
    color: var(--ink);
    border-color: var(--ink3);
    background: #fafaf8;
  }

  .flow-svg {
    display: block;
    min-width: 720px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }

  .flow-shift {
    transition: transform 0.6s ease;
  }

  .base-build {
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .flow-svg.stage-0 .base-build.visible,
  .flow-svg.stage-1 .base-build,
  .flow-svg.stage-2 .base-build {
    opacity: 1;
  }

  .flow-svg.james-expanded .collect-col,
  .flow-svg.james-expanded .approve-col,
  .flow-svg.james-expanded .close-col {
    transform: translateX(62px);
  }

  .flow-svg.linda-expanded .approve-col,
  .flow-svg.linda-expanded .close-col {
    transform: translateX(124px);
  }

  /* Quote row — integrated quotes above the grid */
  .quote-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    min-height: 150px;
    padding-bottom: 28px;
    transition: min-height 0.7s ease;
  }

  .synthesis-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0 0 24px;
  }

  .quote-row.stage-1 { min-height: 230px; }
  .quote-row.stage-2 { min-height: 310px; }

  .quote-card {
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    position: relative;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.7s ease, opacity 0.7s ease, transform 0.7s ease, margin-top 0.7s ease;
  }

  .quote-card:nth-child(1) { z-index: 1; }
  .quote-card:nth-child(2) { z-index: 2; }
  .quote-card:nth-child(3) { z-index: 3; }

  .quote-card.card-visible {
    max-height: 220px;
    pointer-events: auto;
    margin-top: 18px;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .quote-card:first-child.card-visible { margin-top: 0; }

  .quote-card.active { z-index: 10; }

  .quote-who {
    padding: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
  }

  .quote-body {
    padding: 0;
  }

  .quote-who {
    display: flex;
    align-items: center;
    gap: 10px;
  }


  .quote-who > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .avatar-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
  }

  .avatar-name::after { content: ","; font-weight: 400; color: var(--ink4); }

  .avatar-role {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    color: var(--ink3);
    white-space: nowrap;
  }

  .quote-text {
    font-size: 18px;
    color: var(--ink2);
    line-height: 1.86;
    font-style: normal;
    letter-spacing: -0.01em;
    max-width: none;
  }

  .stream-token {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(8px);
    transition:
      opacity 0.5s ease,
      filter 0.6s ease,
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--stream-index) * 44ms);
  }

  .text-token,
  .mark-token {
    display: inline-block;
  }

  .quote-card.streaming .stream-token,
  .quote-card.streamed .stream-token {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .quote-step-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink4);
  }

  .divergence-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #92400e;
    background: var(--warn-bg);
    border: 1px solid #f5c97a;
    border-radius: 4px;
    padding: 3px 8px;
    width: fit-content;
  }

  .matrix-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 13px;
    color: var(--ink4);
    margin-top: 24px;
    font-style: italic;
  }

  /* ── Graph animation ── */
  .james-layer, .linda-layer {
    opacity: 0;
    transform: translateY(8px);
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .james-layer.visible, .linda-layer.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .base-arrow-swap { transition: opacity 0.6s ease; }
  .base-arrow-swap.hidden { opacity: 0; }

  /* Step highlight bubbles — match node colors */
  mark {
    display: inline;
    white-space: nowrap;
    border-radius: 3px;
    padding: 0 4px;
    margin: 1px 0;
    font-style: normal;
    border: none;
    transition: background 0.6s ease, color 0.6s ease;
  }
  mark.unlit {
    background: transparent !important;
    color: inherit !important;
  }
  .step-blue,
  .step-green,
  .step-violet,
  .step-rose,
  .step-amber,
  .step-slate {
    background: linear-gradient(180deg, rgba(249, 200, 153, 0) 5%, #f9c899 38%);
    color: var(--ink);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.55);
  }

  /* Graph node pulse */
  @keyframes nodePulse {
    0%   { stroke-width: 1.5; }
    35%  { stroke-width: 4; }
    100% { stroke-width: 1.5; }
  }
  rect.node-active { animation: nodePulse 0.9s ease forwards; }

  /* ── Comparison ── */
  .comparison-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 48px 112px;
  }

  .comparison-section .section-header { margin-bottom: 48px; }

  .comp-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    max-width: 920px;
    margin: 0 auto;
  }

  .comp-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 580px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 13px;
  }

  /* Column group headers */
  .comp-table .col-group {
    padding: 14px 18px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    vertical-align: bottom;
    white-space: normal;
  }

  .col-group-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--ink2);
    margin-bottom: 3px;
  }

  .col-group-label sup {
    font-size: 10px;
    line-height: 1;
    vertical-align: top;
    margin-left: 2px;
  }

  .col-group.capability-col {
    color: var(--ink4);
    background: #ffffff;
    width: 34%;
    border-right: 1px solid var(--border);
  }

  .col-group.industry-col {
    color: var(--ink3);
    text-align: center;
    background: #ffffff;
    width: 16.5%;
  }

  .col-group.ours-col {
    color: var(--accent);
    text-align: center;
    background: #f0f4ff;
    width: 16.5%;
    border-left: 2px solid #c7d5f8;
    vertical-align: middle;
  }

  .col-group.ours-col .col-group-label {
    color: var(--accent);
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .col-group.ours-col .inline-logo {
    font-size: 1.16em;
    position: relative;
    top: -5px;
  }

  /* Rows */
  .comp-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    line-height: 1.4;
    color: var(--ink2);
    background: #ffffff;
  }

  .comp-table tr:last-child td {
    padding-bottom: 24px;
    border-bottom: none;
  }

  .comp-table td.capability-cell {
    font-size: 13px;
    color: var(--ink2);
    background: #ffffff;
    font-weight: 500;
    text-align: right;
    border-right: 1px solid var(--border);
  }

  .comp-table td.industry-cell {
    text-align: center;
    color: var(--ink4);
    width: 16.5%;
  }

  .comp-table td.ours-cell {
    text-align: center;
    background: #f0f4ff;
    width: 16.5%;
    border-left: 2px solid #c7d5f8;
    font-weight: 600;
  }

  .check {
    display: inline-block;
    width: 1em;
    text-align: center;
    color: #059669;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }
  .cross { color: #d1cdc7; font-size: 15px; }
  .partial-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    color: #059669;
    font-weight: 600;
  }

  .partial-note .asterisk {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 10px;
    line-height: 1;
    color: var(--ink4);
  }

  .comparison-footnotes {
    margin-top: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink4);
    text-align: right;
  }

  .comparison-footnotes p {
    margin: 0;
  }

  .gap-callout svg { flex-shrink: 0; }

  /* ── Bottom CTA ── */
  .bottom-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 48px;
  }

  .bottom-cta h2 {
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 32px;
    max-width: 600px;
  }

  .bottom-cta h2 strong { font-weight: 700; }

  .bottom-cta p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink3);
    max-width: 60ch;
    margin-bottom: 24px;
  }

  /* ── Footer ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  footer p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 13px;
    color: var(--ink4);
    text-align: center;
  }

  @media (max-width: 720px) {
    nav { padding: 16px 24px; }
    .nav-right { gap: 16px; }
    .hero { padding: 120px 24px 72px; }
    .hero-main { grid-template-columns: 1fr; gap: 28px; }
    .hero-orbit { margin: 0 auto; width: min(100%, 300px); }
    .hero-chip {
      width: 72px;
      height: 88px;
      padding: 11px 8px 9px;
    }
    .hero-chip-icon-wrap {
      width: 26px;
      height: 26px;
      border-radius: 8px;
    }
    .hero-chip-icon {
      width: 17px;
      height: 17px;
    }
    .hero-chip-title {
      font-size: 10px;
      min-height: 24px;
    }
    .hero-chip-ext {
      font-size: 9px;
    }
    .matrix-section, .comparison-section, .bottom-cta { padding: 64px 24px; grid-template-columns: 1fr; gap: 40px; }
    .section-header { grid-template-columns: 1fr; gap: 16px; }
    .process-strip { grid-template-columns: 1fr; gap: 18px; }
    footer { padding: 24px; }
    .waitlist-input { width: 100%; }
    .quote-card.card-visible { max-height: 260px; margin-top: 14px; }
    .quote-card:first-child.card-visible { margin-top: 0; }
    .quote-text { font-size: 16px; line-height: 1.78; max-width: none; }
    .matrix-section { min-height: auto; }
    .matrix-inner { position: relative; top: auto; }
  }
