body {
      box-sizing: border-box;
    }
    
    * {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .mono {
      font-family: 'Space Mono', monospace;
    }
    
    .executive-gradient {
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #334155 100%);
      position: relative;
      overflow: hidden;
    }
    
    .executive-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      animation: float 20s ease-in-out infinite;
    }
    
    .executive-gradient::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
      animation: float 25s ease-in-out infinite reverse;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      50% {
        transform: translate(30px, 30px) scale(1.1);
      }
    }
    
    .enterprise-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.03);
      border: 1px solid #e2e8f0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    .enterprise-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    
    .enterprise-card:hover::before {
      transform: scaleX(1);
    }
    
    .enterprise-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      border-color: #3b82f6;
    }
    
    .hero-score {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 30px 90px rgba(30, 64, 175, 0.35);
    }
    
    .hero-score::before {
      content: '';
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      opacity: 0.1;
      filter: blur(30px);
    }
    
    .hero-score::after {
      content: '';
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .metric-panel {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .metric-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
    }
    
    .metric-panel:hover {
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
      transform: translateX(4px);
    }
    
    .professional-progress {
      background: #f1f5f9;
      height: 14px;
      border-radius: 7px;
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .progress-fill {
      height: 100%;
      border-radius: 7px;
      position: relative;
      transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
    
    .progress-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
      animation: shine 3s infinite;
    }
    
    @keyframes shine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(200%);
      }
    }
    
    .metric-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.2s ease;
    }
    
    .metric-badge:hover {
      transform: scale(1.05);
    }
    
    .badge-sb {
      background: #dcfce7;
      color: #166534;
      border: 1px solid #86efac;
    }
    
    .badge-b {
      background: #dbeafe;
      color: #1e40af;
      border: 1px solid #93c5fd;
    }
    
    .badge-c {
      background: #fef3c7;
      color: #92400e;
      border: 1px solid #fde047;
    }
    
    .badge-k {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fca5a5;
    }
    
    .stat-display {
      font-size: 56px;
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -2px;
    }
    
    .section-header {
      font-size: 28px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }
    
    .section-subtext {
      color: #64748b;
      font-size: 16px;
      font-weight: 500;
    }
    
    .aspect-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    
    .aspect-number {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 900;
      font-size: 20px;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    }
    
    .aspect-title {
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.3px;
    }
    
    .summary-card {
      background: white;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
      border: 1px solid #e2e8f0;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .summary-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    }
    
    .summary-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }
    
    .category-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-weight: 900;
      font-size: 24px;
      color: white;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .conclusion-card {
      background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
      border: 2px solid #3b82f6;
      border-radius: 16px;
      padding: 24px 24px 24px 68px;
      margin-bottom: 20px;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .conclusion-card:hover {
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
      transform: translateX(4px);
    }
    
    .conclusion-card::before {
      content: '';
      position: absolute;
      left: 24px;
      top: 24px;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    
    .conclusion-card::after {
      content: '✓';
      position: absolute;
      left: 32px;
      top: 30px;
      color: white;
      font-weight: 900;
      font-size: 16px;
    }
    
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
      margin: 48px 0;
    }
    
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
      border: 2px solid #22c55e;
      border-radius: 16px;
      font-weight: 700;
      font-size: 18px;
      color: #166534;
      box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
    }
    
    .grid-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    
    @media (max-width: 768px) {
      .hero-score {
        width: 240px;
        height: 240px;
      }
      
      .stat-display {
        font-size: 40px;
      }
      
      .section-header {
        font-size: 24px;
      }
    }
  @view-transition { navigation: auto; }