/* ============================================================
   MILANPCS — LANDING PAGE STYLES
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f4f6f8;
  --bg-2:      #eaecf0;
  --bg-3:      #e0e3e8;
  --surface:   #ffffff;
  --accent:    #0ea5e9;
  --accent-2:  #38bdf8;
  --accent-dim: rgba(14,165,233,0.1);
  --accent-glow: rgba(14,165,233,0.2);
  --gold:      #d97706;
  --white:     #0f1117;
  --muted:     #9aa0ad;
  --muted-2:   #555d6b;
  --border:    rgba(0,0,0,0.08);
  --border-2:  rgba(14,165,233,0.25);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-disp: 'Orbitron', monospace;
  --radius:    10px;
  --radius-lg: 16px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.2s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
  background: var(--accent);
  color: #000;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: var(--muted-2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}

.btn-dark {
  background: #000;
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}
.btn-dark:hover {
  background: var(--surface);
  box-shadow: none;
  color: var(--white);
}

.btn-sm   { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg   { padding: 14px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ── CART BUTTON (NAV) ─────────────────── */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: border-color var(--t), background var(--t), color var(--t);
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--accent); background: rgba(14,165,233,0.15); color: #fff; }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
}

/* ── CART OVERLAY ──────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ── CART DRAWER ───────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.cart-close {
  width: 32px; height: 32px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), color var(--t);
  line-height: 1;
}
.cart-close:hover { border-color: var(--accent); color: var(--accent); }

/* Empty state */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}
.cart-empty-icon {
  width: 72px; height: 72px;
  background: var(--bg-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
}
.cart-empty p { font-size: 0.95rem; }

/* Cart items list */
.cart-items {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-name {
  font-family: var(--font-disp);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--muted-2);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.qty-btn {
  width: 28px; height: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
  line-height: 1;
}
.qty-btn:hover { border-color: var(--accent); background: var(--accent-dim); }

.qty-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}
.remove-btn {
  width: 28px; height: 28px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted-2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
  line-height: 1;
}
.remove-btn:hover { color: #dc2626; background: rgba(220,38,38,0.08); }

/* Cart footer */
.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.cart-subtotal span:first-child { color: var(--muted-2); }
.cart-subtotal span:last-child  { font-family: var(--font-disp); font-weight: 900; font-size: 1.1rem; }

.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--muted-2);
  text-align: center;
}

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,13,20,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14,165,233,0.12);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(10,13,20,0.97);
  border-color: rgba(14,165,233,0.22);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 62px; display: block; background: none; margin-top: 8px; }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.nav-links a:hover { color: #fff; }

.nav-cta { margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 32px 28px;
  background: rgba(10,13,20,0.98);
  border-top: 1px solid rgba(14,165,233,0.15);
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t);
}
.mobile-menu a:last-child { border-bottom: none; padding-top: 20px; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn { width: 100%; }

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Orb drift animation */
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.06); }
  66%       { transform: translate(-25px, 20px) scale(0.96); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 30px) scale(1.08); }
  75%       { transform: translate(30px, -20px) scale(0.95); }
}

/* Orb container — no grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
}

/* Bottom-left orb */
.hero-grid::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.22) 0%, transparent 65%);
  bottom: -200px; left: -150px;
  border-radius: 50%;
  animation: orbDrift2 7s ease-in-out infinite;
}

/* Center orb */
.hero-grid::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 65%);
  top: 15%; left: 30%;
  border-radius: 50%;
  animation: orbDrift 9s ease-in-out infinite 1s;
}

/* Main top-right orb — brighter */
.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(14,165,233,0.28) 0%, rgba(56,189,248,0.12) 40%, transparent 65%);
  top: -250px;
  right: -200px;
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 160px 32px 120px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 700px;
}

.accent {
  color: var(--accent);
  text-shadow: none;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hstat { display: flex; flex-direction: column; gap: 3px; }
.hstat-n {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hstat-l {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hstat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── TICKER ────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(14,165,233,0.2);
  border-bottom: 1px solid rgba(14,165,233,0.2);
  padding: 13px 0;
  background: #0a0d14;
}

.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
  width: max-content;
}

.ticker span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.ticker .dot {
  color: rgba(14,165,233,0.4);
  font-size: 0.7rem;
}

/* ── SECTIONS ──────────────────────────── */
.section       { padding: 110px 0; }
.section.dark  { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
}
.section-header p {
  font-size: 1rem;
  color: var(--muted-2);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── PRODUCT CARDS ─────────────────────── */
.pc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14,165,233,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border-color: rgba(14,165,233,0.3);
}
.pc-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.pc-card:hover::before,
.pc-card.featured::before { opacity: 1; }

.pc-card.featured {
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 4px 24px rgba(14,165,233,0.1);
}

/* Badge */
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}
.badge-popular { background: var(--accent); color: #fff; }
.badge-new     { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-2); }
.badge-elite   { background: rgba(217,119,6,0.1); color: var(--gold); border: 1px solid rgba(217,119,6,0.25); }
.badge-sale    { background: var(--accent); color: #000; }

/* Visual area */
.card-visual {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
}
.card-visual-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(14,165,233,0.2));
  transition: transform var(--t) var(--ease);
}
.pc-card:hover .card-visual-logo { transform: scale(1.06); }

.card-tier-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Card body */
.card-body {
  padding: 20px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-name {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 6px;
}
.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.card-price-from { font-size: 0.75rem; color: var(--muted-2); }
.card-price {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.card-price-note { font-size: 0.72rem; color: var(--muted-2); margin-left: auto; }
.card-price--sale { color: var(--accent); }
.card-price-original { font-size: 0.9rem; color: var(--muted-2); text-decoration: line-through; font-weight: 700; }

.card-divider { height: 1px; background: var(--border); margin-bottom: 16px; }

.card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.card-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.spec-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex-shrink: 0;
  width: 58px;
}
.spec-val { font-weight: 600; color: var(--white); text-align: right; }
.spec-val.highlight { color: var(--accent); }

/* Card footer */
.card-footer {
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: #16a34a;
  font-weight: 600;
}
.card-avail::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: avail-pulse 2s infinite;
}
@keyframes avail-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.card-avail.sold-out { color: var(--muted-2); }
.card-avail.sold-out::before { background: var(--muted-2); animation: none; }

.lineup-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--muted);
}
.lineup-note a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color var(--t); }
.lineup-note a:hover { border-color: var(--accent); }

/* ── COMPONENTS ────────────────────────── */
.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-card {
  background: var(--bg-3);
  padding: 40px 32px;
  transition: background var(--t) var(--ease);
}
.comp-card:hover { background: var(--surface); }

.comp-num {
  font-family: var(--font-disp);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.comp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.comp-card p {
  font-size: 0.86rem;
  color: var(--muted-2);
  line-height: 1.7;
}

/* ── WHY ───────────────────────────────── */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-heading {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 8px;
}

.why-lead {
  font-size: 1rem;
  color: var(--muted-2);
  line-height: 1.75;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-num {
  font-family: var(--font-disp);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.why-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-body p {
  font-size: 0.86rem;
  color: var(--muted-2);
  line-height: 1.7;
}

/* ── COMPARISON TABLE ──────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--surface);
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
  background: var(--bg-2);
}

.compare-table th.compare-us {
  background: rgba(14,165,233,0.08);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.compare-us-label {
  font-family: var(--font-disp);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-feature-col { width: 28%; }

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg); }

.compare-table td {
  padding: 16px 24px;
  vertical-align: middle;
  color: var(--muted-2);
}

.compare-feature {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 0.88rem;
}

.compare-table td.compare-us {
  background: rgba(14,165,233,0.05);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  color: var(--white) !important;
  font-weight: 600;
}

.cmp-yes { color: #16a34a; margin-right: 6px; font-weight: 700; }
.cmp-no  { color: #dc2626; margin-right: 6px; font-weight: 700; }
.cmp-mid { color: #d97706; margin-right: 6px; font-weight: 700; }

@media (max-width: 700px) {
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 0.8rem; }
}

/* ── CTA BANNER ────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: 60px 32px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-heading {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #000;
  margin-bottom: 6px;
}

.cta-sub {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
}

/* ── CONTACT ───────────────────────────── */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── PAGE HERO ─────────────────────────── */
.page-hero {
  padding: 120px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Orb top-right */
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, rgba(56,189,248,0.07) 40%, transparent 65%);
  top: -200px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

/* Orb bottom-left */
.page-hero::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(14,165,233,0.13) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
  animation: orbDrift2 8s ease-in-out infinite;
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted-2);
  max-width: 480px;
  line-height: 1.7;
}

/* ── SHOP ALL LINK ──────────────────────── */
.shop-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ── BREADCRUMB ─────────────────────────── */
.breadcrumb {
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--muted); }

/* ── PRODUCT DETAIL ─────────────────────── */
.product-section { padding: 32px 0 100px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}

.product-image-wrap {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image-wrap .product-img-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(14,165,233,0.2));
}

.product-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.product-tier-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.product-name {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.product-price {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.product-price--sale { color: var(--accent); }
.product-price-original { font-size: 1.1rem; color: var(--muted-2); text-decoration: line-through; font-weight: 700; align-self: baseline; }
.product-price-note {
  font-size: 0.82rem;
  color: var(--muted-2);
}

.product-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 28px;
}
.product-avail::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: avail-pulse 2s infinite;
}
.product-avail.sold-out { color: var(--muted-2); }
.product-avail.sold-out::before { background: var(--muted-2); animation: none; }

.product-divider { height: 1px; background: var(--border); margin: 24px 0; }

.product-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.product-specs-list li {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.product-specs-list li:last-child { border-bottom: none; }
.product-specs-list li:nth-child(even) { background: var(--bg); }
.spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  width: 80px;
  flex-shrink: 0;
}
.spec-value { font-weight: 600; color: var(--white); }
.spec-value.gpu { color: var(--accent); }

.product-add-btn { margin-bottom: 12px; font-size: 1rem; padding: 16px 32px; }
.product-ship-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.product-support-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-2);
  transition: color var(--t);
}
.product-support-link:hover { color: var(--accent); }

@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── BENCHMARKS ─────────────────────────── */
.bench-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.bench-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 6px;
}
.bench-subtitle {
  font-size: 0.9rem;
  color: var(--muted-2);
  text-align: center;
  margin-bottom: 36px;
}
.bench-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.bench-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bench-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.bench-card-img--placeholder {
  background: var(--bg-3);
}
.bench-card-body {
  padding: 14px 16px;
}
.bench-card-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.bench-res-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.bench-res-row:last-child { margin-bottom: 0; }
.bench-res-label {
  font-size: 0.78rem;
  color: var(--muted-2);
  width: 44px;
  flex-shrink: 0;
}
.bench-ring {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.bench-res-fps {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
@media (max-width: 600px) {
  .bench-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── REVIEWS ────────────────────────────── */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  width: fit-content;
}
.reviews-avg-score {
  font-family: var(--font-disp);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.reviews-stars-row { display: flex; gap: 2px; margin-bottom: 4px; }
.reviews-count { font-size: 0.82rem; color: var(--muted-2); }

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-stars { display: flex; gap: 2px; }
.review-verified {
  font-size: 0.72rem;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white);
}
.review-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 4px;
}
.review-product {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 6px;
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 20px; }
}

/* ── VISUAL EFFECTS & ANIMATIONS ──────── */

/* Hero entrance — staggered slide-up */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  animation: heroFadeUp 0.7s var(--ease) 0.1s both;
}
.hero-title {
  animation: heroFadeUp 0.7s var(--ease) 0.25s both;
}
.hero-sub {
  animation: heroFadeUp 0.7s var(--ease) 0.4s both;
}
.hero-actions {
  animation: heroFadeUp 0.7s var(--ease) 0.55s both;
}
.hero-stats {
  animation: heroFadeUp 0.6s var(--ease) 0.7s both;
}

/* Hero glow — slow breathing pulse */
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
.hero-glow {
  animation: glowPulse 4s ease-in-out infinite;
}

/* Accent text glow */
.accent {
  text-shadow: 0 0 40px rgba(14,165,233,0.35), 0 0 80px rgba(14,165,233,0.15);
}

/* Button shimmer sweep on hover */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after {
  transform: translateX(100%);
}

/* Card image zoom on hover */
.card-visual--photo img {
  transition: transform 0.5s var(--ease);
}
.pc-card:hover .card-visual--photo img {
  transform: scale(1.04);
}

/* PC card subtle lift + glow */
.pc-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,165,233,0.12);
}

/* Section tag pulse-in */
@keyframes tagSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.section-tag {
  animation: tagSlide 0.6s var(--ease) both;
  animation-play-state: paused;
}
.section-tag.visible {
  animation-play-state: running;
}

/* Review card hover lift */
.review-card {
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14,165,233,0.09);
}

/* Bench card hover */
.bench-card {
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.bench-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,165,233,0.1);
}

/* Nav link hover underline sweep */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover::after {
  right: 0;
}

/* Cart btn pulse when item added */
@keyframes cartBump {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.22); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.cart-btn.bump {
  animation: cartBump 0.4s var(--ease);
}

/* ── FOOTER ────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { height: 48px; opacity: 0.8; background: none; }
.footer-copy { font-size: 0.8rem; color: var(--muted); flex: 1; }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }

/* ── ANIMATIONS ────────────────────────── */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────── */

/* Tablet (≤960px) */
@media (max-width: 960px) {
  .pc-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap        { grid-template-columns: 1fr; gap: 48px; }
  .compare-wrap    { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table   { min-width: 560px; }
}

/* Large mobile (≤720px) */
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: 0; margin-right: auto; order: -1; }
  .nav-logo  { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-inner { position: relative; }
  .cart-btn  { margin-left: auto; }
  .nav-logo img { height: 50px; margin-top: 6px; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-inner { padding: 110px 20px 80px; }
  .hero-sub   { font-size: 1rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }

  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }

  .pc-cards-grid   { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .components-grid { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }

  .page-hero { padding-top: 80px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .cta-inner { flex-direction: column; text-align: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy  { flex: none; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  .product-layout { padding-top: 24px; }
  .bench-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .cart-drawer { width: 100vw; }
}

/* Small mobile (≤420px) */
@media (max-width: 420px) {
  .hero-title  { font-size: 2.2rem; }
  .hero-stats  { gap: 12px; }
  .hstat-sep   { display: none; }
  .hstat-n     { font-size: 1.1rem; }

  .pc-cards-grid { max-width: 100%; }
  .bench-grid    { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 1.6rem; }

  .compare-table { min-width: 480px; font-size: 0.75rem; }
  .compare-table th,
  .compare-table td { padding: 10px 10px; }
}
