.mv{ 
    --bg:#f8fafc;           
    --panel:#ffffff;        
    --panel-2:#f1f5f9;          
    --text:#0f172a;         
    --muted:#64748b;            
    --accent:#3b82f6;           
    --accent-2:#0ea5e9;         
    --accent-light:#dbeafe;
    --ring:rgba(59, 130, 246, 0.25); 
    --border:#e2e8f0;       
    --shadow:0 4px 20px rgba(0, 0, 0, 0.06), 
             0 2px 8px rgba(0, 0, 0, 0.04),
             0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-hover:0 8px 30px rgba(0, 0, 0, 0.1),
                   0 4px 12px rgba(0, 0, 0, 0.06);
    --radius:16px;
    --radius-sm:12px;
    --maxw:1100px;
    
    color: var(--text);
    background: linear-gradient(
      180deg,
      #f0f9ff 0%,           /* Light blue top */
      #f8fafc 40%,          /* Transition */
      #ffffff 100%          /* White bottom */
    );
    
    /* Subtle gradient overlays */
    background-image: 
      radial-gradient(800px 600px at 90% 10%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
      radial-gradient(700px 500px at 10% 90%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      linear-gradient(180deg, #f0f9ff 0%, #f8fafc 40%, #ffffff 100%);
    
    /* Let theme spacing breathe around this section */
    padding: clamp(20px, 4vw, 32px) 0;
    min-height: 100vh;
  }

  .mv .mv-wrap{
    max-width: var(--maxw); 
    margin-inline: auto; 
    padding: clamp(16px, 4vw, 28px);
  } 

  /* HERO */
  .mv .mv-hero{
    padding: clamp(36px, 8vw, 96px) 0; 
    position: relative; 
    isolation: isolate;
    text-align: center;
  }
  
  .mv .mv-badge{
    display: inline-flex; 
    align-items: center; 
    gap: .5rem; 
    font-size: .85rem; 
    color: var(--accent-2); 
    letter-spacing: .02em; 
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), rgba(59, 130, 246, 0.06)); 
    border: 1px solid rgba(14, 165, 233, 0.3); 
    border-radius: 999px; 
    padding: .4rem 1rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    margin: 0 auto;
  }
  
  .mv .mv-title{
    margin: 20px 0 16px; 
    font-size: clamp(36px, 6vw, 64px); 
    line-height: 1.1; 
    letter-spacing: -0.02em; 
    color: var(--text);
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .mv .mv-lead{
    max-width: 65ch; 
    color: var(--muted); 
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.6;
    margin: 0 auto;
    font-weight: 400;
  }

  /* BUTTONS */
  .mv .mv-cta-row{ 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    margin-top: 32px;
    justify-content: center;
  }
  
  .mv .mv-btn{ 
    display: inline-flex; 
    align-items: center; 
    gap: .6rem; 
    border: 1px solid transparent; 
    padding: .9rem 1.4rem; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: var(--shadow);
    font-size: 1rem;
    cursor: pointer;
  }
  
  .mv .mv-btn-primary{ 
    background: linear-gradient(135deg, var(--accent), #2563eb); 
    color: white; 
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .mv .mv-btn-primary:hover{ 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
  }
  
  .mv .mv-btn-ghost{ 
    background: rgba(59, 130, 246, 0.08); 
    color: var(--accent); 
    border-color: rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(4px);
  }
  
  .mv .mv-btn-ghost:hover{ 
    background: rgba(59, 130, 246, 0.15); 
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  
  .mv .mv-ico{ 
    width: 20px; 
    height: 20px; 
    display: inline-block; 
  }
  
  .mv a:focus-visible, 
  .mv button:focus-visible{ 
    outline: 3px solid var(--ring); 
    outline-offset: 2px; 
    border-radius: 10px; 
  }

  /* SECTIONS & TYPOGRAPHY */
  .mv .mv-section{ 
    padding: 48px 0; 
    border-top: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  .mv .mv-h2{ 
    font-size: clamp(28px, 4vw, 40px); 
    margin: 0 0 16px; 
    letter-spacing: -0.01em; 
    color: var(--text);
    font-weight: 700;
  }
  
  .mv .mv-p{ 
    color: var(--muted); 
    max-width: 80ch; 
    margin: 0 0 16px; 
    line-height: 1.7;
  }

  /* GRID */
  .mv .mv-grid{ 
    display: grid; 
    gap: clamp(18px, 2vw, 24px); 
  }
  
  .mv .mv-grid-3{ 
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
  }
  
  @media (min-width: 760px){ 
    .mv .mv-grid-3{ 
      grid-template-columns: repeat(3, minmax(0, 1fr)); 
    } 
  }

  /* CARDS */
  .mv .mv-card{ 
    background: var(--panel);
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: 28px; 
    box-shadow: var(--shadow); 
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .mv .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: var(--radius) var(--radius) 0 0;
  }
  
  .mv .mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  
  .mv .mv-card h3{ 
    margin: 12px 0 8px; 
    font-size: 1.25rem; 
    letter-spacing: .01em; 
    color: var(--text);
    font-weight: 600;
  }
  
  .mv .mv-card p{ 
    margin: 0; 
    color: var(--muted); 
    line-height: 1.6;
  }

  /* LIST */
  .mv .mv-list{ 
    list-style: none; 
    padding: 0; 
    margin: 24px 0 0; 
    display: grid; 
    gap: 12px; 
  }
  
  .mv .mv-list li{ 
    background: var(--panel-2); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-sm); 
    padding: 14px 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .mv .mv-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    background: var(--accent-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .mv .mv-list li:hover {
    background: rgba(59, 130, 246, 0.04);
    transform: translateX(4px);
  }

  /* KPIs */
  .mv .mv-kpis{ 
    display: grid; 
    grid-template-columns: repeat(1, minmax(0,1fr)); 
    gap: 20px; 
  }
  
  @media (min-width: 760px){ 
    .mv .mv-kpis{ 
      grid-template-columns: repeat(4, minmax(0,1fr)); 
    } 
  }
  
  .mv .mv-kpi{ 
    text-align: center; 
    background: var(--panel); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: 24px 18px;
    transition: all 0.3s ease;
  }
  
  .mv .mv-kpi:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .mv .mv-kpi .mv-num{ 
    font-size: clamp(18px, 2.2vw, 24px); 
    font-weight: 800; 
    color: var(--accent); 
    letter-spacing: .02em; 
    margin-bottom: 6px;
}
  
  .mv .mv-kpi .mv-lbl{ 
    color: var(--muted); 
    font-size: 0.95rem; 
    line-height: 1.4;
  }

  /* NOTE */
  .mv .mv-note{ 
    font-size: 0.95rem; 
    color: var(--muted); 
    border-left: 3px solid var(--accent); 
    padding-left: 16px; 
    margin-top: 20px; 
    background: rgba(59, 130, 246, 0.04);
    padding: 14px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.6;
  }

  /* FOOTER (scoped) */
  .mv .mv-footer{ 
    padding: 32px 0 16px; 
    color: var(--muted); 
    border-top: 1px solid var(--border); 
    text-align: center; 
    margin-top: 32px;
    font-size: 0.9rem;
  }

  /* Additional improvements */
  .mv * {
    box-sizing: border-box;
  }
  
  .mv ::selection {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--text);
  }
  
  /* Animation for hero section */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mv .mv-hero > * {
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .mv .mv-hero .mv-title {
    animation-delay: 0.1s;
  }
  
  .mv .mv-hero .mv-lead {
    animation-delay: 0.2s;
  }
  
  .mv .mv-hero .mv-cta-row {
    animation-delay: 0.3s;
  }