:root {
  --bg: #000000;
  --bg-deep: #000000;
  --surface: rgba(18, 18, 20, 0.72);
  --surface-hover: rgba(28, 28, 32, 0.88);
  --surface-card: rgba(12, 12, 14, 0.75);
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-border-hover: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.1);
  
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  
  --cyan: #ffffff;
  --cyan-glow: rgba(255, 255, 255, 0.4);
  --cyan-light: #f4f4f5;
  --cyan-subtle: rgba(255, 255, 255, 0.08);
  
  --violet: #d4d4d8;
  --violet-glow: rgba(255, 255, 255, 0.2);
  --violet-subtle: rgba(255, 255, 255, 0.05);
  
  --green: #ffffff;
  --green-glow: rgba(255, 255, 255, 0.25);
  --danger: #ef4444;
  --warning: #f59e0b;

  --gui-accent: #ffffff;
  --gui-glow: rgba(255, 255, 255, 0.4);
  --gui-accent-rgb: 255, 255, 255;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility: Skip Link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--cyan);
  color: #030811;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 999999;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.36);
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-link:focus-visible {
  top: 20px;
  outline: none;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--cyan);
}

/* Vercel Guidelines: Touch & Interaction */
button, a, input, select, textarea, summary {
  touch-action: manipulation;
}

/* Vercel Guidelines: Focus States Replacement */
:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--cyan), 0 0 16px var(--cyan-glow) !important;
}

/* Vercel Guidelines: Typography */
h1, h2, h3 {
  text-wrap: balance;
}
.trust-val, .price-val, .hud-stat-val, table td, .sub-days, .hwid-val {
  font-variant-numeric: tabular-nums;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

button, input, textarea {
  font-family: inherit;
}

button, a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* Ambient Lighting Orbs - Monochrome Silver Spotlights */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow-top {
  top: -150px;
  right: 10%;
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 75%);
}
.glow-center {
  top: 900px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}
.glow-bottom {
  top: 1800px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 75%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 900px;
  pointer-events: none;
  opacity: 0.65;
  z-index: 1;
}

/* Header & Navigation */
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--surface-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-text small {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: 0.28em;
  font-weight: 600;
}

.brand-logo-wrap {
  width: 38px;
  height: 38px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.brand-logo-wrap:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.32));
}
.logo-glow {
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.23), transparent 70%);
  pointer-events: none;
  opacity: 0.8;
}

/* Modal Logo Wrap */
.modal-logo-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(212, 212, 216, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: logoPulse 4s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  0% { transform: translateY(0); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.18); }
  100% { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.36); }
}
.modal-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.41));
}
.modal-logo-glow {
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.avatar-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.32));
}

.nav nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav nav a, .text-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
}

.nav nav a:hover, .text-btn:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Primary & Ghost Buttons */
.primary, .ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  position: relative;
  overflow: hidden;
}

.primary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000000;
  background: #ffffff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.3), inset 0 1px 1px #ffffff;
}

.primary:hover {
  transform: translateY(-2px);
  background: #f4f4f5;
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.55), inset 0 1px 1px #ffffff;
}

.primary:active {
  transform: translateY(0);
}

.primary.small, .ghost.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: 8px;
}

.ghost {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.ghost:hover {
  background: var(--surface-hover);
  border-color: var(--surface-border-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.09);
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.hero-copy {
  padding: 60px 0 80px;
  z-index: 3;
}

.eyebrow, .kicker {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  color: var(--cyan);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 24px;
}

.gradient-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #D4D4D8 45%, #71717A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-copy > p {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 38px 0 54px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 22px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  width: fit-content;
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.badge-green {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.trust-item span {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* Telegram Buttons - Monochrome Glass */
.tg-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  font-size: 12px;
  font-family: var(--font-mono);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.tg-nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.tg-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.tg-hero-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}
.tg-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  font-weight: 600;
}

/* ========================================================
   3D HERO SHOWCASE & HOLOGRAPHIC QUANTUM STAGE
   ======================================================== */
.hero-visual {
  min-height: 560px;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: halo-pulse 6s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 0.95; }
}

.hero-3d-stage {
  width: 100%;
  max-width: 620px;
  height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}
.hero-3d-stage:active {
  cursor: grabbing;
}

#webgl-canvas {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.18));
}

.core-interaction-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(12, 12, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--font-mono);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 6;
  animation: hint-fade 4s ease-in-out infinite alternate;
}
@keyframes hint-fade {
  from { opacity: 0.75; transform: translateX(-50%) translateY(0); }
  to { opacity: 1; transform: translateX(-50%) translateY(-3px); }
}
.hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: blip 1.5s infinite;
}



/* 3D Card Interactive Tilt for Features */
.feature {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.feature:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 255, 255, 0.14);
}

/* Marquee Ticker */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: rgba(14, 14, 18, 0.6);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-anim 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.marquee-track i {
  color: var(--cyan);
  font-style: normal;
  margin: 0 24px;
}

/* Sections Common */
.section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 50px;
}

.section-head h2, .faq-header h2, .launch h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 12px 0 0;
  font-weight: 800;
}

.section-head p {
  max-width: 460px;
  color: var(--text-muted);
  font-size: 16px;
}

/* Bento Features Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 18px;
}

.feature {
  padding: 34px;
  border: 1px solid var(--surface-border);
  background: var(--surface-card);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature:hover {
  border-color: var(--surface-border-hover);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.09);
}

.feature.featured {
  grid-row: span 2;
  min-height: 560px;
  background: linear-gradient(160deg, rgba(18, 18, 22, 0.85) 0%, rgba(10, 10, 12, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-wide {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}

.feature-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 9px;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(255, 255, 255, 0.27);
  color: var(--cyan);
  font-weight: 700;
}

.feature .num {
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.feature h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 18px 0 10px;
  letter-spacing: -0.02em;
}

.feature p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-footer {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.chip.highlight {
  color: var(--cyan);
  border-color: rgba(255, 255, 255, 0.27);
  background: var(--cyan-subtle);
}

/* Radar UI component */
.radar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.23);
  margin: 40px auto 30px;
  position: relative;
  background: repeating-radial-gradient(circle, transparent 0 38px, rgba(255, 255, 255, 0.05) 39px 40px);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05);
}
.radar:before, .radar:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
}
.radar:before {
  width: 100%;
  height: 1px;
  top: 50%;
}
.radar:after {
  height: 100%;
  width: 1px;
  left: 50%;
}
.radar-crosshair {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--cyan);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.radar i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.radar i:nth-child(1) { top: 28%; left: 34%; animation: blip 2s infinite; }
.radar i:nth-child(2) { top: 58%; left: 68%; animation: blip 2.5s infinite 0.4s; }
.radar i:nth-child(3) { top: 72%; left: 24%; animation: blip 3s infinite 0.8s; }

.radar b {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 0;
  border-left: 1px solid var(--cyan);
  background: conic-gradient(from 270deg, rgba(255, 255, 255, 0.32), transparent 45%);
  transform-origin: left bottom;
  animation: sweep 3.5s linear infinite;
}

/* Equalizer Bars */
.bars {
  height: 70px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin: 20px 0;
}
.bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 4px;
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}
.bars i:nth-child(1) { height: 45%; animation: eq 1.2s infinite ease-in-out; }
.bars i:nth-child(2) { height: 85%; animation: eq 1.6s infinite ease-in-out 0.2s; }
.bars i:nth-child(3) { height: 60%; animation: eq 1.4s infinite ease-in-out 0.4s; }
.bars i:nth-child(4) { height: 100%; animation: eq 1.8s infinite ease-in-out 0.1s; }
.bars i:nth-child(5) { height: 70%; animation: eq 1.5s infinite ease-in-out 0.3s; }

/* Sessions visual */
.sessions {
  height: 80px;
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.session-card {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 22, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.session-card span {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}
.session-card b {
  font-size: 11px;
  font-family: var(--font-mono);
}
.session-card.s1 b { color: var(--green); }
.session-card.s2 b { color: var(--warning); }
.session-card.s3 b { color: var(--cyan); }

/* Crosshair / ESP Card */
.crosshair {
  height: 120px;
  position: relative;
  display: grid;
  place-items: center;
}
.hud-box {
  width: 110px;
  height: 100px;
  border: 1px solid var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}
.box-tag {
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 8px;
  font-family: var(--font-mono);
  color: var(--cyan);
  background: var(--bg);
  padding: 1px 4px;
  border: 1px solid var(--cyan);
  border-radius: 2px;
}
.box-target {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Launch / Requirements Section */
.launch {
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.7) 0%, rgba(8, 8, 10, 0.85) 100%);
  border-block: 1px solid var(--line);
}
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.launch p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 20px 0 34px;
}

.steps-list {
  list-style: none;
}
.steps-list li {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.steps-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
  background: var(--cyan-subtle);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.steps-list strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.steps-list p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* FAQ Section */
.faq {
  max-width: 920px;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header p {
  color: var(--text-muted);
  margin-top: 12px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq details {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 20px 26px;
  transition: border-color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
}
.faq details[open] {
  border-color: var(--surface-border-hover);
  background: var(--surface-hover);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--cyan);
  transition: transform 0.2s ease;
}
.faq details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq details p {
  color: var(--text-muted);
  margin: 14px 0 4px;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
.footer-wrap {
  border-top: 1px solid var(--line);
  background: rgba(6, 6, 8, 0.88);
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 10px;
  max-width: 320px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-copy span {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cyan);
}
.footer-copy small {
  font-size: 12px;
  color: var(--text-dim);
}

/* Modal Windows */
.modal[hidden], .app-shell[hidden], [hidden] {
  display: none !important;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(20px);
}
.modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 44px 38px;
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(24px);
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-brand {
  margin-bottom: 24px;
}
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: scale(1.05);
}

.modal-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}
.modal-card > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.auth-form, .settings-card form {
  display: grid;
  gap: 18px;
}
.auth-form label, .settings-card label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.88);
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--cyan), 0 0 16px rgba(255, 255, 255, 0.32) !important;
  background: rgba(12, 12, 14, 0.96);
}

.switch {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text-muted);
  margin-top: 22px;
  font-size: 14px;
  cursor: pointer;
}
.switch b {
  color: var(--cyan);
  text-decoration: underline;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.form-message.error {
  color: var(--danger);
}

/* App Dashboard (Personal Cabinet) */
.app-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: 260px 1fr;
}

.app-shell aside {
  border-right: 1px solid var(--surface-border);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  background: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(20px);
}

.app-shell aside .brand {
  margin: 0 8px 48px;
}

.app-shell aside nav {
  display: grid;
  gap: 8px;
}

.to-site-nav-btn {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  text-align: left;
  padding: 0 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.to-site-nav-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--cyan);
  color: #fff;
  transform: translateX(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

.app-shell aside nav button, .logout {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  text-align: left;
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.app-shell aside nav button.active, .app-shell aside nav button:hover {
  background: var(--cyan-subtle);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.app-shell aside nav button.active svg {
  color: var(--cyan);
}

.logout {
  margin-top: auto;
}
.logout:hover {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.2);
  color: var(--danger);
}

.app-content {
  overflow-y: auto;
  padding: 48px 56px;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.app-content > header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.app-content > header h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 0;
}
.app-content > header h1 b {
  color: var(--cyan);
}

.status-dot {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 184, 0, 0.4);
  background: rgba(255, 184, 0, 0.08);
  color: var(--warning);
  padding: 8px 14px;
  border-radius: 20px;
}
.status-dot.active {
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}
.status-dot.blocked {
  color: var(--danger);
  border-color: rgba(255, 71, 87, 0.4);
  background: rgba(255, 71, 87, 0.08);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 22px;
}

.download-card, .account-card, .panel-card {
  border: 1px solid var(--surface-border);
  background: var(--surface-card);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(16px);
}

.download-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.download-card:after {
  content: "I";
  position: absolute;
  right: -20px;
  bottom: -110px;
  font-weight: 900;
  font-size: 400px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.download-card h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 30px 0 14px;
}
.download-card h2 strong {
  color: var(--cyan);
}
.download-card p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 16px;
}
.download-card .primary {
  margin-top: 36px;
  position: relative;
  z-index: 2;
  width: fit-content;
}
.download-card small {
  display: block;
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 13px;
}

.account-card {
  text-align: center;
}
.avatar {
  width: 96px;
  height: 96px;
  border: 2px solid var(--cyan);
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  margin: 20px auto 18px;
  font-size: 38px;
  font-weight: 800;
  border-radius: 20px;
  transform: rotate(6deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}
.account-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
}
.account-card > p {
  color: var(--text-dim);
  font-size: 14px;
  font-family: var(--font-mono);
}
.account-card dl {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.account-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.account-card dt {
  color: var(--text-muted);
}
.account-card dd {
  font-weight: 600;
  color: #fff;
}

.profile-lines {
  margin-top: 30px;
}
.profile-lines div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.profile-lines span {
  color: var(--text-muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 22px;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--text-dim);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 12px;
}
td small {
  color: var(--text-dim);
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
}
.action-select {
  padding: 8px 12px;
  width: auto;
  min-width: 130px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 13px;
}
.toggle-row {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  cursor: pointer;
}
.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--cyan);
}

/* Animations */
@keyframes spin-core {
  from { transform: rotateX(-16deg) rotateY(0deg); }
  to   { transform: rotateX(-16deg) rotateY(360deg); }
}

@keyframes orbit-spin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}

@keyframes orbit-spin-rev {
  from { transform: rotateX(36deg) rotateZ(360deg); }
  to   { transform: rotateX(36deg) rotateZ(0deg); }
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes blip {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes eq {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.05); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes marquee-anim {
  to { transform: translateX(-50%); }
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .nav nav { display: none; }
  .menu { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-left: auto; 
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav-actions { display: none; }
  .nav.open {
    height: auto;
    min-height: 84px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    background: rgba(10, 10, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .nav.open nav {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
  }
  .nav.open nav a {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav.open .nav-actions:not([hidden]) {
    order: 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav-actions:not([hidden]) button {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .eyebrow { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust { margin-inline: auto; }
  .hero-visual { min-height: 400px; padding-top: 10px; }
  .hero-3d-stage { height: 380px; }

  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .feature.featured { grid-row: auto; min-height: auto; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-content { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .footer-copy { align-items: center; }
  .app-shell { grid-template-columns: 72px 1fr; }
  .app-shell aside { padding: 24px 10px; }
  .app-shell aside .brand-text, .app-shell aside nav button span, .logout span { display: none; }
  .app-shell aside nav button, .logout { justify-content: center; padding: 0; }
  .app-content { padding: 32px 24px; }
  .dashboard-grid, .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .nav { height: 68px; }
  .brand-logo-wrap { width: 34px; height: 34px; }
  .brand-text { font-size: 17px; }
  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 18px;
    gap: 0;
  }
  .hero-copy {
    display: contents;
  }
  .eyebrow {
    order: 1;
    font-size: 10px;
    padding: 5px 12px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .hero h1 { 
    order: 2;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.18;
    margin: 0 0 8px;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero-visual { 
    order: 3;
    width: 100%;
    min-height: 260px;
    height: 260px;
    margin: 4px 0 14px;
  }
  .hero-3d-stage { 
    height: 260px; 
    width: 100%; 
  }
  .core-interaction-hint { 
    bottom: 2px; 
    font-size: 10px; 
    padding: 4px 12px;
  }
  .hero-copy > p { 
    order: 4;
    font-size: 14px; 
    line-height: 1.55; 
    margin: 0 0 16px;
    max-width: 440px;
  }
  .hero-actions { 
    order: 5;
    flex-direction: column; 
    width: 100%;
    max-width: 340px;
    gap: 10px;
    margin: 0 auto 16px;
  }
  .hero-actions a, .hero-actions button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 14px;
  }
  .trust { 
    order: 6;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 360px;
    padding: 12px 14px;
    margin: 0 auto;
  }
  .trust-item {
    text-align: center;
  }
  .trust-item span {
    font-size: 10px;
    display: block;
  }
  .trust-sep { 
    display: block;
    height: 22px;
    width: 1px;
    background: var(--line);
  }

  .section { padding-top: 70px; padding-bottom: 70px; }
  .section-head h2, .faq-header h2, .launch h2 {
    font-size: 28px;
    letter-spacing: -0.03em;
  }
  .section-head p { font-size: 14px; }
  
  .feature { padding: 22px 18px; }
  .radar { width: 180px; height: 180px; margin: 24px auto 20px; }
  
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 26px 20px; }
  .pricing-price .amount { font-size: 38px; }
  .pricing-actions button, .pricing-actions a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }
  .quick-activate-box {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
  }
  .quick-activate-box button {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .steps-list li {
    gap: 16px;
    padding: 18px 0;
  }
  .step-num {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .steps-list strong { font-size: 16px; }
  .steps-list p { font-size: 13px; }

  .faq-accordion details { padding: 16px 18px; }
  .faq-accordion summary { font-size: 15px; }

  .modal { padding: 12px; }
  .modal-card {
    padding: 30px 20px;
    border-radius: 16px;
    width: 100%;
    max-height: 94vh;
    overflow-y: auto;
  }
  .modal-card h2 { font-size: 22px; }
  .modal-card > p { font-size: 13px; margin-bottom: 20px; }
  .modal-logo-wrap { width: 52px; height: 52px; }
  
  input, textarea, select {
    font-size: 16px;
    padding: 12px 14px;
    min-height: 46px;
  }

  .app-shell { display: block; }
  .app-shell aside {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    border-top: 1px solid var(--surface-border);
    flex-direction: row;
    padding: 6px 12px;
    background: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .app-shell aside .brand { display: none; }
  .app-shell aside nav { display: flex; flex: 1; justify-content: space-around; }
  .app-shell aside nav button, .logout { width: 44px; height: 44px; min-height: 44px; }
  .app-content { padding: 20px 14px 85px; }
  .app-content > header { margin-bottom: 24px; padding-bottom: 16px; }
  .app-content > header h1 { font-size: 26px; }
}

@media (max-width: 380px) {
  .wrap { width: calc(100% - 20px); }
  .hero h1 { font-size: 26px; }
  .hero-3d-stage { height: 260px; }
  .feature { padding: 18px 14px; }
  .pricing-card { padding: 22px 16px; }
}

/* ========================================================
   PRICING & TARIFFS SECTION
   ======================================================== */
.pricing-quick-activate {
  margin-bottom: 32px;
}
.quick-activate-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(20, 20, 24, 0.8) 0%, rgba(10, 10, 12, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  gap: 16px;
  flex-wrap: wrap;
}
.quick-activate-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-card {
  padding: 32px 26px;
  border: 1px solid var(--surface-border);
  background: var(--surface-card);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.pricing-card:hover {
  border-color: var(--surface-border-hover);
  background: var(--surface-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 255, 255, 0.11);
}
.pricing-card.featured {
  background: linear-gradient(165deg, rgba(24, 24, 28, 0.9) 0%, rgba(10, 10, 12, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.07);
}
.pricing-card.featured:hover {
  border-color: var(--cyan);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 32px rgba(255, 255, 255, 0.23);
}
.pricing-card.lifetime {
  background: linear-gradient(165deg, rgba(28, 28, 34, 0.9) 0%, rgba(12, 12, 16, 0.85) 100%);
  border: 1px solid rgba(212, 212, 216, 0.28);
}
.pricing-card.lifetime:hover {
  border-color: var(--violet);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 32px rgba(212, 212, 216, 0.20);
}
.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-weight: 700;
}
.pricing-badge.popular {
  background: var(--cyan-subtle);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}
.pricing-badge.save {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--green);
}
.pricing-badge.vip {
  background: var(--violet-subtle);
  border-color: rgba(212, 212, 216, 0.32);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(212, 212, 216, 0.16);
}
.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-price .amount {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-price .period {
  font-size: 14px;
  color: var(--text-dim);
  margin-left: 4px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 40px;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
.pricing-features li i {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-features li b {
  color: var(--text);
}
.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-actions a.primary {
  text-decoration: none;
  justify-content: center;
  text-align: center;
}

/* ========================================================
   SUBSCRIPTION & HWID CARDS IN DASHBOARD
   ======================================================== */
.subscription-card, .hwid-card {
  display: flex;
  flex-direction: column;
}
.sub-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sub-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(255, 255, 255, 0.27);
  color: var(--cyan);
}
.sub-days {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.key-inline-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.key-inline-form input {
  flex: 1;
}
.hwid-display-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  margin-top: 10px;
  gap: 10px;
}
.hwid-val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hwid-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ========================================================
   ADMIN KEY GENERATOR & MANAGEMENT
   ======================================================== */
.gen-results-box {
  margin-top: 16px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}
.gen-results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}
.gen-keys-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}
.gen-key-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
}
.badge-used {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}
.badge-free {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--green);
}
.sub-role-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--cyan-subtle);
  color: var(--cyan);
}
.sub-expire-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ========================================================
   RESPONSIVE PRICING & ADMIN
   ======================================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .quick-activate-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .key-inline-form {
    flex-direction: column;
  }
}

/* ========================================================
   STRICT VISIBILITY GUARDS
   ======================================================== */
[hidden],
.admin-only[hidden],
button.admin-only[hidden],
[data-panel="admin"][hidden],
.tab-panel[hidden] {
  display: none !important;
}

/* ========================================================
   VERCEL GUIDELINES: MODAL OVERSCROLL & ACCESSIBILITY
   ======================================================== */
.modal,
.modal-backdrop,
.modal-card,
.app-shell,
.table-wrap {
  overscroll-behavior: contain;
}

/* ========================================================
   VERCEL GUIDELINES: 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;
    scroll-behavior: auto !important;
  }
  .pulse-dot,
  .pulse-btn,
  .modal-logo-wrap,
  .ambient-glow,
  .noise {
    animation: none !important;
  }
  .hero-visual .visual-halo {
    animation: none !important;
  }
}
