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

:root {
  --bg: #0f172a;          /* Slate 900 - soft dark slate */
  --bg2: #1e293b;         /* Slate 800 - menu & panel background */
  --bg3: #334155;         /* Slate 700 */
  --panel: #1e293b;       /* Slate 800 */
  --panel2: #334155;      /* Slate 700 - panel header & secondary elements */
  --border: #334155;      /* Slate 700 - soft panel borders */
  --border2: #475569;     /* Slate 600 - active borders */
  --blue: #3b82f6;        /* Softer modern blue */
  --blue2: #60a5fa;       /* Softer light-blue */
  --cyan: #06b6d4;        /* Softer cyan */
  --cyan2: #22d3ee;       /* Softer light-cyan */
  --green: #10b981;       /* Softer green */
  --green2: #34d399;      /* Softer light-green */
  --amber: #f59e0b;       /* Softer amber */
  --purple: #8b5cf6;      /* Softer purple */
  --purple2: #a78bfa;     /* Softer light-purple */
  --text: #f8fafc;        /* Slate 50 - clean off-white text */
  --text2: #94a3b8;       /* Slate 400 - readable secondary text */
  --text3: #64748b;       /* Slate 500 - tertiary text */
  --accent: var(--blue);
  --accent2: var(--blue2);
  --accent-rgb: 59, 130, 246; /* Glow styling matching the friendly blue */
  --mono: 'Share Tech Mono', monospace;
  --sans: 'Exo 2', sans-serif;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
}

body {
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

/* ── OS PICKER ── */
.os-picker {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
}

.os-picker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(0, 184, 212, 0.08), transparent 70%);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--cyan);
}

.picker-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.picker-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.15;
}

.picker-sub {
  font-size: 14px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.7;
}

.picker-real-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 200, 83, .1);
  border: 1px solid rgba(0, 200, 83, .25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--green2);
  font-family: var(--mono);
  letter-spacing: .05em;
  margin-bottom: 32px;
}

.picker-real-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.os-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.os-card {
  width: 230px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  cursor: pointer;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.os-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
}

.os-card:hover {
  transform: translateY(-5px);
}

.os-card.win:hover {
  border-color: var(--blue2);
  box-shadow: 0 8px 30px rgba(59, 134, 247, 0.25);
}

.os-card.win::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 134, 247, 0.1), transparent 70%);
}

.os-card.mac:hover {
  border-color: var(--purple2);
  box-shadow: 0 8px 30px rgba(179, 136, 255, 0.22);
}

.os-card.mac::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.1), transparent 70%);
}

.os-card:hover::before {
  opacity: 1;
}

.os-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.os-card.win .os-card-icon {
  background: rgba(59, 134, 247, 0.15);
}

.os-card.mac .os-card-icon {
  background: rgba(124, 58, 237, 0.15);
}

.os-card-icon svg {
  width: 32px;
  height: 32px;
}

.os-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.os-card-sub {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
}

.os-detected {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
  text-align: center;
}

.os-detected span {
  color: var(--cyan);
}

/* ── APP SHELL ── */
.header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hlogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hlogo-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hlogo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.hlogo-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hlogo-name span {
  color: var(--cyan);
}

.hbadge {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cyan);
  background: rgba(0, 184, 212, .1);
  border: 1px solid rgba(0, 184, 212, .25);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: .1em;
}

.hright {
  display: flex;
  align-items: center;
  gap: 10px;
}

.os-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: .07em;
}

.os-pill.win {
  background: rgba(59, 134, 247, 0.1);
  color: #82b1ff;
  border: 1px solid rgba(59, 134, 247, 0.2);
}

.os-pill.mac {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple2);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.os-pill svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.switch-btn {
  font-size: 11px;
  color: var(--text3);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
}

.switch-btn:hover {
  color: var(--text2);
  border-color: var(--border2);
}

/* ── STEPS WIZARD ── */
.wizard {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.wizard-head {
  text-align: center;
  margin-bottom: 36px;
}

.wizard-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wizard-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.wizard-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  transition: all .3s;
}

.step-dot.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .15);
}

.step-dot.done {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.step-dot.done::after {
  content: '✓';
  font-size: 14px;
}

.step-dot.done span {
  display: none;
}

.step-lbl {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  font-family: var(--mono);
  letter-spacing: .04em;
  transition: color .3s;
}

.step-dot.active + .step-lbl, .step-dot-wrap.active .step-lbl {
  color: var(--text2);
}

.step-dot-wrap.done .step-lbl {
  color: var(--green);
}

/* ── STEP CARDS ── */
.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 30px;
  display: none;
}

.step-card.active {
  display: block;
}

.step-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-card-title svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  color: var(--accent);
}

.step-card-sub {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* CMD BOX */
.cmd-box {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green2);
  line-height: 1.8;
  position: relative;
  word-break: break-all;
  user-select: all;
  cursor: pointer;
  transition: border-color .2s;
}

.cmd-box:hover {
  border-color: var(--cyan);
}

.cmd-copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(var(--accent-rgb), .2);
  border: 1px solid rgba(var(--accent-rgb), .35);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent2);
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
  white-space: nowrap;
}

.cmd-copy-btn:hover {
  background: rgba(var(--accent-rgb), .35);
}

.cmd-copy-btn.ok {
  background: rgba(0, 200, 83, .2);
  border-color: rgba(0, 200, 83, .35);
  color: var(--green2);
}

.cmd-note {
  font-size: 11px;
  color: var(--text3);
  margin-top: 10px;
  font-family: var(--mono);
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cmd-note span {
  color: var(--amber);
}

/* HOW-TO STEPS */
.howto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.howto-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.howto-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .15);
  border: 1px solid rgba(var(--accent-rgb), .3);
  color: var(--accent2);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--mono);
}

.howto-txt {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.howto-txt strong {
  color: var(--text);
}

.howto-txt kbd {
  background: var(--panel2);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
}

/* JSON PASTE BOX */
.json-area {
  width: 100%;
  min-height: 140px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green2);
  resize: vertical;
  outline: none;
  line-height: 1.7;
  transition: border-color .2s;
}

.json-area:focus {
  border-color: var(--cyan);
}

.json-area::placeholder {
  color: var(--text3);
}

.json-error {
  font-size: 12px;
  color: var(--amber);
  font-family: var(--mono);
  margin-top: 8px;
  display: none;
}

.json-error.show {
  display: block;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .03em;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-primary:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-secondary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ── RESULTS DASHBOARD ── */
#dashboard {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.dash-title span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 14px;
  margin-left: 10px;
}

.real-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 83, .1);
  border: 1px solid rgba(0, 200, 83, .25);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--green2);
  font-family: var(--mono);
  letter-spacing: .05em;
}

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

.dgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.dpanel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.dph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--panel2);
}

.dpt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text2);
}

.dpt svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.dps {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .07em;
}

.s-ok {
  background: rgba(0, 200, 83, .12);
  color: var(--green2);
}

.s-warn {
  background: rgba(255, 171, 0, .12);
  color: var(--amber);
}

.s-err {
  background: rgba(255, 107, 107, .15);
  color: #ff8b8b;
}

.s-idle {
  background: rgba(61, 90, 114, .3);
  color: var(--text3);
}

/* score ring */
.score-panel {
  grid-column: 3/4;
}

.score-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}

@media (max-width: 480px) {
  .score-body {
    flex-direction: column;
    gap: 16px;
  }
}

.score-ring {
  position: relative;
  width: 130px;
  height: 130px;
}

.score-ring canvas {
  position: absolute;
}

.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.score-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  letter-spacing: .1em;
  margin-top: 3px;
}

.score-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-metric {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.smn {
  color: var(--text2);
}

.smv {
  font-family: var(--mono);
  font-weight: 600;
}

/* issues */
.issues-panel {
  grid-column: 1/3;
}

.issues-body {
  padding: 8px 16px;
  max-height: 220px;
  overflow-y: auto;
}

.issues-body::-webkit-scrollbar {
  width: 4px;
}

.issues-body::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 2px;
}

.issue-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.issue-row:last-child {
  margin-bottom: 0;
}

.issue-row.bc {
  background: rgba(41, 121, 255, 0.03);
  border-color: rgba(41, 121, 255, 0.15);
}

.issue-row.bw {
  background: rgba(255, 171, 0, 0.03);
  border-color: rgba(255, 171, 0, 0.15);
}

.iicon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ic-b {
  background: rgba(41, 121, 255, 0.12);
  color: #2979ff;
}

.ic-a {
  background: rgba(255, 171, 0, 0.12);
  color: #ffab00;
}

.ic-g {
  background: rgba(0, 200, 83, 0.11);
}

.ic-p {
  background: rgba(156, 100, 255, 0.14);
}

.iicon svg {
  width: 16px;
  height: 16px;
}

.itxt {
  flex: 1;
}

.ititle {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.idesc {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.5;
}

.ibadge {
  font-family: var(--mono);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  font-weight: bold;
}

.bc {
  background: rgba(41, 121, 255, 0.05);
  color: #2979ff;
  border: 1px solid rgba(41, 121, 255, 0.22);
}

.bw {
  background: rgba(255, 171, 0, 0.05);
  color: #ffab00;
  border: 1px solid rgba(255, 171, 0, 0.22);
}

.bo {
  background: rgba(0, 200, 83, 0.11);
  color: var(--green2);
  border: 1px solid rgba(0, 200, 83, 0.18);
}

.bi {
  background: rgba(0, 184, 212, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 184, 212, 0.2);
}

/* HARDWARE SPECS PANEL */
.specs-panel {
  grid-column: 1/2;
}

.specs-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(24, 34, 60, 0.5);
  padding-bottom: 8px;
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* VISUAL RAM ADVISOR PANEL */
.ram-panel {
  grid-column: 2/4;
}

.ram-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ram-slots-board {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
}

.ram-slot {
  flex: 1;
  height: 76px;
  border: 1px dashed var(--text3);
  background: rgba(15, 20, 35, 0.4);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.25s ease;
}

.ram-slot.active {
  border: 1px solid var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.15);
}

.ram-slot-num {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text3);
  margin-bottom: 4px;
}

.ram-slot.active .ram-slot-num {
  color: var(--accent2);
}

.ram-slot-cap {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.ram-slot-meta {
  font-size: 8px;
  font-family: var(--mono);
  color: var(--text2);
  margin-top: 2px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.ram-slot-empty {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.05em;
}

.ram-advisor {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.05);
  border-left: 3px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
}

.ram-advisor-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

/* SECURITY PANEL */
.security-panel {
  grid-column: 1/2;
}

.security-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 6px;
}

.sec-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-icon.ok {
  background: rgba(0, 200, 83, 0.12);
  color: var(--green2);
}

.sec-icon.warn {
  background: rgba(255, 107, 107, 0.12);
  color: #ff8b8b;
}

.sec-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.sec-info {
  flex: 1;
  min-width: 0;
}

.sec-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.sec-sub {
  font-size: 10px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec-badge {
  font-family: var(--mono);
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.sec-badge.ok {
  background: rgba(0, 200, 83, 0.12);
  color: var(--green2);
}

.sec-badge.warn {
  background: rgba(255, 107, 107, 0.15);
  color: #ff8b8b;
}

/* power dial */
.power-panel {
  grid-column: 1/2;
}

.dial-wrap {
  position: relative;
  width: 170px;
  height: 96px;
  margin: 0 auto;
}

.dial-wrap canvas {
  position: absolute;
}

.dial-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

.power-plan {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-top: 6px;
}

.power-sub {
  font-size: 11px;
  color: var(--text2);
  text-align: center;
  margin-top: 3px;
}

/* network */
.net-panel {
  grid-column: 2/4;
}

.net-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.nstat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: .07em;
  margin-bottom: 2px;
}

.nstat-val {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan2);
}

.nstat-val.w {
  color: var(--amber);
}

.oscilloscope {
  width: 100%;
  height: 72px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* storage */
.storage-panel {
  grid-column: 1/3;
}

.storage-body {
  padding: 8px 16px;
}

.drive-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

.drive-icon {
  width: 32px;
  height: 32px;
  background: var(--bg3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drive-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text2);
}

.drive-info {
  flex: 1;
}

.drive-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.drive-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.drive-bar {
  height: 3px;
  border-radius: 2px;
  transition: width 1s ease;
}

.drive-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
  font-size: 10px;
  color: var(--text3);
  font-family: var(--mono);
}

.drive-st {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* cleaner */
.clean-panel {
  grid-column: 1/-1;
}

.clean-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.fchip {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text3);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}

.fchip:hover {
  color: var(--text2);
  border-color: var(--border2);
}

.fchip.on {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 184, 212, .07);
}

.fchip.on.cr {
  border-color: #82b1ff;
  color: #82b1ff;
  background: rgba(59, 134, 247, .09);
}

.fchip.on.wa {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255, 171, 0, .07);
}

.fchip.on.pu {
  border-color: var(--purple2);
  color: var(--purple2);
  background: rgba(124, 58, 237, .09);
}

.rc-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-left: auto;
}

.selall-btn {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  padding: 3px 7px;
  border-radius: 3px;
  transition: .2s;
}

.selall-btn:hover {
  background: rgba(0, 184, 212, .1);
}

.clean-tbl {
  width: 100%;
  border-collapse: collapse;
}

.clean-tbl th {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--text3);
  padding: 6px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--panel2);
  text-transform: uppercase;
}

.clean-tbl th:first-child {
  width: 32px;
  padding-right: 0;
}

.clean-tbl td {
  padding: 7px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.clean-tbl tr:last-child td {
  border-bottom: none;
}

.clean-tbl tr:hover td {
  background: rgba(255, 255, 255, .013);
}

.rcb {
  width: 13px;
  height: 13px;
  cursor: pointer;
}

.rsev {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

.rsev.cr {
  background: #82b1ff;
}

.rsev.wa {
  background: var(--amber);
}

.rsev.in {
  background: var(--cyan);
}

.rsev.pu {
  background: var(--purple2);
}

.rkey {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpath {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rtype {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.rtype.orphan {
  background: rgba(59, 134, 247, 0.11);
  color: #82b1ff;
  border: 1px solid rgba(59, 134, 247, 0.2);
}

.rtype.obsolete {
  background: rgba(255, 171, 0, 0.09);
  color: var(--amber);
  border: 1px solid rgba(255, 171, 0, 0.18);
}

.rtype.temp {
  background: rgba(0, 184, 212, 0.07);
  color: var(--cyan);
  border: 1px solid rgba(0, 184, 212, 0.18);
}

.rtype.invalid {
  background: rgba(0, 200, 83, 0.07);
  color: var(--green2);
  border: 1px solid rgba(0, 200, 83, 0.18);
}

.rtype.plist {
  background: rgba(156, 100, 255, 0.09);
  color: var(--purple2);
  border: 1px solid rgba(156, 100, 255, 0.18);
}

.rtype.daemon {
  background: rgba(255, 107, 0, 0.09);
  color: #ff9966;
  border: 1px solid rgba(255, 107, 0, 0.18);
}

.clean-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: var(--panel2);
  gap: 10px;
  flex-wrap: wrap;
}

.rc-sum {
  font-size: 12px;
  color: var(--text2);
}

.rc-sum strong {
  color: var(--text);
}

.rcbar-wrap {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.rcbar-wrap.vis {
  display: flex;
}

.rcbar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.rcbar-fill {
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
  transition: width 0.35s;
}

.rcbar-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green2);
  white-space: nowrap;
}

.clean-go-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.clean-go-btn:hover {
  filter: brightness(1.1);
}

.clean-go-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.clean-go-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* opt panel */
.opt-panel {
  grid-column: 3/4;
}

.opt-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.opt-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  cursor: pointer;
  transition: .2s;
}

.opt-toggle:hover {
  border-color: var(--border2);
}

.opt-toggle input {
  display: none;
}

.otl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  margin-left: 9px;
}

.tsw {
  width: 28px;
  height: 16px;
  background: var(--border2);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

.tsw::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--text3);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.2s;
}

.opt-toggle input:checked ~ .tsw {
  background: var(--accent);
}

.opt-toggle input:checked ~ .tsw::after {
  background: #fff;
  transform: translateX(12px);
}

.opt-go-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  width: 100%;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.opt-go-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  transform: translateX(-100%);
  transition: .5s;
}

.opt-go-btn:hover::after {
  transform: translateX(100%);
}

.opt-go-btn:hover {
  filter: brightness(1.1);
}

.opt-go-btn svg {
  width: 17px;
  height: 17px;
  stroke: white;
  fill: none;
  flex-shrink: 0;
}

.obtn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.obtn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: .8;
  margin-top: 2px;
}

/* opt overlay */
.opt-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.opt-overlay.vis {
  display: flex;
}

.spin-wrap {
  position: relative;
  width: 48px;
  height: 48px;
}

.spin-ring {
  fill: none;
  stroke: var(--border2);
  stroke-width: 4;
}

.spin-arc {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 105 40;
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    stroke-dashoffset: -145;
  }
}

.spin-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
}

.spin-check svg {
  width: 20px;
  height: 20px;
  stroke: var(--green2);
  fill: none;
  stroke-width: 2.5;
}

.opt-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.opt-sublbl {
  font-size: 10px;
  color: var(--text3);
  font-family: var(--mono);
  text-align: center;
}

.opt-bar-wrap {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.opt-bar {
  height: 3px;
  border-radius: 2px;
  width: 0%;
  transition: width .5s ease;
}

.opt-steps-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.osr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all .3s;
}

.osr.active {
  border-color: rgba(0, 229, 255, .3);
  background: rgba(0, 229, 255, 0.04);
}

.osr.done {
  border-color: rgba(0, 200, 83, .22);
  background: rgba(0, 200, 83, 0.04);
}

.osi {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--panel2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.osr.active .osi {
  background: rgba(0, 229, 255, .14);
}

.osr.done .osi {
  background: rgba(0, 200, 83, .16);
}

.osi svg {
  width: 9px;
  height: 9px;
  stroke: var(--text3);
  fill: none;
}

.osr.active .osi svg {
  stroke: var(--cyan2);
}

.osr.done .osi svg {
  stroke: var(--green2);
}

.osn {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text3);
  flex: 1;
  transition: color .3s;
}

.osr.active .osn {
  color: var(--cyan2);
}

.osr.done .osn {
  color: var(--green2);
}

.osb {
  font-size: 9px;
  font-family: var(--mono);
  padding: 1px 4px;
  border-radius: 2px;
  background: transparent;
  color: transparent;
  transition: all .3s;
}

.osr.active .osb {
  background: rgba(0, 229, 255, .1);
  color: var(--cyan2);
}

.osr.done .osb {
  background: rgba(0, 200, 83, .1);
  color: var(--green2);
}

/* opt done */
.opt-done {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-align: center;
}

.opt-done.vis {
  display: flex;
}

.done-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 200, 83, .13);
  border: 2px solid rgba(0, 200, 83, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
  from {
    transform: scale(.3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.done-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--green2);
  fill: none;
  stroke-width: 2.5;
}

.done-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.done-sub {
  font-size: 11px;
  color: var(--text2);
  max-width: 190px;
  line-height: 1.5;
}

.done-stats {
  display: flex;
  gap: 18px;
}

.dsv {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--mono);
}

.dsl {
  font-size: 9px;
  color: var(--text3);
  font-family: var(--mono);
  letter-spacing: .07em;
  margin-top: 1px;
}

.rescan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  margin-top: 4px;
}

.rescan-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 184, 212, .05);
}

.rescan-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.section-lbl {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--text3);
  text-transform: uppercase;
}

.section-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.empty-state {
  text-align: center;
  padding: 28px;
  color: var(--text3);
  font-size: 12px;
}

/* ── SCREENSHOT LAYOUT REPLICATION & WIZARD MODAL ── */

.hero-container {
  text-align: center;
  padding: 44px 24px 28px;
  position: relative;
}

.hero-title {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.hero-title span {
  color: var(--cyan);
}

.hero-sub {
  font-size: 14px;
  color: var(--text2);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text2);
  font-family: var(--sans);
}

.hero-checks div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-checks span {
  color: var(--green);
  font-weight: bold;
}

/* Modal Window styles */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}

.modal-overlay.vis {
  display: flex;
}

.modal-content {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 184, 212, 0.05);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--text3);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Grids */
.main-layout-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.main-results-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.advanced-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.diag-console-body {
  padding: 16px;
  background: rgba(15, 23, 42, 0.7);
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green2);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}

.diag-console-body::-webkit-scrollbar {
  width: 5px;
}
.diag-console-body::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

/* Match colors from screenshot */
.bc {
  background: rgba(41, 121, 255, 0.05);
  color: #2979ff;
  border: 1px solid rgba(41, 121, 255, 0.22);
}

.bw {
  background: rgba(255, 171, 0, 0.05);
  color: #ffab00;
  border: 1px solid rgba(255, 171, 0, 0.22);
}

.ic-b {
  background: rgba(41, 121, 255, 0.12);
  color: #2979ff;
}

.ic-a {
  background: rgba(255, 171, 0, 0.12);
  color: #ffab00;
}

/* Responsiveness media queries */
@media (max-width: 960px) {
  .main-results-grid {
    grid-template-columns: 1fr;
  }
  .advanced-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .advanced-details-grid {
    grid-template-columns: 1fr;
  }
  .header {
    padding: 0 16px;
  }
}

/* Contact Banner & Contact Modal Styles */
.contact-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cb-icon {
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.cb-content {
  flex: 1;
}

.cb-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cb-text {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
}

.cb-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.2);
  white-space: nowrap;
}

.cb-btn:hover {
  background: var(--accent2);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}

/* Contact Modal Layout Card Details */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-method-card:hover {
  background: rgba(var(--accent-rgb), 0.04);
  border-color: var(--accent);
}

.cmc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmc-info {
  flex: 1;
}

.cmc-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.cmc-value {
  font-size: 11px;
  color: var(--text2);
}

.cmc-arrow {
  color: var(--text3);
  font-size: 16px;
  transition: transform 0.2s;
}

.contact-method-card:hover .cmc-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* Specs Top Grid Layout */
.specs-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 960px) {
  .specs-top-grid {
    grid-template-columns: 1fr;
  }
  .specs-top-grid > .dpanel,
  .advanced-details-grid > .dpanel {
    grid-column: auto !important;
  }
}
