
  .map-hero {
    min-height: 50vh; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 100px 24px 48px;
    position: relative; overflow: hidden;
  }
  #particlesBg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
  .map-hero > * { position: relative; z-index: 1; }
  .map-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.03em; }
  .map-hero p { color: var(--text-secondary, #a1a1aa); font-size: 1.15rem; max-width: 640px; line-height: 1.6; }
  .map-section { padding: 56px 24px; max-width: 1100px; margin: 0 auto; }
  .map-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
  .map-section .section-sub { color: var(--text-secondary, #a1a1aa); font-size: 1.05rem; max-width: 600px; margin-bottom: 32px; line-height: 1.6; }
  .category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 1024px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .category-grid { grid-template-columns: 1fr; } }
  .category-card {
    background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: 20px; padding: 24px 22px; transition: border-color 0.3s, transform 0.3s;
  }
  .category-card:hover { border-color: var(--accent, #6366f1); transform: translateY(-4px); }
  .cat-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
  .category-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
  .category-card p { color: var(--text-secondary, #a1a1aa); line-height: 1.7; font-size: 0.95rem; margin-bottom: 16px; }
  .cat-items { list-style: none; padding: 0; }
  .cat-items li { padding: 6px 0; color: var(--text-secondary, #a1a1aa); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
  .cat-items li::before { content: '\2192'; color: var(--accent, #6366f1); font-weight: 700; }
  .arch-flow { display: flex; align-items: center; gap: 0; overflow-x: auto; padding-bottom: 8px; }
  @media (max-width: 768px) { .arch-flow { flex-direction: column; } }
  .arch-node {
    flex: 1; background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    padding: 20px 16px; text-align: center; position: relative; min-width: 120px; transition: border-color 0.3s;
  }
  .arch-node:first-child { border-radius: 12px 0 0 12px; }
  .arch-node:last-child { border-radius: 0 12px 12px 0; }
  @media (max-width: 768px) {
    .arch-node:first-child { border-radius: 12px 12px 0 0; }
    .arch-node:last-child { border-radius: 0 0 12px 12px; }
  }
  .arch-node:hover { border-color: var(--accent, #6366f1); }
  .arch-node h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
  .arch-node p { color: var(--text-secondary, #a1a1aa); font-size: 0.75rem; }
  .arch-node::after {
    content: '\2192'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
    color: var(--accent, #6366f1); font-size: 1rem; font-weight: 700; z-index: 2;
  }
  .arch-node:last-child::after { content: none; }
  @media (max-width: 768px) {
    .arch-node::after { content: '\2193'; right: auto; bottom: -12px; top: auto; left: 50%; transform: translateX(-50%); }
  }
  .systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 768px) { .systems-grid { grid-template-columns: 1fr; } }
  .system-card {
    background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: 16px; padding: 24px; transition: border-color 0.3s;
  }
  .system-card:hover { border-color: var(--accent, #6366f1); }
  .system-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
  .system-card p { color: var(--text-secondary, #a1a1aa); line-height: 1.7; font-size: 0.95rem; }
  .future-items { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
  .future-item {
    background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: 12px; padding: 20px; border-left: 3px solid var(--accent, #6366f1);
  }
  .future-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
  .future-item p { color: var(--text-secondary, #a1a1aa); font-size: 0.9rem; line-height: 1.6; }
  .map-cta { text-align: center; padding: 48px 24px; }
  .map-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
  .map-cta p { color: var(--text-secondary, #a1a1aa); margin-bottom: 32px; font-size: 1.05rem; }
  .section-illust { display: flex; justify-content: center; margin-bottom: 12px; opacity: 0.45; }
