:root {
  --main: #00d9ff;
  --bg: #06070d;
  --card: #0f111a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a9b0c3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: "Orbitron", "Cairo", sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 10px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 10, 0.45);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--main);
  font-family: "Cairo", "Orbitron", sans-serif;
}

.logo.soft {
  opacity: 0.85;
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  color: var(--main);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: "Orbitron", "Cairo", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.25s;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: var(--main);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.3);
}

/* RTL Support */
[dir="rtl"] .feature-item:hover {
  transform: translateX(-4px);
}
[dir="rtl"] .nav-left ul {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-right {
  text-align: right;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 217, 255, 0.12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0, 162, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #06070d, #0a0c14 60%, #06070d);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--main), transparent 70%);
  opacity: 0.12;
  top: -250px;
  right: -150px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-left img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.25), 0 0 120px rgba(0, 217, 255, 0.08);
  animation: float 4s ease-in-out infinite;
  background: #0a0e12;
  display: block;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  color: var(--main);
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.5px;
}

.hero-right h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  margin-bottom: 25px;
  font-weight: 900;
  font-family: "Cairo", "Orbitron", sans-serif;
  background: linear-gradient(to bottom, #fff, #00d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-right p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 35px;
  max-width: 650px;
  font-family: "Cairo", system-ui, sans-serif;
  font-weight: 600;
}

.hero-right strong {
  color: var(--main);
}

/* DOWNLOAD OPTIONS — Two Cards */
.download-options {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.download-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

.download-card:hover {
  transform: translateY(-6px);
}

.download-card-trial {
  border-color: rgba(0, 217, 255, 0.25);
  background: rgba(0, 217, 255, 0.05);
}

.download-card-trial:hover {
  border-color: var(--main);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  background: rgba(0, 217, 255, 0.08);
}

.download-card-full {
  border-color: rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.05);
}

.download-card-full:hover {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.08);
}

.download-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.download-card-trial .download-badge {
  color: #000;
  background: var(--main);
}

.download-card-full .download-badge {
  color: #000;
  background: #ffd700;
}

.download-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: "Cairo", "Orbitron", sans-serif;
}

.download-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-family: "Cairo", sans-serif;
  font-weight: 600;
}

.download-btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  transition: 0.2s;
}

.download-card-trial .download-btn {
  color: var(--main);
}

.download-card-trial:hover .download-btn {
  color: #fff;
}

.download-card-full .download-btn {
  color: #ffd700;
}

.download-card-full:hover .download-btn {
  color: #fff;
}

.discord-link {
  color: var(--main);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 217, 255, 0.4);
  transition: 0.2s;
}

.discord-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 22px 30px;
  border-radius: 20px;
  min-width: 150px;
  backdrop-filter: blur(8px);
}

.stat h2 {
  font-size: 28px;
  color: var(--main);
  margin-bottom: 6px;
}

.stat p {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* TOOL MENU VISUAL PREVIEW */
.menu-preview-section {
  position: relative;
  padding: 110px 8%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(124, 58, 237, 0.1), transparent 34%),
    radial-gradient(circle at 75% 70%, rgba(0, 217, 255, 0.08), transparent 30%);
}

.menu-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.preview-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.preview-heading .section-title { margin-bottom: 18px; }
.preview-heading > p {
  color: var(--muted);
  font: 600 15px/1.8 "Cairo", sans-serif;
}

.preview-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.tool-window {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 26px;
  background: #090c14;
  box-shadow: 0 38px 100px rgba(0,0,0,.55), 0 0 55px rgba(0,217,255,.1);
  animation: menuFloat 5s ease-in-out infinite;
}

@keyframes menuFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.tool-titlebar {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(90deg, rgba(124,58,237,.09), rgba(0,217,255,.05));
}

.window-controls { display: flex; gap: 7px; }
.window-controls span { width: 10px; height: 10px; border-radius: 50%; background: #fb7185; }
.window-controls span:nth-child(2) { background: #facc15; }
.window-controls span:nth-child(3) { background: #4ade80; }

.tool-brand { display: flex; align-items: center; gap: 11px; }
.tool-brand > div, .tool-profile > div { display: flex; flex-direction: column; }
.tool-brand strong { font-size: 14px; letter-spacing: 2px; }
.tool-brand small, .tool-profile small { color: var(--muted); font-size: 9px; letter-spacing: 1px; }
.tool-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 12px; color: #031014; background: linear-gradient(135deg, #fff, var(--main));
  font-weight: 900; box-shadow: 0 0 18px rgba(0,217,255,.28);
}

.tool-status { justify-self: end; display: flex; align-items: center; gap: 7px; color: #8ceeff; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.tool-status i, .system-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 12px #22c55e; }

.tool-layout { display: grid; grid-template-columns: 210px 1fr; min-height: 560px; }
.tool-sidebar {
  display: flex; flex-direction: column; gap: 8px; padding: 24px 16px;
  border-inline-end: 1px solid rgba(255,255,255,.065);
  background: rgba(255,255,255,.018);
}

.tool-tab {
  display: flex; align-items: center; gap: 12px; width: 100%; padding: 13px 14px;
  border: 1px solid transparent; border-radius: 12px; color: #8c94a8; background: transparent;
  font-family: inherit; text-align: start; transition: .25s;
  cursor: pointer;
}
.tool-tab span { width: 24px; color: #667085; font-size: 18px; }
.tool-tab b { font-size: 11px; letter-spacing: .7px; }
.tool-tab.active, .tool-tab:hover {
  color: #fff; border-color: rgba(0,217,255,.16); background: linear-gradient(90deg, rgba(0,217,255,.14), rgba(124,58,237,.06));
  transform: translateX(3px);
}
.tool-tab.active span, .tool-tab:hover span { color: var(--main); }

.tool-profile {
  display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 14px 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tool-profile strong { font: 700 11px "Cairo", sans-serif; }
.profile-orb { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #171c2a; color: var(--main); font-size: 10px; font-weight: 900; }

.tool-content { padding: 28px; min-width: 0; }
.tool-page {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.tool-page.active {
  display: block;
  animation: toolPageIn .38s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes toolPageIn {
  to { opacity: 1; transform: translateY(0); }
}
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.panel-heading > div { display: flex; flex-direction: column; gap: 4px; }
.panel-heading span { color: var(--main); font-size: 9px; font-weight: 900; letter-spacing: 2px; }
.panel-heading h3 { font: 800 24px "Cairo", "Orbitron", sans-serif; }
.pc-chip { padding: 8px 11px; border: 1px solid rgba(0,217,255,.2); border-radius: 9px; background: rgba(0,217,255,.07); white-space: nowrap; }

.control-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.control-panel {
  position: relative; padding: 20px; border: 1px solid rgba(255,255,255,.075); border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: .3s;
}
.control-panel:hover { transform: translateY(-3px); border-color: rgba(0,217,255,.28); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.featured-panel { background: radial-gradient(circle at 100% 0, rgba(0,217,255,.09), transparent 40%), rgba(255,255,255,.025); }
.control-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.control-head > div { display: flex; flex-direction: column; gap: 5px; }
.control-head strong, .system-panel strong { font: 800 13px "Cairo", sans-serif; }
.control-head small, .system-panel small { color: #7f8799; font: 600 10px/1.5 "Cairo", sans-serif; }

.demo-toggle { flex: 0 0 auto; width: 38px; height: 21px; padding: 3px; border: 0; border-radius: 999px; background: #242938; cursor: pointer; }
.demo-toggle i { display: block; width: 15px; height: 15px; border-radius: 50%; background: #697084; transition: .25s; }
.demo-toggle.on { background: rgba(0,217,255,.25); }
.demo-toggle.on i { transform: translateX(17px); background: var(--main); box-shadow: 0 0 10px var(--main); }
[dir="rtl"] .demo-toggle.on i { transform: translateX(-17px); }

.range-row, .option-row, .select-preview, .keybind { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.range-row { color: #aeb5c5; font: 600 10px "Cairo", sans-serif; margin: 14px 0 8px; }
.range-row b { color: #fff; }
.demo-range { display: block; width: 100%; height: 7px; padding: 0; overflow: hidden; border: 0; border-radius: 99px; background: #242938; cursor: pointer; }
.demo-range i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #00a8c7, var(--main)); box-shadow: 0 0 9px var(--main); }
.demo-range.violet i { background: linear-gradient(90deg, #7c3aed, #c084fc); box-shadow: 0 0 9px #7c3aed; }
.option-row { width: 100%; padding: 10px 0; border: 0; border-top: 1px solid rgba(255,255,255,.05); color: #aeb5c5; background: transparent; font: 600 11px "Cairo", sans-serif; cursor: pointer; text-align: start; }
.option-row:hover { color: #fff; }
.demo-check { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; color: transparent; background: #222735; font-style: normal; }
.demo-check.checked { color: #061013; background: var(--main); font-weight: 900; }
.select-preview, .keybind { width: 100%; margin-top: 11px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; color: #8e96a8; font: 600 10px "Cairo", sans-serif; background: #0b0e17; cursor: pointer; text-align: start; }
.select-preview:hover, .keybind:hover { border-color: rgba(0,217,255,.3); background: rgba(0,217,255,.04); }
.select-preview b { color: #d8deea; }
.keybind kbd { padding: 5px 8px; border: 1px solid rgba(0,217,255,.22); border-radius: 6px; color: var(--main); background: rgba(0,217,255,.06); font: 800 9px "Orbitron", sans-serif; }
.keybind.listening kbd { color: #05070c; background: #facc15; border-color: #facc15; }

.tool-window button:focus-visible {
  outline: 2px solid var(--main);
  outline-offset: 3px;
}
.system-panel { display: flex; align-items: center; gap: 15px; }
.system-panel > div:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.system-panel .system-dot { margin-inline-start: auto; }
.system-ring { flex: 0 0 auto; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--main) 98%, #252a38 0); position: relative; }
.system-ring::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #10141e; }
.system-ring span { position: relative; z-index: 1; color: #fff; font-size: 14px; font-weight: 900; }
.system-ring small { color: var(--main); font-size: 8px; }

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stat-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.stat-card.wide {
  grid-column: 1 / -1;
  min-height: 155px;
}
.stat-card > strong { font: 800 14px "Cairo", sans-serif; }
.stat-card > small { color: #7f8799; font: 600 11px/1.6 "Cairo", sans-serif; }
.stat-card > .demo-toggle,
.stat-card > .select-preview,
.stat-card > .keybind,
.stat-card > .demo-range,
.stat-card > .profile-actions,
.stat-card > .color-dots,
.stat-card > .utility-status { margin-top: auto; }
.card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 11px;
  color: var(--main);
  background: rgba(0,217,255,.07);
  font-size: 18px;
}
.profile-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.profile-actions button {
  padding: 9px 13px;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 9px;
  color: #b8f4ff;
  background: rgba(0,217,255,.06);
  font: 700 10px "Cairo", sans-serif;
  cursor: pointer;
  transition: .25s;
}
.profile-actions button:hover,
.profile-actions button.action-done {
  color: #061013;
  background: var(--main);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0,217,255,.18);
}
.color-dots { display: flex; gap: 10px; }
.color-dot {
  width: 25px;
  height: 25px;
  padding: 0;
  border: 3px solid #10141e;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  transition: .25s;
}
.color-dot:hover,
.color-dot.active { transform: scale(1.18); box-shadow: 0 0 0 2px #fff; }
.color-dot.cyan { background: #00d9ff; }
.color-dot.violet { background: #8b5cf6; }
.color-dot.green { background: #22c55e; }
.utility-status { display: flex; align-items: center; gap: 8px; color: #86efac; font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.utility-status i { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 12px #22c55e; }
.preview-disclaimer { position: relative; z-index: 1; margin: 22px auto 0; text-align: center; color: #737b8e; font: 600 11px/1.7 "Cairo", sans-serif; }

@media (max-width: 850px) {
  .tool-layout { grid-template-columns: 78px 1fr; }
  .tool-sidebar { padding-inline: 10px; }
  .tool-tab { justify-content: center; padding-inline: 8px; }
  .tool-tab b, .tool-profile > div { display: none; }
  .tool-tab span { width: auto; }
  .tool-profile { justify-content: center; padding-inline: 0; }
  .control-grid { grid-template-columns: 1fr; }
  .page-stat-grid { grid-template-columns: 1fr; }
  .stat-card.wide { grid-column: auto; }
}

@media (max-width: 560px) {
  .menu-preview-section { padding-inline: 4%; }
  .tool-window { border-radius: 18px; }
  .tool-titlebar { grid-template-columns: auto 1fr; padding: 12px; }
  .window-controls { display: none; }
  .tool-brand { justify-self: start; }
  .tool-status { font-size: 8px; }
  .tool-layout { display: block; }
  .tool-sidebar { flex-direction: row; overflow-x: auto; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.06); padding: 10px; }
  .tool-tab { width: auto; flex: 0 0 auto; }
  .tool-tab b { display: block; }
  .tool-profile { display: none; }
  .tool-content { padding: 18px 14px; }
  .panel-heading h3 { font-size: 18px; }
  .pc-chip { display: none; }
  .control-panel { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .tool-window { animation: none; }
}

/* FEATURES — Vertical Box Layout */
section#features {
  padding: 100px 8%;
}

.section-title {
  font-size: clamp(32px, 5vw, 58px);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 900;
  background: linear-gradient(to right, #fff, #00d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-box {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(0, 217, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.06);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.25s;
}

.feature-item:hover {
  background: rgba(0, 217, 255, 0.06);
  border-color: rgba(0, 217, 255, 0.2);
  transform: translateX(4px);
}

.feature-item .feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(0, 217, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 0;
}

.feature-info {
  flex: 1;
  min-width: 0;
}

.feature-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: "Cairo", "Orbitron", sans-serif;
}

.feature-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-family: "Cairo", system-ui, sans-serif;
  font-weight: 600;
  margin: 0;
}

/* TESTIMONIALS */
section#testimonials {
  padding: 100px 8%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 162, 255, 0.04), transparent 40%);
}

.reviews-note {
  max-width: 720px;
  margin: -38px auto 38px;
  color: var(--muted);
  text-align: center;
  font: 600 13px/1.7 "Cairo", system-ui, sans-serif;
}

.pc-compatibility {
  width: fit-content;
  margin: -24px auto 28px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.07);
  color: #baf5ff;
  font: 700 12px/1 "Cairo", "Orbitron", sans-serif;
  letter-spacing: 0.35px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.08);
}

.testimonials-viewport {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
  padding: 16px 6px 28px;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.testimonials-viewport::before,
.testimonials-viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
}

.testimonials-viewport::before {
  left: 0;
  background: linear-gradient(to right, #06070d, transparent);
}

.testimonials-viewport::after {
  right: 0;
  background: linear-gradient(to left, #06070d, transparent);
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  direction: ltr;
  will-change: transform;
}

[dir="rtl"] .testimonial-card {
  direction: rtl;
  text-align: right;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 365px;
  min-height: 268px;
  background: linear-gradient(145deg, rgba(21, 25, 39, 0.98), rgba(10, 12, 21, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 26px 26px 22px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #7c3aed, var(--main), #22c55e);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.16), 0 0 0 1px rgba(124, 58, 237, 0.15);
  transform: translateY(-7px) scale(1.01);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  color: #ffcf4a;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255, 207, 74, 0.25);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #c4cad8;
  font-family: "Cairo", system-ui, sans-serif;
  font-weight: 600;
  flex: 1;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  background: rgba(0, 217, 255, 0.12);
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.17), inset 0 0 0 3px rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-radius 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: rotate(-4deg) scale(1.06);
  border-radius: 50%;
}

.testimonial-author::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-inline-start: auto;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 14px;
  color: #fff;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0.2px;
}

.author-verified {
  font-size: 11px;
  color: #7dd3fc;
  letter-spacing: 0.3px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-card.is-visible,
  .testimonial-card:hover {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 520px) {
  .testimonials-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonials-viewport::before,
  .testimonials-viewport::after {
    display: none;
  }

  .testimonial-card {
    flex-basis: min(84vw, 320px);
  }
}

.testimonials-cta {
  text-align: center;
  font-size: 18px;
  font-family: "Cairo", sans-serif;
  color: var(--muted);
}

.testimonials-cta strong {
  color: #fff;
}

.testimonials-cta .discord-link {
  font-size: 18px;
}

.site-footer {
  text-align: center;
  padding: 40px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 14px;
  font-family: "Cairo", sans-serif;
}

/* OVERLAYS */
.screen-hidden {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.overlay-card {
  text-align: center;
  background: var(--card);
  border: 2px solid var(--main);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.25);
  width: min(100%, 420px);
}

.wait-label {
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 1px;
  font-size: 14px;
}

.count-ring {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  position: relative;
}

.count-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.ring-progress {
  fill: none;
  stroke: var(--main);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.95s linear;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

.count-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  animation: pop 0.35s ease;
}

@keyframes pop {
  from { transform: scale(0.7); opacity: 0.4; }
  to { transform: scale(1); opacity: 1; }
}

.wait-sub {
  color: var(--main);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ZIP GUIDE */
.guide-card {
  width: min(100%, 980px);
  background: var(--card);
  border: 2px solid var(--main);
  border-radius: 24px;
  padding: 28px 22px 22px;
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.2);
  animation: fadeIn 0.4s ease;
}

.guide-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.guide-head h2 {
  font-size: 24px;
  background: linear-gradient(to right, #fff, #00d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stamp {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--main);
  border: 2px solid var(--main);
  padding: 4px 10px;
  transform: rotate(-8deg);
  font-weight: 900;
}

.viz-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.viz-card {
  width: min(100%, 190px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 10px 14px;
  text-align: center;
}

.viz-art {
  width: 100%;
  aspect-ratio: 4/3;
  background: #06070d;
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
}

.viz-art svg {
  width: 92%;
  height: auto;
}

.viz-num {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--main);
  color: #000;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.viz-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.viz-text strong {
  color: #fff;
}

.viz-arrow {
  align-self: center;
  font-size: 1.4rem;
  color: var(--main);
  font-weight: 700;
}

.viz-card-pass {
  width: min(100%, 210px);
}

.pass-box {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06070d;
  border: 1px dashed rgba(0, 217, 255, 0.4);
  border-radius: 12px;
  padding: 10px;
}

.pass-code {
  font-family: ui-monospace, monospace;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  color: var(--main);
}

.copy-btn {
  border: 1px solid rgba(0, 217, 255, 0.4);
  background: rgba(0, 217, 255, 0.12);
  color: var(--main);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
}

.copy-btn:hover {
  background: var(--main);
  color: #000;
}

.guide-foot {
  text-align: center;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-family: "Cairo", sans-serif;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left img {
    margin: 0 auto;
    max-width: 360px;
  }

  .hero-right p {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  nav ul {
    display: none;
  }

  .viz-arrow {
    display: none;
  }

  .viz-card,
  .viz-card-pass {
    width: calc(50% - 10px);
  }
}

@media (max-width: 520px) {
  .viz-card,
  .viz-card-pass {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
