/* ══════════════════════════════════════════════════════════════
   QABash Resume Scorer — Frontend v2.0
   Design language: QABash Studio (AI Test Case Generator /
   API Workbench / JSON Forge)
   Scoped entirely to .qrs-root
   ══════════════════════════════════════════════════════════════ */

.qrs-root *,
.qrs-root *::before,
.qrs-root *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

.qrs-root {
  --ink:       #09090B;
  --ink-2:     #18181b;
  --volt:      #1DB954;
  --volt-dim:  #17a349;
  --zinc-2:    #e4e4e7;
  --zinc-3:    #d4d4d8;
  --zinc-4:    #a1a1aa;
  --zinc-5:    #71717A;
  --zinc-7:    #3f3f46;
  --border:    #d0d7de;
  --border-l:  #e5e7eb;
  --bg:        #ffffff;
  --bg-s:      #f6f8fa;
  --bg-m:      #f0f2f5;
  --red:       #ef4444;
  --red-bg:    #fef2f2;
  --red-b:     #fecaca;
  --amber:     #f59e0b;
  --amber-bg:  #fffbeb;
  --amber-b:   #fde68a;
  --green-bg:  #f0fdf4;
  --green-b:   #bbf7d0;
  --green:     #16a34a;
  --blue:      #0969da;
  --blue-bg:   #eff6ff;
  --blue-b:    #bfdbfe;
  --sh1: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 14px rgba(0,0,0,.09), 0 2px 4px rgba(0,0,0,.05);
  --sh3: 0 8px 28px rgba(0,0,0,.11), 0 2px 8px rgba(0,0,0,.06);
  --r:    6px;
  --r-lg: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  display: block;
}

@keyframes qrs-in    { from { opacity:0; transform:translateY(8px) } to { opacity:1; transform:none } }
@keyframes qrs-spin  { to { transform: rotate(360deg) } }
@keyframes qrs-pulse { 0%,100%{ opacity:1 } 50%{ opacity:.25 } }

/* ══ PAGE HEADER ════════════════════════════════════════════ */
.qrs-page-header {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
  animation: qrs-in .35s ease both;
}

.qrs-breadcrumb {
  font-family: var(--mono); font-size: 11px; color: var(--zinc-5);
  letter-spacing: .04em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 5px;
}
.qrs-breadcrumb-sep { color: var(--zinc-3); }
.qrs-breadcrumb a { color: var(--zinc-5); text-decoration: none; }
.qrs-breadcrumb a:hover { color: var(--volt); }

.qrs-header-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.qrs-header-left { flex: 1; min-width: 0; }

.qrs-h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700; color: var(--ink);
  letter-spacing: -.025em; line-height: 1.15; margin-bottom: 7px;
}
.qrs-subtitle {
  font-size: 14px; color: var(--zinc-5); line-height: 1.6; max-width: 480px;
}

.qrs-header-meta {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.qrs-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--green-bg); border: 1px solid var(--green-b);
  border-radius: 20px; font-family: var(--mono); font-size: 11px;
  color: var(--green); font-weight: 600; white-space: nowrap;
}
.qrs-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--volt); animation: qrs-pulse 1.8s ease infinite;
}
.qrs-tech-tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.qrs-tech-tag {
  font-family: var(--mono); font-size: 10px; color: var(--zinc-5);
  background: var(--bg-s); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 7px; white-space: nowrap;
}

.qrs-trust-bar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 5px 12px; font-family: var(--mono); font-size: 11px; color: var(--zinc-5);
}
.qrs-trust-item { display: inline-flex; align-items: center; gap: 5px; }
.qrs-trust-sep  { color: var(--zinc-3); }

/* ══ TOOL BODY — two-column ════════════════════════════════ */
.qrs-tool-body {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh2);
  margin: 20px 0 0;
  min-height: 540px;
  animation: qrs-in .4s ease .08s both;
}

/* Left col */
.qrs-left-col {
  background: var(--bg-s); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.qrs-col-topbar {
  background: var(--bg-m); border-bottom: 1px solid var(--border);
  padding: 9px 14px; display: flex; align-items: center;
  gap: 8px; font-family: var(--mono); font-size: 11px;
  color: var(--zinc-5); font-weight: 600; flex-shrink: 0;
}
.qrs-topbar-dots { display: flex; gap: 5px; flex-shrink: 0; }
.qrs-topbar-dot  { width: 9px; height: 9px; border-radius: 50%; }

.qrs-left-body {
  padding: 18px; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}

/* Dropzone */
.qrs-dropzone {
  border: 1.5px dashed var(--border); border-radius: var(--r);
  padding: 28px 16px; text-align: center; cursor: pointer;
  background: var(--bg); position: relative;
  transition: border-color .2s, background .2s;
}
.qrs-dropzone:hover, .qrs-dropzone.drag-over {
  border-color: var(--volt); background: rgba(29,185,84,.04);
}
.qrs-dropzone input[type=file] {
  position: absolute; inset: 0; opacity: 0;
  cursor: pointer; width: 100%; height: 100%;
}
.qrs-dz-icon   { color: var(--zinc-4); margin-bottom: 9px; display: flex; justify-content: center; }
.qrs-dz-title  { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.qrs-dz-sub    { font-size: 12px; color: var(--zinc-5); margin-bottom: 7px; }
.qrs-dz-meta   { font-family: var(--mono); font-size: 10px; color: var(--zinc-4); }

/* File chip */
.qrs-file-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh1);
}
.qrs-file-chip-icon { color: var(--zinc-5); flex-shrink: 0; }
.qrs-file-chip-name {
  font-family: var(--mono); font-size: 11px; color: var(--ink);
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.qrs-file-chip-rm {
  background: none; border: none; font-size: 16px; color: var(--zinc-4);
  cursor: pointer; padding: 0 2px; line-height: 1; transition: color .15s;
}
.qrs-file-chip-rm:hover { color: var(--red); }

/* Consent */
.qrs-consent-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--zinc-5); cursor: pointer; line-height: 1.5;
}
.qrs-consent-label input { margin-top: 2px; accent-color: var(--volt); cursor: pointer; flex-shrink: 0; }

/* Analyze btn */
.qrs-btn-analyze {
  width: 100%; padding: 11px 16px;
  background: var(--ink); color: #fff; border: none;
  border-radius: var(--r); font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 7px; transition: background .15s, transform .12s, opacity .15s;
  margin-top: auto;
}
.qrs-btn-analyze:hover:not(:disabled) { background: var(--ink-2); transform: translateY(-1px); }
.qrs-btn-analyze:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.qrs-spinner {
  width: 13px; height: 13px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: qrs-spin .7s linear infinite;
}
.qrs-error {
  padding: 9px 12px; background: var(--red-bg);
  border: 1px solid var(--red-b); border-radius: var(--r);
  color: #b91c1c; font-size: 12px; line-height: 1.5;
}

/* Right col */
.qrs-right-col {
  background: var(--bg); display: flex; flex-direction: column; min-height: 0;
}
.qrs-right-topbar {
  background: var(--bg-s); border-bottom: 1px solid var(--border);
  padding: 9px 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 10px; flex-shrink: 0;
}
.qrs-right-topbar-l {
  font-family: var(--mono); font-size: 11px; color: var(--zinc-5); font-weight: 600;
  display: flex; align-items: center; gap: 7px;
}
.qrs-topbar-pill {
  font-family: var(--mono); font-size: 9px; color: var(--zinc-5);
  background: var(--bg-m); border: 1px solid var(--border-l);
  border-radius: 4px; padding: 2px 6px;
}

/* Empty state */
.qrs-right-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 20px; text-align: center; gap: 10px;
}
.qrs-right-empty-icon { opacity: .35; }
.qrs-right-empty-text {
  font-family: var(--mono); font-size: 12px; color: var(--zinc-4);
  line-height: 1.6; max-width: 220px;
}

/* Loading */
.qrs-right-loading {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px 20px; gap: 18px;
}
.qrs-orb {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--volt);
  animation: qrs-spin 1s linear infinite;
}
.qrs-loading-steps { display: flex; flex-direction: column; gap: 5px; width: 100%; max-width: 220px; }
.qrs-step {
  font-family: var(--mono); font-size: 11px; color: var(--zinc-3);
  display: flex; align-items: center; gap: 7px; transition: color .3s;
}
.qrs-step::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--zinc-3); flex-shrink: 0; transition: background .3s;
}
.qrs-step.active { color: var(--ink); font-weight: 600; }
.qrs-step.active::before { background: var(--volt); }
.qrs-step.done { color: var(--volt); }
.qrs-step.done::before { background: var(--volt); }

/* ══ RESULTS inside right col ══════════════════════════════ */
.qrs-results-inner {
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0;
}

/* Score strip */
.qrs-score-strip {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.qrs-score-ring-wrap { position: relative; width: 84px; height: 84px; flex-shrink: 0; }
.qrs-score-ring { width: 84px; height: 84px; transform: rotate(-90deg); display: block; }
.qrs-ring-bg   { fill: none; stroke: var(--bg-s); stroke-width: 7; }
.qrs-ring-fill {
  fill: none; stroke: var(--volt); stroke-width: 7; stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(.25,.46,.45,.94);
}
.qrs-score-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.qrs-score-num   { font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1; font-family: var(--mono); }
.qrs-score-denom { font-family: var(--mono); font-size: 10px; color: var(--zinc-5); }
.qrs-score-info  { flex: 1; min-width: 0; }
.qrs-score-grade {
  display: inline-block; padding: 2px 9px; border-radius: 4px;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  border: 1.5px solid currentColor; margin-bottom: 6px; letter-spacing: .04em;
}
.qrs-score-summary { font-size: 12px; color: var(--zinc-5); line-height: 1.55; margin-bottom: 8px; }
.qrs-quick-wins { display: flex; flex-direction: column; gap: 4px; }
.qrs-quick-win  { font-size: 12px; color: var(--ink); display: flex; align-items: flex-start; gap: 6px; }
.qrs-quick-win::before {
  content: '→'; color: var(--volt); font-family: var(--mono); font-weight: 700;
  flex-shrink: 0; font-size: 11px; margin-top: 1px;
}

/* Section separator — // style */
.qrs-section-sep {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  background: var(--bg-s);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.qrs-section-sep-label {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .07em; color: var(--zinc-5); text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
}
.qrs-section-sep-label::before { content: '//'; color: var(--zinc-3); font-weight: 400; }
.qrs-section-sep-count {
  margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--zinc-4);
  background: var(--bg-m); border: 1px solid var(--border-l);
  border-radius: 10px; padding: 1px 7px;
}

/* Section score cards */
.qrs-section-scores {
  padding: 12px 20px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px;
}
.qrs-sec-card {
  background: var(--bg-s); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 11px;
  transition: box-shadow .15s, transform .15s;
}
.qrs-sec-card:hover { box-shadow: var(--sh1); transform: translateY(-1px); }
.qrs-sec-card-name {
  font-family: var(--mono); font-size: 9px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--zinc-5); margin-bottom: 5px;
}
.qrs-sec-card-score {
  font-family: var(--mono); font-size: 19px; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 5px;
}
.qrs-sec-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.qrs-sec-bar-fill { height: 100%; border-radius: 2px; transition: width 1s ease .2s; }
.qrs-sec-notes { font-size: 10px; color: var(--zinc-5); margin-top: 4px; line-height: 1.4; }

/* Issues */
.qrs-issues-list { display: flex; flex-direction: column; }
.qrs-issue {
  padding: 13px 20px; border-bottom: 1px solid var(--border-l);
  display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 12px;
  transition: background .1s;
}
.qrs-issue:last-child { border-bottom: none; }
.qrs-issue:hover { background: var(--bg-s); }
.qrs-issue-sev { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 2px; }
.qrs-sev-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.qrs-sev-label { font-family: var(--mono); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.qrs-issue-cat { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; color: var(--zinc-5); margin-bottom: 3px; }
.qrs-issue-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.qrs-issue-detail { font-size: 12px; color: var(--zinc-5); line-height: 1.5; margin-bottom: 7px; }
.qrs-issue-fix {
  font-size: 12px; color: var(--ink-2);
  background: var(--bg-s); border-left: 2px solid var(--volt);
  padding: 5px 10px; border-radius: 0 4px 4px 0; line-height: 1.5;
}
.qrs-issue-fix-prefix { color: var(--volt); font-weight: 700; font-family: var(--mono); }

/* Strengths + Keywords two-col */
.qrs-two-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border);
}
.qrs-inner-card { padding: 14px 20px; border-right: 1px solid var(--border); }
.qrs-inner-card:last-child { border-right: none; }
.qrs-inner-hd {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--zinc-5); margin-bottom: 9px;
}
.qrs-strength-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.qrs-strength-list li { font-size: 12px; color: var(--ink); padding-left: 14px; position: relative; line-height: 1.4; }
.qrs-strength-list li::before { content: '✔'; position: absolute; left: 0; color: var(--volt); font-size: 10px; }
.qrs-kw-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.qrs-kw-pill { padding: 2px 7px; border-radius: 4px; font-family: var(--mono); font-size: 10px; font-weight: 500; }
.qrs-kw-pill.missing { background: var(--red-bg); color: #b91c1c; border: 1px solid var(--red-b); }
.qrs-kw-pill.found   { background: var(--green-bg); color: #15803d; border: 1px solid var(--green-b); }

/* ATS */
.qrs-ats-list { display: flex; flex-direction: column; padding: 4px 20px 10px; gap: 7px; }
.qrs-ats-tip {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 11px; background: var(--bg-s);
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 12px; color: var(--ink); line-height: 1.5;
}
.qrs-ats-num {
  font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--zinc-5);
  background: var(--bg-m); border: 1px solid var(--border-l);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══ BELOW TOOL ══════════════════════════════════════════════ */
.qrs-below-tool { animation: qrs-in .4s ease .16s both; }

.qrs-features {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px; margin: 20px 0 18px;
}
.qrs-feat-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px; box-shadow: var(--sh1);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.qrs-feat-card:hover { transform: translateY(-1px); box-shadow: var(--sh2); border-color: #c6cdd5; }
.qrs-feat-icon {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qrs-feat-icon--score    { background:#f0fdf4; color:#15803d; }
.qrs-feat-icon--section  { background:#eff6ff; color:#1d4ed8; }
.qrs-feat-icon--mistakes { background:#fff7ed; color:#c2410c; }
.qrs-feat-icon--ats      { background:#fdf4ff; color:#7e22ce; }
.qrs-feat-icon--1on1     { background:var(--green-bg); color:var(--volt); }
.qrs-feat-icon--privacy  { background:#f8fafc; color:#475569; }
.qrs-feat-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.qrs-feat-desc  { font-size: 11px; color: var(--zinc-5); line-height: 1.5; }

/* 1:1 Banner */
.qrs-1on1-banner {
  display: grid; grid-template-columns: minmax(0,1fr) 200px;
  gap: 24px; align-items: start;
  background: var(--ink); border-radius: var(--r-lg);
  padding: 26px 26px; position: relative; overflow: hidden;
}
.qrs-1on1-banner::after {
  content: ''; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  border: 40px solid rgba(29,185,84,.07); pointer-events: none;
}
.qrs-1on1-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; color: var(--volt); margin-bottom: 9px; text-transform: uppercase;
}
.qrs-1on1-title {
  font-size: 17px; font-weight: 700; color: #fff;
  line-height: 1.35; margin-bottom: 9px; letter-spacing: -.015em;
}
.qrs-1on1-desc { font-size: 13px; color: #a1a1aa; line-height: 1.6; margin-bottom: 12px; }
.qrs-1on1-desc strong { color: #e4e4e7; font-weight: 600; }
.qrs-1on1-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.qrs-1on1-pill {
  padding: 3px 8px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono); font-size: 10px; color: #a1a1aa;
}
.qrs-1on1-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 18px 16px; text-align: center;
  position: relative; z-index: 1;
}
.qrs-1on1-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(29,185,84,.15); border: 2px solid rgba(29,185,84,.35);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 7px;
}
.qrs-1on1-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.qrs-1on1-role {
  font-family: var(--mono); font-size: 9px; color: var(--zinc-5);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 11px;
}
.qrs-1on1-price-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 11px; }
.qrs-free-tag {
  padding: 2px 8px; border-radius: 4px; background: var(--volt); color: var(--ink);
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .06em;
}
.qrs-1on1-slots { font-size: 11px; color: var(--zinc-5); }
.qrs-btn-book {
  display: block; width: 100%; padding: 9px 12px;
  background: var(--volt); color: var(--ink); border: none; border-radius: var(--r);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: opacity .2s, transform .15s; margin-bottom: 5px;
}
.qrs-btn-book:hover { opacity: .88; transform: translateY(-1px); color: var(--ink); }
.qrs-1on1-via { font-family: var(--mono); font-size: 9px; color: #52525b; }

/* Retry */
.qrs-retry-row { display: flex; justify-content: center; padding: 14px 0 2px; }
.qrs-btn-retry {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
  background: var(--bg); color: var(--zinc-5); border: 1px solid var(--border);
  border-radius: var(--r); font-family: var(--font); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.qrs-btn-retry:hover { border-color: #c6cdd5; color: var(--ink); background: var(--bg-s); }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 820px) {
  .qrs-tool-body { grid-template-columns: 1fr; }
  .qrs-left-col  { border-right: none; border-bottom: 1px solid var(--border); }
  .qrs-two-inner { grid-template-columns: 1fr; }
  .qrs-inner-card { border-right: none; border-bottom: 1px solid var(--border); }
  .qrs-inner-card:last-child { border-bottom: none; }
}
@media (max-width: 720px) {
  .qrs-header-row { flex-direction: column; gap: 12px; }
  .qrs-header-meta { align-items: flex-start; }
  .qrs-features { grid-template-columns: repeat(2, 1fr); }
  .qrs-1on1-banner { grid-template-columns: 1fr; padding: 20px; }
  .qrs-section-scores { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .qrs-features { grid-template-columns: 1fr; }
  .qrs-section-scores { grid-template-columns: repeat(2, 1fr); }
  .qrs-tech-tags { justify-content: flex-start; }
}
