    :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;
      overflow-x: hidden;
    }

    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; }

    /* ───── 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 { }

    .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 ───── */
    .code-section {
      background: var(--text);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .code-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

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

    pre {
      font-family: 'Courier New', monospace;
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255,255,255,0.85);
      overflow-x: auto;
      white-space: pre;
    }

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

    /* ───── 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-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 { }

    .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);
    }

    /* 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); }
    }

    @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; }
    }

    /* ───── 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; }
    }
