: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;
    --amber:        #f59e0b;
    --amber-soft:   #fef3c7;
    --cyan:         #06b6d4;
    --cyan-soft:    #cffafe;

    --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);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ========== GRAIN TEXTURE ========== */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
  }
  body > * { position: relative; z-index: 1; }


  .hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px 7px 8px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    font-size: 12.5px; color: var(--ink-2); font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-pill .chip {
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
    color: #fff;
    padding: 3px 10px; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  }
  .hero-pill .chip.green { background: linear-gradient(135deg, #10b981, #0d9488);-webkit-text-fill-color: inherit; }

  .hero h1 {
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .hero h1 .grad {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 40%, var(--brand-3) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero h1 .underline-wave {
    position: relative; display: inline-block;
  }
  .hero h1 .underline-wave::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -10px;
    height: 10px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'><path d='M0 5 Q15 0,30 5 T60 5 T90 5 T120 5' fill='none' stroke='%236f3df5' stroke-width='2.5' stroke-linecap='round'/></svg>") repeat-x;
    background-size: 80px 10px;
    opacity: 0.75;
  }

  .hero p.lede {
    font-size: 17px; color: var(--ink-mute);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 540px;
  }
  .lede strong { color: var(--ink); font-weight: 700; }

  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
   .gpu-as-service-banner .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
 .gpu-as-service-banner .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);
}
 .gpu-as-service-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}
 .gpu-as-service-banner .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;
}
 .gpu-as-service-banner .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; }

  /* ========== HERO ILLUSTRATION (GPU catalog mini-bento) ========== */
  .hero-illus {
    position: relative;
  }
  .hero-illus::before {
    content: ''; position: absolute; inset: -10%;
    background: radial-gradient(circle, rgba(167,139,250,0.35) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
  }

  /* Mini bento grid as hero visual */
  .hero-bento {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    max-width: 480px; margin-left: auto;
  }
  .hb-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    animation: float 4s ease-in-out infinite;
  }
  .hb-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-lg); }
  .hb-card:nth-child(2) { animation-delay: -1s; }
  .hb-card:nth-child(3) { animation-delay: -2s; }
  .hb-card:nth-child(4) { animation-delay: -3s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .hb-card .glow-blob {
    position: absolute; top: -40%; right: -40%;
    width: 160px; height: 160px; border-radius: 50%;
    filter: blur(40px); opacity: 0.4;
    z-index: 0;
  }
  .hb-card > * { position: relative; z-index: 1; }
  .hb-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 8px;
  }
  .hb-gpu-name {
    font-size: 28px; font-weight: 800; letter-spacing: -0.04em;
    line-height: 1;
  }
  .hb-arch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 600;
    margin-top: 4px; margin-bottom: 12px;
    opacity: 0.7;
  }
  .hb-price {
    display: flex; align-items: baseline; gap: 3px;
  }
  .hb-price .sym { font-size: 13px; font-weight: 600; }
  .hb-price .amt { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
  .hb-price .per { font-size: 11px; font-weight: 500; opacity: 0.7; margin-left: 2px; }
  .hb-badge {
    position: absolute; bottom: 14px; right: 14px;
    font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: var(--r-pill);
    letter-spacing: 0.05em;
  }
  .hb-vram {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    margin-top: 6px;
  }
  /* H100 card */
  .hb-h100 { background: linear-gradient(140deg, #1c1538 0%, #2a1d5e 100%); color: #fff; border-color: #3d2680; }
  .hb-h100 .glow-blob { background: var(--brand-3); }
  .hb-h100 .hb-label { color: var(--brand-3); }
  .hb-h100 .hb-gpu-name { background: linear-gradient(135deg, var(--brand-3), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hb-h100 .hb-badge { background: var(--brand-3); color: var(--ink); }
  /* A100 card */
  .hb-a100 .glow-blob { background: var(--brand); }
  .hb-a100 .hb-label { color: var(--brand); }
  .hb-a100 .hb-gpu-name { background: linear-gradient(135deg, var(--brand-deep), var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hb-a100 .hb-badge { background: var(--brand-soft); color: var(--brand); }
  .hb-a100 .hb-price .sym, .hb-a100 .hb-price .amt { color: var(--brand); }
  /* L40S card */
  .hb-l40s .glow-blob { background: var(--orange); }
  .hb-l40s .hb-label { color: var(--orange); }
  .hb-l40s .hb-gpu-name { background: linear-gradient(135deg, #c2410c, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hb-l40s .hb-badge { background: var(--orange-soft); color: var(--orange); }
  .hb-l40s .hb-price .sym, .hb-l40s .hb-price .amt { color: var(--orange); }
  /* V100 card */
  .hb-v100 .glow-blob { background: var(--teal); }
  .hb-v100 .hb-label { color: var(--teal); }
  .hb-v100 .hb-gpu-name { background: linear-gradient(135deg, #0f766e, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hb-v100 .hb-badge { background: var(--teal-soft); color: var(--teal); }
  .hb-v100 .hb-price .sym, .hb-v100 .hb-price .amt { color: var(--teal); }

  /* ========== TRUST STRIP ========== */
  .trust-strip {
    padding: 32px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .trust-strip-inner {
    max-width: 100%; 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-weight: 700; font-size: 17px;
    color: var(--ink-dim); opacity: 0.7;
  }
  .trust-strip .brands span { letter-spacing: -0.02em; }
  .trust-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .trust-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    font-size: 12px; font-weight: 600; color: var(--ink-2);
    box-shadow: var(--shadow-sm);
  }
  .trust-badge .dot { width: 7px; height: 7px; border-radius: 50%; }
  .trust-badge .dot.green { background: var(--emerald); }
  .trust-badge .dot.brand { background: var(--brand); }
  .trust-badge .dot.amber { background: var(--amber); }

  /* ========== SECTION ========== */
  .section { padding: 100px 0; }
  .section-inner { max-width: 100%; margin: 0 auto; }
  .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);
  }
  h2.heading {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 16px 0 18px;
  }
  h2.heading .grad {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-3) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .sub {
    font-size: 16px; color: var(--ink-mute);
    max-width: 640px; line-height: 1.65;
  }
  .section-head-center { text-align: center; margin-bottom: 56px; }
  .section-head-center .sub { margin-left: auto; margin-right: auto; }

  /* ========== GPU CATALOG BENTO ========== */
  .gpu-catalog {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  }
  .bento-grid {
    max-width: 100%; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 52px;
  }
  @media (max-width: 1024px) { .bento-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px)  { .bento-grid { grid-template-columns: 1fr; } }

  .bento-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .bento-card.span-row { grid-row: span 2; }
  .bento-card::before {
    content: ''; position: absolute;
    top: -40%; right: -30%;
    width: 280px; height: 280px; border-radius: 50%;
    filter: blur(50px); opacity: 0.25; z-index: 0;
  }
  .bento-card > * { position: relative; z-index: 1; }

  /* H100 — span row, dark card */
  .bc-h100 {
    background: linear-gradient(150deg, #1c1538 0%, #2a1d5e 60%, #3d2072 100%);
    color: #fff;
    border-color: #3d2680;
    box-shadow: 0 20px 50px rgba(111,61,245,0.3);
  }
  .bc-h100:hover { border-color: var(--brand-3); }
  .bc-h100::before { background: var(--brand-3); opacity: 0.3; }
  /* grid pattern overlay on H100 */
  .bc-h100::after {
    content: ''; 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: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000, transparent 80%);
    z-index: 0;
  }
  .bc-a100::before { background: var(--brand); }
  .bc-a100:hover { border-color: var(--brand-3); }
  .bc-l40s::before { background: var(--orange); }
  .bc-l40s:hover { border-color: var(--orange); }
  .bc-v100::before { background: var(--teal); }
  .bc-v100:hover { border-color: var(--teal); }
  .bc-h200::before { background: var(--pink); }
  .bc-h200:hover { border-color: var(--pink); }
  .bc-h200 { border-style: dashed; }

  .bc-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .bc-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }

  .bc-h100 .bc-tag { background: rgba(167,139,250,0.2); color: var(--brand-3); }
  .bc-h100 .bc-tag::before { background: var(--brand-3); }
  .bc-a100 .bc-tag { background: var(--brand-soft); color: var(--brand); }
  .bc-a100 .bc-tag::before { background: var(--brand); }
  .bc-l40s .bc-tag { background: var(--orange-soft); color: var(--orange); }
  .bc-l40s .bc-tag::before { background: var(--orange); }
  .bc-v100 .bc-tag { background: var(--teal-soft); color: var(--teal); }
  .bc-v100 .bc-tag::before { background: var(--teal); }
  .bc-h200 .bc-tag { background: var(--pink-soft); color: var(--pink); }
  .bc-h200 .bc-tag::before { background: var(--pink); }

  .bc-name {
    font-size: 42px; font-weight: 800;
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 4px;
  }
  .bc-h100 .bc-name {
    background: linear-gradient(135deg, var(--brand-3) 0%, #fff 70%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bc-a100 .bc-name {
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bc-l40s .bc-name {
    background: linear-gradient(135deg, #c2410c, var(--orange));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bc-v100 .bc-name {
    background: linear-gradient(135deg, #0f766e, var(--teal));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bc-h200 .bc-name {
    background: linear-gradient(135deg, var(--pink), var(--brand));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }

  .bc-arch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    color: var(--ink-mute); margin-bottom: 22px;
    letter-spacing: 0.02em;
  }
  .bc-h100 .bc-arch { color: rgba(255,255,255,0.5); }

  .bc-specs {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
  }
  .bc-specs li {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13.5px; padding-bottom: 10px;
    border-bottom: 1px dashed var(--rule);
  }
  .bc-specs li:last-child { border-bottom: none; padding-bottom: 0; }
  .bc-h100 .bc-specs li { border-bottom-color: rgba(255,255,255,0.08); }
  .bc-specs .sp-lbl { color: var(--ink-mute); }
  .bc-h100 .bc-specs .sp-lbl { color: rgba(255,255,255,0.55); }
  .bc-specs .sp-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px; font-weight: 700;
    color: var(--ink);
  }
  .bc-h100 .bc-specs .sp-val { color: #fff; }

  .bc-price-row {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 4px;
  }
  .bc-price-row .sym { font-size: 16px; font-weight: 600; color: var(--ink-mute); }
  .bc-price-row .amt { font-size: 38px; font-weight: 800; letter-spacing: -0.035em; color: var(--ink); }
  .bc-price-row .per { font-size: 13px; color: var(--ink-mute); font-weight: 500; }
  .bc-h100 .bc-price-row .sym { color: rgba(255,255,255,0.6); }
  .bc-h100 .bc-price-row .amt { color: #fff; }
  .bc-h100 .bc-price-row .per { color: rgba(255,255,255,0.55); }

  .bc-inr {
    font-size: 12px; color: var(--ink-dim); margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace; font-weight: 500;
  }
  .bc-h100 .bc-inr { color: rgba(255,255,255,0.4); }

  .bc-btn {
    display: block; width: 100%;
    padding: 12px 18px; text-align: center;
    border-radius: var(--r-pill);
    font-weight: 700; font-size: 13.5px;
    transition: all .2s;
  }
  .bc-h100 .bc-btn {
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: #fff; box-shadow: 0 8px 22px var(--brand-glow);
  }
  .bc-h100 .bc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--brand-glow); }
  .bc-a100 .bc-btn { background: var(--brand-soft); color: var(--brand); }
  .bc-a100 .bc-btn:hover { background: var(--brand); color: #fff; }
  .bc-l40s .bc-btn { background: var(--orange-soft); color: var(--orange); }
  .bc-l40s .bc-btn:hover { background: var(--orange); color: #fff; }
  .bc-v100 .bc-btn { background: var(--teal-soft); color: var(--teal); }
  .bc-v100 .bc-btn:hover { background: var(--teal); color: #fff; }
  .bc-h200 .bc-btn { background: var(--pink-soft); color: var(--pink); }
  .bc-h200 .bc-btn:hover { background: var(--pink); color: #fff; }

  /* H100 extras — fills span-row empty space */
  .bc-extras {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255,255,255,0.12);
  }
  .bc-extras-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
  }
  .bc-uselist {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }
  .bc-uselist li {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .bc-use-dot {
    flex-shrink: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand-3);
    margin-top: 6px;
    box-shadow: 0 0 12px var(--brand-3);
  }
  .bc-use-name {
    font-size: 13px; font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }
  .bc-use-desc {
    font-size: 11.5px; color: rgba(255,255,255,0.55);
    margin-top: 2px;
  }
  .bc-related {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255,255,255,0.12);
  }
  .bc-related-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
  }
  .bc-related-links {
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .bc-related-links a {
    font-size: 12.5px; font-weight: 600;
    color: var(--brand-3);
    transition: color .2s, transform .2s;
    display: inline-block;
  }
  .bc-related-links a:hover {
    color: #fff;
    transform: translateX(4px);
  }

  /* H200 coming soon overlay */
  .bc-soon-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--ink); color: #fff;
    padding: 5px 12px; border-radius: var(--r-pill);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    z-index: 2;
  }

  /* ========== CAPABILITY ROWS ========== */
  .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.88;
    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.amber { background: linear-gradient(135deg, var(--amber-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.15) 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-chip.amber { color: var(--amber); }

  .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; }

  /* ========== INTERACTIVE PRICING ========== */
  .pricing-wrap {
    background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
    border-radius: var(--r-xl);
    position: relative; overflow: hidden;
    padding-top: 70px;
  }
  .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-controls {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin: 24px 0 36px;
    justify-content: center;
    align-items: center;
  }
  .pricing-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    padding: 5px;
    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;
  }
  .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: var(--emerald);
    color: #fff;
    padding: 2px 7px; border-radius: var(--r-pill);
    font-size: 10px; font-weight: 700;
  }
  .pricing-tab.active .save { background: rgba(255,255,255,0.25); }

  /* GPU selector pills */
  .gpu-selector {
    display: inline-flex; gap: 8px; flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .gpu-sel-btn {
    padding: 9px 18px; border-radius: var(--r-pill);
    background: #fff; border: 1.5px solid var(--rule);
    font-size: 13px; font-weight: 600; color: var(--ink-mute);
    transition: all .2s; cursor: pointer;
  }
  .gpu-sel-btn.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }

  .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, box-shadow .25s, border-color .25s;
    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: 4px; }
  .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: 48px; 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-inr { font-size: 12.5px; color: var(--ink-dim); font-family: 'JetBrains Mono', monospace; margin-bottom: 22px; }
  .price-card.featured .price-inr { 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, color .2s;
  }
  .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);
  }

  /* ========== GPU COMPARE TABLE ========== */
  .compare-section {
    background: var(--bg-cream);
  }
  .compare-table-wrap {
    max-width: 100%; margin: 52px auto 0;
    overflow-x: auto;
    border-radius: var(--r-xl);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }
  .compare-table {
    width: 100%; border-collapse: collapse;
    background: #fff;
  }
  .compare-table thead tr {
    border-bottom: 2px solid var(--rule);
  }
  .compare-table th {
    padding: 22px 20px;
    font-size: 13px; font-weight: 700;
    text-align: left;
    background: var(--bg-tint);
  }
  .compare-table th:first-child { color: var(--ink-mute); font-weight: 600; width: 180px; }
  .compare-table th .gpu-th-name {
    font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
    line-height: 1; display: block; margin-bottom: 4px;
  }
  .compare-table th .gpu-th-arch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 600; color: var(--ink-mute);
    letter-spacing: 0.02em;
  }
  .th-h100 .gpu-th-name { background: linear-gradient(135deg, var(--brand-deep), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .th-a100 .gpu-th-name { background: linear-gradient(135deg, var(--brand), var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .th-l40s .gpu-th-name { background: linear-gradient(135deg, #c2410c, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .th-v100 .gpu-th-name { background: linear-gradient(135deg, #0f766e, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }

  .compare-table tbody tr { border-bottom: 1px dashed var(--rule-soft); }
  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table tbody tr:hover { background: var(--bg-tint); }
  .compare-table td {
    padding: 14px 20px;
    font-size: 13.5px;
  }
  .compare-table td:first-child { color: var(--ink-mute); font-weight: 500; }
  .compare-table .val {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700; color: var(--ink);
    font-size: 13px;
  }
  .compare-table .val.best { color: var(--brand); }
  .compare-table .val.price { color: var(--emerald); font-size: 14px; }

  /* ========== STAT MOSAIC ========== */
  .stat-mosaic {
    background: linear-gradient(180deg, var(--brand-bg) 0%, #fff 100%);
  }
  .mosaic-grid {
    max-width: 100%; margin: 52px auto 0;
    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, box-shadow .25s;
    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); }


  /* ========== CTA BANNER ========== */
  .cta-banner { padding: 80px 24px; }
  .cta-banner-inner {
    max-width: 1100px; margin: 0 auto;
    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; }

  

  /* ========== CSS-ONLY REVEAL ========== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal, .capability, .bento-card, .mosaic-tile {
    animation: fadeUp 0.7s ease both;
  }

  /* ========== CSS-ONLY PRICING TABS ========== */
  /* Hide radio inputs */
  .gpu-radio, .tier-radio { display: none; }

  /* GPU panels — all hidden by default */
  .gpu-panel { display: none; }

  /* Show the right panel based on checked GPU radio */
  #tab-h100:checked ~ .pricing-body .panel-h100,
  #tab-a100:checked ~ .pricing-body .panel-a100,
  #tab-l40s:checked ~ .pricing-body .panel-l40s,
  #tab-v100:checked ~ .pricing-body .panel-v100 { display: grid; }

  /* GPU selector label active state */
  #tab-h100:checked ~ .pricing-controls .gpu-sel-lbl[for="tab-h100"],
  #tab-a100:checked ~ .pricing-controls .gpu-sel-lbl[for="tab-a100"],
  #tab-l40s:checked ~ .pricing-controls .gpu-sel-lbl[for="tab-l40s"],
  #tab-v100:checked ~ .pricing-controls .gpu-sel-lbl[for="tab-v100"] {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand);
  }

  /* Tier tabs — all hidden by default */
  .tier-panel { display: none; }

  /* Tier tab active label */
  .tier-radio-od:checked ~ .tier-nav .tier-lbl[for="tier-od-h100"],
  .tier-radio-od:checked ~ .tier-nav .tier-lbl[for="tier-od-a100"],
  .tier-radio-od:checked ~ .tier-nav .tier-lbl[for="tier-od-l40s"],
  .tier-radio-od:checked ~ .tier-nav .tier-lbl[for="tier-od-v100"],
  .tier-radio-r6:checked ~ .tier-nav .tier-lbl[for="tier-r6-h100"],
  .tier-radio-r6:checked ~ .tier-nav .tier-lbl[for="tier-r6-a100"],
  .tier-radio-r6:checked ~ .tier-nav .tier-lbl[for="tier-r6-l40s"],
  .tier-radio-r6:checked ~ .tier-nav .tier-lbl[for="tier-r6-v100"],
  .tier-radio-r12:checked ~ .tier-nav .tier-lbl[for="tier-r12-h100"],
  .tier-radio-r12:checked ~ .tier-nav .tier-lbl[for="tier-r12-a100"],
  .tier-radio-r12:checked ~ .tier-nav .tier-lbl[for="tier-r12-l40s"],
  .tier-radio-r12:checked ~ .tier-nav .tier-lbl[for="tier-r12-v100"] {
    background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--brand-glow);
  }

  /* Show tier panels */
  .tier-radio-od:checked ~ .tier-panels .tier-od,
  .tier-radio-r6:checked ~ .tier-panels .tier-r6,
  .tier-radio-r12:checked ~ .tier-panels .tier-r12 { display: grid; }

  /* Tier panel is a 3-col pricing grid */
  .tier-od, .tier-r6, .tier-r12 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 768px) {
    .tier-od, .tier-r6, .tier-r12 { grid-template-columns: 1fr; }
  }

  /* GPU panels layout */
  .gpu-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Nested tier tabs within each GPU panel */
  .tier-system { position: relative; }
  .tier-nav {
    display: flex; gap: 5px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    padding: 5px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin: 0 auto 28px;
  }
  .tier-lbl {
    padding: 9px 22px; border-radius: var(--r-pill);
    font-size: 13.5px; font-weight: 600;
    color: var(--ink-mute);
    cursor: pointer;
    transition: all .25s;
    user-select: none;
  }
  .tier-lbl:hover { color: var(--brand); }
  .tier-lbl .save {
    margin-left: 6px;
    background: var(--emerald); color: #fff;
    padding: 2px 7px; border-radius: var(--r-pill);
    font-size: 10px; font-weight: 700;
  }
  .tier-panels { display: block; }
  .gpu-sel-lbl {
    padding: 9px 18px; border-radius: var(--r-pill);
    background: #fff; border: 1.5px solid var(--rule);
    font-size: 13px; font-weight: 600; color: var(--ink-mute);
    transition: all .2s; cursor: pointer;
    user-select: none;
  }
  .gpu-sel-lbl:hover { border-color: var(--brand-3); color: var(--brand); }