@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #080808;
  --surface:  #0d0d0d;
  --surface2: #131313;
  --border:   #1e1e1e;
  --border2:  #2a2a2a;
  --silver:   #b8b8b8;
  --silver2:  #e0e0e0;
  --muted:    #484848;
  --muted2:   #686868;
  --text:     #d8d8d8;
  
  --fivem:    #5a7a9a;
  --csgo:     #8a9a7a;
  --rust:     #9a6a5a;
}

html { scroll-behavior: smooth; }
#products, #cpu-section, #pricing { scroll-margin-top: 72px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'JetBrains Mono', monospace; }

#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #050505;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  width: 100%;
}
.ld-logo {
  width: 54px; opacity: .75;
  animation: ldpulse 2.4s ease-in-out infinite;
}
@keyframes ldpulse { 0%,100%{opacity:.65} 50%{opacity:.9} }
.ld-chip-wrap {
  width: clamp(280px, 72vw, 660px);
  border-radius: 14px; overflow: hidden;
}
.ld-chip-wrap svg { display: block; width: 100%; height: auto; }
.ld-status {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); font-family: 'JetBrains Mono', monospace;
  transition: opacity .15s, color .3s;
  min-height: 1em;
}

nav {
  position: fixed; top: 0; width: 100%; z-index: 10001;
  padding: 0 56px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, border-color .4s, opacity .5s;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  opacity: 0;
}
nav.scrolled {
  background: rgba(8,8,8,.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(24px);
}
.nav-logo { height: 28px; opacity: .88; flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; list-style: none; flex-shrink: 1; min-width: 0; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-socials { display: flex; align-items: center; gap: 4px; }
.nav-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  color: var(--muted2); text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-social-btn:hover { color: var(--fg); background: rgba(255,255,255,.06); }
.nav-links a {
  color: var(--muted2); text-decoration: none; cursor: pointer;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--silver2); }.nav-btn {
  padding: 8px 22px;
  border: 1px solid var(--border2); color: var(--silver);
  border-radius: 5px; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: all .2s;
}
.nav-btn:hover {
  background: var(--surface2);
  border-color: #444; color: var(--silver2);
}

.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 7px; padding: 5px 10px;
  cursor: pointer; color: var(--muted2);
  font-family: inherit; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.lang-btn:hover { border-color: #333; color: var(--silver); background: rgba(255,255,255,.03); }
.lang-btn .chevron { transition: transform .2s; }
.lang-switcher.open .lang-btn .chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #0f0f0f; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 300; min-width: 140px;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  background: transparent; border: none;
  color: var(--muted2); font-family: inherit; font-size: .8rem;
  cursor: pointer; text-align: left; transition: background .15s, color .15s;
}
.lang-option:hover { background: rgba(255,255,255,.04); color: var(--silver); }
.lang-option.active { color: var(--silver2); }
.lang-flag { font-size: 1rem; line-height: 1; }

#hero {
  height: 100vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
#particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0;
}
.hero-logo {
  width: clamp(120px, 16vw, 190px);
  animation: logoFloat 7s ease-in-out infinite;
  margin-bottom: 36px;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0) rotate(-.3deg); }
  50%     { transform: translateY(-12px) rotate(.3deg); }
}
.hero-eyebrow {
  font-size: .63rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--muted2); font-weight: 600; margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0; animation: fadeUp .8s .3s ease forwards;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: .92;
  color: #fff;
  opacity: 0; animation: fadeUp .9s .5s ease forwards;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(160deg, #fff 0%, #888 60%, #333 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  color: var(--muted2); letter-spacing: .02em; line-height: 1.75;
  max-width: 460px;
  opacity: 0; animation: fadeUp .9s .7s ease forwards;
}
.hero-ctas {
  margin-top: 38px;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .9s .9s ease forwards;
}
.btn-primary {
  padding: 10px 24px; border-radius: 6px;
  background: var(--silver2); color: #080808;
  font-size: .74rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; pointer-events: auto;
  transition: box-shadow .2s, transform .15s, background .2s;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(220,220,220,.18);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 10px 24px; border-radius: 6px;
  border: 1px solid var(--border2); color: var(--muted2);
  font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; background: transparent; pointer-events: auto;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost:hover { border-color: #555; color: #bbb; transform: translateY(-2px); }

.hero-terminal {
  margin-top: 36px;
  width: clamp(340px, 60vw, 680px);
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  opacity: 0; animation: fadeUp .9s 1s ease forwards;
}
.ht-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: #0e0e0e;
  border-bottom: 1px solid #161616;
}
.ht-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a2a2a;
}
.ht-title {
  margin-left: 6px;
  font-size: .6rem; letter-spacing: .12em;
  color: #383838; font-family: 'JetBrains Mono', monospace;
}
.ht-body {
  padding: 16px 20px 18px;
  display: flex; flex-direction: column; gap: 5px;
  min-height: 110px;
}
.ht-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; line-height: 1.5;
  color: #505050; white-space: pre;
}
.ht-line .kw  { color: #7a9a7a; }
.ht-line .fn  { color: #8a8aaa; }
.ht-line .str { color: #8a7a6a; }
.ht-line .ok  { color: #6aaa6a; }
.ht-line .dim { color: #383838; }
.ht-status    { margin-top: 6px; padding-top: 6px; border-top: 1px solid #161616; }
.ht-cursor {
  width: 7px; height: 13px;
  background: #383838;
  margin-top: 2px;
  animation: blink .9s step-end infinite;
}

.hero-status {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; align-items: center; gap: 22px;
  opacity: 0; animation: fadeIn 1s 1.4s ease forwards;
}
.status-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted2); font-family: 'JetBrains Mono', monospace;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7ab87a; box-shadow: 0 0 8px #7ab87a;
  animation: blink 2.4s ease-in-out infinite;
}
.status-dot.dim { background: #888; box-shadow: none; animation: none; }
.status-sep { width: 1px; height: 14px; background: var(--border2); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

#products {
  padding: 140px 7% 120px;
  position: relative;
}
#products::before {
  content: '';
  position: absolute; top: 0; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.products-header { text-align: center; margin-bottom: 80px; }
.products-header .eyebrow {
  font-size: .63rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted2); font-weight: 700; margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.products-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; letter-spacing: -.03em; color: #fff;
}

.products-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 20px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: border-color .3s, transform .08s linear;
  will-change: transform;
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.product-card.fivem-dma::before { background: linear-gradient(90deg, transparent, var(--fivem), transparent); }
.product-card.fivem-kd::before  { background: linear-gradient(90deg, transparent, #7a9a5a, transparent); }
.product-card.csgo::before      { background: linear-gradient(90deg, transparent, var(--csgo), transparent); }
.product-card.rust::before      { background: linear-gradient(90deg, transparent, var(--rust), transparent); }
.product-card:hover { border-color: var(--border2); }
.product-card:hover::before { transform: scaleX(1); }

.card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px;
}

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  font-size: .6rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted2);
  font-family: 'JetBrains Mono', monospace;
  backdrop-filter: blur(4px);
}
.status-pill .sdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #7ab87a; animation: blink 2.2s infinite;
}
.status-pill .sdot.dim { background: var(--rust); animation: none; }

.card-icon {
  width: 28px; height: 28px; opacity: .5;
}

.card-bottom { }

.product-card h3 {
  font-size: 1.25rem; font-weight: 900;
  letter-spacing: -.025em; color: #e8e8e8; margin-bottom: 4px;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.product-card:hover h3 { transform: translateX(4px); }

.product-game {
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-family: 'JetBrains Mono', monospace;
  margin-bottom: 20px;
}

.product-meta {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px;
}
.product-price {
  font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -.03em;
}
.product-price sub { font-size: .75rem; font-weight: 400; color: var(--muted2); vertical-align: baseline; }
.product-badge {
  font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.product-badge.popular { background: var(--silver2); color: #080808; }
.product-badge.slotted { border: 1px solid var(--rust); color: var(--rust); }
.product-badge.dma     { border: 1px solid var(--fivem); color: var(--fivem); }

.product-divider { height: 1px; background: var(--border); margin-bottom: 20px; }

.product-features {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 24px;
}
.product-features li {
  font-size: .76rem; color: var(--muted2);
  display: flex; align-items: baseline; gap: 10px; line-height: 1.5;
}
.product-features li::before {
  content: '—'; color: var(--muted); font-size: .6rem; flex-shrink: 0;
}

.product-underline {
  height: 1px;
  background: linear-gradient(90deg, rgba(180,180,180,.45) 30%, rgba(180,180,180,.2) 60%, transparent);
  transform: scaleX(.25); transform-origin: left;
  transition: transform .45s ease;
}
.product-card:hover .product-underline,
.product-card:focus .product-underline { transform: scaleX(1); }

.slots-badge {
  position: absolute; top: 18px; right: 16px;
  background: var(--surface2);
  border: 1px solid rgba(154,106,90,.5);
  border-radius: 5px; padding: 3px 9px;
  font-size: .55rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rust);
  font-family: 'JetBrains Mono', monospace;
}

#cpu-section {
  padding: 140px 7% 120px;
  position: relative; overflow: hidden;
}
#cpu-section::before {
  content: '';
  position: absolute; top: 0; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.cpu-header { text-align: center; margin-bottom: 72px; }
.cpu-header .eyebrow {
  font-size: .63rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted2); font-weight: 700; margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.cpu-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; letter-spacing: -.03em; color: #fff;
}
.cpu-header h2 em {
  font-style: normal;
  background: linear-gradient(120deg, #c0c0c0, #606060);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cpu-header p {
  margin-top: 14px; color: var(--muted2); font-size: .88rem;
  line-height: 1.75; max-width: 480px; margin-left: auto; margin-right: auto;
}

.cpu-diagram {
  position: relative; max-width: 1000px; margin: 0 auto;
  background: linear-gradient(160deg, #0a0a0a, #070707);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 56px 44px;
  box-shadow: 0 0 120px rgba(0,0,0,.6), 0 60px 100px rgba(0,0,0,.5);
}
.cpu-diagram::after {
  content: '';
  position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(180,180,180,.025), transparent 70%);
}

.cpu-svg { width: 100%; height: auto; display: block; overflow: visible; }

.bypass-labels {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-top: 36px;
}
.bypass-label {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: #ffffff03;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .25s;
}
.bypass-label:hover { border-color: var(--border2); }
.bypass-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}
.bypass-label h4 { font-size: .78rem; font-weight: 700; color: #ccc; margin-bottom: 8px; }
.bypass-label p  { font-size: .71rem; color: var(--muted2); line-height: 1.65; }
.bypass-label code {
  font-family: 'JetBrains Mono', monospace;
  background: #ffffff07; border: 1px solid #222;
  padding: 1px 5px; border-radius: 3px;
}

#pricing {
  padding: 120px 7%;
  position: relative;
}
#pricing::before {
  content: '';
  position: absolute; top: 0; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .eyebrow {
  font-size: .63rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted2); font-weight: 700; margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.pricing-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -.03em; color: #fff;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; max-width: 1100px; margin: 0 auto;
}
.plan {
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px;
  background: var(--surface);
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  border-color: #3a3a3a;
  background: linear-gradient(160deg, #111, #0d0d0d);
  box-shadow: 0 0 60px rgba(200,200,200,.04);
}
.plan.featured::before {
  content: 'PIÙ POPOLARE';
  position: absolute; top: 18px; right: 18px;
  font-size: .52rem; letter-spacing: .16em; font-weight: 800;
  color: #080808; background: var(--silver2); padding: 3px 8px; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
}
.plan.limited {
  border-color: rgba(154,106,90,.35);
}
.plan.limited::before {
  content: 'SLOTTED';
  position: absolute; top: 18px; right: 18px;
  font-size: .52rem; letter-spacing: .16em; font-weight: 800;
  color: var(--rust); border: 1px solid var(--rust); padding: 3px 8px; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
}
.plan-name {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted2); font-weight: 700; margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.plan-game {
  font-size: .7rem; color: var(--silver); font-weight: 600;
  margin-bottom: 20px; letter-spacing: .04em;
}
.plan-price {
  font-size: 2.8rem; font-weight: 900; color: #fff;
  letter-spacing: -.04em; margin-bottom: 2px;
}
.plan-price span { font-size: .95rem; color: var(--muted2); font-weight: 400; }
.plan-period { font-size: .72rem; color: var(--muted); margin-bottom: 26px; font-family: 'JetBrains Mono', monospace; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.plan-features li {
  font-size: .8rem; color: #aaa;
  display: flex; align-items: baseline; gap: 10px;
}
.plan-features li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--silver); flex-shrink: 0; margin-top: 2px;
}
.plan-features li.dim { color: var(--muted); }
.plan-features li.dim::before { background: var(--muted); }
.plan-btn {
  display: block; text-align: center; padding: 13px;
  border-radius: 8px; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .2s;
  font-family: 'JetBrains Mono', monospace;
}
.plan-btn.outline { border: 1px solid var(--border2); color: var(--muted2); }
.plan-btn.outline:hover { border-color: #555; color: #ccc; }
.plan-btn.solid { background: var(--silver2); color: #080808; }
.plan-btn.solid:hover { background: #fff; box-shadow: 0 0 36px rgba(220,220,220,.15); }
.plan-btn.rust-btn { border: 1px solid rgba(154,106,90,.5); color: var(--rust); }
.plan-btn.rust-btn:hover { background: rgba(154,106,90,.08); border-color: var(--rust); }

#testimonials {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute; top: 0; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
#testimonials .products-header { padding: 0 7%; }
.test-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.test-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: testScroll 40s linear infinite;
}
.test-track:hover { animation-play-state: paused; }
@keyframes testScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px 18px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s;
}
.test-card:hover { border-color: #2a2a2a; }
.test-quote {
  color: var(--muted2);
  font-size: .8rem;
  line-height: 1.6;
  flex: 1;
}
.test-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.test-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
}
.test-meta { display: flex; flex-direction: column; gap: 2px; }
.test-name { font-size: .76rem; font-weight: 600; color: var(--fg); }
.test-product {
  font-size: .6rem; font-weight: 600;
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .06em;
}

#faq {
  padding: 120px 7% 120px;
  position: relative;
}
#faq::before {
  content: '';
  position: absolute; top: 0; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.faq-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: #2a2a2a; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  font-size: .83rem;
  font-weight: 500;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-a p {
  font-size: .8rem;
  line-height: 1.7;
  color: var(--muted2);
  padding-bottom: 18px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px; }

footer {
  border-top: 1px solid var(--border);
  padding: 30px 56px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: .72rem;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap; gap: 14px;
}
footer img { height: 22px; opacity: .22; filter: grayscale(1); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #888; }
.footer-socials { display: flex; align-items: center; gap: 8px; }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  color: var(--muted); text-decoration: none;
  transition: color .2s, background .2s;
}
.footer-social:hover { color: #888; background: rgba(255,255,255,.04); }

#scanlines {
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 3px,
    rgba(0,0,0,.025) 3px, rgba(0,0,0,.025) 4px
  );
}

#agent-wrap {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 10000; display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
#agent-wrap.visible { opacity: 1; pointer-events: auto; }

#agent-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: #111; border: 1px solid #2a2a2a;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #b8b8b8; position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
  transition: background .2s, border-color .2s, transform .2s;
}
#agent-btn:hover { background: #181818; border-color: #3a3a3a; transform: scale(1.06); }
.agent-btn-icon { position: absolute; transition: opacity .2s, transform .2s; }
.agent-icon-chat  { opacity: 1; transform: scale(1); }
.agent-icon-close { opacity: 0; transform: scale(.6); }
#agent-wrap.open .agent-icon-chat  { opacity: 0; transform: scale(.6); }
#agent-wrap.open .agent-icon-close { opacity: 1; transform: scale(1); }
.agent-notif {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #6aaa6a; border: 2px solid #050505;
  animation: agentPulse 2.4s ease-in-out infinite;
}
@keyframes agentPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

#agent-panel {
  width: 320px; background: #0d0d0d;
  border: 1px solid #1e1e1e; border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 16px 60px rgba(0,0,0,.7);
  transform: translateY(16px) scale(.97);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  max-height: 520px;
}
#agent-wrap.open #agent-panel {
  transform: translateY(0) scale(1);
  opacity: 1; pointer-events: auto;
}

.agent-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #1a1a1a;
  background: #0a0a0a;
}
.agent-header-left { display: flex; align-items: center; gap: 10px; }
.agent-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #141414; border: 1px solid #252525;
  display: flex; align-items: center; justify-content: center;
  color: #888;
}
.agent-name { font-size: .78rem; font-weight: 700; color: #d8d8d8; }
.agent-sub { font-size: .65rem; color: #484848; display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.agent-dot-live {
  width: 6px; height: 6px; border-radius: 50%; background: #6aaa6a;
  animation: agentPulse 2s infinite;
}
.agent-close-btn {
  background: transparent; border: none; cursor: pointer;
  color: #484848; padding: 4px; border-radius: 4px;
  transition: color .15s; display: flex;
}
.agent-close-btn:hover { color: #888; }

.agent-body {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin; scrollbar-color: #1e1e1e transparent;
}
.agent-msg { max-width: 90%; }
.agent-msg p { font-size: .78rem; line-height: 1.55; }
.agent-msg p strong { color: #c8c8c8; }
.agent-msg.bot p {
  background: #141414; border: 1px solid #1e1e1e;
  border-radius: 4px 12px 12px 12px;
  padding: 9px 12px; color: #a0a0a0;
}
.agent-msg.user p {
  background: #1a1a1a; border: 1px solid #252525;
  border-radius: 12px 4px 12px 12px;
  padding: 9px 12px; color: #c8c8c8;
  margin-left: auto;
}
.agent-msg.user { align-self: flex-end; }
.agent-msg-enter {
  animation: agentMsgIn .22s ease forwards;
}
@keyframes agentMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.agent-suggestions { display: flex; flex-direction: column; gap: 6px; }
.agent-q {
  text-align: left; background: #111; border: 1px solid #202020;
  border-radius: 8px; padding: 8px 12px; cursor: pointer;
  color: #888; font-size: .73rem; font-family: inherit;
  transition: background .15s, border-color .15s, color .15s;
}
.agent-q:hover { background: #161616; border-color: #2e2e2e; color: #b8b8b8; }

.agent-footer {
  padding: 12px 14px; border-top: 1px solid #161616;
  background: #090909;
}
.agent-discord-btn {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  width: 100%; padding: 9px; border-radius: 8px;
  background: #1a1a2e; border: 1px solid #5865F2;
  color: #7b8cde; font-size: .73rem; font-weight: 600;
  text-decoration: none; transition: background .2s, color .2s;
  font-family: inherit;
}
.agent-discord-btn:hover { background: #252540; color: #a0aaee; }

@media (min-width: 1400px) {
  nav { padding: 0 80px; }
  #products, #cpu-section, #pricing { padding: 140px 9% 120px; }
}

@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  .nav-links { gap: 24px; }
  .products-grid { gap: 14px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid .plan.featured { grid-column: span 1; }
  #products, #cpu-section, #pricing { padding: 120px 5% 100px; }
  .bypass-labels { gap: 28px; }
}

@media (max-width: 860px) {
  nav { padding: 0 28px; height: 56px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .68rem; }
  .products-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .products-header { margin-bottom: 52px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  #products, #cpu-section, #pricing { padding: 100px 6% 80px; }
  .bypass-labels { grid-template-columns: 1fr; gap: 24px; }
  .cpu-diagram { padding: 32px 20px; }
  .cpu-svg { border-radius: 10px; }
  footer { padding: 28px 32px; }
  .hero-terminal { width: min(90vw, 620px); }
}

@media (max-width: 600px) {
  nav { padding: 0 18px; height: 54px; }
  .nav-logo { height: 24px; }
  .nav-links { display: none; }
  .nav-btn { padding: 6px 14px; font-size: .66rem; }
  .lang-btn { padding: 4px 8px; font-size: .68rem; }
  #lang-label { display: none; }

  .hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-eyebrow { font-size: .55rem; letter-spacing: .2em; }
  .hero-terminal { width: 92vw; font-size: .68rem; }
  .ht-body { padding: 10px 12px 12px; gap: 7px; }
  .hero-ctas { gap: 8px; }
  .btn-primary, .btn-ghost { padding: 9px 18px; font-size: .68rem; }
  .hero-status { gap: 12px; font-size: .6rem; }
  .status-sep { display: none; }
  .hero-logo { width: clamp(90px, 28vw, 140px); margin-bottom: 24px; }

  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { padding: 20px 18px 16px; border-radius: 12px; }
  .card-top { margin-bottom: 18px; }
  .product-features li { font-size: .72rem; }
  .products-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .products-header { margin-bottom: 36px; }

  #products, #cpu-section, #pricing { padding: 90px 5% 70px; }
  .cpu-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cpu-header p { font-size: .82rem; }
  .cpu-diagram { padding: 20px 12px; overflow-x: auto; }
  .cpu-svg { min-width: 480px; }
  .bypass-labels { grid-template-columns: 1fr; gap: 20px; }
  .bypass-label h4 { font-size: .85rem; }
  .bypass-label p { font-size: .78rem; }

  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .plan { padding: 24px 20px; }
  .pricing-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  footer { flex-direction: column; gap: 14px; text-align: center; padding: 24px 20px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .footer-socials { justify-content: center; }
  #testimonials { padding: 80px 0 60px; }
  #faq { padding: 80px 6% 60px; }
  .lang-dropdown { right: auto; left: 0; }
}
