  /* ===== SLIDE 11: US ROADMAP ===== */
  .roadmap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    width: 100%;
  }

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

  .roadmap-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid var(--blue);
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .step-list { display: flex; flex-direction: column; gap: 0.45rem; }

  .step-item { display: flex; gap: 0.55rem; align-items: flex-start; }

  .step-dot {
    width: 17px; height: 17px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 0.52rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 0.12rem;
    font-family: var(--font-mono);
  }

  .step-text { font-size: 0.75rem; color: var(--text); line-height: 1.35; }
