    :root {
      --color-obsidian: #0a0a0b;
      --color-charcoal: #141416;
      --color-graphite: #1c1c1f;
      --color-slate: #2a2a2f;
      --color-pewter: #4a4a52;
      --color-silver: #8a8a94;
      --color-platinum: #c4c4cc;
      --color-ivory: #f4f4f6;
      --color-white: #ffffff;
      --color-gold: #c9a962;
      --color-gold-light: #e4d4a4;
      --color-gold-dark: #a68b3d;
      --color-success: #4ade80;
      --color-error: #f87171;
      --color-warning: #fbbf24;
      --color-blue: #60a5fa;
      --color-purple: #a78bfa;
      --color-pink: #f472b6;
      --color-orange: #fb923c;
      --color-cyan: #22d3ee;
      --color-esg: #10b981;
      
      --heat-1: #3b82f6;
      --heat-2: #06b6d4;
      --heat-3: #10b981;
      --heat-4: #eab308;
      --heat-5: #f97316;
      --heat-6: #ef4444;
      
      --ai-gradient-1: #6366f1;
      --ai-gradient-2: #8b5cf6;
      --ai-gradient-3: #d946ef;
      --ai-gradient-4: #ec4899;
      
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, sans-serif;
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
    input[type="number"] { -moz-appearance: textfield; }
    
    body {
      font-family: var(--font-body);
      background: var(--color-obsidian);
      color: var(--color-platinum);
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 11, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--color-slate);
    }
    
    .header-content {
      max-width: 1800px;
      margin: 0 auto;
      padding: 14px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .back-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--color-platinum);
      transition: all 0.2s ease;
    }
    .back-btn:hover { background: var(--color-slate); }
    .back-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
    
    .page-title-area { display: flex; align-items: center; gap: 14px; }
    
    .page-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--ai-gradient-1), var(--ai-gradient-3));
      display: flex; align-items: center; justify-content: center;
    }
    .page-icon svg { width: 20px; height: 20px; stroke: white; stroke-width: 2; fill: none; }
    
    .page-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--color-white);
    }
    .page-title .highlight {
      background: linear-gradient(135deg, var(--ai-gradient-1), var(--ai-gradient-3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Main Layout - No sidebar */
    .main-layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 32px;
      max-width: 1800px;
      margin: 0 auto;
      padding: 32px;
      padding-bottom: 140px;
    }
    
    @media (max-width: 1200px) {
      .main-layout { 
        grid-template-columns: 1fr; 
      }
      .preview-panel {
        position: fixed !important;
        top: 71px;
        right: 0;
        width: 380px;
        height: calc(100vh - 71px - 80px);
        border-radius: 0 !important;
        border-right: none !important;
      }
    }
    
    @media (max-width: 900px) {
      .preview-panel { display: none; }
    }

    .main-content {
      max-width: 900px;
    }

    /* Fund Preview Panel - Top Right, Larger */
    .preview-panel {
      position: sticky;
      top: 103px;
      height: fit-content;
      max-height: calc(100vh - 180px);
      overflow-y: auto;
      background: var(--color-charcoal);
      border: 1px solid var(--color-slate);
      border-radius: 20px;
    }
    
    .fund-preview-header {
      padding: 24px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
      border-bottom: 1px solid var(--color-slate);
    }
    
    .fund-preview-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }
    
    .fund-preview-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--ai-gradient-2), var(--ai-gradient-4));
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .fund-preview-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 2; fill: none; }
    
    .fund-preview-info { flex: 1; }
    
    .fund-preview-name {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: 8px;
      line-height: 1.2;
    }
    
    .fund-preview-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .fund-tag {
      padding: 5px 12px;
      background: var(--color-slate);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      color: var(--color-platinum);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .fund-tag.esg { background: rgba(16, 185, 129, 0.2); color: var(--color-esg); }
    .fund-tag.gold { background: rgba(201, 169, 98, 0.2); color: var(--color-gold); }
    .fund-tag.blue { background: rgba(96, 165, 250, 0.2); color: var(--color-blue); }
    .fund-tag.purple { background: rgba(167, 139, 250, 0.2); color: var(--color-purple); }
    
    .fund-preview-body { padding: 24px; }
    
    .fund-preview-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }
    .preview-stat {
      text-align: center;
      padding: 16px 8px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 12px;
    }
    .preview-stat-value { font-size: 22px; font-weight: 700; color: var(--color-white); }
    .preview-stat-label { font-size: 10px; font-weight: 600; color: var(--color-silver); text-transform: uppercase; margin-top: 4px; }
    
    .fund-preview-section { margin-bottom: 20px; }
    .fund-preview-section:last-child { margin-bottom: 0; }
    
    .preview-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .preview-section-title { 
      font-size: 12px; 
      font-weight: 700; 
      color: var(--color-silver); 
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .preview-section-value {
      font-size: 12px;
      font-weight: 600;
      color: var(--color-gold);
    }
    
    .allocation-bar {
      height: 16px;
      border-radius: 8px;
      background: var(--color-slate);
      overflow: hidden;
      display: flex;
    }
    .allocation-segment { 
      height: 100%; 
      transition: width 0.3s ease;
      position: relative;
    }
    .allocation-segment:first-child { border-radius: 8px 0 0 8px; }
    .allocation-segment:last-child { border-radius: 0 8px 8px 0; }
    .allocation-segment:only-child { border-radius: 8px; }
    
    .allocation-legend { 
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px; 
      margin-top: 12px; 
    }
    .legend-item { 
      display: flex; 
      align-items: center; 
      gap: 8px; 
      font-size: 12px; 
      color: var(--color-platinum);
      padding: 8px 10px;
      background: var(--color-graphite);
      border-radius: 8px;
    }
    .legend-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
    .legend-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .legend-weight { font-weight: 700; color: var(--color-white); }
    
    .metrics-grid { 
      display: grid; 
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px; 
    }
    .metric-item { 
      display: flex; 
      justify-content: space-between; 
      padding: 12px 14px; 
      background: var(--color-graphite); 
      border: 1px solid var(--color-slate);
      border-radius: 10px; 
    }
    .metric-label { font-size: 12px; color: var(--color-silver); }
    .metric-value { font-size: 13px; font-weight: 700; color: var(--color-white); }
    .metric-value.positive { color: var(--color-success); }
    .metric-value.negative { color: var(--color-error); }

    /* Step Sections */
    .step-section { display: none; animation: fadeIn 0.4s ease; }
    .step-section.active { display: block; }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .step-header { margin-bottom: 28px; }
    .step-badge {
      display: inline-block;
      padding: 5px 12px;
      background: rgba(201, 169, 98, 0.1);
      border: 1px solid rgba(201, 169, 98, 0.2);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      color: var(--color-gold);
      margin-bottom: 12px;
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: 8px;
    }
    .step-desc { font-size: 15px; color: var(--color-silver); max-width: 600px; line-height: 1.6; }

    /* Form Elements */
    .form-group { margin-bottom: 28px; }
    .form-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--color-platinum);
      margin-bottom: 10px;
    }
    
    /* Info Icon */
    .info-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--color-slate);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: help;
      position: relative;
    }
    .info-icon svg { width: 10px; height: 10px; stroke: var(--color-silver); stroke-width: 2; fill: none; }
    .info-icon:hover { background: var(--color-pewter); }
    
    .info-tooltip {
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-charcoal);
      border: 1px solid var(--color-slate);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 12px;
      font-weight: 400;
      color: var(--color-platinum);
      line-height: 1.5;
      width: 260px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      z-index: 1000;
      pointer-events: none;
    }
    .info-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: var(--color-slate);
    }
    .info-icon:hover .info-tooltip { opacity: 1; visibility: visible; }
    
    .text-input {
      width: 100%;
      padding: 14px 16px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--color-white);
      transition: all 0.2s ease;
    }
    .text-input:focus {
      outline: none;
      border-color: var(--color-gold);
      box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    }
    .text-input::placeholder { color: var(--color-pewter); }

    /* Selection Cards */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
    }
    .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    
    .select-card {
      position: relative;
      padding: 18px;
      background: var(--color-graphite);
      border: 2px solid var(--color-slate);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .select-card:hover { border-color: var(--color-pewter); transform: translateY(-2px); }
    .select-card.selected { border-color: var(--color-gold); background: rgba(201, 169, 98, 0.06); }
    
    .select-card input { position: absolute; opacity: 0; pointer-events: none; }
    
    .select-card-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--color-slate);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
      transition: all 0.2s ease;
    }
    .select-card.selected .select-card-icon { background: var(--color-gold); }
    .select-card-icon svg { width: 22px; height: 22px; stroke: var(--color-platinum); stroke-width: 1.5; fill: none; }
    .select-card.selected .select-card-icon svg { stroke: var(--color-obsidian); }
    
    .select-card-title { font-size: 15px; font-weight: 600; color: var(--color-white); margin-bottom: 4px; }
    .select-card-desc { font-size: 12px; color: var(--color-silver); line-height: 1.4; }
    
    .select-card-check {
      position: absolute;
      top: 12px; right: 12px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--color-gold);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.2s ease;
    }
    .select-card.selected .select-card-check { opacity: 1; transform: scale(1); }
    .select-card-check svg { width: 12px; height: 12px; stroke: var(--color-obsidian); stroke-width: 3; fill: none; }

    /* ESG Section */
    .esg-panel {
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 28px;
      transition: all 0.3s ease;
    }
    .esg-panel.enabled {
      border-color: var(--color-esg);
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    }
    
    .esg-header {
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--color-slate);
    }
    
    .esg-title-area { display: flex; align-items: center; gap: 14px; }
    
    .esg-badge {
      padding: 6px 12px;
      background: var(--color-slate);
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--color-silver);
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
    }
    .esg-panel.enabled .esg-badge { background: var(--color-esg); color: white; }
    
    .esg-label-area { display: flex; flex-direction: column; }
    .esg-label { font-size: 15px; font-weight: 600; color: var(--color-white); }
    .esg-sublabel { font-size: 12px; color: var(--color-silver); }
    
    .toggle { position: relative; width: 52px; height: 28px; }
    .toggle input { opacity: 0; width: 0; height: 0; }
    .toggle-track {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--color-slate);
      border-radius: 28px;
      transition: 0.3s;
    }
    .toggle-track::before {
      position: absolute;
      content: "";
      height: 22px; width: 22px;
      left: 3px; bottom: 3px;
      background: var(--color-platinum);
      border-radius: 50%;
      transition: 0.3s;
    }
    .toggle input:checked + .toggle-track { background: var(--color-esg); }
    .toggle input:checked + .toggle-track::before { transform: translateX(24px); background: white; }
    
    .esg-body { padding: 0; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
    .esg-panel.enabled .esg-body { padding: 20px; max-height: 500px; }
    
    .esg-description {
      padding: 16px;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.15);
      border-radius: 10px;
      margin-bottom: 18px;
    }
    .esg-description-title { font-size: 13px; font-weight: 600; color: var(--color-esg); margin-bottom: 8px; }
    .esg-description-text { font-size: 13px; color: var(--color-platinum); line-height: 1.6; }
    .esg-description-text strong { color: var(--color-white); }
    
    .esg-criteria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .esg-criterion {
      padding: 14px;
      background: var(--color-slate);
      border-radius: 10px;
      border: 1px solid transparent;
    }
    .esg-criterion.active { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); }
    .esg-criterion-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .esg-criterion-label { font-size: 12px; font-weight: 600; color: var(--color-white); }
    .esg-criterion-badge { font-size: 10px; font-weight: 700; padding: 2px 6px; background: var(--color-esg); color: white; border-radius: 4px; }
    .esg-criterion-text { font-size: 11px; color: var(--color-silver); line-height: 1.4; }
    
    .esg-exclusions { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--color-slate); }
    .esg-exclusions-title { font-size: 11px; font-weight: 600; color: var(--color-silver); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
    .esg-exclusion-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .exclusion-tag {
      padding: 5px 10px;
      background: rgba(248, 113, 113, 0.1);
      border: 1px solid rgba(248, 113, 113, 0.2);
      border-radius: 6px;
      font-size: 11px;
      color: var(--color-error);
    }

    /* World Map with Hotspots */
    .map-container {
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 24px;
    }
    
    .map-header {
      padding: 16px 20px;
      border-bottom: 1px solid var(--color-slate);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .map-title { font-size: 14px; font-weight: 600; color: var(--color-white); }
    .map-subtitle { font-size: 11px; color: var(--color-silver); margin-top: 2px; }
    
    .map-toggle {
      display: flex;
      background: var(--color-slate);
      border-radius: 8px;
      padding: 3px;
    }
    .map-toggle-btn {
      padding: 6px 12px;
      border: none;
      background: transparent;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--color-silver);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .map-toggle-btn.active { background: var(--color-graphite); color: var(--color-white); }
    
    .map-wrapper {
      position: relative;
      width: 100%;
      height: 380px;
      background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
      overflow: hidden;
    }
    
    .map-bg {
      position: absolute;
      inset: 0;
      opacity: 0.12;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23ffffff' d='M150,120 Q200,80 280,100 Q350,90 400,130 Q380,180 350,200 Q300,220 250,200 Q180,190 150,150 Z M420,80 Q480,60 550,80 Q600,100 580,150 Q540,180 480,160 Q440,140 420,100 Z M600,100 Q680,80 750,110 Q800,140 780,190 Q720,220 650,200 Q600,160 600,120 Z M200,250 Q280,220 350,260 Q380,320 340,380 Q280,420 220,380 Q180,320 200,270 Z M500,200 Q580,180 650,220 Q700,280 680,350 Q620,400 550,380 Q490,340 500,260 Z M750,180 Q820,160 880,200 Q920,260 900,330 Q840,380 770,360 Q720,300 750,220 Z M820,350 Q880,330 920,380 Q940,430 900,470 Q840,490 800,460 Q780,410 820,370 Z'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
    }
    
    .map-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    
    /* Hotspots */
    .hotspot {
      position: absolute;
      transform: translate(-50%, -50%);
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
    }
    
    .hotspot-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 2px solid currentColor;
      opacity: 0.3;
      animation: pulse 2s ease-out infinite;
    }
    .hotspot-ring-1 { width: 60px; height: 60px; animation-delay: 0s; }
    .hotspot-ring-2 { width: 80px; height: 80px; animation-delay: 0.5s; }
    
    @keyframes pulse {
      0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
      100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
    }
    
    .hotspot-core {
      position: relative;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--color-slate);
      border: 3px solid var(--color-pewter);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--color-silver);
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      z-index: 10;
    }
    
    .hotspot:hover .hotspot-core {
      transform: scale(1.15);
      border-color: var(--color-gold);
      box-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
    }
    
    .hotspot.active .hotspot-core {
      background: var(--color-gold);
      border-color: var(--color-gold-light);
      color: var(--color-obsidian);
    }
    
    .hotspot.active .hotspot-ring { border-color: var(--color-gold); }
    
    .hotspot[data-heat="1"] .hotspot-core { background: var(--heat-1); border-color: var(--heat-1); color: white; }
    .hotspot[data-heat="2"] .hotspot-core { background: var(--heat-2); border-color: var(--heat-2); color: white; }
    .hotspot[data-heat="3"] .hotspot-core { background: var(--heat-3); border-color: var(--heat-3); color: white; }
    .hotspot[data-heat="4"] .hotspot-core { background: var(--heat-4); border-color: var(--heat-4); color: var(--color-obsidian); }
    .hotspot[data-heat="5"] .hotspot-core { background: var(--heat-5); border-color: var(--heat-5); color: white; }
    .hotspot[data-heat="6"] .hotspot-core { background: var(--heat-6); border-color: var(--heat-6); color: white; }
    
    .hotspot[data-heat="1"] .hotspot-ring { border-color: var(--heat-1); }
    .hotspot[data-heat="2"] .hotspot-ring { border-color: var(--heat-2); }
    .hotspot[data-heat="3"] .hotspot-ring { border-color: var(--heat-3); }
    .hotspot[data-heat="4"] .hotspot-ring { border-color: var(--heat-4); }
    .hotspot[data-heat="5"] .hotspot-ring { border-color: var(--heat-5); }
    .hotspot[data-heat="6"] .hotspot-ring { border-color: var(--heat-6); }
    
    .hotspot-label {
      position: absolute;
      top: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: 10px;
      font-weight: 600;
      color: var(--color-platinum);
      text-shadow: 0 1px 3px rgba(0,0,0,0.8);
      pointer-events: none;
    }
    
    .hotspot-funds {
      position: absolute;
      bottom: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: 9px;
      font-weight: 500;
      color: var(--color-silver);
      background: rgba(0,0,0,0.6);
      padding: 2px 6px;
      border-radius: 4px;
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .hotspot:hover .hotspot-funds { opacity: 1; }
    
    /* Popup - FIXED Z-INDEX */
    .hotspot-popup {
      position: absolute;
      top: 50%;
      left: calc(100% + 12px);
      transform: translateY(-50%);
      background: var(--color-charcoal);
      border: 1px solid var(--color-slate);
      border-radius: 12px;
      padding: 14px;
      min-width: 200px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      z-index: 1000;
    }
    .hotspot-popup.active { opacity: 1; visibility: visible; }
    .hotspot-popup.flip-left {
      left: auto;
      right: calc(100% + 12px);
    }
    
    .popup-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .popup-name { font-size: 14px; font-weight: 600; color: var(--color-white); }
    .popup-close {
      width: 22px; height: 22px;
      border-radius: 6px;
      background: var(--color-slate);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .popup-close:hover { background: var(--color-error); }
    .popup-close svg { width: 10px; height: 10px; stroke: var(--color-platinum); stroke-width: 2; fill: none; }
    
    .popup-info {
      padding: 10px 12px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 8px;
      margin-bottom: 12px;
      font-size: 11px;
      color: var(--color-platinum);
      line-height: 1.5;
    }
    .popup-info strong { color: var(--color-blue); }
    .popup-info.opportunity { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
    .popup-info.opportunity strong { color: var(--color-esg); }
    .popup-info.crowded { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); }
    .popup-info.crowded strong { color: var(--color-error); }
    
    .popup-levels { display: flex; gap: 4px; margin-bottom: 8px; }
    .popup-level-btn {
      flex: 1;
      height: 32px;
      border-radius: 6px;
      background: var(--color-slate);
      border: 2px solid transparent;
      font-size: 12px;
      font-weight: 700;
      color: var(--color-silver);
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .popup-level-btn:hover { background: var(--color-pewter); color: var(--color-white); }
    .popup-level-btn.active { background: var(--color-gold); border-color: var(--color-gold-light); color: var(--color-obsidian); }
    
    .popup-hint { font-size: 9px; color: var(--color-pewter); text-align: center; }
    
    /* Map Legend */
    .map-legend {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      border-top: 1px solid var(--color-slate);
      background: var(--color-graphite);
    }
    
    .legend-section { display: flex; align-items: center; gap: 12px; }
    .legend-title { font-size: 10px; font-weight: 600; color: var(--color-silver); text-transform: uppercase; }
    
    .legend-scale { display: flex; align-items: center; gap: 4px; }
    .legend-scale-label { font-size: 10px; color: var(--color-silver); }
    .legend-scale-bar { display: flex; gap: 2px; }
    .legend-scale-segment { width: 20px; height: 8px; border-radius: 2px; }
    .legend-scale-segment:nth-child(1) { background: var(--heat-1); }
    .legend-scale-segment:nth-child(2) { background: var(--heat-2); }
    .legend-scale-segment:nth-child(3) { background: var(--heat-3); }
    .legend-scale-segment:nth-child(4) { background: var(--heat-4); }
    .legend-scale-segment:nth-child(5) { background: var(--heat-5); }
    .legend-scale-segment:nth-child(6) { background: var(--heat-6); }
    
    .legend-pref { display: flex; align-items: center; gap: 8px; }
    .legend-pref-item { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--color-silver); }
    .legend-pref-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--color-pewter); background: var(--color-slate); }
    .legend-pref-dot.active { background: var(--color-gold); border-color: var(--color-gold); }

    /* Region List */
    .region-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 8px;
      padding: 16px 20px;
      background: rgba(0,0,0,0.2);
    }
    
    .region-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      background: var(--color-slate);
      border: 1px solid transparent;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .region-item:hover { background: var(--color-pewter); }
    .region-item.active { border-color: var(--color-gold); background: rgba(201, 169, 98, 0.1); }
    
    .region-item-left { display: flex; align-items: center; gap: 8px; }
    .region-item-heat { width: 8px; height: 8px; border-radius: 50%; }
    .region-item-name { font-size: 12px; color: var(--color-platinum); }
    .region-item-level { font-size: 12px; font-weight: 700; color: var(--color-gold); opacity: 0; }
    .region-item.active .region-item-level { opacity: 1; }

    /* Sector Grid */
    .sector-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 10px;
    }
    .sector-card {
      padding: 16px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .sector-card:hover { border-color: var(--color-pewter); }
    .sector-card.active { border-color: var(--color-gold); background: rgba(201, 169, 98, 0.06); }
    
    .sector-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .sector-card-name { font-size: 13px; font-weight: 600; color: var(--color-white); }
    .sector-card-level { font-size: 12px; font-weight: 700; color: var(--color-gold); opacity: 0; }
    .sector-card.active .sector-card-level { opacity: 1; }
    
    .sector-dots { display: flex; gap: 4px; }
    .sector-dot { width: 20px; height: 6px; border-radius: 3px; background: var(--color-slate); transition: background 0.15s ease; }
    .sector-dot.filled { background: var(--color-gold); }

    /* Risk Meter */
    .risk-meter { margin-bottom: 28px; }
    .risk-scale { display: flex; gap: 6px; margin-bottom: 16px; }
    .risk-segment {
      flex: 1;
      height: 52px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s ease;
      opacity: 0.25;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: transparent;
    }
    .risk-segment:hover { opacity: 0.5; }
    .risk-segment.active { opacity: 1; color: var(--color-obsidian); transform: scaleY(1.08); }
    
    .risk-segment:nth-child(1) { background: #22c55e; }
    .risk-segment:nth-child(2) { background: #84cc16; }
    .risk-segment:nth-child(3) { background: #eab308; }
    .risk-segment:nth-child(4) { background: #f97316; }
    .risk-segment:nth-child(5) { background: #ef4444; }
    
    .risk-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 22px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 12px;
    }
    .risk-label { font-size: 20px; font-weight: 600; color: var(--color-white); }
    .risk-desc { font-size: 13px; color: var(--color-silver); text-align: right; max-width: 300px; }

    /* Slider */
    .slider-group { margin-bottom: 28px; }
    .slider-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .slider-value { font-size: 26px; font-weight: 700; color: var(--color-gold); }
    
    .slider-track {
      position: relative;
      height: 10px;
      background: var(--color-slate);
      border-radius: 5px;
      cursor: pointer;
    }
    .slider-fill {
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
      border-radius: 5px;
      pointer-events: none;
    }
    .slider-thumb {
      position: absolute;
      top: 50%;
      width: 24px; height: 24px;
      background: var(--color-white);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      cursor: grab;
    }
    
    .slider-labels { display: flex; justify-content: space-between; margin-top: 10px; }
    .slider-label { font-size: 11px; color: var(--color-silver); }

    /* Holdings */
    .holdings-container {
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 16px;
      overflow: hidden;
    }
    .holdings-header {
      padding: 18px 20px;
      border-bottom: 1px solid var(--color-slate);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .holdings-title { font-size: 15px; font-weight: 600; color: var(--color-white); }
    .holdings-controls { display: flex; align-items: center; gap: 10px; }
    
    .holdings-total {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(74, 222, 128, 0.1);
      border: 1px solid rgba(74, 222, 128, 0.2);
      border-radius: 100px;
    }
    .holdings-total.warning { background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.2); }
    .holdings-total.warning .total-value { color: var(--color-warning); }
    .holdings-total.error { background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.2); }
    .holdings-total.error .total-value { color: var(--color-error); }
    
    .total-label { font-size: 11px; color: var(--color-silver); }
    .total-value { font-size: 14px; font-weight: 700; color: var(--color-success); }
    
    .mode-toggle { display: flex; background: var(--color-slate); border-radius: 6px; padding: 3px; }
    .mode-btn {
      padding: 6px 12px;
      border: none;
      background: transparent;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 600;
      color: var(--color-silver);
      cursor: pointer;
    }
    .mode-btn.active { background: var(--color-graphite); color: var(--color-ivory); }
    
    .holdings-hint {
      padding: 12px 20px;
      background: rgba(201, 169, 98, 0.05);
      border-bottom: 1px solid var(--color-slate);
      font-size: 12px;
      color: var(--color-silver);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .holdings-hint svg { width: 16px; height: 16px; stroke: var(--color-gold); stroke-width: 2; fill: none; flex-shrink: 0; }
    
    .holdings-list { max-height: 420px; overflow-y: auto; }
    
    .holding-item {
      display: grid;
      grid-template-columns: 1fr 180px 70px 36px;
      gap: 12px;
      align-items: center;
      padding: 14px 20px;
      border-bottom: 1px solid var(--color-slate);
      transition: background 0.2s ease;
    }
    .holding-item:hover { background: rgba(255,255,255,0.02); }
    
    .holding-info { display: flex; align-items: center; gap: 12px; }
    .holding-color { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
    .holding-details { min-width: 0; }
    .holding-name { font-size: 14px; font-weight: 500; color: var(--color-white); }
    .holding-meta { font-size: 11px; color: var(--color-silver); display: flex; align-items: center; gap: 6px; }
    
    .esg-rating {
      padding: 2px 6px;
      background: rgba(16, 185, 129, 0.15);
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      color: var(--color-esg);
    }
    .esg-rating.low { background: rgba(251, 191, 36, 0.15); color: var(--color-warning); }
    .esg-rating.fail { background: rgba(248, 113, 113, 0.15); color: var(--color-error); }
    
    .holding-slider {
      position: relative;
      height: 8px;
      background: var(--color-slate);
      border-radius: 4px;
      cursor: pointer;
    }
    .holding-slider-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 4px; }
    .holding-slider-thumb {
      position: absolute;
      top: 50%;
      width: 16px; height: 16px;
      background: white;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
      cursor: grab;
      opacity: 0;
    }
    .holding-item:hover .holding-slider-thumb { opacity: 1; }
    
    .holding-weight {
      padding: 10px;
      background: var(--color-slate);
      border: 1px solid transparent;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      color: var(--color-white);
      text-align: center;
      width: 100%;
    }
    .holding-weight:focus { outline: none; border-color: var(--color-gold); }
    
    .holding-remove {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
    }
    .holding-item:hover .holding-remove { opacity: 0.4; }
    .holding-remove:hover { opacity: 1 !important; background: var(--color-error); }
    .holding-remove svg { width: 14px; height: 14px; stroke: var(--color-platinum); stroke-width: 2; fill: none; }
    
    .holdings-footer { padding: 16px 20px; }
    .add-btn {
      width: 100%;
      padding: 14px;
      background: transparent;
      border: 2px dashed var(--color-pewter);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--color-silver);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s ease;
    }
    .add-btn:hover { border-color: var(--color-gold); color: var(--color-gold); background: rgba(201, 169, 98, 0.05); }
    .add-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

    /* Suggestions */
    .suggestions-section { margin-top: 24px; }
    .suggestions-header { margin-bottom: 14px; }
    .suggestions-title { font-size: 15px; font-weight: 600; color: var(--color-white); }
    .suggestions-sub { font-size: 12px; color: var(--color-silver); margin-top: 2px; }
    
    .suggestions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 10px;
    }
    .suggestion-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .suggestion-card:hover { border-color: var(--color-pewter); background: var(--color-slate); }
    
    .suggestion-logo {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--color-slate);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--color-platinum);
      flex-shrink: 0;
    }
    .suggestion-info { flex: 1; min-width: 0; }
    .suggestion-name { font-size: 14px; font-weight: 500; color: var(--color-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .suggestion-meta { font-size: 11px; color: var(--color-silver); display: flex; align-items: center; gap: 6px; }
    
    .suggestion-add {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--color-gold);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      flex-shrink: 0;
    }
    .suggestion-card:hover .suggestion-add { opacity: 1; }
    .suggestion-add svg { width: 14px; height: 14px; stroke: var(--color-obsidian); stroke-width: 2.5; fill: none; }

    /* Review */
    .review-grid { display: grid; gap: 12px; }
    .review-card {
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 16px;
      padding: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .review-card:hover { border-color: var(--color-pewter); }
    
    .review-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .review-card-title { font-size: 11px; font-weight: 600; color: var(--color-silver); text-transform: uppercase; letter-spacing: 0.03em; }
    .review-card-edit { font-size: 11px; color: var(--color-gold); }
    
    .review-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .review-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      background: var(--color-slate);
      border-radius: 8px;
      font-size: 13px;
      color: var(--color-platinum);
    }
    .review-tag-value { font-weight: 600; color: var(--color-gold); }
    
    .review-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .review-metric { text-align: center; padding: 14px; background: var(--color-slate); border-radius: 10px; }
    .review-metric-value { font-size: 20px; font-weight: 700; color: var(--color-white); }
    .review-metric-label { font-size: 10px; color: var(--color-silver); margin-top: 2px; }

    /* Nav Footer - Horizontal Steps */
    .nav-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 11, 0.98);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--color-slate);
      padding: 16px 32px;
      z-index: 50;
    }
    
    .nav-footer-content {
      max-width: 1800px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    
    /* Horizontal Step Indicators */
    .step-indicators {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .step-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .step-indicator:hover { background: var(--color-slate); }
    .step-indicator.active { 
      background: rgba(201, 169, 98, 0.1); 
      border-color: var(--color-gold);
    }
    .step-indicator.completed {
      background: rgba(74, 222, 128, 0.1);
      border-color: rgba(74, 222, 128, 0.3);
    }
    
    .step-indicator-num {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--color-slate);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--color-silver);
    }
    .step-indicator.active .step-indicator-num { 
      background: var(--color-gold); 
      color: var(--color-obsidian); 
    }
    .step-indicator.completed .step-indicator-num { 
      background: var(--color-success); 
      color: var(--color-obsidian); 
    }
    .step-indicator-num svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 3; fill: none; }
    
    .step-indicator-name { 
      font-size: 12px; 
      font-weight: 500; 
      color: var(--color-platinum);
      display: none;
    }
    .step-indicator.active .step-indicator-name { 
      display: block;
      color: var(--color-gold); 
    }
    
    @media (min-width: 1000px) {
      .step-indicator-name { display: block; }
    }
    
    .nav-buttons { display: flex; gap: 10px; }
    
    .btn-nav {
      padding: 12px 24px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    .btn-nav svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
    
    .btn-back { background: transparent; border: 1px solid var(--color-slate); color: var(--color-platinum); }
    .btn-back:hover { background: var(--color-slate); }
    
    .btn-next {
      background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
      border: none;
      color: var(--color-obsidian);
      box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
    }
    .btn-next:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4); }
    
    .btn-create {
      background: linear-gradient(135deg, var(--ai-gradient-2), var(--ai-gradient-4));
      border: none;
      color: white;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    }
    .btn-create:hover { transform: translateY(-2px); }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .modal-overlay.active { opacity: 1; visibility: visible; }
    
    .modal {
      background: var(--color-charcoal);
      border: 1px solid var(--color-slate);
      border-radius: 16px;
      width: 90%;
      max-width: 550px;
      max-height: 80vh;
      overflow: hidden;
    }
    
    .modal-header {
      padding: 18px 20px;
      border-bottom: 1px solid var(--color-slate);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .modal-title { font-size: 16px; font-weight: 600; color: var(--color-white); }
    .modal-close {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--color-slate);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .modal-close:hover { background: var(--color-pewter); }
    .modal-close svg { width: 16px; height: 16px; stroke: var(--color-platinum); stroke-width: 2; fill: none; }
    
    .modal-search { padding: 16px 20px; border-bottom: 1px solid var(--color-slate); }
    .search-input {
      width: 100%;
      padding: 12px 16px;
      background: var(--color-graphite);
      border: 1px solid var(--color-slate);
      border-radius: 10px;
      font-size: 15px;
      color: var(--color-white);
    }
    .search-input:focus { outline: none; border-color: var(--color-gold); }
    .search-input::placeholder { color: var(--color-pewter); }
    
    .modal-results { max-height: 350px; overflow-y: auto; padding: 10px; }
    
    .result-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 10px;
      cursor: pointer;
    }
    .result-item:hover { background: var(--color-slate); }
    
    .result-logo {
      width: 40px; height: 40px;
      border-radius: 8px;
      background: var(--color-slate);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--color-platinum);
    }
    .result-info { flex: 1; }
    .result-name { font-size: 14px; font-weight: 500; color: var(--color-white); }
    .result-meta { font-size: 12px; color: var(--color-silver); display: flex; align-items: center; gap: 6px; }
    
    .result-add {
      padding: 8px 14px;
      background: var(--color-gold);
      border: none;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--color-obsidian);
      cursor: pointer;
    }

/* ========================================
   ADDITIONAL STYLES FOR WP INTEGRATION
======================================== */

/* Toast Notifications */
.sfb-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  padding: 14px 24px;
  background: var(--color-graphite);
  border: 1px solid var(--color-slate);
  border-radius: 12px;
  color: var(--color-platinum);
  font-size: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 10000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.sfb-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sfb-toast.success { border-color: var(--color-success); }
.sfb-toast.error { border-color: var(--color-error); }

/* ESG Badge Small */
.esg-badge-small {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-esg);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 4px;
}

/* Review Cards */
.review-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-slate);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.review-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-slate);
  font-size: 14px;
}

.review-row:last-child { border-bottom: none; }
.review-row span:first-child { color: var(--color-silver); }
.review-row span:last-child { color: var(--color-white); font-weight: 500; }

.review-holdings {
  font-size: 13px;
  color: var(--color-platinum);
  line-height: 1.6;
}

/* No Results */
.no-results {
  padding: 40px;
  text-align: center;
  color: var(--color-silver);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-slate);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Search Result Items */
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-slate);
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-result-item:hover { background: var(--color-slate); }

.result-info { flex: 1; }
.result-name { font-size: 14px; font-weight: 500; color: var(--color-white); }
.result-symbol { font-size: 12px; color: var(--color-silver); }

.result-add {
  padding: 6px 14px;
  background: var(--color-gold);
  border: none;
  border-radius: 6px;
  color: var(--color-obsidian);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Heat Colors for Region Items */
.region-heat {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.region-heat.heat-1 { background: var(--heat-1); }
.region-heat.heat-2 { background: var(--heat-2); }
.region-heat.heat-3 { background: var(--heat-3); }
.region-heat.heat-4 { background: var(--heat-4); }
.region-heat.heat-5 { background: var(--heat-5); }
.region-heat.heat-6 { background: var(--heat-6); }

/* Slider Styles */
.slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--color-slate);
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slider-value {
  min-width: 60px;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
}

/* Holding Slider Wrap */
.holding-slider-wrap {
  width: 120px;
}

.holding-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--color-slate);
  -webkit-appearance: none;
}

.holding-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
}
