    @font-face {
      font-family: "Feature Display Trial";
      src:
        local("Feature Display Trial"),
        local("FeatureDisplayTrial-Regular"),
        local("Feature Display Regular");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Aeonik";
      src:
        local("Aeonik Regular"),
        local("Aeonik-Regular"),
        local("Aeonik");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --white: #fcfcfc;
      --black: #181818;
      --bg: var(--white);
      --bg-hover: #f4f4f4;
      --bg-warm: #f6f6f6;
      --border: #e5e5e5;
      --grid-gap: 1px;
      --grid-stroke: var(--border);
      --grid-line: 1px solid var(--grid-stroke);
      --grid-line-dark: 1px solid rgba(252, 252, 252, 0.14);
      --text: var(--black);
      --text-muted: #5c5c5c;
      --text-light: #888888;
      --surface-dark: var(--black);
      --highlight: #4f70c5;
      --highlight-soft: #b8c4eb;
      --highlight-pale: #eaeef9;
      --accent-gradient: linear-gradient(180deg, var(--white) 0%, var(--highlight-soft) 50%, var(--highlight) 100%);
      --primary: var(--highlight);
      --primary-hover: #3f5dab;
      --primary-deep: #364fa0;
      --primary-soft: var(--highlight-soft);
      --primary-pale: var(--highlight-pale);
      --layout-max: 1328px;
      --site-padding: clamp(24px, 5.5vw, 52px);
      --grid-gutter: 24px;
      --nav-height: 75px;
      --font-sans: "Aeonik", system-ui, sans-serif;
      --font-heading: "Feature Display Trial", "Times New Roman", serif;
      --font-mono: "IBM Plex Mono", ui-monospace, monospace;
      --tracking-sans: -0.02em;
      --tracking-mono: -0.02em;
      --text-body: 16px;
      --leading-body: 1.5;
      --text-lead: 17px;
      --text-title-card: 16px;
      --text-caption: 14px;
      --text-meta: 13px;
      --text-section-h2: clamp(1.75rem, 4vw, 2.75rem);
      --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    html {
      scroll-behavior: auto;
      overflow-y: scroll;
    }

    body {
      font-family: var(--font-sans);
      font-size: var(--text-body);
      line-height: var(--leading-body);
      letter-spacing: var(--tracking-sans);
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }

    /* Standard Aeonik body copy under display headings */
    .section-header p,
    .platforms-intro p,
    .platform-header p,
    .feature-card p,
    .partner-card p,
    .stack-copy > p,
    .three-col-card p,
    .fireside-meta,
    .prose-section p,
    .special-header p,
    .trust-line,
    .compare-card p,
    .platform-card-foot .platform-card-desc {
      font-size: var(--text-body);
      line-height: var(--leading-body);
    }

    .font-mono,
    .section-label,
    .hero-eyebrow,
    .feature-visual,
    .stack-tab,
    .stack-visual-placeholder,
    .news-thumb,
    .news-tag,
    .footer-badge {
      letter-spacing: var(--tracking-mono);
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }

    .grid-12 {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0 var(--grid-gutter);
      width: 100%;
      max-width: var(--layout-max);
      margin-inline: auto;
    }

    /* Single outer shell — nav, main, and footer share one grid column */
    .site-shell {
      width: 100%;
      max-width: calc(var(--layout-max) + var(--site-padding) * 2);
      margin-inline: auto;
      padding-inline: var(--site-padding);
    }

    @media (min-width: 1024px) {
      :root {
        --site-padding: clamp(112px, 7.2vw, 128px);
      }
    }

    .col-12 { grid-column: 1 / -1; }

    .section-label,
    .site-section-label {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--highlight);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 500;
      line-height: 20px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: all 150ms var(--ease);
    }

    .btn-with-arrow {
      gap: 0;
      padding: 8px 11px 8px 16px;
    }

    .btn-with-arrow::after {
      content: "→";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.35em;
      line-height: 1;
      height: 1em;
      margin-left: 6px;
      margin-right: -1px;
      transform: translateY(-1.5px);
    }

    .btn-primary {
      background: var(--black);
      color: var(--white);
      box-shadow: none;
    }

    .btn-primary:hover {
      background: rgba(24, 24, 24, 0.85);
    }

    .btn-dark { background: var(--surface-dark); color: var(--white); }
    .btn-dark:hover { background: rgba(24, 24, 24, 0.85); }

    .btn-ghost {
      background: var(--border);
      color: var(--text);
    }
    .btn-ghost:hover {
      background: var(--text);
      color: var(--white);
    }

    .btn-outline {
      background: transparent;
      color: rgba(24, 24, 24, 0.45);
      padding: 6px 12px;
    }
    .btn-outline:hover {
      color: var(--black);
      background: rgba(24, 24, 24, 0.05);
    }

    .navbar .btn-outline:hover {
      color: var(--black);
      background: transparent;
    }

    .navbar .btn-outline {
      color: rgba(24, 24, 24, 0.58);
      padding: 6px 10px;
    }

    .navbar .btn {
      font-size: 11px;
      line-height: 16px;
      letter-spacing: 0.06em;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .navbar .btn-dark {
      min-width: 122px;
      flex-shrink: 0;
      padding: 6px 11px 6px 14px;
    }

    .navbar .btn-with-arrow {
      padding: 6px 9px 6px 14px;
    }

    /* Navbar */
    .navbar-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg);
    }

    .navbar {
      height: var(--nav-height);
      border-bottom: var(--grid-line);
      background: rgba(252, 252, 252, 0.85);
      backdrop-filter: blur(12px);
      transition: background 300ms var(--ease), border-color 300ms var(--ease);
    }

    .navbar-grid-wrap {
      height: 100%;
      width: 100%;
      max-width: calc(var(--layout-max) + var(--site-padding) * 2);
      margin-inline: auto;
      padding-inline: var(--site-padding);
    }

    @media (min-width: 1024px) {
      .navbar-grid-wrap {
        padding-inline: var(--site-padding);
      }
    }

    .navbar-grid {
      height: 100%;
      align-items: center;
      grid-template-columns: 1fr auto;
    }

    .navbar-col-brand,
    .navbar-col-actions {
      min-width: 0;
    }

    .navbar-col-brand {
      grid-column: 1;
      justify-self: start;
      white-space: nowrap;
    }

    .navbar-col-actions {
      grid-column: 2;
      justify-self: end;
      flex-wrap: nowrap;
      white-space: nowrap;
    }

    .navbar.scrolled {
      background: rgba(252, 252, 252, 0.95);
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo-full {
      display: block;
      height: 25.3px;
      width: auto;
    }

    @media (min-width: 900px) {
      .logo-full {
        height: 27.83px;
      }
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: nowrap;
      flex-shrink: 0;
    }

    @media (min-width: 900px) {
      .navbar .btn-outline {
        padding: 6px 12px;
      }

      .navbar .btn-with-arrow {
        padding: 6px 10px 6px 14px;
      }
    }

    @media (min-width: 1200px) {
      .nav-actions { gap: 8px; }

      .navbar .btn-outline {
        padding: 6px 14px;
      }

      .navbar .btn-with-arrow {
        padding: 6px 11px 6px 15px;
      }
    }

    /* Hero */
    .hero-shell {
      position: relative;
      left: 50%;
      width: 100vw;
      margin-left: -50vw;
      min-height: auto;
      margin-top: calc(-1 * var(--nav-height));
      overflow: visible;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(24, 24, 24, 0.03) 0%, transparent 62%),
        radial-gradient(ellipse 50% 40% at 20% 40%, rgba(79, 112, 197, 0.06) 0%, transparent 55%),
        var(--bg);
      pointer-events: none;
    }

    #hero .dither-ambient-wrap {
      background:
        radial-gradient(ellipse 95% 75% at 22% 28%, rgba(79, 112, 197, 0.1), transparent 64%),
        radial-gradient(ellipse 85% 65% at 78% 52%, rgba(24, 24, 24, 0.03), transparent 58%);
    }

    .hero-orbs {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.55;
      animation: float 18s ease-in-out infinite;
    }

    .orb-1 {
      width: 420px;
      height: 420px;
      background: rgba(252, 252, 252, 0.85);
      top: 10%;
      left: 15%;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 360px;
      height: 360px;
      background: rgba(79, 112, 197, 0.18);
      top: 30%;
      right: 10%;
      animation-delay: -6s;
    }

    .orb-3 {
      width: 280px;
      height: 280px;
      background: rgba(237, 237, 237, 0.9);
      bottom: 15%;
      left: 40%;
      animation-delay: -12s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.05); }
      66% { transform: translate(-20px, 15px) scale(0.95); }
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to right, var(--border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border) 1px, transparent 1px);
      background-size: calc(100% / 16) 64px;
      background-position: 0 0;
      mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
      opacity: 0.5;
      will-change: transform;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px 0;
      gap: 32px;
      width: 100%;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--highlight);
    }

    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 7vw, 4.5rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--black);
      max-width: 920px;
      text-wrap: balance;
    }

    .hero-desc {
      max-width: 688px;
      font-size: 17px;
      line-height: 1.5;
      color: var(--text-muted);
      text-wrap: balance;
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .hero-cta--center {
      align-items: center;
      width: 100%;
    }

    .hero-cta .btn {
      font-size: 13.2px;
      line-height: 19.2px;
      letter-spacing: 0.06em;
      font-weight: 500;
    }

    .hero-cta .btn-with-arrow {
      padding: 7.2px 10.8px 7.2px 16.8px;
    }
    .reveal {
      opacity: 0;
      transition: opacity 800ms var(--ease);
    }

    .reveal.visible {
      opacity: 1;
    }

    /* Rise only on hero copy — avoid translateY on filled blocks (shows parent gap) */
    .hero-content .reveal,
    .hero-dex-video-wrap.reveal {
      transform: translateY(16px);
      transition: opacity 800ms var(--ease), transform 800ms var(--ease);
    }

    .hero-content .reveal.visible,
    .hero-dex-video-wrap.reveal.visible {
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }

    /* Page shell */
    main {
      padding-top: 0;
    }

    .section {
      padding: 0;
    }

    .section--hero {
      padding: 0;
    }

    /* Bordered panel — one continuous column for page content */
    .panel {
      background: transparent;
    }

    @media (min-width: 1024px) {
      .panel {
        border-left: var(--grid-line);
        border-right: var(--grid-line);
      }
    }

    .site-section {
      scroll-margin-top: calc(var(--nav-height) + 16px);
      position: relative;
    }

    /* Full-bleed section dividers — one stroke, border-based (not background) */
    .panel > .site-section:has(> .section-header)::before {
      content: '';
      position: absolute;
      top: 0;
      left: calc(50% - 50vw);
      width: 100vw;
      height: 0;
      border-top: var(--grid-line);
      pointer-events: none;
      z-index: 2;
    }

    .panel > .site-section:has(> .security-header)::before {
      content: '';
      position: absolute;
      top: 0;
      left: calc(50% - 50vw);
      width: 100vw;
      height: 0;
      border-top: var(--grid-line);
      pointer-events: none;
      z-index: 2;
    }

    .panel > .site-section:has(> .section-header.section-header--dark)::before {
      border-top: var(--grid-line-dark);
    }

    .panel > .site-section.cta-section::before {
      content: none;
    }

    /* Drop bottom strokes when the next section’s full-bleed divider takes over */
    .site-section:has(+ .site-section > .section-header) > .product-teaser,
    .site-section:has(+ .site-section > .section-header) > .stack-section,
    .site-section:has(+ .site-section > .section-header) > .wall-of-love,
    .site-section:has(+ .site-section > .section-header) > .testimonials-wrap,
    .site-section:has(+ .site-section > .section-header) > .careers-list,
    .site-section:has(+ .site-section > .section-header) > .competitor-table-wrap,
    .site-section:has(+ .site-section > .section-header) > .feature-grid,
    .site-section:has(+ .site-section > .section-header) > .dex-how-grid,
    .site-section:has(+ .site-section > .section-header) > .partner-grid,
    .site-section:has(+ .site-section > .section-header) > .use-cases-split,
    .site-section:has(+ .site-section > .section-header) > .three-col-grid,
    .site-section:has(+ .site-section > .section-header) > .security-grid,
    .site-section:has(+ .site-section > .section-header) > .platforms-grid,
    .site-section:has(+ .site-section > .section-header) > .integration-marquee,
    .site-section:has(+ .site-section > .section-header) > .prose-section,
    .site-section:has(+ .site-section > .section-header) > .trust-line {
      border-bottom: none;
    }

    .site-section:has(+ .site-section > .section-header) > .competitor-table-wrap .competitor-table tr:last-child th,
    .site-section:has(+ .site-section > .section-header) > .competitor-table-wrap .competitor-table tr:last-child td {
      border-bottom: none;
    }

    /* Customers grid */
    .customers-section {
      position: relative;
      z-index: 10;
      margin-top: -100px;
      padding-top: 0;
      padding-bottom: 0;
    }

    /* Unified centered section headers */
    .section-header,
    .platforms-intro,
    .platform-header {
      padding: 56px 32px 40px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .site-section:has(> .section-header) .section-header {
      position: relative;
      border-bottom: none;
      isolation: isolate;
    }

    .site-section:has(> .section-header) .section-header > * {
      position: relative;
      z-index: 1;
    }

    .site-section:has(> .section-header ~ *) .section-header {
      border-bottom: var(--grid-line);
    }

    .site-section:has(> .security-header) .security-header {
      position: relative;
      border-bottom: none;
      isolation: isolate;
    }

    .site-section:has(> .security-header ~ *) .security-header {
      border-bottom: var(--grid-line);
    }

    .site-section:has(+ .site-section > .section-header) > *:last-child {
      border-bottom: none;
    }

    .section-header--compact {
      padding: 40px 32px 32px;
    }

    .section-header .section-label,
    .section-header .site-section-label,
    .platforms-intro .section-label,
    .platforms-intro .site-section-label,
    .platform-header .section-label,
    .platform-header .site-section-label {
      display: block;
      margin-bottom: 16px;
    }

    .section-header h2,
    .platforms-intro h2,
    .platform-header h2 {
      font-family: var(--font-heading);
      font-size: var(--text-section-h2);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.03em;
      max-width: 820px;
      margin: 0 auto 14px;
      text-wrap: balance;
    }

    .section-header p,
    .platforms-intro p,
    .platform-header p {
      max-width: 680px;
      margin: 0 auto;
      color: var(--text-muted);
    }

    .section-header p + p,
    .platform-header p + p {
      margin-top: 12px;
    }

    .section-header .prose-lead,
    .platform-header .prose-lead {
      font-size: var(--text-body);
      line-height: var(--leading-body);
    }

    .section-header--dark {
      background: var(--black);
      color: var(--white);
    }

    .section-header--dark .section-label,
    .section-header--dark .site-section-label {
      color: var(--highlight);
    }

    .section-header--dark h2 {
      color: var(--white);
    }

    .section-header--dark p {
      color: rgba(252, 252, 252, 0.65);
    }

    .section-header-cta {
      margin-top: 24px;
    }

    .customers-header {
      padding: 40px 32px 32px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .customers-header .section-label,
    .customers-header .site-section-label {
      display: block;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    .logo-cell {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: 100px;
      background: var(--bg);
    }

    @media (min-width: 1024px) {
      .logo-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .logo-cell.has-link { box-shadow: inset 0 calc(-1 * var(--grid-gap)) 0 var(--primary); }

    .logo-placeholder {
      width: 120px;
      height: 24px;
      background: linear-gradient(90deg, #d9d9d9 0%, var(--border) 50%, #d9d9d9 100%);
      background-size: 200% 100%;
      animation: shimmer 2s linear infinite;
      border-radius: 2px;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .logo-arrow {
      position: absolute;
      top: 0;
      right: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--border);
      color: #6b7280;
    }

    .logo-dot {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 6px;
      height: 6px;
      background: var(--border);
    }

    /* Wall of love — scrolling masonry columns */
    .wall-of-love {
      position: relative;
      overflow: hidden;
      height: min(720px, 68vh);
      border-bottom: var(--grid-line);
      background: var(--white);
      isolation: isolate;
      contain: layout paint;
    }

    .wall-of-love::before,
    .wall-of-love::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 64px;
      z-index: 2;
      pointer-events: none;
    }

    .wall-of-love::before {
      top: 0;
      background: linear-gradient(to bottom, var(--white), rgba(252, 252, 252, 0));
    }

    .wall-of-love::after {
      bottom: 0;
      background: linear-gradient(to top, var(--white), rgba(252, 252, 252, 0));
    }

    .wall-of-love__columns {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      background: var(--white);
      height: 100%;
    }

    @media (min-width: 768px) {
      .wall-of-love__columns {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .wall-of-love__columns {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .wall-of-love__column {
      overflow: hidden;
      min-width: 0;
      height: 100%;
      background: var(--white);
    }

    .wall-of-love__column:not(:last-child) {
      border-right: var(--grid-line);
    }

    .wall-of-love__track {
      display: flex;
      flex-direction: column;
      will-change: transform;
    }

    .wall-of-love__column--up .wall-of-love__track {
      animation: wall-scroll-up 62s linear infinite;
    }

    .wall-of-love__column--down .wall-of-love__track {
      animation: wall-scroll-up 72s linear infinite reverse;
    }

    .wall-of-love__column.is-paused .wall-of-love__track {
      animation-play-state: paused;
    }

    @keyframes wall-scroll-up {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    .testimonial-card {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      padding: 36px 32px 32px;
      border-bottom: var(--grid-line);
      background: var(--white);
    }

    @media (hover: hover) and (pointer: fine) {
      .testimonial-card.is-highlighted {
        position: relative;
        z-index: 1;
        background: var(--highlight-pale);
        box-shadow:
          -1px 0 0 var(--highlight-pale),
          1px 0 0 var(--highlight-pale);
      }
    }

    .testimonial-quote {
      font-family: var(--font-sans);
      font-size: clamp(1.05rem, 1.6vw, 1.25rem);
      font-weight: 400;
      line-height: 1.45;
      letter-spacing: -0.01em;
      margin: 0 0 28px;
      text-wrap: pretty;
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      margin-top: auto;
      text-align: left;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--highlight-pale);
    }

    .testimonial-avatar--fallback {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .testimonial-meta__text {
      min-width: 0;
    }

    .testimonial-author {
      font-size: var(--text-caption);
      font-weight: 500;
      line-height: 1.3;
    }

    .testimonial-role {
      font-size: var(--text-caption);
      line-height: 1.35;
      color: var(--text-muted);
    }

    /* Fireside chat */
    .fireside {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    @media (min-width: 1024px) {
      .fireside { grid-template-columns: 1fr 1fr; }
    }

    .fireside-copy {
      padding: 48px 32px;
      border-bottom: var(--grid-line);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }

    @media (min-width: 1024px) {
      .fireside-copy {
        border-bottom: none;
        border-right: var(--grid-line);
        min-height: 480px;
      }
    }

    .fireside-quote {
      font-family: var(--font-heading);
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .fireside-meta {
      color: var(--text-muted);
    }

    .video-placeholder {
      position: relative;
      min-height: 300px;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .video-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
    }

    .play-btn {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 999px;
      background: rgba(252, 252, 252, 0.12);
      backdrop-filter: blur(8px);
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(252, 252, 252, 0.2);
      transition: background 150ms var(--ease), transform 150ms var(--ease);
    }

    .play-btn:hover {
      background: rgba(252, 252, 252, 0.2);
      transform: scale(1.03);
    }

    .play-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      gap: 0;
      background: transparent;
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    .feature-grid > * + * {
      border-top: var(--grid-line);
    }

    @media (min-width: 768px) {
      .feature-grid { grid-template-columns: repeat(2, 1fr); }

      .feature-grid > * + * {
        border-top: none;
      }

      .feature-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }

      .feature-grid:not(.dex-dual-grid) > :nth-child(n + 3) {
        border-top: var(--grid-line);
      }
    }

    @media (min-width: 1024px) {
      .feature-grid:not(.dex-dual-grid) {
        grid-template-columns: repeat(3, 1fr);
      }

      .feature-grid:not(.dex-dual-grid)::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 33.333%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }

      .feature-grid:not(.dex-dual-grid)::after {
        left: 66.666%;
      }

      .feature-grid:not(.dex-dual-grid) > :nth-child(n + 3) {
        border-top: none;
      }
    }

    .feature-card {
      padding: 32px;
      min-height: 220px;
      background: var(--bg);
    }

    .feature-card h3 {
      font-size: var(--text-title-card);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-muted);
    }

    .feature-visual {
      width: 100%;
      height: 180px;
      margin-top: 24px;
      background: linear-gradient(135deg, var(--bg-warm) 0%, var(--border) 100%);
      border: 1px solid var(--border);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
    }

    /* Custom models / specialization */
    .special-header {
      padding: 64px 32px 48px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .special-header h2 {
      font-family: var(--font-heading);
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 300;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .special-header h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .special-header p {
      max-width: 532px;
      margin: 0 auto;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Sticky stack tabs */
    .stack-section {
      position: relative;
      border-bottom: var(--grid-line);
      isolation: isolate;
    }

    .stack-nav {
      display: flex;
      border-bottom: var(--grid-line);
      overflow-x: auto;
      position: relative;
      z-index: 2;
      background: var(--bg);
    }

    .stack-tab {
      flex: 1;
      min-width: 120px;
      padding: 20px 16px;
      text-align: center;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--text-light);
      background: var(--bg);
      border-right: var(--grid-line);
      position: relative;
      z-index: 1;
      transition: color 150ms var(--ease), background 150ms var(--ease);
    }

    .stack-tab:last-child { border-right: none; }

    .stack-tab.active {
      color: var(--black);
      background: var(--highlight-pale);
      z-index: 2;
    }

    .stack-panels {
      position: relative;
      z-index: 1;
      background: var(--bg);
      overflow: hidden;
    }

    @media (min-width: 1024px) {
      .stack-panels {
        height: var(--stack-panel-height, 360px);
      }

      .stack-panel.active {
        height: 100%;
      }
    }

    .stack-panel {
      display: none;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: stretch;
    }

    .stack-panel.active {
      display: grid;
    }

    .stack-panel.active .stack-copy,
    .stack-panel.active .stack-visual {
      animation: panelIn 500ms var(--ease);
    }

    @keyframes panelIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @media (min-width: 1024px) {
      .stack-panel { grid-template-columns: 1fr 1fr; }
    }

    .stack-copy {
      padding: 32px;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
      border-bottom: var(--grid-line);
    }

    @media (min-width: 1024px) {
      .stack-copy {
        padding: 36px 40px;
        border-bottom: none;
        border-right: var(--grid-line);
      }
    }

    .stack-copy h3 {
      font-family: var(--font-sans);
      font-size: clamp(1.35rem, 2.2vw, 1.75rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .stack-copy > p {
      color: var(--text-muted);
      margin-bottom: 0;
      max-width: 36ch;
    }

    .stack-visual {
      height: 360px;
      max-height: 360px;
      min-height: 360px;
      background: var(--bg-hover);
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      position: relative;
      z-index: 3;
      overflow: hidden;
      isolation: isolate;
    }

    @media (max-width: 1023px) {
      .stack-visual {
        height: auto;
        max-height: none;
        min-height: 320px;
      }
    }

    .stack-visual-placeholder {
      width: 80%;
      max-width: 400px;
      aspect-ratio: 4/3;
      border: 1px dashed var(--border);
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 19px,
        rgba(237, 237, 237, 0.8) 19px,
        rgba(237, 237, 237, 0.8) 20px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 19px,
        rgba(237, 237, 237, 0.8) 19px,
        rgba(237, 237, 237, 0.8) 20px
      );
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
    }

    /* Partner cards */
    .partner-grid {
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      gap: 0;
      background: transparent;
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    .partner-grid > * + * {
      border-top: var(--grid-line);
    }

    @media (min-width: 768px) {
      .partner-grid { grid-template-columns: 1fr 1fr; }

      .partner-grid > * + * {
        border-top: none;
      }

      .partner-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }
    }

    .partner-card {
      padding: 48px 32px 88px;
      min-height: 200px;
      background: var(--bg);
    }

    .partner-card h3,
    .partner-card p {
      max-width: 100%;
    }

    .partner-card h3 {
      font-size: var(--text-title-card);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .partner-card p {
      color: var(--text-muted);
    }

    .partner-grid--compact .partner-card {
      padding: 32px;
      min-height: 0;
    }

    .partner-grid--compact .partner-card h3 {
      margin-bottom: 8px;
    }

    /* Security grid */
    .security-header {
      padding: 48px 32px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .security-header .site-section-label {
      display: block;
      margin-bottom: 16px;
    }

    .security-header h2 {
      font-family: var(--font-heading);
      font-size: var(--text-section-h2);
      font-weight: 300;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .security-header p {
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto;
    }

    .security-grid {
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      gap: 0;
      background: transparent;
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    .security-grid > * + * {
      border-top: var(--grid-line);
    }

    @media (min-width: 640px) {
      .security-grid { grid-template-columns: repeat(2, 1fr); }

      .security-grid > * + * {
        border-top: none;
      }

      .security-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }

      .security-grid > :nth-child(n + 3) {
        border-top: var(--grid-line);
      }
    }

    @media (min-width: 1024px) {
      .security-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .security-grid::before,
      .security-grid::after {
        content: none;
      }

      .security-grid > :nth-child(n + 3) {
        border-top: none;
      }

      .security-item:not(:nth-child(4n)) {
        border-right: var(--grid-line);
      }
    }

    .security-item {
      padding: 32px 24px;
      text-align: center;
      background: var(--bg);
    }

    .security-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 16px;
      border-radius: 8px;
      background: var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .security-item h4 {
      font-size: var(--text-title-card);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .security-item p {
      font-size: var(--text-body);
      color: var(--text-muted);
      line-height: var(--leading-body);
    }

    /* News */
    .news-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px;
      border-bottom: var(--grid-line);
    }

    .news-header h2 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 300;
      letter-spacing: -0.03em;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    @media (min-width: 768px) {
      .news-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .news-card {
      padding: 24px;
      background: var(--bg);
    }

    .news-thumb {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(145deg, var(--border), var(--bg-warm));
      margin-bottom: 16px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      overflow: hidden;
    }

    .news-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--highlight);
      margin-bottom: 8px;
    }

    .news-title {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.35;
      margin-bottom: 8px;
      transition: color 150ms var(--ease);
    }

    .news-card:hover .news-title { color: var(--text); }

    .news-date {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Footer — outside panel grid */
    footer.site-footer {
      padding: 48px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 0 32px 32px;
    }

    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-light);
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 10px;
      transition: color 150ms var(--ease);
    }

    .footer-col a:hover { color: var(--text); }

    .footer-bottom {
      padding: 0 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 11px;
      font-family: var(--font-mono);
      text-transform: uppercase;
    }

    .footer-tagline {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* Nav active state */
    .nav-link-active {
      color: var(--black) !important;
      background: transparent !important;
    }

    .nav-link-active:hover {
      color: var(--black) !important;
      background: transparent !important;
    }

    /* Prose sections (long-form blocks; use section-header for intro rows) */
    .prose-section {
      padding: 64px 32px;
      border-bottom: var(--grid-line);
      text-align: center;
    }

    .prose-section .section-label,
    .prose-section .site-section-label {
      display: block;
      margin-bottom: 16px;
    }

    .prose-section--compact {
      padding: 48px 32px;
      text-align: center;
    }

    .prose-section--compact p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 17px;
      line-height: 1.55;
      color: var(--text-muted);
    }

    .prose-section--dark {
      background: var(--black);
      color: var(--white);
    }

    .prose-section--dark .section-label { color: var(--highlight); }
    .prose-section--dark p { color: rgba(252, 252, 252, 0.65); }

    .prose-section h2 {
      font-family: var(--font-heading);
      font-size: var(--text-section-h2);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 auto 24px;
      max-width: 820px;
    }

    .prose-section--dark h2 { color: var(--white); }

    .prose-section p {
      max-width: 680px;
      color: var(--text-muted);
      margin: 0 auto 16px;
    }

    .prose-section p:last-child { margin-bottom: 0; }

    .prose-section .prose-lead {
      font-size: 18px !important;
      line-height: 1.5 !important;
    }

    .prose-emphasis {
      font-family: var(--font-heading);
      font-size: 1.5rem !important;
      font-weight: 300;
      letter-spacing: -0.02em;
      color: var(--black) !important;
      margin-top: 24px !important;
    }

    .prose-section--dark .prose-emphasis { color: var(--white) !important; }

    /* Product teaser */
    .product-teaser {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    @media (min-width: 768px) {
      .product-teaser { grid-template-columns: 2fr 1fr; }
    }

    .product-teaser-copy {
      padding: 48px 32px;
      background: var(--bg);
    }

    .product-teaser-copy h3 {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      margin: 12px 0 16px;
    }

    .product-teaser-copy p {
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 20px;
      max-width: 520px;
    }

    .product-teaser-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--highlight);
    }

    .product-teaser-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      background: var(--highlight-pale);
    }

    .product-teaser-visual img {
      width: auto;
      height: 72px;
      opacity: 0.92;
    }

    /* CTA block */
    .cta-section {
      padding-bottom: 0;
      border-top: var(--grid-line);
    }

    .cta-block {
      padding: 80px 32px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .cta-block h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .cta-block > p {
      max-width: 520px;
      margin: 0 auto 32px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .cta-sub {
      margin-top: 16px !important;
      margin-bottom: 0 !important;
      font-size: 14px !important;
      color: var(--text-light) !important;
    }

    /* Three column grid */
    .three-col-grid {
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      gap: 0;
      background: transparent;
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    .three-col-grid > * + * {
      border-top: var(--grid-line);
    }

    @media (min-width: 768px) {
      .three-col-grid { grid-template-columns: repeat(3, 1fr); }

      .three-col-grid > * + * {
        border-top: none;
      }

      .three-col-grid::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 33.333%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }

      .three-col-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 66.666%;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
        pointer-events: none;
      }
    }

    .three-col-card {
      padding: 40px 32px;
      background: var(--bg);
    }

    .three-col-num {
      display: block;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--highlight);
      margin-bottom: 16px;
    }

    .three-col-card h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .three-col-card p {
      color: var(--text-muted);
    }

    /* Use cases — 1/3 accordion + 2/3 demo */
    .use-cases-split {
      display: grid;
      grid-template-columns: 1fr;
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    @media (min-width: 1024px) {
      .use-cases-split {
        grid-template-columns: 1fr 2fr;
      }
    }

    .use-cases-nav {
      display: flex;
      flex-direction: column;
      background: var(--white);
      min-height: 100%;
    }

    @media (max-width: 1023px) {
      .use-cases-nav {
        border-bottom: var(--grid-line);
      }
    }

    @media (min-width: 1024px) {
      .use-cases-nav {
        border-right: var(--grid-line);
      }
    }

    .use-cases-item {
      width: 100%;
      text-align: left;
      padding: 28px 32px;
      border: none;
      border-bottom: var(--grid-line);
      background: var(--white);
      color: inherit;
      cursor: pointer;
      transition: background-color 150ms var(--ease);
    }

    .use-cases-item:last-child {
      border-bottom: none;
    }

    @media (min-width: 1024px) {
      .use-cases-item:last-child {
        border-bottom: none;
      }
    }

    .use-cases-item.active {
      background: var(--white);
    }

    .use-cases-item__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      width: 100%;
    }

    .use-cases-item__title {
      font-family: var(--font-sans);
      font-size: var(--text-title-card);
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: var(--tracking-sans);
    }

    .use-cases-item__icon {
      flex-shrink: 0;
      width: 20px;
      font-size: 18px;
      line-height: 1;
      color: var(--text-muted);
      text-align: center;
    }

    .use-cases-item__body {
      display: block;
      margin-top: 12px;
      font-size: var(--text-body);
      line-height: var(--leading-body);
      color: var(--text-muted);
      text-align: left;
    }

    .use-cases-item:not(.active) .use-cases-item__body {
      display: none;
    }

    .use-cases-demo {
      position: relative;
      width: 100%;
      aspect-ratio: 1592 / 1080;
      padding: 0;
      background: var(--black);
      overflow: hidden;
    }

    .use-cases-panel {
      display: none;
      width: 100%;
      height: 100%;
      max-width: none;
    }

    .use-cases-panel.active {
      display: block;
      height: 100%;
    }

    .use-case-video {
      width: 100%;
      height: 100%;
      border-radius: 0;
      border: none;
      box-shadow: none;
      background: var(--black);
    }

    .use-case-video__el {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .use-cases-panel[data-panel="triage"] .use-case-mock,
    .use-cases-panel[data-panel="crm"] .use-case-mock {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: stretch;
    }

    .use-cases-panel[data-panel="triage"] .use-case-mock__chrome,
    .use-cases-panel[data-panel="crm"] .use-case-mock__chrome {
      flex: 1;
      display: flex;
      flex-direction: column;
      border-radius: 0;
      box-shadow: none;
      border: none;
    }

    .use-cases-panel[data-panel="triage"] .use-case-mock__list,
    .use-cases-panel[data-panel="crm"] .use-case-mock__crm {
      flex: 1;
      min-height: 0;
    }

    .use-case-mock {
      width: 100%;
    }

    .use-case-mock__chrome {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(24, 24, 24, 0.08);
      box-shadow: 0 20px 48px rgba(24, 24, 24, 0.1);
    }

    .use-case-mock__toolbar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-warm);
    }

    .use-case-mock__dots {
      display: flex;
      gap: 5px;
    }

    .use-case-mock__dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
    }

    .use-case-mock__tab {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-muted);
    }

    .use-case-mock__tab.is-active {
      color: var(--black);
    }

    .use-case-mock__split {
      display: grid;
      grid-template-columns: 1fr 140px;
      min-height: 280px;
    }

    @media (min-width: 640px) {
      .use-case-mock__split {
        grid-template-columns: 1fr 180px;
        min-height: 320px;
      }
    }

    .use-case-mock__mail {
      padding: 20px;
      border-right: 1px solid var(--border);
    }

    .use-case-mock__mail-subject {
      font-size: 13px;
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 16px;
    }

    .use-case-mock__mail-line {
      height: 8px;
      border-radius: 4px;
      background: var(--bg-hover);
      margin-bottom: 10px;
    }

    .use-case-mock__mail-line--short {
      width: 72%;
    }

    .use-case-mock__dex {
      padding: 16px 14px;
      background: var(--highlight-pale);
    }

    .use-case-mock__dex-head {
      font-size: 11px;
      font-weight: 500;
      margin-bottom: 14px;
      color: var(--highlight);
    }

    .use-case-mock__dex-block {
      margin-bottom: 14px;
    }

    .use-case-mock__dex-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 8px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .use-case-mock__dex-line {
      display: block;
      height: 6px;
      border-radius: 3px;
      background: rgba(79, 112, 197, 0.18);
      margin-bottom: 5px;
    }

    .use-case-mock__dex-line--short {
      width: 65%;
    }

    .use-case-mock__list {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 280px;
    }

    .use-case-mock__row {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--white);
    }

    .use-case-mock__row.is-priority {
      border-color: rgba(79, 112, 197, 0.35);
      background: var(--highlight-pale);
    }

    .use-case-mock__row.is-muted {
      opacity: 0.55;
    }

    .use-case-mock__row-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      text-transform: uppercase;
      color: var(--highlight);
    }

    .use-case-mock__row-title {
      font-size: 12px;
      line-height: 1.4;
    }

    .use-case-mock__crm {
      padding: 20px;
      min-height: 280px;
    }

    .use-case-mock__crm-row {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .use-case-mock__crm-label {
      font-family: var(--font-mono);
      font-size: 9px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .use-case-mock__crm-value {
      font-size: 12px;
      line-height: 1.4;
    }

    .use-case-mock__crm-value.is-updated {
      color: var(--black);
      background: var(--highlight-pale);
      padding: 6px 10px;
      border-radius: 6px;
    }

    .use-case-mock__crm-sync {
      margin-top: 16px;
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--highlight);
      text-transform: uppercase;
    }

    /* Stats */
    .stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      margin: 32px 0;
    }

    .stat-item,
    .stats-bar-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .stat-value {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .prose-section--dark .stat-value { color: var(--white); }

    .stat-label {
      font-size: 13px;
      line-height: 1.4;
      color: var(--text-muted);
    }

    .prose-section--dark .stat-label { color: rgba(252, 252, 252, 0.5); }

    .stats-bar {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    @media (min-width: 640px) {
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .stats-bar { grid-template-columns: repeat(4, 1fr); }
    }

    .stats-bar-item {
      padding: 40px 24px;
      text-align: center;
      background: var(--bg);
    }

    /* Feature quote cards */
    .feature-card--quote .feature-quote {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 300;
      line-height: 1.4;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 12px;
    }

    .feature-attribution {
      font-size: 13px;
      color: var(--text-light);
    }

    .trust-line {
      text-align: center;
      padding: 32px;
      color: var(--text-muted);
      border-bottom: var(--grid-line);
    }

    .integration-list {
      font-family: var(--font-mono);
      font-size: var(--text-caption) !important;
      letter-spacing: var(--tracking-mono);
      color: var(--text-light) !important;
    }

    /* Integration logo marquee */
    .integration-marquee {
      position: relative;
      padding: 8px 0 40px;
      border-bottom: var(--grid-line);
      background: var(--bg-warm);
      overflow: hidden;
    }

    .integration-marquee__viewport {
      overflow: hidden;
      mask-image: linear-gradient(
        90deg,
        transparent,
        rgba(24, 24, 24, 1) 10%,
        rgba(24, 24, 24, 1) 90%,
        transparent
      );
    }

    .integration-marquee__track {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 22px);
      width: max-content;
      list-style: none;
      margin: 0;
      padding: 16px 0;
      will-change: transform;
    }

    .integration-marquee.is-animated .integration-marquee__track {
      animation: integration-marquee-scroll 52s linear infinite;
    }

    .integration-marquee__track.is-paused {
      animation-play-state: paused;
    }

    @keyframes integration-marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .integration-marquee__item {
      flex-shrink: 0;
    }

    .integration-marquee__tile {
      display: flex;
      align-items: center;
      justify-content: center;
      width: clamp(48px, 5vw, 56px);
      height: clamp(48px, 5vw, 56px);
      border-radius: clamp(12px, 1.2vw, 14px);
      background: var(--white);
      border: 1px solid rgba(24, 24, 24, 0.06);
      box-shadow:
        0 1px 2px rgba(24, 24, 24, 0.05),
        0 6px 18px rgba(24, 24, 24, 0.08);
    }

    .integration-marquee__tile img {
      display: block;
      width: clamp(24px, 2.6vw, 28px);
      height: clamp(24px, 2.6vw, 28px);
      object-fit: contain;
    }

    .integration-marquee__tile--hub {
      width: clamp(60px, 6.5vw, 72px);
      height: clamp(60px, 6.5vw, 72px);
      border-radius: clamp(14px, 1.5vw, 18px);
      box-shadow:
        0 2px 4px rgba(24, 24, 24, 0.06),
        0 12px 28px rgba(24, 24, 24, 0.1);
    }

    .integration-marquee__tile--hub img {
      width: clamp(28px, 3vw, 34px);
      height: auto;
      max-height: clamp(32px, 3.4vw, 40px);
    }

    .integration-marquee__more {
      margin: 8px 0 0;
      padding: 0 32px;
      text-align: center;
      font-family: var(--font-mono);
      font-size: var(--text-caption);
      letter-spacing: var(--tracking-mono);
      color: var(--text-light);
    }

    .integration-marquee.is-static .integration-marquee__viewport {
      overflow-x: auto;
      scrollbar-width: none;
      mask-image: none;
    }

    .integration-marquee.is-static .integration-marquee__viewport::-webkit-scrollbar {
      display: none;
    }

    .integration-marquee.is-static .integration-marquee__track {
      justify-content: center;
      flex-wrap: nowrap;
      width: max-content;
      margin-inline: auto;
      padding-inline: clamp(24px, 4vw, 48px);
    }

    /* Dex page — hero + full-grid video */
    body[data-page="dex"] .hero-shell--dex {
      position: relative;
      left: auto;
      width: auto;
      margin-left: 0;
      height: auto;
      min-height: 0;
      margin-top: calc(-1 * var(--nav-height));
      padding-top: var(--nav-height);
      padding-bottom: 0;
      overflow: hidden;
    }

    body[data-page="dex"] .hero-shell--dex > .site-shell {
      position: relative;
      z-index: 2;
      height: auto;
      min-height: 0;
    }

    body[data-page="dex"] .hero-shell--dex .grid-12 {
      min-height: 0;
      grid-template-rows: auto auto;
      align-content: start;
    }

    body[data-page="dex"] .hero-dex-video-wrap {
      display: flex;
      flex-direction: column;
      min-height: 0;
      align-self: stretch;
      order: 1;
    }

    body[data-page="dex"] .hero-dex-copy {
      position: relative;
      inset: auto;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      padding: 48px 0 56px;
      order: 2;
    }

    body[data-page="dex"] .hero-dex-video {
      flex: 1;
      min-height: min(52vh, 640px);
      background: var(--black);
      overflow: hidden;
      border-bottom: var(--grid-line);
    }

    @media (min-width: 1024px) {
      body[data-page="dex"] .hero-dex-video {
        border-left: var(--grid-line);
        border-right: var(--grid-line);
      }
    }

    body[data-page="dex"] .hero-dex-video video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      vertical-align: middle;
    }

    body[data-page="dex"] .dex-platforms-intro {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: var(--layout-max);
      margin-inline: auto;
      padding: 40px 32px 48px;
      text-align: center;
    }

    body[data-page="dex"] .dex-platforms-intro__eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--highlight);
    }

    body[data-page="dex"] .dex-platforms-intro__copy {
      max-width: 720px;
      font-size: 17px;
      line-height: 1.55;
      color: var(--text-muted);
    }

    body[data-page="dex"] .dex-platforms-intro .platform-badges {
      display: flex;
      justify-content: center;
      padding: 0;
      border: none;
    }

    body[data-page="dex"] .dex-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: var(--layout-max);
      margin-inline: auto;
      padding: 80px 32px 96px;
      text-align: center;
    }

    body[data-page="dex"] .dex-cta h2 {
      font-family: var(--font-heading);
      font-size: var(--text-section-h2);
      font-weight: 300;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    body[data-page="dex"] .dex-cta p {
      max-width: 520px;
      margin: 0 auto 32px;
      font-size: var(--text-body);
      line-height: var(--leading-body);
      color: var(--text-muted);
    }

    body[data-page="dex"] .hero-desc {
      font-size: var(--text-body);
      line-height: var(--leading-body);
    }

    body[data-page="dex"] .security-header p {
      font-size: var(--text-body);
      line-height: var(--leading-body);
    }

    body[data-page="dex"] .hero-orbs,
    body[data-page="dex"] .hero-grid-lines {
      will-change: transform;
    }

    .platform-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      padding: 32px 32px 16px;
    }

    .platform-badges-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .platform-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid rgba(24, 24, 24, 0.06);
      border-radius: 999px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: var(--tracking-sans);
      color: var(--text);
      background: var(--white);
      box-shadow:
        0 1px 2px rgba(24, 24, 24, 0.06),
        0 4px 12px rgba(24, 24, 24, 0.05);
    }

    .platform-badge-icon {
      flex-shrink: 0;
      display: block;
      width: 16px;
      height: 16px;
      object-fit: contain;
    }

    .platform-badge-icon--mono {
      color: var(--text-muted);
    }

    .platform-badge-tag {
      margin-left: 2px;
      padding: 2px 7px;
      border-radius: 999px;
      background: var(--bg-warm);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .hero-cta-note {
      font-size: 14px;
      color: var(--text-muted);
    }

    .dex-dual-grid {
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .dex-dual-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .dex-dual-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .dex-dual-grid .feature-card .site-section-label {
      display: block;
      margin-bottom: 12px;
    }

    .dex-how-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
      border-bottom: var(--grid-line);
      align-items: stretch;
    }

    .dex-how-grid > * {
      background: var(--bg);
      border: none;
      min-width: 0;
    }

    .dex-how-grid > .feature-card--vision {
      background: var(--white);
    }

    .dex-how-grid .feature-card .site-section-label {
      display: block;
      margin-bottom: 12px;
    }

    @media (min-width: 768px) {
      .dex-how-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto;
      }

      .dex-how-grid > :nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1;
      }

      .dex-how-grid > :nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1;
      }

      .dex-how-grid > :nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
      }

      .dex-how-grid > :nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
      }

      .dex-how-grid > :nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
      }
    }

    /* Dex panel — one stroke system: 1px gap lines, no stacked borders */
    body[data-page="dex"] .panel .partner-grid,
    body[data-page="dex"] .panel .use-cases-split,
    body[data-page="dex"] .panel .three-col-grid,
    body[data-page="dex"] .panel .security-grid,
    body[data-page="dex"] .panel .platforms-grid {
      position: relative;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
      border-bottom: var(--grid-line);
    }

    body[data-page="dex"] .panel .partner-grid::before,
    body[data-page="dex"] .panel .partner-grid::after,
    body[data-page="dex"] .panel .three-col-grid::before,
    body[data-page="dex"] .panel .three-col-grid::after,
    body[data-page="dex"] .panel .security-grid::before,
    body[data-page="dex"] .panel .security-grid::after,
    body[data-page="dex"] .panel .platforms-grid::after {
      content: none;
      display: none;
    }

    body[data-page="dex"] .panel .partner-grid > *,
    body[data-page="dex"] .panel .three-col-grid > *,
    body[data-page="dex"] .panel .security-grid > * {
      border: none;
      background: var(--bg);
      min-width: 0;
    }

    body[data-page="dex"] .panel .platforms-grid > .platform-card {
      background: var(--bg);
    }

    body[data-page="dex"] .panel .partner-grid > * + *,
    body[data-page="dex"] .panel .three-col-grid > * + *,
    body[data-page="dex"] .panel .security-grid > * + * {
      border-top: none;
    }

    body[data-page="dex"] .panel .security-grid > :nth-child(n + 3) {
      border-top: none;
    }

    body[data-page="dex"] .panel .security-item:not(:nth-child(4n)) {
      border-right: none;
    }

    body[data-page="dex"] .panel .wall-of-love,
    body[data-page="dex"] .panel .testimonials-wrap,
    body[data-page="dex"] .panel .trust-line,
    body[data-page="dex"] .panel .prose-section,
    body[data-page="dex"] .panel .section-header,
    body[data-page="dex"] .panel .security-header,
    body[data-page="dex"] .panel .integration-marquee {
      border-color: var(--grid-stroke);
    }

    .partner-card .site-section-label {
      display: block;
      margin-bottom: 12px;
    }

    /* Research / compact page hero */
    .page-hero-compact {
      padding-top: 48px;
    }

    .page-hero-inner {
      padding: 80px 32px 64px;
      text-align: center;
      border-bottom: var(--grid-line);
    }

    .page-hero-inner h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 300;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin: 16px auto 24px;
      max-width: 720px;
    }

    .page-hero-inner > p {
      max-width: 560px;
      margin: 0 auto 24px;
      color: var(--text-muted);
      line-height: 1.5;
      font-size: 17px;
    }

    .coming-soon {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--highlight) !important;
    }

    /* Careers */
    .careers-list {
      display: flex;
      flex-direction: column;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    .careers-role {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 28px 32px;
      background: var(--bg);
      transition: background 150ms var(--ease);
    }

    .careers-role:last-child {
      border-bottom: none;
    }

    .careers-role h3 {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 8px;
      letter-spacing: var(--tracking-mono);
    }

    .careers-role-meta {
      font-size: 13px;
      color: var(--text-muted);
      text-transform: none;
    }

    .careers-role-arrow {
      font-size: 18px;
      color: var(--text-light);
      transition: color 150ms var(--ease), transform 150ms var(--ease);
    }

    .careers-note {
      text-align: center;
    }

    .careers-note p {
      text-transform: none;
      max-width: 640px;
      margin-inline: auto;
    }

    .careers-note a {
      color: var(--highlight);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .careers-note a:hover {
      color: var(--black);
    }

    .news-card--placeholder {
      pointer-events: none;
      opacity: 0.7;
    }

    /* Comparison grid */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--grid-gap);
      background: var(--grid-stroke);
    }

    @media (min-width: 768px) {
      .compare-grid { grid-template-columns: 1fr 1fr; }
    }

    .compare-card {
      padding: 40px 32px;
      background: var(--bg);
    }

    .compare-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 12px;
    }

    .compare-card--ours .compare-label { color: var(--highlight); }

    .compare-card h3 {
      font-family: var(--font-sans);
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .compare-card p {
      color: var(--text-muted);
    }

    .compare-card--ours {
      background: var(--highlight-pale);
    }

    .competitor-table-wrap {
      overflow-x: auto;
    }

    .competitor-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    @media (min-width: 768px) {
      .competitor-table {
        border-top: none;
      }
    }

    .competitor-table th,
    .competitor-table td {
      padding: 16px 20px;
      text-align: left;
      border-bottom: var(--grid-line);
      border-right: var(--grid-line);
      vertical-align: top;
      line-height: 1.45;
    }

    .competitor-table th:last-child,
    .competitor-table td:last-child { border-right: none; }

    .competitor-table thead th {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--text-light);
      background: var(--bg-hover);
    }

    .competitor-table tbody td:first-child {
      font-weight: 500;
      color: var(--text);
      min-width: 100px;
    }

    .competitor-table tbody td { color: var(--text-muted); }

    .competitor-table td.col-us,
    .competitor-table .col-us {
      background: var(--highlight-pale);
      color: var(--black);
    }

    .competitor-table th.col-us {
      background: var(--highlight-pale);
      color: var(--highlight);
    }
