#usecaseDesc ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none;
  }
  #usecaseDesc li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #222;
  }
  #usecaseDesc li::before {
    content: url('/assets/ai-images/check-new.svg');
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
  }


 .nvidia-a100-gpu-server .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 8px;
    background: #fff;
    border: 1px solid #ece8f5;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(28,21,56,0.05);
    font-size: 12.5px;
    color: #3d3361;
    font-weight: 500;
    margin-bottom: 28px;
}

.nvidia-a100-gpu-server .hero-pill .chip {
    background: linear-gradient(135deg, #8b6dff 0%, #6f3df5 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    -webkit-text-fill-color:inherit;
}
.nvidia-a100-gpu-server .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.nvidia-a100-gpu-server .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(117, 84, 247, 1) 0%, rgba(117, 84, 247, 1) 62%, rgba(147, 94, 223, 1) 95%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.4);
}
.nvidia-a100-gpu-server .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}
.nvidia-a100-gpu-server .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 20px;
    transition: color 0.2s;
    border: 1px solid #fff;
    border-radius: 10px;
}
.nvidia-a100-gpu-server .btn-ghost:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}


.hero-trust {
    display: flex; gap: 20px; align-items: center;
    margin-top: 32px;
    font-size: 13px; color: var(--ink-mute);
  }
  .hero-trust .avatars { display: flex; }
  .hero-trust .avatars span {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 4px 10px rgba(111,61,245,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
  }
  .hero-trust .avatars span:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 18px rgba(111,61,245,0.32);
    z-index: 2;
  }
  .hero-trust .avatars span svg {
    width: 18px; height: 18px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero-trust  span{color: #ffff;font-size: 18px;}
  .hero-trust .avatars span:nth-child(1) { background: linear-gradient(135deg, #f59e0b, #ec4899); margin-left: 0; }
  .hero-trust .avatars span:nth-child(2) { background: linear-gradient(135deg, var(--brand), var(--brand-3)); }
  .hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg, #10b981, #14b8a6); }
  .hero-trust .avatars span:nth-child(4) { background: linear-gradient(135deg, #ec4899, #6f3df5); }
  .hero-trust strong { color: #fff; font-weight: 700; }

/* ========== CTA BANNER ========== */
  .cta-banner-inner {
    background: linear-gradient(135deg, #1c1538 0%, #2a1d5e 50%, #3d2680 100%);
    border-radius: var(--r-xl);
    padding: 70px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 20%, rgba(167,139,250,0.25) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(236,72,153,0.15) 0%, transparent 50%);
  }
  .cta-banner-inner::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 90%);
  }
  .cta-banner-inner > * { position: relative; z-index: 1; }
  .cta-banner .eyebrow {
    background: rgba(255,255,255,0.08);
    color: var(--brand-3);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .cta-banner .eyebrow::before { background: var(--brand-3); }
  .cta-banner h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1; letter-spacing: -0.025em;
    margin: 18px 0 16px;
    color: #fff;
  }
  .cta-banner h2 .grad {
    background: linear-gradient(135deg, var(--brand-3) 0%, #fff 80%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 560px; margin: 0 auto 36px;
    line-height: 1.6;
  }
  .cta-banner .btn-row {
    display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  }
  .cta-banner .btn-primary {
    background: #fff; color: var(--ink);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  }
  .cta-banner .btn-primary .arrow { background: var(--brand-soft); color: var(--brand); }
  .cta-banner .btn-primary:hover { background: var(--brand-3); color: #fff; }
  .cta-banner .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
  }
  .cta-banner .btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
  }


  :root {
    --brand:        #6f3df5;
    --brand-2:      #8b6dff;
    --brand-3:      #a78bfa;
    --brand-deep:   #5a2dd6;
    --brand-soft:   #f1ecff;
    --brand-soft-2: #e8e0ff;
    --brand-bg:     #f9f6ff;
    --brand-glow:   rgba(111,61,245,0.35);

    --bg:           #ffffff;
    --bg-cream:     #fdfcff;
    --bg-tint:      #f6f3fc;

    --ink:          #1c1538;
    --ink-2:        #3d3361;
    --ink-mute:     #6c6489;
    --ink-dim:      #9893ad;

    --rule:         #ece8f5;
    --rule-soft:    #f3f0fa;

    --pink:         #ec4899;
    --pink-soft:    #fce7f3;
    --teal:         #14b8a6;
    --teal-soft:    #d1fae8;
    --orange:       #f97316;
    --orange-soft:  #fed7aa;
    --emerald:      #10b981;

    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 36px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(28,21,56,0.05);
    --shadow-md: 0 10px 32px rgba(111,61,245,0.10);
    --shadow-lg: 0 24px 60px rgba(111,61,245,0.15);
    --shadow-glow: 0 0 60px rgba(111,61,245,0.25);
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ========== NAV ========== */
  .nav {
    position: sticky; top: 12px; z-index: 100;
    margin: 12px 16px 0;
  }
  .nav-inner {
    max-width: 1240px; margin: 0 auto;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    padding: 10px 16px 10px 22px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-sm);
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 17px;
    color: var(--ink);
  }
  .logo-orb {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 50%, var(--brand-deep) 100%);
    display: grid; place-items: center;
    color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 14px var(--brand-glow), inset 0 1px 2px rgba(255,255,255,0.4);
    position: relative;
  }
  .logo-orb::after {
    content: ''; position: absolute; inset: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .logo b { color: var(--brand); font-weight: 700; }
  .nav-links {
    display: flex; gap: 6px;
    background: var(--bg-tint);
    padding: 5px; border-radius: var(--r-pill);
    font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  }
  .nav-links a {
    padding: 7px 16px; border-radius: var(--r-pill);
    transition: background .2s ease, color .2s ease;
  }
  .nav-links a:hover { background: #fff; color: var(--brand); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
    color: #fff; font-weight: 600; font-size: 13.5px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 18px var(--brand-glow);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px var(--brand-glow); }
  @media (max-width: 880px) { .nav-links { display: none; } }


  /* ===== Hero illustration (isometric server) ===== */
  .hero-illus {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 540px; margin-left: auto;
  }
  .hero-illus::before {
    content: ''; position: absolute; inset: -10%;
    background: radial-gradient(circle, rgba(167,139,250,0.4) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
  }
  .hero-illus svg { position: relative; z-index: 1; width: 100%; height: 100%; display: block; }

  /* Floating stat cards over illustration */
  .float-card {
    position: absolute;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
  }
  .float-card .ico {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 100%);
    display: grid; place-items: center;
    color: var(--brand);
  }
  .float-card .num {
    font-size: 18px; font-weight: 800; color: var(--ink);
    letter-spacing: -0.02em; line-height: 1;
  }
  .float-card .lbl {
    font-size: 11px; color: var(--ink-mute);
    font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-top: 3px;
  }
  .float-card.tl { top: 8%; left: -4%; animation-delay: 0s; }
  .float-card.tr { top: 14%; right: -2%; animation-delay: -1s; }
  .float-card.bl { bottom: 12%; left: 4%; animation-delay: -2s; }
  .float-card.br { bottom: 8%; right: -4%; animation-delay: -3s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ========== TRUST STRIP ========== */
  .trust-strip {
    padding: 32px 24px;
    background: var(--bg-cream);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .trust-strip-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 28px;
  }
  .trust-strip .lbl {
    font-size: 12px; color: var(--ink-mute);
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 600;
  }
  .trust-strip .brands {
    display: flex; gap: 36px; align-items: center;
    flex-wrap: wrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink-dim);
    opacity: 0.7;
  }
  .trust-strip .brands span { letter-spacing: -0.02em; }

  /* ========== SECTION ========== */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-pill);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
  }

  /* ========== CAPABILITY CARDS (alternate row layout) ========== */
  .capability {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    margin-bottom: 100px;
  }
  .capability:last-child { margin-bottom: 0; }
  .capability.reverse { direction: rtl; }
  .capability.reverse > * { direction: ltr; }
  @media (max-width: 880px) { .capability, .capability.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; } }

  .cap-visual {
    position: relative;
    aspect-ratio: 1/0.9;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--brand-soft) 0%, var(--bg-tint) 100%);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .cap-visual.warm { background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%); }
  .cap-visual.cool { background: linear-gradient(135deg, var(--teal-soft) 0%, #fff 100%); }
  .cap-visual.pink { background: linear-gradient(135deg, var(--pink-soft) 0%, #fff 100%); }

  .cap-visual::before {
    content: ''; position: absolute;
    width: 60%; height: 60%; top: -10%; right: -10%;
    background: radial-gradient(circle, rgba(111,61,245,0.18) 0%, transparent 60%);
    filter: blur(40px);
  }

  .cap-visual svg { position: relative; z-index: 1; width: 100%; height: 100%; }

  .cap-chip {
    display: inline-block;
    padding: 5px 14px;
    background: #fff;
    border-radius: var(--r-pill);
    font-size: 11.5px; font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
  }
  .cap-chip.warm { color: var(--orange); }
  .cap-chip.cool { color: var(--teal); }
  .cap-chip.pink { color: var(--pink); }

  .cap-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .cap-content p {
    font-size: 15.5px; color: var(--ink-mute);
    line-height: 1.7; margin-bottom: 22px;
  }
  .cap-pills {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .cap-pill {
    padding: 7px 14px;
    background: var(--bg-tint);
    border-radius: var(--r-pill);
    font-size: 12.5px; font-weight: 600;
    color: var(--ink-2);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .cap-pill::before {
    content: '✓'; color: var(--brand); font-weight: 700;
  }

  /* ========== PRICING WITH TAB SWITCHER ========== */
  .pricing-wrap {
    background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
    padding: 70px 0px;
    position: relative;
    overflow: hidden;
  }
  .pricing-wrap::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 60%);
    filter: blur(40px);
  }
  .pricing-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    padding: 5px;
    margin: 24px 0 36px;
    box-shadow: var(--shadow-sm);
    position: relative; z-index: 1;
  }
  .pricing-tab {
    padding: 9px 22px;
    border-radius: var(--r-pill);
    font-size: 13.5px; font-weight: 600;
    color: var(--ink-mute);
    transition: all .25s ease;
  }
  .pricing-tab.active {
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--brand-glow);
  }
  .pricing-tab .save {
    margin-left: 6px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 2px 7px; border-radius: var(--r-pill);
    font-size: 10px; font-weight: 700;
  }
  .pricing-tab:not(.active) .save {
    background: var(--emerald);
    color: #fff;
  }

  .pricing-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative; z-index: 1;
  }
  @media (max-width: 880px) { .pricing-cards { grid-template-columns: 1fr; } }

  .price-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
  }
  .price-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-3);
    box-shadow: var(--shadow-lg);
  }
  .price-card.featured {
    background: linear-gradient(160deg, var(--ink) 0%, #2a1d5e 100%);
    color: #fff;
    border-color: var(--ink);
    box-shadow: var(--shadow-glow);
  }
  .price-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: -12px; right: 22px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--brand) 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
  }

  .price-card .tier-name {
    font-size: 15px; font-weight: 700;
    color: var(--brand);
    margin-bottom: 6px;
  }
  .price-card.featured .tier-name { color: var(--brand-3); }
  .price-card .tier-desc {
    font-size: 13px; color: var(--ink-mute);
    margin-bottom: 22px;
  }
  .price-card.featured .tier-desc { color: rgba(255,255,255,0.65); }

  .price-card .price-num {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
  }
  .price-card .price-num .sym {
    font-size: 22px; font-weight: 700; color: var(--ink-mute);
    margin-right: 2px;
  }
  .price-card.featured .price-num .sym { color: rgba(255,255,255,0.7); }
  .price-card .price-num .amt {
    font-size: 50px; font-weight: 800;
    color: var(--ink); letter-spacing: -0.035em;
    line-height: 1;
  }
  .price-card.featured .price-num .amt { color: #fff; }
  .price-card .price-num .per {
    font-size: 14px; color: var(--ink-mute); font-weight: 500;
    margin-left: 4px;
  }
  .price-card.featured .price-num .per { color: rgba(255,255,255,0.65); }
  .price-card .price-was {
    font-size: 13px; color: var(--ink-dim);
    text-decoration: line-through;
    margin-bottom: 22px;
  }
  .price-card.featured .price-was { color: rgba(255,255,255,0.4); }

  .price-card .feat-list {
    list-style: none;
    margin-bottom: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
  }
  .price-card.featured .feat-list { border-top-color: rgba(255,255,255,0.12); }
  .price-card .feat-list li {
    font-size: 13.5px; color: var(--ink-2);
    padding: 8px 0 8px 26px; position: relative;
    line-height: 1.5;
  }
  .price-card.featured .feat-list li { color: rgba(255,255,255,0.85); }
  .price-card .feat-list li::before {
    content: '';
    position: absolute; left: 0; top: 11px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--brand-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236f3df5' stroke-width='2.5' stroke-linecap='round'><path d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
  }
  .price-card.featured .feat-list li::before {
    background-color: rgba(255,255,255,0.1);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a78bfa' stroke-width='2.5' stroke-linecap='round'><path d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
  }

  .price-card .btn-pick {
    display: block;
    width: 100%;
    padding: 12px 18px;
    background: var(--bg-tint);
    color: var(--brand);
    border-radius: var(--r-pill);
    font-weight: 700; font-size: 13.5px;
    text-align: center;
    transition: background .2s ease, color .2s ease;
  }
  .price-card .btn-pick:hover { background: var(--brand); color: #fff; }
  .price-card.featured .btn-pick {
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
    color: #fff;
    box-shadow: 0 8px 22px var(--brand-glow);
  }
  .price-card.featured .btn-pick:hover { transform: translateY(-1px); }

  /* ========== COMPARE CARDS ========== */
  .versus-wrap {background: var(--bg-cream); }
  .versus-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
  }
  @media (max-width: 880px) { .versus-cards { grid-template-columns: 1fr; } }

  .vs-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .vs-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .vs-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111,61,245,0.10) 0%, transparent 60%);
    filter: blur(30px);
  }
  .vs-card.h100::before { background: radial-gradient(circle, rgba(236,72,153,0.10) 0%, transparent 60%); }

  .vs-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 8px; position: relative; z-index: 1;
  }
  .vs-chip {
    padding: 5px 12px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .vs-card.h100 .vs-chip {
    background: var(--pink-soft);
    color: var(--pink);
  }
  .vs-name {
    font-size: 38px; font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; position: relative; z-index: 1;
    margin-bottom: 6px;
  }
  .vs-card.h100 .vs-name {
    background: linear-gradient(135deg, var(--pink) 0%, var(--brand) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .vs-arch {
    font-size: 13px; color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 26px;
    letter-spacing: 0.02em;
    position: relative; z-index: 1;
  }

  .vs-specs {
    list-style: none;
    margin-bottom: 28px;
    position: relative; z-index: 1;
  }
  .vs-specs li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 14px;
  }
  .vs-specs li:last-child { border-bottom: none; }
  .vs-specs .lbl { color: var(--ink-mute); }
  .vs-specs .val {
    font-weight: 700; color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    letter-spacing: -0.01em;
  }
  .vs-specs .val.win { color: var(--brand); }
  .vs-card.h100 .vs-specs .val.win { color: var(--pink); }

  .vs-verdict {
    background: var(--brand-soft);
    border-radius: var(--r-md);
    padding: 18px 20px;
    position: relative; z-index: 1;
  }
  .vs-card.h100 .vs-verdict { background: var(--pink-soft); }
  .vs-verdict .label {
    font-size: 11px; font-weight: 700;
    color: var(--brand); letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .vs-card.h100 .vs-verdict .label { color: var(--pink); }
  .vs-verdict .text {
    font-size: 13.5px; color: var(--ink-2);
    line-height: 1.5; font-weight: 500;
  }

  .vs-divider {
    text-align: center; margin: 30px 0;
    position: relative;
  }
  .vs-divider .vs-circle {
    display: inline-grid; place-items: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-deep) 100%);
    color: #fff;
    font-weight: 800; font-size: 20px;
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-glow);
    font-style: italic;
  }

  /* ========== STAT MOSAIC ========== */
  .stat-mosaic {
    background: linear-gradient(180deg, var(--brand-bg) 0%, #fff 100%);
  }
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  @media (max-width: 880px) { .mosaic-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .mosaic-grid { grid-template-columns: 1fr; } }

  .mosaic-tile {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
  }
  .mosaic-tile:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-md);
  }
  .mosaic-tile.accent { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; border-color: var(--brand); }
  .mosaic-tile .icon-blob {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--brand-soft);
    display: grid; place-items: center;
    color: var(--brand);
    margin-bottom: 18px;
  }
  .mosaic-tile.accent .icon-blob {
    background: rgba(255,255,255,0.15);
    color: #fff;
  }
  .mosaic-tile .big {
    font-size: 28px; font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
  }
  .mosaic-tile.accent .big { color: #fff; }
  .mosaic-tile .big small {
    font-size: 16px; color: var(--ink-mute); font-weight: 600;
    margin-left: 2px;
  }
  .mosaic-tile.accent .big small { color: rgba(255,255,255,0.7); }
  .mosaic-tile .descr {
    font-size: 13.5px; color: var(--ink-mute);
    line-height: 1.5;
  }
  .mosaic-tile.accent .descr { color: rgba(255,255,255,0.8); }

