  /* ===== SLIDE 12: TECH ===== */
  .tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    width: 100%;
  }

  .range-bar-wrap {
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1.1rem 1.35rem;
    box-shadow: none;
    grid-column: 1 / -1;
  }

  .range-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.7rem;
  }

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

  .range-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    width: 75px;
    flex-shrink: 0;
    text-align: right;
  }

  .range-bar-bg {
    flex: 1;
    height: 18px;
    background: #1E1E1E;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
  }

  .range-bar-fill {
    height: 100%;
    border-radius: 9px;
    display: flex;
    align-items: center;
    padding-left: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 600;
    color: white;
  }

  .range-bar-fill.current { background: #94a3b8; }
  .range-bar-fill.target { background: var(--blue); }

  .pillar-card {
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1.1rem 1.35rem;
    box-shadow: none;
  }

  .pillar-num {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .pillar-title { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.45rem; }

  .pillar-items { display: flex; flex-direction: column; gap: 0.3rem; }

  .pillar-item {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    line-height: 1.3;
  }

  .pillar-item::before { content: '→'; color: var(--blue); flex-shrink: 0; font-weight: 700; }
