    :root {
      --bg: #f8f7f4;
      --surface: #ffffff;
      --surface2: #f1efe9;
      --border: rgba(0,0,0,0.08);
      --border-strong: rgba(0,0,0,0.15);
      --text: #0f0e0c;
      --text-muted: #6b6960;
      --text-faint: #a8a49c;
      --accent: #0057ff;
      --accent-light: #e8efff;
      --accent-hover: #0044cc;
      --green: #00875a;
      --green-light: #e3f5ee;
      --amber: #d97706;
      --amber-light: #fef3c7;
      --red: #dc2626;
      --tag-bg: #0f0e0c;
      --tag-text: #f8f7f4;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 20px;
      --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
      --shadow-md: 0 2px 8px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      /* `clip` prevents horizontal overflow without creating a scroll
         container — keeps `position: sticky` working on descendants
         (e.g. .mp-seo-aside, .mp-pricing-card). Falls back to `hidden`
         on very old browsers, which is fine. */
      overflow-x: clip;
    }

    h1, h2, h3, h4 {
      font-family: 'Syne', sans-serif;
      line-height: 1.15;
    }

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

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ───── NAV ───── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(248,247,244,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--text);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg { width: 18px; height: 18px; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--text);
      color: var(--bg) !important;
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 14px !important;
      font-weight: 500 !important;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.8; }

    /* Connected user — secondary CTA toward app */
    .nav-cta--dashboard {
      background: transparent !important;
      color: var(--text) !important;
      border: 1.5px solid var(--border-strong);
      box-shadow: none;
    }

    .nav-cta--dashboard:hover {
      opacity: 1 !important;
      border-color: var(--text-muted);
      background: var(--surface2) !important;
    }

    /* ───── HERO ───── */
    .hero {
      padding: 140px 24px 100px;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green-light);
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(40px, 5vw, 62px);
      font-weight: 800;
      letter-spacing: -2px;
      color: var(--text);
      margin-bottom: 20px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--text);
      color: var(--bg);
      padding: 14px 28px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }

    .btn-primary:hover { background: #2a2927; transform: translateY(-1px); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      padding: 14px 28px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: 1.5px solid var(--border-strong);
      transition: all 0.2s;
    }

    .btn-secondary:hover { border-color: var(--text); background: var(--surface2); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .stat-item { display: flex; flex-direction: column; }

    .stat-value {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      display: block;
    }

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

    /* Hero visual */
    .hero-visual {
      position: relative;
    }

    .savings-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-md);
    }

    .savings-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .savings-title {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 600;
    }

    .savings-badge {
      background: var(--accent);
      color: white;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .model-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .model-row:last-child { border-bottom: none; }

    .model-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .model-dot {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .model-dot--img {
      padding: 4px;
      background: var(--surface);
      border: 1px solid var(--border);
    }

    .model-dot--img img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
    }

    .model-name {
      font-weight: 500;
      font-size: 14px;
    }

    .model-type {
      font-size: 12px;
      color: var(--text-muted);
    }

    .model-prices {
      text-align: right;
    }

    .price-official {
      font-size: 12px;
      color: var(--text-faint);
      text-decoration: line-through;
    }

    .price-ours {
      font-size: 15px;
      font-weight: 600;
      color: var(--green);
    }

    .price-savings {
      font-size: 11px;
      color: var(--green);
      background: var(--green-light);
      padding: 2px 6px;
      border-radius: 100px;
      display: inline-block;
      margin-top: 2px;
    }

    /* Floating badges */
    .float-badge {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px 14px;
      box-shadow: var(--shadow);
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .float-badge-icon {
      width: 16px;
      height: 16px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 3px;
    }

    .float-badge-1 {
      top: -20px;
      right: -20px;
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    .float-badge-2 {
      bottom: -16px;
      left: -20px;
    }

    /* ───── MARQUEE ───── */
    .marquee-section {
      background: var(--text);
      padding: 16px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
    }

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

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(248,247,244,0.5);
      font-size: 13px;
      font-weight: 500;
      padding: 0 24px;
    }

    .marquee-item > span:not(.marquee-dot) {
      color: rgba(248,247,244,0.9);
      font-weight: 600;
    }

    .marquee-model-icon {
      width: 16px;
      height: 16px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 3px;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(248,247,244,0.2);
      flex-shrink: 0;
    }

    /* ───── SECTIONS ───── */
    section {
      padding: 96px 0;
    }

    .section-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -1.5px;
      color: var(--text);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-muted);
      font-weight: 300;
      max-width: 520px;
    }

    .section-header {
      margin-bottom: 56px;
    }

    /* ───── CATEGORIES ───── */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .cat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all 0.25s;
      cursor: pointer;
    }

    .cat-card:hover {
      border-color: var(--border-strong);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .cat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .cat-icon--img {
      padding: 8px;
    }

    .cat-icon--img img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

    .cat-title {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cat-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cat-models {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .model-tag {
      background: var(--surface2);
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid var(--border);
    }

    .model-tag.new {
      background: var(--accent-light);
      color: var(--accent);
      border-color: transparent;
    }

    .model-tag--brand {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .model-tag--brand img {
      width: 14px;
      height: 14px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 2px;
    }

    .cat-saving {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--accent);
      margin-top: 20px;
      display: block;
    }

    /* ───── MODELS TABLE ───── */
    .models-section { background: var(--surface2); }

    .models-filter {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn.active {
      background: var(--text);
      color: var(--bg);
      border-color: var(--text);
    }

    .models-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

    .model-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      transition: all 0.2s;
    }

    .model-card:hover {
      border-color: var(--border-strong);
      box-shadow: var(--shadow);
    }

    .model-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .model-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .model-card-icon--img {
      padding: 6px;
    }

    .model-card-icon--img img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

    .new-badge {
      background: var(--accent);
      color: white;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 3px 8px;
      border-radius: 100px;
      text-transform: uppercase;
    }

    .model-card-name {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .model-card-provider {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .model-card-pricing {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .price-our {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }

    .price-unit {
      font-size: 12px;
      color: var(--text-faint);
    }

    .price-saving-tag {
      margin-left: auto;
      background: var(--green-light);
      color: var(--green);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 6px;
    }

    /* ───── HOW IT WORKS ───── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: var(--border);
    }

    .step {
      padding: 0 16px;
      text-align: center;
      position: relative;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--text);
      color: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 16px;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }

    .step-title {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ───── PRICING ───── */
    /* ── Growth card (unique tier) ── */
    .growth-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      background: var(--surface);
      border: 2px solid var(--accent);
      border-radius: var(--radius-lg);
      padding: 40px 44px;
      margin-bottom: 24px;
      align-items: center;
    }

    .growth-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .growth-name {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .growth-badge {
      background: var(--green-light);
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .growth-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .growth-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .growth-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
    }

    .growth-features li:last-child { border-bottom: none; }

    /* ── Enterprise callout ── */
    .enterprise-callout {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px 28px;
      margin-bottom: 20px;
    }

    .enterprise-callout > div {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .enterprise-callout-title {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
    }

    .enterprise-callout-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ── Billing units ── */
    .billing-units {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 24px;
    }

    .billing-unit {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .billing-unit-icon {
      width: 40px;
      height: 40px;
      background: var(--accent-light);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .billing-unit-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .billing-unit-rate {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.3px;
    }

    .billing-unit-rate strong { color: var(--accent); font-weight: 800; }

    .billing-unit-example {
      font-size: 12px;
      color: var(--text-faint);
      margin-top: 4px;
    }

    /* ── Access tiers (horizontal rows, not subscription cards) ── */
    .access-tiers {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 28px;
    }

    .access-tier {
      display: grid;
      grid-template-columns: 220px 1fr auto;
      align-items: center;
      gap: 32px;
      padding: 22px 28px;
      border-bottom: 1px solid var(--border);
    }

    .access-tier:last-child { border-bottom: none; }

    .access-tier--highlight {
      background: var(--surface2);
    }

    .access-tier-head {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .access-tier-name {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .access-tier-badge {
      display: inline-block;
      background: var(--accent);
      color: white;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.3px;
    }

    .access-tier-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .access-tier-perks {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      list-style: none;
    }

    .access-tier-perks li {
      font-size: 13px;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 3px 12px;
      color: var(--text-muted);
      background: var(--surface);
      white-space: nowrap;
    }

    .access-tier--highlight .access-tier-perks li {
      background: var(--surface);
    }

    .pricing-note {
      text-align: center;
      font-size: 13px;
      color: var(--text-faint);
    }

    .pricing-note a {
      color: var(--accent);
      text-decoration: none;
    }

    .pricing-note a:hover { text-decoration: underline; }

    .check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
    }

    .check .ui-icon {
      display: block;
    }

    .ui-icon {
      display: block;
      flex-shrink: 0;
    }

    .cat-icon--svg {
      color: var(--text);
      opacity: 0.88;
    }

    .cat-icon--svg .ui-icon {
      margin: 0 auto;
    }

    .model-card-icon--svg {
      color: var(--text);
      opacity: 0.88;
    }

    .trust-icon {
      font-size: 0;
    }

    .trust-icon .ui-icon {
      color: var(--text-muted);
    }

    .float-badge-kicker {
      color: var(--green);
      flex-shrink: 0;
    }

    .float-badge-kicker .ui-icon {
      display: block;
    }

    /* ───── TESTIMONIALS ───── */
    .testimonials-section { background: var(--surface2); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
    }

    .testimonial-stars {
      display: flex;
      align-items: center;
      gap: 3px;
      margin-bottom: 14px;
      color: var(--amber);
      font-size: 14px;
    }

    .star-rating {
      display: block;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: white;
    }

    .author-name {
      font-weight: 600;
      font-size: 14px;
    }

    .author-role {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ───── FAQ ───── */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 600;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text);
      gap: 16px;
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-answer {
      display: none;
      padding: 0 0 20px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; }

    /* ───── CTA BANNER ───── */
    .cta-banner {
      background: var(--text);
      border-radius: var(--radius-lg);
      padding: 72px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(0,87,255,0.12);
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -40px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(0,87,255,0.08);
    }

    .cta-banner h2 {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -1.5px;
      color: white;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .cta-banner p {
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      font-weight: 300;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .cta-banner .btn-primary {
      background: white;
      color: var(--text);
      position: relative;
      z-index: 1;
    }

    .cta-banner .btn-primary:hover { opacity: 0.9; }

    /* ───── FOOTER ───── */
    footer {
      padding: 64px 0 40px;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 12px;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 14px;
      color: var(--text-muted);
      transition: color 0.2s;
    }

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

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .footer-bottom p {
      font-size: 13px;
      color: var(--text-faint);
    }

    .footer-badges {
      display: flex;
      gap: 8px;
    }

    .footer-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid var(--border);
      color: var(--text-muted);
    }

    /* ───── CODE SNIPPET ───── */
    .snippet-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 56px;
      align-items: center;
    }

    .snippet-code-wrap {
      display: flex;
      flex-direction: column;
    }

    .snippet-tabs {
      display: flex;
      gap: 4px;
      padding: 6px 8px;
      background: rgba(15,14,12,0.92);
      border-radius: var(--radius) var(--radius) 0 0;
      border: 1px solid rgba(255,255,255,0.08);
      border-bottom: none;
    }

    .snippet-tab {
      padding: 5px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      border: none;
      background: transparent;
      color: rgba(248,247,244,0.35);
      cursor: pointer;
      transition: all 0.15s;
    }

    .snippet-tab:hover { color: rgba(248,247,244,0.7); }

    .snippet-tab.active {
      background: rgba(255,255,255,0.1);
      color: rgba(248,247,244,0.92);
    }

    .snippet-panel {
      border-radius: 0 0 var(--radius) var(--radius) !important;
    }

    .code-section {
      background: var(--text);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .code-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: rgba(0,0,0,0.15);
    }

    .code-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

    pre {
      font-family: 'JetBrains Mono', 'Courier New', monospace;
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255,255,255,0.85);
      overflow-x: auto;
      white-space: pre;
      padding: 20px 24px 24px;
      margin: 0;
    }

    .code-comment { color: rgba(255,255,255,0.28); }
    .code-string { color: #89d185; }
    .code-key { color: #9cdcfe; }
    .code-num { color: #b5cea8; }
    .code-func { color: #dcdcaa; }
    .code-kw { color: #c586c0; }

    @media (max-width: 900px) {
      .snippet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ───── TRUST STRIP ───── */
    .trust-strip {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .trust-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    /* ───── MODEL PAGE ───── */

    /* Hero */
    .mp-hero {
      padding: 120px 0 72px;
    }

    .mp-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-faint);
      margin-bottom: 40px;
    }

    .mp-breadcrumb a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .mp-breadcrumb a:hover { color: var(--text); }
    .mp-breadcrumb-sep { font-size: 12px; color: var(--text-faint); }

    .mp-hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: start;
    }

    .mp-provider-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .mp-provider-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
      border: 1px solid var(--border);
    }

    .mp-provider-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

    .mp-provider-name {
      font-weight: 600;
      font-size: 15px;
    }

    .mp-type-badge {
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .mp-model-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(38px, 5vw, 60px);
      font-weight: 800;
      letter-spacing: -2px;
      color: var(--text);
      margin-bottom: 18px;
    }

    .mp-model-desc {
      font-size: 17px;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 520px;
    }

    .mp-stats-row {
      display: flex;
      gap: 0;
      margin-bottom: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .mp-stat {
      flex: 1;
      padding: 16px 20px;
      border-right: 1px solid var(--border);
    }

    .mp-stat:last-child { border-right: none; }

    .mp-stat-value {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
    }

    .mp-stat-label {
      font-size: 11px;
      color: var(--text-faint);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    .mp-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Pricing card */
    .mp-pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-md);
      position: sticky;
      top: 84px;
    }

    .mp-pricing-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .mp-pricing-title {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 700;
    }

    .mp-pricing-savings {
      background: var(--green-light);
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .mp-pricing-savings--free {
      background: linear-gradient(135deg, #c7f5e2 0%, #5fe0a8 50%, #00b377 100%);
      color: #04301f;
      box-shadow: 0 0 0 1px rgba(0, 179, 119, 0.4);
    }

    .mp-pricing-card--free {
      border-color: rgba(0, 179, 119, 0.35);
      box-shadow: 0 18px 40px -28px rgba(0, 179, 119, 0.55);
    }

    .mp-price-ours--free {
      background: linear-gradient(135deg, #00b377, #00875a);
      -webkit-background-clip: text;
              background-clip: text;
      color: transparent;
    }

    .mp-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .mp-price-row:last-of-type { border-bottom: none; }

    .mp-price-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mp-price-direction {
      font-weight: 600;
      font-size: 14px;
      color: var(--text);
    }

    .mp-price-unit {
      font-size: 12px;
      color: var(--text-faint);
    }

    .mp-price-values {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
    }

    .mp-price-orig {
      font-size: 13px;
      color: var(--text-faint);
      text-decoration: line-through;
    }

    .mp-price-ours {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--green);
    }

    .mp-price-divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0 16px;
    }

    .mp-price-note {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .mp-price-note .check {
      flex-shrink: 0;
    }

    .mp-inline-code {
      font-family: 'Courier New', monospace;
      font-size: 12px;
      background: var(--surface2);
      padding: 1px 5px;
      border-radius: 4px;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .mp-card-footnote {
      text-align: center;
      font-size: 12px;
      color: var(--text-faint);
      margin-top: 10px;
    }

    /* Features */
    .mp-features-section {
      background: var(--surface2);
    }

    .mp-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .mp-feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: all 0.2s;
    }

    .mp-feature-card:hover {
      border-color: var(--border-strong);
      box-shadow: var(--shadow);
    }

    .mp-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--text);
    }

    .mp-feature-label {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .mp-feature-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Code section */
    .mp-code-section-wrap {
      background: var(--text);
    }

    .mp-code-section-wrap .section-eyebrow { color: rgba(248,247,244,0.5); }
    .mp-code-section-wrap .section-title { color: white; }
    .mp-code-section-wrap .section-desc { color: rgba(248,247,244,0.5); }

    .mp-code-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .mp-compat-list {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mp-compat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: rgba(248,247,244,0.75);
    }

    .mp-compat-item .check {
      background: rgba(248,247,244,0.1);
      color: rgba(248,247,244,0.8);
      flex-shrink: 0;
    }

    .mp-code-right {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mp-code-tabs {
      display: flex;
      gap: 4px;
      margin-bottom: 0;
      background: rgba(255,255,255,0.06);
      padding: 6px;
      border-radius: var(--radius) var(--radius) 0 0;
      border: 1px solid rgba(255,255,255,0.08);
      border-bottom: none;
    }

    .mp-code-tab {
      padding: 6px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      border: none;
      background: transparent;
      color: rgba(248,247,244,0.4);
      cursor: pointer;
      transition: all 0.2s;
    }

    .mp-code-tab.active {
      background: rgba(255,255,255,0.12);
      color: rgba(248,247,244,0.9);
    }

    .mp-code-tab:hover:not(.active) {
      color: rgba(248,247,244,0.65);
    }

    .mp-code-block.code-section {
      border-radius: 0 0 var(--radius) var(--radius);
    }

    /* Benchmarks */
    .mp-benchmarks-section {
      background: var(--surface2);
    }

    .mp-benchmarks-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .mp-bench-item {
      margin-bottom: 24px;
    }

    .mp-bench-item:last-child { margin-bottom: 0; }

    .mp-bench-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .mp-bench-label {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
    }

    .mp-bench-score {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--accent);
    }

    .mp-bench-track {
      height: 8px;
      background: var(--border);
      border-radius: 100px;
      overflow: hidden;
    }

    .mp-bench-fill {
      height: 100%;
      width: var(--score);
      background: linear-gradient(90deg, var(--accent), #3d7dff);
      border-radius: 100px;
      animation: bench-grow 1s ease forwards;
      transform-origin: left;
    }

    @keyframes bench-grow {
      from { width: 0; }
      to   { width: var(--score); }
    }

    /* Related models */
    .mp-related-section { margin-top: 48px; }

    .mp-related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .mp-related-card {
      display: block;
      color: inherit;
    }

    .mp-all-models-card {
      background: var(--surface2);
      border: 1.5px dashed var(--border-strong);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      text-decoration: none;
      color: inherit;
      transition: all 0.2s;
      min-height: 130px;
    }

    .mp-all-models-card:hover {
      border-color: var(--accent);
      background: var(--accent-light);
    }

    .mp-all-models-icon {
      color: var(--text-muted);
    }

    .mp-all-models-card:hover .mp-all-models-icon { color: var(--accent); }

    .mp-all-models-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .mp-all-models-label {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
    }

    .mp-all-models-sub {
      font-size: 13px;
      color: var(--text-muted);
    }

    .mp-all-models-arrow {
      font-size: 20px;
      color: var(--text-muted);
      align-self: flex-end;
      transition: transform 0.2s;
    }

    .mp-all-models-card:hover .mp-all-models-arrow {
      transform: translateX(4px);
      color: var(--accent);
    }

    /* Model ID row (under hero actions) */
    .mp-model-id-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .mp-model-id-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .mp-model-id-value {
      font-size: 13px;
      padding: 4px 10px;
    }

    .mp-copy-btn {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 4px 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.15s;
    }

    .mp-copy-btn:hover { border-color: var(--text); color: var(--text); }
    .mp-copy-btn.copied { background: var(--green-light); color: var(--green); border-color: var(--green-light); }

    .mp-endpoint-pill {
      margin-left: auto;
      font-family: 'JetBrains Mono', 'Courier New', monospace;
      font-size: 11px;
      color: var(--text-faint);
      padding: 4px 10px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 100px;
    }

    /* Specs section */
    .mp-specs-section {
      padding: 64px 0 24px;
    }

    .mp-specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 10px 24px;
      margin-top: 16px;
    }

    .mp-spec-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
      padding: 6px 0;
    }

    .mp-spec-bullet {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─────────────────────────────────────────────────
       LONG-FORM SEO CONTENT
       Rendered from /ai_models_seo_database.json.
       Strictly follows the platform's design language:
       --bg cream, white surfaces, --accent blue, subtle
       borders, Syne/DM Sans, no glassmorphism.
    ───────────────────────────────────────────────── */

    .mp-seo-section {
      padding: 96px 0 48px;
      background: var(--surface2);
    }

    .mp-seo-bg { display: none; }

    /* Section header — same pattern as every other section */
    .mp-seo-header {
      max-width: 560px;
      margin: 0 auto 56px;
      text-align: center;
    }

    /* Override: eyebrow inside this header keeps the same style as the rest
       of the site (.section-eyebrow), no extra overrides needed. */
    .mp-seo-header .section-eyebrow-dot { display: none; }

    .mp-seo-title-accent {
      color: var(--accent);
    }

    /* Two-column grid: sticky ToC + article */
    .mp-seo-grid {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 40px;
      align-items: start;
    }

    /* ── Sticky ToC — minimal docs-style sidebar
       Inspired by Stripe / Tailwind / Vercel docs:
       no card, no shadow — a label + a vertical list
       with a left rule that highlights the active section. */
    .mp-seo-aside {
      position: sticky;
      top: 84px;
      align-self: start;
      padding: 4px 0;
    }

    .mp-seo-toc-label {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text);
      margin: 0 0 14px 14px;
    }

    .mp-seo-toc {
      position: relative;
      border-left: 1px solid var(--border);
    }

    .mp-seo-toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mp-seo-toc-item { margin: 0; padding: 0; }

    .mp-seo-toc-link {
      position: relative;
      display: block;
      padding: 7px 14px;
      margin-left: -1px;
      border-left: 1px solid transparent;
      font-size: 13px;
      line-height: 1.45;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s ease, border-color 0.15s ease;
    }

    .mp-seo-toc-link:hover { color: var(--text); }

    .mp-seo-toc-link.is-active {
      color: var(--accent);
      border-left-color: var(--accent);
      font-weight: 500;
    }

    /* ── Article card — same as .savings-card / .growth-card ── */
    .mp-seo-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 48px 36px;
      box-shadow: var(--shadow-md);
    }

    /* Meta bar above article */
    .mp-seo-card-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px 12px;
      padding-bottom: 20px;
      margin-bottom: 28px;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-muted);
    }

    .mp-seo-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .mp-seo-meta-provider { color: var(--text); font-weight: 500; }

    .mp-seo-meta-avatar {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: var(--surface2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mp-seo-meta-avatar img { width: 14px; height: 14px; object-fit: contain; }

    .mp-seo-meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--text-faint);
    }

    /* ── Article typography ── */
    .mp-seo-article {
      counter-reset: mp-seo-h2;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
    }

    .mp-seo-article > * + * { margin-top: 18px; }

    /* Lead paragraph */
    .mp-seo-article > p:first-of-type {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .mp-seo-article h2,
    .mp-seo-article h3,
    .mp-seo-article h4 {
      font-family: 'Syne', sans-serif;
      color: var(--text);
      scroll-margin-top: 100px;
      position: relative;
    }

    /* H2 with step-num style badge — same as .step-num on the landing */
    .mp-seo-article h2 {
      counter-increment: mp-seo-h2;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-top: 52px;
      padding-left: 52px;
      min-height: 36px;
      display: flex;
      align-items: center;
    }

    .mp-seo-article h2::before {
      content: counter(mp-seo-h2);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--text);
      color: var(--bg);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .mp-seo-article h2:first-child { margin-top: 0; }

    .mp-seo-article h3 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-top: 28px;
    }

    .mp-seo-article h4 {
      font-size: 15px;
      font-weight: 600;
      margin-top: 20px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Anchor link on hover — injected by JS */
    .mp-seo-anchor {
      margin-left: 8px;
      color: var(--text-faint);
      font-weight: 400;
      font-family: 'DM Sans', sans-serif;
      text-decoration: none;
      font-size: 0.8em;
      opacity: 0;
      transition: opacity 0.2s, color 0.2s;
    }

    .mp-seo-article h2:hover .mp-seo-anchor,
    .mp-seo-article h3:hover .mp-seo-anchor {
      opacity: 1;
    }

    .mp-seo-anchor:hover { color: var(--accent); }

    .mp-seo-article p { margin: 0; }

    .mp-seo-article strong { color: var(--text); font-weight: 600; }
    .mp-seo-article em     { font-style: italic; }

    .mp-seo-article a {
      color: var(--accent);
      text-decoration: underline;
      text-decoration-color: rgba(0, 87, 255, 0.3);
      text-underline-offset: 2px;
      transition: color 0.2s, text-decoration-color 0.2s;
    }

    .mp-seo-article a:hover {
      color: var(--accent-hover);
      text-decoration-color: var(--accent-hover);
    }

    /* Lists — no list-style, padding-left indent */
    .mp-seo-article ul,
    .mp-seo-article ol {
      list-style: none;
      padding-left: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mp-seo-article ul li,
    .mp-seo-article ol li {
      padding-left: 24px;
      position: relative;
      line-height: 1.6;
    }

    .mp-seo-article ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .mp-seo-article ol {
      counter-reset: mp-seo-li;
    }

    .mp-seo-article ol li {
      counter-increment: mp-seo-li;
    }

    .mp-seo-article ol li::before {
      content: counter(mp-seo-li) '.';
      position: absolute;
      left: 0;
      top: 0;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
    }

    /* Blockquotes — simple left border, surface2 bg */
    .mp-seo-article blockquote {
      margin: 0;
      padding: 14px 18px;
      background: var(--surface2);
      border-left: 3px solid var(--border-strong);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      color: var(--text-muted);
      font-size: 15px;
    }

    .mp-seo-article hr {
      border: 0;
      height: 1px;
      background: var(--border);
      margin: 32px 0;
    }

    .mp-seo-article code {
      font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
      font-size: 0.875em;
      padding: 2px 6px;
      border-radius: var(--radius-sm);
      background: var(--surface2);
      color: var(--text);
      border: 1px solid var(--border);
    }

    .mp-seo-article pre {
      margin: 0;
      padding: 20px 24px;
      background: var(--text);
      color: var(--bg);
      border-radius: var(--radius);
      overflow-x: auto;
      font-size: 13.5px;
      line-height: 1.6;
      box-shadow: var(--shadow-md);
    }

    .mp-seo-article pre code {
      background: transparent;
      padding: 0;
      color: inherit;
      border: 0;
      font-size: inherit;
    }

    /* ── Tables ── */
    .mp-md-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .mp-md-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14.5px;
    }

    .mp-md-table th,
    .mp-md-table td {
      padding: 12px 16px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid var(--border);
    }

    .mp-md-table thead th {
      background: var(--surface2);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text);
    }

    .mp-md-table tbody tr:last-child td { border-bottom: 0; }
    .mp-md-table tbody tr:hover td      { background: var(--surface2); }

    /* ── FAQ — mirrors the landing page .faq-item pattern ── */
    .mp-seo-faq {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      scroll-margin-top: 100px;
    }

    .mp-seo-faq-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 4px;
    }

    .mp-seo-faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--surface2);
      color: var(--text);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mp-seo-faq-title {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text);
      margin: 0;
    }

    /* FAQ items: same open/closed pattern as the landing .faq-item */
    .mp-seo-faq-list {
      display: flex;
      flex-direction: column;
    }

    .mp-seo-faq-item {
      border-bottom: 1px solid var(--border);
    }

    .mp-seo-faq-q {
      list-style: none;
      cursor: pointer;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      user-select: none;
    }

    .mp-seo-faq-q::-webkit-details-marker { display: none; }

    .mp-seo-faq-q-text { flex: 1; }

    .mp-seo-faq-q-chev {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--surface2);
      color: var(--text);
      flex-shrink: 0;
      transition: transform 0.2s, background 0.2s, color 0.2s;
    }

    .mp-seo-faq-item[open] .mp-seo-faq-q-chev {
      transform: rotate(45deg);
      background: var(--accent);
      color: #fff;
    }

    .mp-seo-faq-a {
      padding: 0 0 18px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .mp-seo-faq-a p { margin: 0; }

    /* ── Inline CTA — uses the same dark cta-banner style ── */
    .mp-seo-card-cta {
      margin-top: 40px;
      background: var(--text);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      overflow: hidden;
    }

    .mp-seo-card-cta::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(0, 87, 255, 0.12);
    }

    .mp-seo-card-cta-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }

    .mp-seo-card-cta-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(248, 247, 244, 0.5);
    }

    .mp-seo-card-cta-text strong {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--bg);
      letter-spacing: -0.5px;
    }

    .mp-seo-card-cta-btn {
      white-space: nowrap;
      flex-shrink: 0;
      position: relative;
      background: var(--bg) !important;
      color: var(--text) !important;
    }

    .mp-seo-card-cta-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    /* Responsive — model page */
    @media (max-width: 1024px) {
      .mp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .mp-pricing-card { position: static; }
      .mp-related-grid { grid-template-columns: repeat(2, 1fr); }
      .mp-endpoint-pill { margin-left: 0; width: 100%; text-align: center; }
      /* On tablet/mobile: drop the sticky ToC entirely and let the article
         take the full width. Reading flow on small screens doesn't need it. */
      .mp-seo-grid  { grid-template-columns: 1fr; gap: 0; }
      .mp-seo-aside { display: none; }
      .mp-seo-card  { padding: 32px 36px 28px; }
    }

    @media (max-width: 900px) {
      .mp-features-grid { grid-template-columns: 1fr 1fr; }
      .mp-code-layout   { grid-template-columns: 1fr; gap: 48px; }
      .mp-benchmarks-layout { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 600px) {
      .mp-hero { padding: 100px 0 56px; }
      .mp-features-grid { grid-template-columns: 1fr; }
      .mp-stats-row { flex-wrap: wrap; }
      .mp-stat { flex: 1 1 40%; border-bottom: 1px solid var(--border); }
      .mp-related-grid { grid-template-columns: 1fr; }
      .mp-seo-section { padding: 64px 0 32px; }
      .mp-seo-card { padding: 22px 20px 24px; }
      .mp-seo-article h2 { font-size: 20px; margin-top: 40px; }
      .mp-seo-article pre { font-size: 12.5px; padding: 16px 18px; }
      .mp-md-table th, .mp-md-table td { padding: 10px 12px; font-size: 13.5px; }
      .mp-seo-card-cta { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
      .mp-seo-card-cta-btn { width: 100%; justify-content: center; }
    }

    /* ─────────────────────────────────────────────────
       MODEL EXPLORER  ── /models/index.php
       Prefix: .ml-* (models list)
    ───────────────────────────────────────────────── */

    :root {
      --ml-cat-accent: #0057ff;
    }

    /* Hero */
    .ml-hero {
      padding: 120px 0 56px;
      position: relative;
      overflow: hidden;
    }

    .ml-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }

    .ml-hero > .container { position: relative; z-index: 1; }

    .ml-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-faint);
      margin-bottom: 32px;
    }

    .ml-breadcrumb a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .ml-breadcrumb a:hover { color: var(--text); }
    .ml-breadcrumb-sep { font-size: 12px; color: var(--text-faint); }

    .ml-hero-inner {
      max-width: 720px;
    }

    .ml-hero-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(38px, 5.2vw, 64px);
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1.05;
      color: var(--text);
      margin-bottom: 20px;
    }

    .ml-hero-title em {
      font-style: normal;
      color: var(--accent);
    }

    .ml-hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 600px;
    }

    .ml-hero-desc strong {
      color: var(--text);
      font-weight: 600;
    }

    /* Search */
    .ml-search {
      position: relative;
      max-width: 640px;
      margin-bottom: 36px;
    }

    .ml-search input {
      width: 100%;
      height: 56px;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 0 56px 0 52px;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .ml-search input::placeholder { color: var(--text-faint); }

    .ml-search input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
    }

    .ml-search-icon {
      position: absolute;
      top: 50%;
      left: 22px;
      transform: translateY(-50%);
      color: var(--text-faint);
      display: flex;
    }

    .ml-search input:focus + .ml-search-icon,
    .ml-search:focus-within .ml-search-icon { color: var(--accent); }

    .ml-search-kbd {
      position: absolute;
      top: 50%;
      right: 18px;
      transform: translateY(-50%);
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: var(--text-faint);
      padding: 2px 8px;
      pointer-events: none;
    }

    /* Hero stats */
    .ml-hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 600px;
      padding: 24px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .ml-hero-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
      border-right: 1px solid var(--border);
      padding: 0 20px;
    }

    .ml-hero-stat:first-child { padding-left: 0; }
    .ml-hero-stat:last-child  { border-right: none; padding-right: 0; }

    .ml-hero-stat-value {
      font-family: 'Syne', sans-serif;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text);
    }

    .ml-hero-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    /* Sticky category bar */
    .ml-cats {
      position: sticky;
      top: 64px;
      z-index: 50;
      background: rgba(248, 247, 244, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }

    .ml-cats-scroll {
      display: flex;
      gap: 4px;
      padding: 12px 0;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .ml-cats-scroll::-webkit-scrollbar { display: none; }

    .ml-cat-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      border: 1px solid transparent;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .ml-cat-tab:hover {
      color: var(--text);
      background: var(--surface2);
    }

    .ml-cat-tab.active {
      background: var(--text);
      color: var(--bg);
      border-color: var(--text);
    }

    .ml-cat-tab.active .ml-cat-tab-icon { color: var(--bg) !important; }

    .ml-cat-tab-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ml-cat-tab-count {
      background: rgba(0, 0, 0, 0.06);
      color: var(--text-muted);
      font-size: 11px;
      font-weight: 600;
      padding: 1px 8px;
      border-radius: 100px;
      min-width: 22px;
      text-align: center;
    }

    .ml-cat-tab.active .ml-cat-tab-count {
      background: rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.95);
    }

    /* Explorer */
    .ml-explorer {
      padding: 40px 0 96px;
    }

    .ml-cat-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0 28px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .ml-cat-header-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(26px, 3vw, 32px);
      font-weight: 800;
      letter-spacing: -0.8px;
      margin-bottom: 6px;
      transition: color 0.25s;
    }

    .ml-cat-header-desc {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 540px;
    }

    .ml-quickstart-btn {
      flex-shrink: 0;
      padding: 10px 18px;
      font-size: 13px;
    }

    /* Toolbar */
    .ml-toolbar {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .ml-toolbar-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .ml-toolbar-label {
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      width: 90px;
    }

    .ml-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      flex: 1;
    }

    .ml-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.18s;
      white-space: nowrap;
    }

    .ml-chip:hover { color: var(--text); border-color: var(--border-strong); }

    .ml-chip.active {
      background: var(--accent-light);
      border-color: var(--accent);
      color: var(--accent);
    }

    .ml-chip-cap.active {
      background: var(--text);
      border-color: var(--text);
      color: var(--bg);
    }

    .ml-chip-count {
      background: var(--surface2);
      color: var(--text-faint);
      font-size: 11px;
      font-weight: 600;
      padding: 0 7px;
      border-radius: 100px;
      min-width: 20px;
      text-align: center;
      line-height: 17px;
    }

    .ml-chip.active .ml-chip-count {
      background: rgba(0, 87, 255, 0.15);
      color: var(--accent);
    }

    .ml-toolbar-row--sort {
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 8px;
      border-top: 1px dashed var(--border);
      margin-top: 4px;
    }

    .ml-toolbar-toggles {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .ml-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.18s;
    }

    .ml-toggle:hover { color: var(--text); border-color: var(--border-strong); }

    .ml-toggle.active {
      background: var(--text);
      border-color: var(--text);
      color: var(--bg);
    }

    .ml-toggle-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-light);
      flex-shrink: 0;
    }

    .ml-toggle.active .ml-toggle-dot {
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
    }

    /* Sort select */
    .ml-sort-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      transition: border-color 0.18s;
    }

    .ml-sort-label:hover { border-color: var(--border-strong); }

    .ml-sort-label > span { font-weight: 500; }

    .ml-sort-select {
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      outline: none;
      padding-right: 4px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    /* Active filters */
    .ml-active-filters {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .ml-active-filters-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted);
    }

    .ml-active-filters-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      flex: 1;
    }

    .ml-active-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 6px 4px 12px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      transition: all 0.15s;
    }

    .ml-active-chip:hover {
      border-color: var(--text);
      background: var(--text);
      color: var(--bg);
    }

    .ml-active-chip-close {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--surface2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      line-height: 1;
      color: var(--text-muted);
      transition: background 0.15s, color 0.15s;
    }

    .ml-active-chip:hover .ml-active-chip-close {
      background: rgba(255, 255, 255, 0.15);
      color: var(--bg);
    }

    .ml-clear-filters {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      cursor: pointer;
      padding: 4px 6px;
      transition: opacity 0.2s;
    }

    .ml-clear-filters:hover { opacity: 0.8; }

    /* Result count */
    .ml-result-count {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 18px;
      font-weight: 500;
    }

    /* Grid */
    .ml-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

    .ml-card-shell {
      display: flex;
      flex-direction: column;
    }

    .ml-card-shell .ml-card {
      flex: 1;
    }

    .ml-card-shell.ml-card-shell--with-play .ml-card {
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .ml-card-playground {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      background: var(--surface);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--radius) var(--radius);
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    .ml-card-playground:hover {
      background: var(--accent-light);
      border-color: rgba(0, 87, 255, 0.35);
      color: var(--accent);
    }

    /* Card */
    .ml-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px 22px 18px;
      color: inherit;
      text-decoration: none;
      transition: all 0.2s ease;
      overflow: hidden;
    }

    .ml-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--ml-cat-accent);
      opacity: 0;
      transform: translateY(-100%);
      transition: opacity 0.2s, transform 0.2s;
    }

    .ml-card:hover {
      border-color: var(--border-strong);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .ml-card:hover::before {
      opacity: 1;
      transform: translateY(0);
    }

    .ml-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 14px;
    }

    .ml-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 7px;
      color: var(--text);
      opacity: 0.95;
      flex-shrink: 0;
    }

    .ml-card-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

    .ml-card-badges {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .ml-badge-popular {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: var(--amber-light);
      color: var(--amber);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 3px 7px 3px 6px;
      border-radius: 100px;
      text-transform: uppercase;
    }

    .ml-badge-free {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: linear-gradient(135deg, #c7f5e2 0%, #5fe0a8 50%, #00b377 100%);
      color: #04301f;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.4px;
      padding: 3px 7px 3px 6px;
      border-radius: 100px;
      text-transform: uppercase;
      box-shadow: 0 0 0 1px rgba(0, 179, 119, 0.35);
    }
    .ml-badge-free .ui-icon {
      width: 11px;
      height: 11px;
    }
    .ml-card--free .ml-card-price-value {
      color: #00875a;
    }
    .ml-card--free .ml-card-savings {
      background: linear-gradient(135deg, #c7f5e2 0%, #5fe0a8 50%, #00b377 100%);
      color: #04301f;
      border: 0;
    }

    .ml-card-name {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.2px;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.25;
    }

    .ml-card-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .ml-card-provider { font-weight: 600; color: var(--text); }
    .ml-card-dot      { color: var(--text-faint); }
    .ml-card-context  { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); }

    .ml-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: calc(13px * 1.55 * 2);
    }

    .ml-card-caps {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 16px;
    }

    .ml-card-cap {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--surface2);
      border: 1px solid var(--border);
      padding: 2px 8px;
      border-radius: 100px;
    }

    .ml-card-cap--more {
      background: transparent;
      color: var(--text-faint);
    }

    .ml-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }

    .ml-card-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .ml-card-price-value {
      font-family: 'Syne', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--text);
    }

    .ml-card-price-unit {
      font-size: 11px;
      color: var(--text-faint);
    }

    .ml-card-savings {
      background: var(--green-light);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 6px;
      letter-spacing: 0.2px;
    }

    /* Empty state */
    .ml-empty {
      text-align: center;
      padding: 80px 24px;
      border: 2px dashed var(--border);
      border-radius: var(--radius-lg);
      background: var(--surface);
    }

    .ml-empty-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--surface2);
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .ml-empty h3 {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .ml-empty p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    /* CTA strip */
    .ml-cta-strip {
      display: flex;
      align-items: center;
      gap: 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-top: 48px;
    }

    .ml-cta-strip-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--accent-light);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ml-cta-strip-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .ml-cta-strip-text strong {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
    }

    .ml-cta-strip-text span {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .ml-cta-strip .btn-secondary {
      flex-shrink: 0;
      padding: 10px 18px;
      font-size: 13px;
    }

    .ml-cta-section { padding: 0 0 96px; }
    .ml-cta-section .cta-banner h2 em { font-style: normal; color: var(--accent); }

    /* Responsive — explorer */
    @media (max-width: 900px) {
      .ml-cat-header { flex-direction: column; align-items: stretch; gap: 16px; }
      .ml-quickstart-btn { align-self: flex-start; }
      .ml-toolbar-row { flex-direction: column; align-items: flex-start; gap: 8px; }
      .ml-toolbar-label { width: auto; }
      .ml-toolbar-row--sort { flex-direction: row; align-items: center; gap: 10px; }
      .ml-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
      .ml-hero-stat { padding: 8px 16px; border-right: 1px solid var(--border); }
      .ml-hero-stat:nth-child(2n) { border-right: none; }
      .ml-cta-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
      .ml-cta-strip .btn-secondary { width: 100%; justify-content: center; }
    }

    @media (max-width: 600px) {
      .ml-hero { padding: 96px 0 40px; }
      .ml-hero-title { font-size: 38px; letter-spacing: -1.2px; }
      .ml-search input { height: 50px; font-size: 14px; padding-left: 46px; }
      .ml-search-icon { left: 18px; }
      .ml-search-kbd { display: none; }
      .ml-grid { grid-template-columns: 1fr; }
      .ml-toolbar-row--sort { flex-direction: column; align-items: stretch; }
      .ml-sort-label { justify-content: flex-start; }
    }

    /* ───── ANIMATIONS ───── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-in {
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 120px 24px 80px;
      }
      .categories-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
      .pricing-grid { grid-template-columns: 1fr; }
      .billing-units { grid-template-columns: 1fr; }
      .growth-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
      .enterprise-callout { flex-direction: column; align-items: flex-start; }
      .access-tier {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .access-tier-perks { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
    }

    /* ── Hero background grid ── */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }
    .hero { position: relative; }
    .hero > * { position: relative; z-index: 1; }

    /* ── Hero CTA button — accent variant ── */
    .btn-primary {
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
    .btn-primary:hover {
      box-shadow: 0 6px 28px rgba(0,0,0,0.18);
    }
    .btn-secondary:hover {
      transform: translateY(-1px);
    }

    /* ── Improved snippet copy button ── */
    .snippet-code-wrap { position: relative; }
    .snippet-copy-btn {
      position: absolute;
      top: 52px;
      right: 14px;
      z-index: 10;
      background: rgba(255,255,255,0.08);
      border: none;
      border-radius: 6px;
      padding: 5px 10px;
      color: rgba(255,255,255,0.4);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background .2s, color .2s;
    }
    .snippet-copy-btn:hover {
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.85);
    }
    .snippet-copy-btn.copied {
      color: #56d364;
    }

    /* ── Improved check items in snippet section ── */
    .snippet-check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .snippet-check-item:last-child { border-bottom: none; }
    .snippet-check-item .check {
      flex-shrink: 0;
      margin-top: 2px;
    }
    .snippet-check-text {
      line-height: 1.5;
    }
    .snippet-check-text strong {
      display: block;
      font-weight: 600;
      font-size: 14px;
    }
    .snippet-check-text span {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ── Savings card hover effect ── */
    .savings-card {
      transition: box-shadow .25s, transform .25s;
    }
    .savings-card:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,0.1);
      transform: translateY(-2px);
    }

    /* ── Model row hover ── */
    .model-row {
      transition: background .15s;
      border-radius: var(--radius-sm);
      margin: 0 -8px;
      padding-left: 8px;
      padding-right: 8px;
    }
    .model-row:hover {
      background: var(--surface2);
    }

    /* ── How it works — step connector improvements ── */
    .step-num {
      box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px var(--border);
      transition: background .2s, box-shadow .2s;
    }
    .step:hover .step-num {
      background: var(--accent);
      box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px var(--accent);
    }

    /* ── Category card accent border on hover ── */
    .cat-card {
      border-top: 3px solid transparent;
      transition: border-color .25s, transform .25s, box-shadow .25s;
    }
    .cat-card:hover {
      border-top-color: var(--accent);
    }

    /* ── Inline code on landing ── */
    code {
      font-family: 'JetBrains Mono', 'Courier New', monospace;
    }
