
  /* ===== Screen separator ===== */
  .screen-marker {
    max-width: 1440px; margin: 80px auto 0;
    padding: 14px 32px;
    display: flex; align-items: center; gap: 14px;
    border-top: 1px solid var(--accent-line);
    background: linear-gradient(180deg, rgba(245,181,68,0.04), transparent);
  }
  .screen-marker .num {
    font-family: var(--font-mono); font-size: 11px;
    padding: 4px 10px; background: var(--accent); color: #0A0A0F;
    border-radius: var(--r-full); letter-spacing: 0.10em;
    text-transform: uppercase; font-weight: 600;
  }
  .screen-marker .label {
    font-family: var(--font-mono); font-size: 11px; color: var(--text-200);
    text-transform: uppercase; letter-spacing: 0.10em;
  }
  .screen-marker .url { color: var(--text-400); font-family: var(--font-mono); font-size: 11.5px; margin-left: auto; }

  .as-wrap { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

  /* ===== Shared: app icon tile ===== */
  .app-ic {
    border-radius: var(--r-12);
    display: grid; place-items: center;
    font-family: var(--font-mono); font-weight: 600; color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    flex: none;
  }
  .type-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 9px; border-radius: var(--r-4);
    background: var(--bg-300);
    box-shadow: inset 0 0 0 1px var(--line-100);
    font-family: var(--font-mono); font-size: 10.5px;
    letter-spacing: 0.08em; color: var(--text-300);
    text-transform: uppercase; white-space: nowrap;
  }
  .type-chip.dapp { color: var(--info); }
  .type-chip.ext  { color: var(--pos); }
  .type-chip.wallet { color: var(--accent); }
  .notrated {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: var(--r-full);
    box-shadow: inset 0 0 0 1px var(--line-200);
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-400); text-transform: uppercase; letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .reviewed-mark {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--pos); text-transform: uppercase; letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .reviewed-mark .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--pos); box-shadow: 0 0 0 3px var(--pos-dim); }

  /* ===== Hero (shared across variations) ===== */
  .as-hero { padding: 72px 0 48px; border-bottom: 1px solid var(--line-100); position: relative; overflow: hidden; }
  .as-hero::after {
    content: ""; position: absolute; top: 30px; right: -40px;
    width: 520px; height: 380px;
    background: radial-gradient(ellipse at top right, rgba(245,181,68,0.07), transparent 65%);
    pointer-events: none;
  }
  .as-hero .label { color: var(--accent); font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px; }
  .as-hero h1 { font-size: clamp(44px, 6vw, 76px); line-height: 0.98; letter-spacing: -0.030em; font-weight: 500; margin: 0 0 20px; max-width: 22ch; text-wrap: balance; }
  .as-hero h1 em { font-style: normal; color: var(--text-300); }
  .as-hero .lede { color: var(--text-200); font-size: 17.5px; line-height: 1.55; margin: 0 0 26px; max-width: 64ch; }
  .as-hero .ctas { display: flex; gap: 10px; align-items: center; }
  .as-hero .ctas .small { color: var(--text-400); font-family: var(--font-mono); font-size: 11.5px; margin-left: 10px; }
  .as-stats {
    margin-top: 48px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-100);
  }
  .as-stats .cell { padding: 18px 0 2px 24px; border-right: 1px solid var(--line-100); }
  .as-stats .cell:first-child { padding-left: 0; }
  .as-stats .cell:last-child { border-right: 0; }
  .as-stats .k { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.12em; }
  .as-stats .v { margin-top: 6px; font-family: var(--font-mono); font-size: 24px; letter-spacing: -0.018em; }
  .as-stats .sub { margin-top: 4px; font-size: 11.5px; color: var(--text-400); font-family: var(--font-mono); }

  .sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 32px; }
  .sec-head h2 { font-size: 30px; line-height: 1.08; letter-spacing: -0.022em; font-weight: 500; margin: 8px 0 0; }
  .sec-head h2 em { font-style: normal; color: var(--text-300); }
  .sec-head .sub { color: var(--text-300); font-size: 13.5px; line-height: 1.55; max-width: 48ch; margin: 0; }

  /* ===== Featured (sponsored) cards ===== */
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .feat-card {
    background: var(--bg-200);
    border-radius: var(--r-12);
    box-shadow: inset 0 0 0 1px var(--line-100);
    padding: 20px;
    display: grid; gap: 14px;
    cursor: pointer; transition: 120ms;
  }
  .feat-card:hover { background: var(--bg-300); box-shadow: inset 0 0 0 1px var(--line-200); }
  .feat-card .top { display: flex; align-items: center; gap: 14px; }
  .feat-card .app-ic { width: 46px; height: 46px; font-size: 15px; }
  .feat-card .nm { font-size: 16.5px; font-weight: 500; letter-spacing: -0.008em; }
  .feat-card .cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
  .feat-card .ds { font-size: 13px; line-height: 1.55; color: var(--text-200); margin: 0; }
  .feat-card .foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-100); padding-top: 14px; }

  /* ===== Variation A · directory rows ===== */
  .dir-body {
    padding: 40px 0 80px;
    display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px; align-items: start;
  }
  .dir-filters { position: sticky; top: 88px; }
  .dir-filters .f-group { padding: 16px 0; border-top: 1px solid var(--line-100); }
  .dir-filters .f-group:first-child { padding-top: 4px; border-top: 0; }
  .dir-filters .f-group h4 { margin: 0 0 12px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }
  .dir-filters .f-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--text-200); cursor: pointer; }
  .dir-filters .f-row .cb { width: 14px; height: 14px; border-radius: 3px; background: var(--bg-300); box-shadow: inset 0 0 0 1px var(--line-200); flex: 0 0 14px; display: grid; place-items: center; color: transparent; }
  .dir-filters .f-row.on .cb { background: var(--accent); color: #0A0A0F; box-shadow: none; }
  .dir-filters .f-row.on .cb::before { content: "✓"; font-size: 10px; font-weight: 700; }
  .dir-filters .f-row .cnt { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--text-500); }
  .dir-filters .f-row.on { color: var(--text-100); }

  .app-list { display: grid; gap: 10px; }
  .app-list-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
  .app-list-head .cnt { font-family: var(--font-mono); font-size: 12px; color: var(--text-400); }
  .app-row {
    background: var(--bg-200);
    border-radius: var(--r-12);
    box-shadow: inset 0 0 0 1px var(--line-100);
    padding: 18px 22px;
    display: grid; grid-template-columns: 52px minmax(0,1fr) auto;
    gap: 18px; align-items: center;
    cursor: pointer; transition: 120ms;
    position: relative;
  }
  .app-row:hover { background: var(--bg-300); box-shadow: inset 0 0 0 1px var(--line-200); }

  /* Compare selection */
  .cmp-check { position:absolute; top:8px; right:8px; width:24px; height:24px; border-radius:var(--r-6); background:var(--bg-100); box-shadow:inset 0 0 0 1px var(--line-200); display:grid; place-items:center; cursor:pointer; opacity:0; transition:100ms; z-index:3; color:var(--text-400); }
  .app-row:hover .cmp-check { opacity:1; }
  .cmp-check:hover { box-shadow:inset 0 0 0 1px var(--accent-line); color:var(--accent); }
  .cmp-check svg { width:13px; height:13px; opacity:0; }
  .cmp-check.on { opacity:1; background:var(--accent); color:#0A0A0F; box-shadow:none; }
  .cmp-check.on svg { opacity:1; }
  .app-row.cmp-sel { box-shadow:inset 0 0 0 1px var(--accent-line); }

  .cmp-tray { position:fixed; left:50%; bottom:22px; transform:translateX(-50%) translateY(140%); z-index:90; display:flex; align-items:center; gap:14px; padding:12px 14px 12px 18px; background:var(--bg-100); border-radius:var(--r-full); box-shadow:0 18px 44px rgba(0,0,0,0.42), inset 0 0 0 1px var(--line-200); transition:transform 220ms cubic-bezier(.22,.61,.36,1); max-width:calc(100vw - 32px); }
  .cmp-tray.show { transform:translateX(-50%) translateY(0); }
  .cmp-tray .lbl { font-family:var(--font-mono); font-size:11.5px; color:var(--text-400); text-transform:uppercase; letter-spacing:0.08em; white-space:nowrap; }
  .cmp-chips { display:flex; gap:6px; }
  .cmp-chip { width:30px; height:30px; border-radius:var(--r-8); display:grid; place-items:center; font-family:var(--font-mono); font-size:11px; font-weight:600; color:#fff; position:relative; box-shadow:inset 0 0 0 1px rgba(255,255,255,0.14); }
  .cmp-chip .x { position:absolute; top:-5px; right:-5px; width:15px; height:15px; border-radius:50%; background:var(--bg-100); box-shadow:inset 0 0 0 1px var(--line-200); color:var(--text-300); font-size:10px; display:grid; place-items:center; cursor:pointer; }
  .cmp-chip .x:hover { color:var(--neg,#e5484d); }
  .cmp-tray .cmp-clear { font-family:var(--font-mono); font-size:11.5px; color:var(--text-400); background:none; border:none; cursor:pointer; padding:6px; }
  .cmp-tray .cmp-clear:hover { color:var(--text-100); }
  .cmp-hint { font-size:12px; color:var(--text-500); }

  .cmp-back { position:fixed; inset:0; background:rgba(6,7,9,0.66); backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px); opacity:0; pointer-events:none; transition:180ms; z-index:120; }
  .cmp-back.open { opacity:1; pointer-events:auto; }
  .cmp-modal { position:fixed; inset:0; z-index:121; display:grid; place-items:center; padding:32px 20px; pointer-events:none; }
  .cmp-panel { width:min(1040px,100%); max-height:calc(100vh - 64px); overflow:auto; background:var(--bg-100); border-radius:var(--r-16); box-shadow:0 30px 70px rgba(0,0,0,0.5), inset 0 0 0 1px var(--line-200); transform:scale(0.97); opacity:0; transition:200ms; pointer-events:auto; }
  .cmp-back.open ~ .cmp-modal .cmp-panel { transform:none; opacity:1; }
  .cmp-phead { position:sticky; top:0; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 26px; background:var(--bg-100); border-bottom:1px solid var(--line-100); }
  .cmp-phead h3 { font-size:19px; font-weight:500; letter-spacing:-0.012em; margin:0; }
  .cmp-phead .sub { font-family:var(--font-mono); font-size:11px; color:var(--text-400); margin-top:3px; }
  .cmp-x { width:34px; height:34px; border-radius:var(--r-full); border:none; background:var(--bg-200); box-shadow:inset 0 0 0 1px var(--line-100); color:var(--text-200); font-size:16px; cursor:pointer; }
  .cmp-x:hover { background:var(--bg-300); color:var(--text-100); }
  .cmp-table { width:100%; border-collapse:collapse; }
  .cmp-table th, .cmp-table td { text-align:left; padding:14px 18px; border-bottom:1px solid var(--line-100); vertical-align:middle; }
  .cmp-table thead th { position:sticky; top:65px; background:var(--bg-100); z-index:1; }
  .cmp-table .rowlbl { font-family:var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-400); width:150px; white-space:nowrap; }
  .cmp-ag { display:flex; align-items:center; gap:10px; }
  .cmp-ag .lg { width:34px; height:34px; border-radius:var(--r-8); display:grid; place-items:center; font-family:var(--font-mono); font-size:12px; font-weight:600; color:#fff; box-shadow:inset 0 0 0 1px rgba(255,255,255,0.14); }
  .cmp-ag .nm { font-size:14px; font-weight:500; }
  .cmp-ag .lc { font-family:var(--font-mono); font-size:10.5px; color:var(--text-400); }
  .cmp-table td .v { font-family:var(--font-mono); font-size:14px; color:var(--text-100); }
  .cmp-table td .v.best { color:var(--accent-hi,var(--accent)); }
  .cmp-table td .v.best::after { content:' \25B2'; font-size:9px; color:var(--accent); }
  .cmp-chainrow { display:flex; flex-wrap:wrap; gap:4px; }
  .cmp-chainrow .c { font-family:var(--font-mono); font-size:10px; color:var(--text-300); background:var(--bg-200); box-shadow:inset 0 0 0 1px var(--line-100); border-radius:var(--r-4); padding:2px 6px; }
  .cmp-table td .btn { width:100%; }
  @media (max-width:720px) {
    .cmp-table .rowlbl { width:96px; font-size:9.5px; }
    .cmp-table th, .cmp-table td { padding:11px 12px; }
  }
  .app-row.is-promoted { box-shadow: inset 0 0 0 1px var(--line-200); background: linear-gradient(160deg, rgba(245,181,68,0.03), transparent 55%), var(--bg-200); }
  .app-row .app-ic { width: 52px; height: 52px; font-size: 17px; }
  .app-row .mid { min-width: 0; }
  .app-row .l1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .app-row .nm { font-size: 16.5px; font-weight: 500; letter-spacing: -0.008em; }
  .app-row .ds { font-size: 13px; color: var(--text-300); line-height: 1.5; margin-top: 5px; max-width: 68ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .app-row .l3 { display: flex; gap: 14px; margin-top: 8px; align-items: center; flex-wrap: wrap; }
  .app-row .right { display: grid; gap: 8px; justify-items: end; }
  .app-row .installs { font-family: var(--font-mono); font-size: 11px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.06em; }

  /* ===== Variation B · dense grid ===== */
  .cat-tabs { display: flex; gap: 6px; padding: 20px 0 0; flex-wrap: wrap; }
  .cat-tab {
    padding: 7px 14px; border-radius: var(--r-full);
    font-family: var(--font-mono); font-size: 11.5px;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text-300); box-shadow: inset 0 0 0 1px var(--line-100);
    cursor: pointer; transition: 80ms; background: transparent;
  }
  .cat-tab:hover { color: var(--text-100); background: var(--bg-200); }
  .cat-tab.on { background: var(--accent); color: #0A0A0F; box-shadow: none; font-weight: 600; }
  .cat-tab .n { opacity: 0.6; margin-left: 4px; }
  .tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 28px 0 80px; }
  .app-tile {
    background: var(--bg-200);
    border-radius: var(--r-12);
    box-shadow: inset 0 0 0 1px var(--line-100);
    padding: 18px;
    display: grid; gap: 12px;
    cursor: pointer; transition: 120ms;
    position: relative;
  }
  .app-tile:hover { background: var(--bg-300); box-shadow: inset 0 0 0 1px var(--line-200); transform: translateY(-1px); }
  .app-tile .top { display: flex; align-items: center; gap: 12px; }
  .app-tile .app-ic { width: 40px; height: 40px; font-size: 13px; border-radius: var(--r-8); }
  .app-tile .nm { font-size: 14.5px; font-weight: 500; letter-spacing: -0.006em; }
  .app-tile .cat { font-family: var(--font-mono); font-size: 10px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
  .app-tile .ds { font-size: 12px; color: var(--text-300); line-height: 1.5; margin: 0; min-height: 36px; }
  .app-tile .foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-100); padding-top: 12px; }
  .app-tile .score-sm { font-family: var(--font-mono); font-size: 12px; color: var(--text-100); }
  .app-tile .score-sm .denom { color: var(--text-500); }
  .app-tile .promo-corner { position: absolute; top: 14px; right: 14px; }

  /* ===== Variation C · curated collections ===== */
  .cur-banner {
    margin-top: 40px;
    border-radius: var(--r-16);
    background: linear-gradient(160deg, rgba(245,181,68,0.07), transparent 60%), var(--bg-200);
    box-shadow: inset 0 0 0 1px var(--accent-line);
    padding: 40px 44px;
    display: grid; grid-template-columns: minmax(0,1.5fr) auto; gap: 32px; align-items: center;
  }
  .cur-banner .promo-badge { margin-bottom: 16px; }
  .cur-banner h3 { font-size: 30px; font-weight: 500; letter-spacing: -0.020em; margin: 0 0 10px; }
  .cur-banner p { color: var(--text-200); font-size: 14.5px; line-height: 1.55; max-width: 56ch; margin: 0 0 20px; }
  .cur-banner .app-ic { width: 120px; height: 120px; font-size: 36px; border-radius: var(--r-16); }
  .cur-banner .row { display: flex; gap: 10px; align-items: center; }
  .collection { padding: 48px 0 0; }
  .collection .c-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
  .collection .c-head h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.012em; margin: 0; }
  .collection .c-head .note { font-family: var(--font-mono); font-size: 11px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.08em; }
  .collection .c-head a { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); }
  .strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .strip-card {
    background: var(--bg-200); border-radius: var(--r-12);
    box-shadow: inset 0 0 0 1px var(--line-100);
    padding: 16px; display: flex; gap: 12px; align-items: center;
    cursor: pointer; transition: 120ms;
  }
  .strip-card:hover { background: var(--bg-300); box-shadow: inset 0 0 0 1px var(--line-200); }
  .strip-card .app-ic { width: 44px; height: 44px; font-size: 14px; border-radius: var(--r-8); }
  .strip-card .nm { font-size: 14px; font-weight: 500; }
  .strip-card .meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; display: flex; gap: 8px; align-items: center; }
  .strip-card .sc { margin-left: auto; font-family: var(--font-mono); font-size: 13px; color: var(--text-100); }
  .strip-card .sc .denom { color: var(--text-500); }

  /* ===== App detail ===== */
  .apd-crumb { padding: 20px 0 0; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.10em; }
  .apd-crumb a { color: var(--text-300); }
  .apd-crumb a:hover { color: var(--text-100); }
  .apd-crumb .sep { opacity: 0.5; margin: 0 6px; }
  .apd-crumb .here { color: var(--text-100); }
  .apd-header { padding: 28px 0 32px; border-bottom: 1px solid var(--line-100); display: grid; grid-template-columns: 96px minmax(0,1fr) auto; gap: 24px; align-items: start; }
  .apd-header .app-ic { width: 96px; height: 96px; font-size: 30px; border-radius: var(--r-16); }
  .apd-header h1 { font-size: 40px; line-height: 1.02; letter-spacing: -0.026em; font-weight: 500; margin: 0 0 10px; }
  .apd-header .l1 { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
  .apd-header .ds { color: var(--text-200); font-size: 15px; line-height: 1.55; max-width: 68ch; margin: 0; }
  .apd-header .actions { display: grid; gap: 8px; justify-items: stretch; min-width: 180px; }
  .apd-body { padding: 36px 0 80px; display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 44px; align-items: start; }
  .apd-main { display: grid; gap: 40px; min-width: 0; }
  .apd-sec h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.010em; margin: 0 0 14px; }
  .apd-sec .p { color: var(--text-200); font-size: 14px; line-height: 1.6; max-width: 72ch; }

  .shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .shot {
    aspect-ratio: 16 / 10; border-radius: var(--r-8);
    background: var(--bg-300);
    box-shadow: inset 0 0 0 1px var(--line-100);
    display: grid; place-items: center;
    font-family: var(--font-mono); font-size: 11px; color: var(--text-500);
    text-transform: uppercase; letter-spacing: 0.10em;
  }

  .check-list { display: grid; gap: 8px; }
  .check-row {
    display: grid; grid-template-columns: 22px minmax(0,1fr) auto;
    gap: 12px; align-items: center;
    padding: 13px 16px;
    background: var(--bg-200); border-radius: var(--r-8);
    box-shadow: inset 0 0 0 1px var(--line-100);
  }
  .check-row .ic { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; background: var(--pos-dim); color: var(--pos); }
  .check-row.warn .ic { background: var(--warn-dim); color: var(--warn); }
  .check-row .t { font-size: 13.5px; }
  .check-row .d { font-size: 12px; color: var(--text-400); margin-top: 2px; font-family: var(--font-mono); }
  .check-row .when { font-family: var(--font-mono); font-size: 11px; color: var(--text-400); }

  .ver-list { display: grid; gap: 0; }
  .ver-row { display: grid; grid-template-columns: 110px minmax(0,1fr) auto; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line-100); align-items: baseline; }
  .ver-row:first-child { border-top: 0; }
  .ver-row .v { font-family: var(--font-mono); font-size: 13px; color: var(--text-100); }
  .ver-row .n { font-size: 13px; color: var(--text-300); line-height: 1.5; }
  .ver-row .dt { font-family: var(--font-mono); font-size: 11px; color: var(--text-400); }

  .apd-side { position: sticky; top: 88px; display: grid; gap: 12px; }
  .apd-side-card { background: var(--bg-200); border-radius: var(--r-12); box-shadow: inset 0 0 0 1px var(--line-100); padding: 20px; }
  .apd-side-card .h { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
  .apd-side-card .row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 13px; }
  .apd-side-card .row + .row { border-top: 1px solid var(--line-100); }
  .apd-side-card .row .k { color: var(--text-400); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
  .apd-side-card .row .v { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-100); }
  .apd-side-card p { font-size: 13px; color: var(--text-300); line-height: 1.55; margin: 0; }
  .rating-cta {
    text-align: center; display: grid; gap: 12px; justify-items: center;
    padding: 26px 20px;
  }
  .rating-cta .big-score { font-family: var(--font-mono); font-size: 44px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
  .rating-cta .big-score .denom { font-size: 20px; color: var(--text-400); font-weight: 400; }

  @media (max-width: 1100px) {
    .feat-grid, .strip { grid-template-columns: 1fr 1fr; }
    .tile-grid { grid-template-columns: 1fr 1fr; }
    .dir-body { grid-template-columns: 1fr; }
    .dir-filters { position: static; }
    .apd-body { grid-template-columns: 1fr; }
    .apd-side { position: static; }
    .apd-header { grid-template-columns: 64px 1fr; }
    .apd-header .app-ic { width: 64px; height: 64px; font-size: 20px; border-radius: var(--r-12); }
    .apd-header h1 { font-size: 32px; }
    .apd-header .actions { grid-column: 1 / -1; }
    .as-stats { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 720px) {
    .as-wrap { padding: 0 20px; }
    .as-hero { padding: 44px 0 36px; }
    .as-hero::after { display: none; }
    .as-hero h1 { font-size: 34px; }
    .as-hero .lede { font-size: 15px; }
    .as-hero .ctas { flex-wrap: wrap; gap: 8px; }
    .as-hero .ctas .small { margin-left: 0; width: 100%; }
    .as-stats { margin-top: 32px; }
    .as-stats .cell { padding: 14px 16px; }

    .feat-grid, .strip, .tile-grid { grid-template-columns: 1fr; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }

    .app-row { grid-template-columns: 44px minmax(0,1fr); padding: 16px; gap: 14px; }
    .app-row .app-ic { width: 44px; height: 44px; font-size: 14px; }
    .app-row .ds { white-space: normal; }
    .app-row .right { grid-column: 1 / -1; grid-auto-flow: column; justify-content: space-between; justify-items: start; align-items: center; border-top: 1px solid var(--line-100); padding-top: 12px; }

    .cur-banner { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }

    .apd-header { grid-template-columns: 56px 1fr; gap: 16px; }
    .apd-header .app-ic { width: 56px; height: 56px; font-size: 18px; }
    .apd-header h1 { font-size: 27px; }
    .shots { grid-template-columns: 1fr; }
    .ver-row { grid-template-columns: 72px 1fr; }
    .ver-row .dt { grid-column: 1 / -1; }
  }
