/* ═══════════════════════════════════════════════════════
   GPU CLOUD — DESIGN SYSTEM
   Palantir-inspired HUD aesthetic for GPU infrastructure
   ═══════════════════════════════════════════════════════ */

/* ── FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* 
     Colors — informed by Material Design dark theme guidelines,
     WCAG 2.2 AA contrast ratios, and user-comfort research.
     - No pure black: #121212 min background (reduces eye strain)
     - Desaturated accent: avoids "vibration" against dark surfaces
     - Surface elevation: lighter surfaces = higher perceived elevation
     - Borders: ≥3:1 contrast for UI components (WCAG AA)
  */

  /* Surface hierarchy (darkest → lightest = lowest → highest elevation) */
  --bg-0: #0E1117;          /* page base — dark charcoal, not pure black */
  --bg-1: #151B23;          /* section-alt — slightly elevated */
  --bg-2: #1C2333;          /* elevated surface (dropdowns, overlays) */
  --bg-3: #242D3D;          /* highest elevation (hover states, inputs) */
  --bg-card: rgba(21, 27, 35, 0.75); /* card fill — translucent for glassmorphism */

  /* Accent — desaturated sky-blue: friendly, trustworthy, easy on the eyes */
  --accent: #5EB5F7;        /* primary interactive — WCAG 4.6:1 on bg-0 */
  --accent-hover: #7EC8FF;  /* hover/focus — brighter but still desaturated */
  --accent-muted: rgba(94, 181, 247, 0.10);
  --accent-glow: rgba(94, 181, 247, 0.18);

  /* Semantic colors */
  --success: #4ADE80;       /* green — status ok, available */
  --warning: #FBBF24;       /* amber — pre-order, caution */
  --error: #F87171;         /* red — errors */

  /* Text — off-white primary avoids halation; boosted secondary for readability */
  --text-1: #E6EDF3;        /* primary — 14.5:1 on bg-0 */
  --text-2: #9EAAB8;        /* secondary — 6.2:1 on bg-0 (comfortably AA) */
  --text-3: #6B7A8D;        /* tertiary — 3.7:1 on bg-0 (AA for large text) */

  /* Borders — visible enough to define structure without harshness */
  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.20);
  --border-accent: rgba(94, 181, 247, 0.30);

  /* Radius — friendlier rounded corners (research: 10-14px optimal for trust) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: 6rem;
  --container-max: 1200px;
  --container-px: 1.5rem;
}

@media (min-width: 1024px) {
  :root { --section-py: 8rem; }
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

::selection { background: rgba(94, 181, 247, 0.30); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: var(--radius-sm); }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-1);
}

.heading-xl { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.04em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
.heading-sm { font-size: 1.25rem; font-weight: 600; }

.text-body { font-size: 1rem; line-height: 1.7; color: var(--text-2); }
.text-sm   { font-size: 0.875rem; line-height: 1.6; color: var(--text-2); }
.text-xs   { font-size: 0.75rem; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.font-mono { font-family: var(--font-mono); }
.font-heading { font-family: var(--font-heading); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-3); }
.text-secondary { color: var(--text-2); }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-1); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.flex-wrap { flex-wrap: wrap; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
  height: 64px;
}
.navbar.scrolled {
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; color: var(--bg-0); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 220px;
  background: rgba(21, 27, 35, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-item:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }

.nav-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.nav-login {
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.nav-login:hover { color: var(--text-1); }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--text-2);
}
.hamburger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14, 17, 23, 0.97);
  backdrop-filter: blur(20px);
  padding: 5rem var(--container-px) 2rem;
  display: none;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .sub-link {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1rem;
  color: var(--text-2);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-0);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(94, 181, 247, 0.20);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(94, 181, 247, 0.30);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-2);
  color: var(--text-1);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  border-color: var(--text-3);
  background: var(--bg-3);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) { .card { padding: 2rem; } }

.card-premium {
  background: linear-gradient(to bottom, rgba(94,181,247,0.06), var(--bg-card));
  border-color: var(--border-accent);
}
.card-premium:hover {
  border-color: rgba(94,181,247,0.40);
  box-shadow: 0 8px 40px rgba(94,181,247,0.08);
}

/* ── BADGES ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.625rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-default { background: rgba(255,255,255,0.06); color: var(--text-2); border: 1px solid var(--border); }
.badge-accent { background: var(--accent-muted); color: var(--accent); border: 1px solid rgba(94,181,247,0.2); }
.badge-latest {
  background: rgba(94,181,247,0.10);
  color: var(--accent);
  border: 1px solid rgba(94,181,247,0.25);
}

/* ── SECTION HEADER ─────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header .mono-label { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 42rem; color: var(--text-2); font-size: 1.125rem; line-height: 1.7; }
.section-header.centered p { margin: 0 auto; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(94,181,247,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(94,181,247,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59,130,246,0.03) 0%, transparent 50%),
    var(--bg-0);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  animation: pulse-glow 8s ease-in-out infinite;
}
.hero-orb-1 { top: 20%; left: 20%; width: 600px; height: 600px; background: rgba(94,181,247,0.04); }
.hero-orb-2 { bottom: 20%; right: 20%; width: 400px; height: 400px; background: rgba(59,130,246,0.03); animation-delay: 2s; animation-duration: 12s; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 5rem var(--container-px) 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-hover);
  background: rgba(21,27,35,0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  animation: pulse 2s ease-in-out infinite;
}
.status-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
}

.hero h1 { margin-bottom: 1.5rem; }
.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator svg {
  width: 20px; height: 20px;
  animation: bounce 2s ease-in-out infinite;
}

/* ── VALUE PROPS ────────────────────────────────────── */
.value-prop {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(94,181,247,0.35);
}
.value-prop .mono-label { margin-bottom: 1rem; font-size: 12px; }
.value-prop h3 { margin-bottom: 0.75rem; }

/* ── FEATURE CARD ───────────────────────────────────── */
.feature-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.card:hover .feature-icon { background: rgba(94,181,247,0.14); }
.feature-icon svg { width: 24px; height: 24px; }

/* ── GPU PRICING CARDS ──────────────────────────────── */
.gpu-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.gpu-price-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 0.25rem;
}
.gpu-specs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}

/* ── STATS ROW ──────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 1024px) { .stats-row { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ── DATA CENTER VISUAL ─────────────────────────────── */
.dc-visual {
  position: relative;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-hud {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(94,181,247,0.4);
  line-height: 1.8;
}
.dc-hud-tl { top: 1rem; left: 1rem; }
.dc-hud-tr { top: 1rem; right: 1rem; text-align: right; }
.dc-hud-bl { bottom: 1rem; left: 1rem; color: var(--text-3); }

.gpu-grid-visual {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}
.gpu-grid-cell {
  width: 24px; height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(94,181,247,0.2);
  background: rgba(94,181,247,0.04);
}
@media (max-width: 640px) { .gpu-grid-cell { width: 16px; height: 16px; } }

/* ── TRUST SECTION ──────────────────────────────────── */
.trust-badge {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-2);
}
.nvidia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.nvidia-badge svg { height: 28px; }
.logo-placeholder {
  width: 96px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  border-top: 1px solid rgba(94,181,247,0.15);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(94,181,247,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(94,181,247,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); background: var(--bg-0); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); gap: 3rem; } }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-3);
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--text-2); }
.footer-socials svg { width: 20px; height: 20px; }

/* ── PRICING TABLE ──────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.toggle-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-2);
}
.toggle-btn.active {
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid rgba(94,181,247,0.25);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.pricing-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  background: rgba(21,27,35,0.5);
}
.pricing-table th.right { text-align: right; }
.pricing-table th.center { text-align: center; }
.pricing-table th.accent { color: var(--accent); }

.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.pricing-table tr:hover { background: rgba(255,255,255,0.03); }
.pricing-table tr.b200-header td {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  background: rgba(14,17,23,0.5);
}
.pricing-table .td-right { text-align: right; }
.pricing-table .td-center { text-align: center; }
.pricing-table .price-cell {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.125rem;
}

.table-scroll { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* ── ACCORDION ──────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--accent); }
.accordion-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--text-3);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  padding-bottom: 1.25rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 48rem;
}

/* ── FORM ELEMENTS ──────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-1);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(94,181,247,0.45);
  box-shadow: 0 0 0 3px rgba(94,181,247,0.10);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239EAAB8' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ── BLOG CARD ──────────────────────────────────────── */
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  position: relative;
  overflow: hidden;
}
.blog-thumb .badge { position: absolute; bottom: 0.75rem; left: 0.75rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.blog-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); }

/* ── SPEC ROW ───────────────────────────────────────── */
.spec-item {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(94,181,247,0.25);
}
.spec-item .mono-label { font-size: 12px; margin-bottom: 0.75rem; display: block; }
.spec-item h3 { margin-bottom: 0.5rem; }

/* ── GRID PATTERN OVERLAY ───────────────────────────── */
.grid-overlay {
  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: 60px 60px;
  opacity: 0.2;
  pointer-events: none;
}

/* ── PAGE HERO (non-home) ───────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
}
@media (min-width: 1024px) { .page-hero { padding: 10rem 0 5rem; } }
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(94,181,247,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(94,181,247,0.03) 0%, transparent 50%),
    var(--bg-0);
  pointer-events: none;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Scroll-triggered fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.4, 0.25, 1),
              transform 0.6s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0.0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.25s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.3s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.35s; }
.stagger > .fade-up:nth-child(7) { transition-delay: 0.4s; }
.stagger > .fade-up:nth-child(8) { transition-delay: 0.45s; }
.stagger > .fade-up:nth-child(9) { transition-delay: 0.5s; }
.stagger > .fade-up:nth-child(10) { transition-delay: 0.55s; }

/* ── UTILITY ────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── NEWS BANNER (Nebius-style) ─────────────────────── */
.news-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: border-color 0.3s;
}
.news-banner:hover { border-color: var(--border-accent); }
.news-banner h3 { font-size: 1rem; font-weight: 600; }
.news-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── GPU CONFIG CARD (Nebius compute style) ─────────── */
.gpu-config-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.gpu-config-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}
.gpu-config-card .config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.gpu-config-card .config-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gpu-config-card .config-specs li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gpu-config-card .config-specs li:first-child { border-top: none; }
.config-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── PRICING FEATURED CARDS (Nebius reserve style) ──── */
.reserve-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.reserve-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}
.reserve-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.reserve-card .reserve-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.reserve-card .reserve-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-3);
}
.reserve-card .reserve-specs {
  margin: 1rem 0;
  flex-grow: 1;
}
.reserve-card .reserve-specs p {
  font-size: 0.8125rem;
  color: var(--text-2);
  padding: 0.375rem 0;
  font-family: var(--font-mono);
}
.reserve-card .reserve-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ── PILL FEATURES (Nebius top-of-page style) ────── */
.pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pill-grid { grid-template-columns: repeat(3, 1fr); } }

.pill-feature {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.pill-feature:hover { border-color: var(--border-hover); }
.pill-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pill-feature p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── SERVICE DIRECTORY (Nebius pricing bottom) ────── */
.service-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .service-directory { grid-template-columns: 1fr 1fr; } }
.service-dir-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-dir-item:hover { background: rgba(255,255,255,0.03); }
.service-dir-item h4 { font-size: 0.9375rem; font-weight: 600; }
.service-dir-item p { font-size: 0.8125rem; color: var(--text-3); }
.service-dir-item svg {
  width: 20px; height: 20px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ── METRIC CARD ────────────────────────────────────── */
.metric-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}
.metric-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.metric-label {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── TESTIMONIAL ────────────────────────────────────── */
.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 2rem;
}
.testimonial blockquote {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--text-3);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

/* ── LEADERSHIP CARD ────────────────────────────────── */
.leader-card { text-align: center; }
.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  margin: 0 auto 1rem;
}
.leader-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.leader-card p { font-size: 0.8125rem; color: var(--text-3); line-height: 1.4; }

/* ── STORAGE TABLE ──────────────────────────────────── */
.storage-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.storage-table th {
  text-align: left;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  background: rgba(21,27,35,0.5);
}
.storage-table th:last-child { text-align: right; }
.storage-table td {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-2);
}
.storage-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  color: var(--text-1);
}
.storage-table tr:hover { background: rgba(255,255,255,0.03); }

/* ── GRID 6 ─────────────────────────────────────────── */
.grid-6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(6, 1fr); } }

/* ── CONTACT FORM ───────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 24 24' stroke='%239EAAB8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── CARD PREMIUM ───────────────────────────────────── */
.card-premium {
  border-color: var(--border-accent) !important;
  position: relative;
}
.card-premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* ── GRID 2 ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── GENAI BENCHMARK METRIC ─────────────────────────── */
.genai-metric {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  text-align: center;
}
.genai-metric__value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.genai-metric__value span {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--accent);
}
.genai-metric__label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.genai-metric__note {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── CASE STUDY SLIDER ───────────────────────────────── */
.cs-slider {
  position: relative;
  overflow: hidden;
}
.cs-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cs-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 2px;
}

/* Arrows */
.cs-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-1);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.cs-slider__arrow:hover {
  background: var(--bg-3);
  border-color: var(--border-hover);
  color: var(--text-1);
}
.cs-slider__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.cs-slider__arrow svg {
  width: 20px;
  height: 20px;
}
.cs-slider__arrow--prev { left: 1rem; }
.cs-slider__arrow--next { right: 1rem; }
@media (min-width: 1024px) {
  .cs-slider__arrow--prev { left: -0.5rem; }
  .cs-slider__arrow--next { right: -0.5rem; }
}

/* Dots */
.cs-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.cs-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.cs-slider__dot:hover {
  border-color: var(--text-3);
}
.cs-slider__dot--active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Card (single full-width) */
.case-study-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
@media (min-width: 768px) {
  .case-study-card {
    flex-direction: row;
  }
}
.case-study-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.case-study-card__info {
  padding: 1.75rem;
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .case-study-card__info {
    padding: 2.5rem;
  }
}

.case-study-card__logo {
  margin-bottom: 1.25rem;
}

.case-study-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.case-study-card__content {
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.case-study-card__content p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.case-study-card__content p:last-child {
  margin-bottom: 0;
}
.case-study-card__content strong {
  color: var(--text-1);
  font-weight: 600;
}

.case-study-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.case-study-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background: var(--accent-muted);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.case-study-card__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(14, 17, 23, 0.5);
}
@media (min-width: 768px) {
  .case-study-card__highlights {
    grid-template-columns: 1fr;
    border-top: none;
    border-left: 1px solid var(--border);
    min-width: 200px;
    max-width: 240px;
  }
}

.case-study-highlight {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.case-study-highlight:last-child {
  border-right: none;
}
@media (min-width: 768px) {
  .case-study-highlight {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .case-study-highlight:last-child {
    border-bottom: none;
  }
}

.case-study-highlight__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.case-study-highlight__label {
  font-size: 0.6875rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* ── GPU PRICING SCROLL (full-width horizontal) ─────── */
.gpu-pricing-section {
  position: relative;
}

.gpu-pricing-scroll-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Fade gradients on edges to hint scrollability */
.gpu-pricing-scroll-wrap::before,
.gpu-pricing-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gpu-pricing-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-1), transparent);
  opacity: 0;
}
.gpu-pricing-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-1), transparent);
}
.gpu-pricing-scroll-wrap.scrolled-start::before {
  opacity: 1;
}
.gpu-pricing-scroll-wrap.scrolled-end::after {
  opacity: 0;
}

.gpu-pricing-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.gpu-pricing-scroll::-webkit-scrollbar {
  height: 4px;
}
.gpu-pricing-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.gpu-pricing-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.gpu-pricing-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

.gpu-pricing-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 max(var(--container-px), calc((100vw - var(--container-max)) / 2));
}

/* Scroll hint indicator */
.gpu-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: gpu-scroll-hint-pulse 2s ease-in-out infinite;
}
.gpu-scroll-hint svg {
  width: 16px;
  height: 16px;
  animation: gpu-scroll-hint-slide 2s ease-in-out infinite;
}
@keyframes gpu-scroll-hint-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes gpu-scroll-hint-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.gpu-price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
}
.gpu-price-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.gpu-price-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}

.gpu-price-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.gpu-price-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-3);
  margin-left: 0.25rem;
}

.gpu-price-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.gpu-price-card__specs li {
  padding: 0.4375rem 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.gpu-price-card__specs li:last-child {
  border-bottom: none;
}

/* Pre-order variant */
.gpu-price-card--preorder {
  border-color: var(--border-accent);
  background: linear-gradient(170deg, rgba(94,181,247,0.05) 0%, var(--bg-card) 40%);
}
.gpu-price-card--preorder:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 36px rgba(94,181,247,0.10);
}

.gpu-price-card__label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.gpu-price-card__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* ── PRODUCT DUO (AI Cloud + Token Factory) ─────────── */
.product-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .product-duo { grid-template-columns: repeat(2, 1fr); }
}

.product-duo-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-duo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-duo-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 8px 40px rgba(94,181,247,0.08);
}
.product-duo-card:hover::before {
  opacity: 1;
}

.product-duo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-duo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.product-duo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.product-duo-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: letter-spacing 0.2s;
}
.product-duo-card:hover .product-duo-link {
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY & POLISH FIXES
   ═══════════════════════════════════════════════════════ */

/* ── SKIP NAVIGATION LINK ──────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--bg-0);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── FOCUS-VISIBLE STATES ──────────────────────────── */
/* Unified focus ring for all interactive elements */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Override for elements where the default ring looks wrong */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--accent-muted);
}

.nav-link:focus-visible,
.nav-dropdown-item:focus-visible,
.nav-login:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}

.cs-slider__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--accent-muted);
}

.cs-slider__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none; /* Styled via border-color + box-shadow already */
}

.footer-col a:focus-visible,
.footer-socials a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── IMPROVED SECONDARY BUTTON ─────────────────────── */
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-3);
}

/* ── SLIDER ARROWS — MOBILE FIX ────────────────────── */
@media (max-width: 767px) {
  .cs-slider__arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: -3rem;
    transform: none;
  }
  .cs-slider__arrow--prev {
    left: calc(50% - 3rem);
  }
  .cs-slider__arrow--next {
    right: calc(50% - 3rem);
  }
  .cs-slider__dots {
    margin-top: 4rem;
  }
  .cs-slider {
    padding-bottom: 1rem;
  }
}

/* ── FOOTER LINKS — BETTER CONTRAST ───────────────── */
.footer-socials a {
  color: var(--text-2);
}
.footer-socials a:hover {
  color: var(--text-1);
}

/* ── STANDARDIZED TRANSITION SPEEDS ────────────────── */
/* Define: fast=0.15s, normal=0.2s, slow=0.35s */
/* Already used throughout; this documents the scale. */

/* ── STATIC HERO ORBS (no animation on reduced motion) */
/* Orbs use CSS animation; reduced motion is handled below */

/* ── PREFERS REDUCED MOTION ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-orb {
    animation: none !important;
  }

  .cs-slider__track {
    transition: none !important;
  }

  .gpu-scroll-hint {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ── PRINT STYLESHEET ──────────────────────────────── */
@media print {
  body {
    background: #fff !important;
    color: #111 !important;
  }
  .navbar, .mobile-menu, .hero-bg, .hero-grid,
  .hero-orb, .scroll-indicator, .grid-overlay,
  .cta-banner, .footer-socials, .skip-link,
  .cs-slider__arrow, .cs-slider__dots,
  .gpu-scroll-hint {
    display: none !important;
  }
  .section, .page-hero {
    padding: 2rem 0 !important;
  }
  .card, .pill-feature, .case-study-card,
  .gpu-price-card, .reserve-card, .news-banner,
  .genai-metric, .product-duo-card {
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }
  .heading-xl, .heading-lg, .heading-md, .heading-sm,
  h1, h2, h3, h4, h5, h6 {
    color: #111 !important;
  }
  .text-body, .text-sm, .text-xs, p {
    color: #333 !important;
  }
  .btn-primary {
    background: #111 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .btn-secondary {
    border: 1px solid #999 !important;
    background: transparent !important;
    color: #111 !important;
  }
  a { color: #111 !important; text-decoration: underline !important; }
  .stat-value, .metric-value, .gpu-price,
  .reserve-card .reserve-price, .mono-label,
  .badge-accent, .badge-latest, .text-accent {
    color: #111 !important;
  }
  .footer {
    border-top: 1px solid #ddd !important;
    background: #fff !important;
  }
  .footer-col a, .footer-copy {
    color: #333 !important;
  }
}
