    /* ── PAGE HERO (download variant) ── */
    .dl-page-hero {
      background: var(--ink);
      position: relative;
      overflow: hidden;
      padding: 160px 0 80px;
    }
    .dl-page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 10% 0%, rgba(0,242,145,.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 100%, rgba(0,212,255,.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 55% 40%, rgba(0,242,145,.05) 0%, transparent 50%);
      pointer-events: none;
    }
    .dl-page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0,242,145,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,242,145,.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .dl-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }
    .dl-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(0,242,145,.3);
      background: rgba(0,242,145,.07);
      color: var(--g);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 12.5px;
      font-weight: 600;
      margin-bottom: 28px;
      letter-spacing: .3px;
    }
    .dl-hero-eyebrow span {
      width: 6px;
      height: 6px;
      background: var(--g);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .dl-hero-h1 {
      font-family: var(--ff-disp);
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -2.5px;
      margin-bottom: 20px;
    }
    .dl-hero-h1 .accent {
      background: linear-gradient(90deg, var(--g) 0%, var(--g2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .dl-hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,.5);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 40px;
    }
    .dl-hero-sub strong {
      color: rgba(255,255,255,.85);
      font-weight: 500;
    }
    .dl-hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.07);
      margin-top: 8px;
    }
    .dl-stat-item { text-align: center; }
    .dl-stat-num {
      font-family: var(--ff-disp);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .dl-stat-num span { color: var(--g); }
    .dl-stat-label {
      font-size: 11px;
      color: rgba(255,255,255,.35);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: .8px;
    }


    /* ── PLATFORM SELECTOR ── */
    .dl-section { padding: 80px 0; }
    .dl-section-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .platform-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      padding: 6px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 18px;
      backdrop-filter: blur(8px);
    }
    .ptab {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 11px 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 13px;
      transition: .25s var(--ease);
      color: rgba(255,255,255,.4);
      border: none;
      background: transparent;
      font-family: var(--ff-body);
      white-space: nowrap;
      flex: 1;
      justify-content: center;
    }
    .ptab i { font-size: 16px; }
    .ptab:hover { color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); }
    .ptab.active { background: var(--surface); color: var(--ink); box-shadow: 0 2px 12px rgba(0,0,0,.2); }
    .ptab.active i { color: var(--g); }

    /* ── CLIENT SECTION HEADER ── */
    .client-section-hd {
      margin-bottom: 32px;
    }
    .client-section-hd h2 {
      font-family: var(--ff-disp);
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -.8px;
      margin-bottom: 10px;
    }
    .client-section-hd p {
      font-size: 15px;
      color: rgba(255,255,255,.45);
      line-height: 1.7;
      max-width: 640px;
    }

    /* ── CLIENT CARD (unified) ── */
    .client-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .client-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      padding: 32px 36px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0 32px;
      align-items: start;
      position: relative;
      overflow: hidden;
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
    }
    .client-card:hover {
      border-color: rgba(0,242,145,.28);
      box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(0,242,145,.06);
      transform: translateY(-2px);
    }
    .client-card::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,242,145,.06) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Recommended badge at top right */
    .client-card.recommended { border-color: rgba(0,242,145,.22); }
    .client-card.recommended::after {
      content: 'Recommended';
      position: absolute;
      top: 18px;
      right: 20px;
      font-size: 10px;
      font-weight: 700;
      background: var(--g);
      color: var(--ink);
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: .3px;
    }
    .client-card.deprecated {
      opacity: .75;
      border-color: rgba(248,113,113,.2);
    }
    .client-card.deprecated:hover {
      border-color: rgba(248,113,113,.4);
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }
    .client-card.deprecated::after { display: none; }

    /* Icon */
    .cc-icon {
      width: 68px;
      height: 68px;
      border-radius: 18px;
      border: 1px solid rgba(0,242,145,.2);
      background: linear-gradient(135deg, rgba(0,242,145,.1), rgba(0,212,255,.06));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--g);
      flex-shrink: 0;
    }
    .client-card.deprecated .cc-icon {
      border-color: rgba(248,113,113,.25);
      background: linear-gradient(135deg, rgba(248,113,113,.08), rgba(248,113,113,.04));
      color: #f87171;
    }

    /* Body */
    .cc-body { min-width: 0; }
    .cc-name-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
      flex-wrap: wrap;
    }
    .cc-name {
      font-family: var(--ff-disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.3px;
    }
    .cc-badges {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .cc-badge {
      font-size: 10.5px;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 100px;
      font-family: var(--ff-mono);
      border: 1px solid rgba(0,242,145,.22);
      background: rgba(0,242,145,.07);
      color: var(--g);
    }
    .cc-badge.warn {
      border-color: rgba(251,191,36,.3);
      background: rgba(251,191,36,.07);
      color: #fbbf24;
    }
    .cc-badge.danger {
      border-color: rgba(248,113,113,.3);
      background: rgba(248,113,113,.07);
      color: #f87171;
    }
    .cc-desc {
      font-size: 14px;
      color: rgba(255,255,255,.42);
      line-height: 1.75;
      margin-bottom: 14px;
    }
    .cc-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cc-github {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: .2s;
      font-family: var(--ff-mono);
    }
    .cc-github:hover { color: var(--g); }
    .cc-github i { font-size: 13px; }
    .cc-deprecated-notice {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      background: rgba(248,113,113,.07);
      border: 1px solid rgba(248,113,113,.18);
      font-size: 13px;
      color: rgba(248,113,113,.8);
      line-height: 1.6;
      overflow-wrap: break-word;
      word-break: break-word;
      min-width: 0;
    }
    .cc-deprecated-notice i { font-size: 13px; flex-shrink: 0; margin-top: 2px; }
    .cc-deprecated-notice code { word-break: break-all; }

    /* Actions */
    .cc-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex-shrink: 0;
      min-width: 200px;
    }
    .btn-dl {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: .25s var(--ease);
      white-space: nowrap;
    }
    .btn-dl .dl-label { display: flex; align-items: center; gap: 7px; }
    .btn-dl .dl-arch {
      font-size: 10.5px;
      font-weight: 500;
      opacity: .55;
      font-family: var(--ff-mono);
      letter-spacing: .2px;
    }
    .btn-dl.primary {
      background: var(--g);
      color: var(--ink);
    }
    .btn-dl.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--g-glow); }
    .btn-dl.secondary {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.6);
    }
    .btn-dl.secondary:hover { border-color: rgba(0,242,145,.35); color: var(--g); background: rgba(0,242,145,.05); }
    .btn-dl.disabled {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      color: rgba(255,255,255,.2);
      cursor: not-allowed;
      pointer-events: none;
    }
    .btn-dl i.dl-icon { font-size: 14px; }

    /* ── PLATFORM PANEL ── */
    .platform-panel { display: none; }
    .platform-panel.active { display: block; }

    /* ── IOS NOTICE CARD ── */
    .ios-info-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(0,212,255,.18);
      border-radius: 20px;
      padding: 40px 48px;
      display: flex;
      gap: 36px;
      align-items: flex-start;
    }
    .ios-info-icon {
      width: 72px;
      height: 72px;
      flex-shrink: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(0,242,145,.06));
      border: 1px solid rgba(0,212,255,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: #38bdf8;
    }
    .ios-info-body h3 {
      font-family: var(--ff-disp);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: -.3px;
    }
    .ios-info-body p {
      font-size: 14.5px;
      color: rgba(255,255,255,.45);
      line-height: 1.78;
      margin-bottom: 20px;
    }
    .ios-app-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ios-app-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 12px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
    }
    .ios-app-icon { font-size: 22px; color: #38bdf8; width: 28px; text-align: center; }
    .ios-app-info { flex: 1; min-width: 0; }
    .ios-app-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 2px; }
    .ios-app-desc { font-size: 12px; color: rgba(255,255,255,.3); }
    .ios-app-store-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 8px;
      background: rgba(0,212,255,.1);
      border: 1px solid rgba(0,212,255,.2);
      color: #38bdf8;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: .2s;
      white-space: nowrap;
    }
    .ios-app-store-badge:hover { background: rgba(0,212,255,.18); border-color: rgba(0,212,255,.35); }

    /* ── CORE SECTION ── */
    .core-intro {
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 16px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .core-intro i { font-size: 22px; color: var(--g); flex-shrink: 0; }
    .core-intro p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }
    .core-intro a { color: var(--g); text-decoration: none; }
    .core-intro a:hover { text-decoration: underline; }
    .core-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 16px;
    }
    .core-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 16px;
      overflow: hidden;
      font-size: 13.5px;
    }
    .core-table thead th {
      background: rgba(255,255,255,.04);
      border-bottom: 1px solid rgba(255,255,255,.07);
      padding: 14px 20px;
      text-align: left;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .9px;
      color: rgba(255,255,255,.3);
    }
    .core-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: background .2s;
    }
    .core-table tbody tr:last-child { border-bottom: none; }
    .core-table tbody tr:hover { background: rgba(0,242,145,.04); }
    .core-table td { padding: 14px 20px; color: rgba(255,255,255,.65); vertical-align: middle; }
    .core-table td:first-child { font-family: var(--ff-mono); font-size: 13px; color: rgba(255,255,255,.8); }
    .core-os-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      font-family: var(--ff-mono);
    }
    .core-os-badge.win { background: rgba(59,130,246,.1); color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
    .core-os-badge.mac { background: rgba(168,85,247,.1); color: #c084fc; border: 1px solid rgba(168,85,247,.2); }
    .core-os-badge.linux { background: rgba(251,191,36,.1); color: #fbbf24; border: 1px solid rgba(251,191,36,.2); }
    .core-dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 8px;
      background: rgba(0,242,145,.07);
      border: 1px solid rgba(0,242,145,.18);
      color: var(--g);
      font-size: 12.5px;
      font-weight: 600;
      text-decoration: none;
      transition: .2s;
      font-family: var(--ff-mono);
    }
    .core-dl-btn:hover { background: rgba(0,242,145,.14); border-color: rgba(0,242,145,.35); }

    /* ── CTA STRIP ── */
    .dl-cta-strip {
      background: linear-gradient(90deg, rgba(0,242,145,.08) 0%, rgba(0,212,255,.06) 100%);
      border: 1px solid rgba(0,242,145,.18);
      border-radius: 20px;
      padding: 36px 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin: 56px 0 0;
    }
    .dl-cta-strip-text h3 {
      font-family: var(--ff-disp);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .dl-cta-strip-text p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }
    .dl-cta-strip-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
    .btn-cta-ghost {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 100px;
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.65);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .3s;
      background: rgba(255,255,255,.04);
    }
    .btn-cta-ghost:hover { border-color: rgba(0,242,145,.4); color: var(--g); background: rgba(0,242,145,.05); }
    .btn-cta-green {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 100px;
      background: var(--g);
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: .3s;
    }
    .btn-cta-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--g-glow); }

    /* ── FAQ ── */
    .dl-faq { padding: 80px 0; }

    /* ── DARK PAGE SECTION WRAPPER ── */
    .dark-section-wrap {
      background: var(--ink);
      padding: 80px 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .client-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
      }
      .cc-actions {
        grid-column: 1 / -1;
        min-width: unset;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
      }
      .btn-dl { flex: 1; min-width: 140px; }
    }
    @media (max-width: 768px) {
      .dl-hero-stats { gap: 24px; }
      .platform-tabs { padding: 4px; }
      .ptab { padding: 10px 14px; font-size: 13px; }
      .ptab span { display: none; }
      .ios-info-card { flex-direction: column; padding: 28px 24px; }
      .dl-cta-strip { flex-direction: column; align-items: flex-start; }
      .core-table { font-size: 12px; }
      .core-table td, .core-table thead th { padding: 12px 14px; white-space: nowrap; }
      .core-table td:first-child { white-space: normal; word-break: break-word; min-width: 120px; }
      .client-card { padding: 24px 20px; }
      .cc-actions { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .dl-hero-h1 { letter-spacing: -1.5px; }
      .dl-hero-stats { gap: 16px; }
      .dl-stat-num { font-size: 22px; }
    }
