/* ============================================
   CRYPTIC EXECUTOR — brand styles
   Palette sampled from the app UI & logo
   ============================================ */

:root {
  /* surfaces — sampled from app background */
  --bg:        #0A0A12;
  --bg-1:      #0E0E18;
  --bg-2:      #13131F;
  --bg-3:      #181826;
  --panel:     #11111C;

  /* brand purple — sampled from Execute / Inject buttons + logo */
  --purple:        #6632F9;
  --purple-bright: #7C4DFF;
  --purple-soft:   #A181E2;
  --purple-glow:   rgba(102,50,249,0.45);
  --purple-dim:    rgba(124,77,255,0.10);
  --purple-line:   rgba(124,77,255,0.18);

  /* text */
  --text:       #F2F1F7;
  --text-2:     #B9BACB;
  --text-muted: #7E7F94;

  /* status */
  --green: #34D399;
  --red:   #FF5F56;
  --yellow:#FFBD2E;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1120px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);

  --f-display: 'Space Grotesk', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--purple-soft); text-decoration: none; transition: color .2s var(--ease); }
ul, ol { list-style: none; }
::selection { background: var(--purple); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* shared section heading kit */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--purple); }
.eyebrow.light { color: var(--purple-soft); }

h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-1);
  border-bottom: 1px solid var(--purple-line);
  padding: 9px 0;
  font-size: 0.76rem;
  font-family: var(--f-mono);
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--purple-soft); }
.breadcrumb .sep { margin: 0 8px; color: var(--purple); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,18,0.78);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--purple-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-img { border-radius: 7px; }
.logo-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  color: var(--text);
  display: flex; flex-direction: column; line-height: 1;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--purple-soft);
  margin-top: 3px;
  font-weight: 500;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--text-2); font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color .2s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--purple);
  transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--text); }

.nav-cta, .mobile-cta {
  background: var(--purple); color: #fff; border: none;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-family: var(--f-body); font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all .25s var(--ease);
  box-shadow: 0 4px 16px var(--purple-glow);
}
.nav-cta:hover { background: var(--purple-bright); transform: translateY(-1px); box-shadow: 0 6px 22px var(--purple-glow); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--bg-1); border-top: 1px solid var(--purple-line);
  padding: 16px 24px 22px;
}
.mobile-nav a { color: var(--text-2); padding: 11px 0; border-bottom: 1px solid var(--purple-line); font-weight: 500; }
.mobile-cta { margin-top: 14px; width: 100%; padding: 13px; }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 90px 24px 70px;
}
#particles { position: absolute; inset: 0; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(102,50,249,0.22) 0%, rgba(102,50,249,0.06) 40%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--purple-dim); border: 1px solid var(--purple-line);
  color: var(--purple-soft); font-family: var(--f-mono);
  font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 7px 16px; border-radius: 99px; margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

h1 {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 22px;
  background: linear-gradient(120deg, #FFFFFF 35%, var(--purple-soft) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  color: var(--text-2); font-size: 1.08rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-bright) 100%);
  color: #fff; border: none; border-radius: var(--radius);
  font-family: var(--f-body); font-size: 1rem; font-weight: 600;
  padding: 15px 32px; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 8px 30px var(--purple-glow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px var(--purple-glow); }
.btn-primary:hover::before { left: 100%; }
.btn-primary:active { transform: translateY(-1px) scale(.99); }
.btn-large { font-size: 1.06rem; padding: 17px 38px; }
.btn-ic { width: 19px; height: 19px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--purple-line);
  color: var(--text-2); border-radius: var(--radius);
  font-size: 0.96rem; font-weight: 500; padding: 15px 28px;
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--text); transform: translateY(-2px); background: var(--purple-dim); }

.hero-trust {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  color: var(--text-muted); font-size: 0.84rem; font-family: var(--f-mono);
}
.hero-trust span { color: var(--text-2); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); animation: bob 2.2s infinite; z-index: 2;
}
.scroll-hint svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ===== STATS ===== */
.stats-bar { background: var(--bg-1); border-top: 1px solid var(--purple-line); border-bottom: 1px solid var(--purple-line); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 15%; height: 70%; width: 1px; background: var(--purple-line); }
.stat-num { display: block; font-family: var(--f-display); font-size: 2.5rem; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.stat-num .u { color: var(--purple-soft); font-size: 1.4rem; }
.stat-label { display: block; color: var(--text-muted); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 10px; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.feature-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--purple-line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: 0 16px 44px rgba(102,50,249,0.18); }
.feature-card:hover::before { opacity: 1; }
.feature-ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--purple-dim); border: 1px solid var(--purple-line);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--purple-soft);
}
.feature-ic svg { width: 23px; height: 23px; }
.feature-card h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 9px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.65; }

/* ===== PREVIEW ===== */
.preview { padding: 90px 0; background: var(--bg-1); border-top: 1px solid var(--purple-line); border-bottom: 1px solid var(--purple-line); text-align: center; }
.preview .eyebrow { justify-content: center; }
.preview-lead { color: var(--text-2); max-width: 580px; margin: 0 auto 44px; }
.screenshot-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--purple-line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(102,50,249,0.12);
  background: var(--bg-3); max-width: 980px; margin: 0 auto;
  transition: transform .4s var(--ease);
}
.screenshot-frame:hover { transform: translateY(-4px); }
.screenshot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px; background: var(--bg-3); border-bottom: 1px solid var(--purple-line); }
.screenshot-title { flex: 1; text-align: center; font-family: var(--f-mono); font-size: 0.76rem; color: var(--text-muted); }
.screenshot-frame img { width: 100%; display: block; }

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: var(--red); } .dot.yellow { background: var(--yellow); } .dot.green { background: #27C93F; }

/* ===== DOWNLOAD ===== */
.download-section { padding: 100px 0; }
.download-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--purple-line); border-radius: 24px; padding: 56px;
  position: relative; overflow: hidden;
}
.download-card::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(102,50,249,0.16) 0%, transparent 65%); pointer-events: none;
}
.download-text { position: relative; z-index: 1; }
.download-text p { color: var(--text-2); margin-bottom: 26px; }
.dl-specs { margin-bottom: 30px; }
.dl-specs li { display: flex; align-items: center; gap: 12px; color: var(--text-2); font-size: 0.92rem; padding: 9px 0; border-bottom: 1px solid var(--purple-line); }
.check { color: var(--green); font-weight: 700; }
.dl-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }
.dl-note strong { color: var(--purple-soft); }

.download-terminal {
  position: relative; z-index: 1;
  background: #07070D; border: 1px solid var(--purple-line); border-radius: var(--radius);
  overflow: hidden; font-family: var(--f-mono);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--bg-3); border-bottom: 1px solid var(--purple-line); }
.terminal-title { flex: 1; text-align: center; font-size: 0.74rem; color: var(--text-muted); }
.terminal-body { padding: 22px 20px; font-size: 0.8rem; line-height: 2.1; }
.terminal-body p { color: var(--text-2); white-space: nowrap; }
.t-time { color: var(--text-muted); }
.t-arrow { color: var(--purple-soft); }
.t-green { color: var(--green); }
.cursor { color: var(--purple-soft); animation: blink 1.1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== HOW TO ===== */
.howto { padding: 100px 0; background: var(--bg-1); border-top: 1px solid var(--purple-line); border-bottom: 1px solid var(--purple-line); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; counter-reset: step; }
.step {
  background: var(--bg-2); border: 1px solid var(--purple-line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--purple); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px; box-shadow: 0 6px 18px var(--purple-glow);
}
.step h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 0.88rem; }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 780px; margin: 44px auto 0; }
.faq-item {
  background: var(--bg-1); border: 1px solid var(--purple-line);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item[open] { border-color: var(--purple); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.96rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--purple-soft); font-size: 1.5rem; font-weight: 300; transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 18px; color: var(--text-2); font-size: 0.91rem; line-height: 1.7; }

/* ===== RELATED ===== */
.related { padding: 90px 0; background: var(--bg-1); border-top: 1px solid var(--purple-line); border-bottom: 1px solid var(--purple-line); }
.related-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 44px; }
.related-links a {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--purple-line); border-radius: var(--radius-sm);
  padding: 15px 20px; font-size: 0.9rem; color: var(--text-2);
  transition: all .25s var(--ease);
}
.rl-arrow { color: var(--purple-soft); font-weight: 700; transition: transform .25s var(--ease); }
.related-links a:hover { border-color: var(--purple); color: var(--text); background: var(--purple-dim); }
.related-links a:hover .rl-arrow { transform: translateX(4px); }

/* ===== SHARE ===== */
.social-share { padding: 64px 0; text-align: center; }
.share-label { color: var(--text-muted); font-family: var(--f-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 22px; }
.share-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 600; color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.share-btn svg { width: 16px; height: 16px; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.35); filter: brightness(1.08); }
.share-btn.fb { background: #1877F2; } .share-btn.tw { background: #1DA1F2; }
.share-btn.li { background: #0A66C2; } .share-btn.pi { background: #E60023; } .share-btn.rd { background: #FF4500; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--purple-line); padding: 56px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 9px; }
.footer-name { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em; }
.footer-brand p { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; padding-top: 6px; }
.footer-links a { color: var(--text-2); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--purple-line); padding: 18px 24px; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .download-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; text-align: center; }
  .download-text .eyebrow { justify-content: center; }
  .dl-specs li { justify-content: center; }
  .stat-item:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px 16px; }
  .related-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .download-card { padding: 32px 22px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .terminal-body { font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* keyboard focus */
:focus-visible { outline: 2px solid var(--purple-bright); outline-offset: 3px; border-radius: 4px; }

/* ============================================
   v2.702 additions — hero shot, games,
   changelog, reviews
   ============================================ */

/* HERO becomes two-column with screenshot */
.hero { min-height: auto; padding: 70px 24px 80px; text-align: left; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: center; max-width: var(--maxw);
}
.hero-content { max-width: none; text-align: left; }
.hero .badge { margin-bottom: 24px; }
.hero h1 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.hero-sub { margin: 0 0 32px; max-width: 540px; }
.hero-actions { justify-content: flex-start; }
.hero-trust { justify-content: flex-start; }

.hero-shot {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--purple-line);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 70px rgba(102,50,249,0.18);
  background: var(--bg-3);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .5s var(--ease);
}
.hero-shot:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px); }
.hero-shot img { width: 100%; display: block; }

/* GAMES */
.games { padding: 90px 0; }
.games-lead { color: var(--text-2); max-width: 560px; margin-bottom: 40px; }
.games-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.game-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--purple-line);
  border-radius: 99px; padding: 11px 20px;
  font-size: 0.92rem; font-weight: 500; color: var(--text);
  transition: all .25s var(--ease); cursor: default;
}
.game-chip:hover { border-color: var(--purple); transform: translateY(-3px); background: var(--purple-dim); box-shadow: 0 8px 22px rgba(102,50,249,0.16); }
.game-ic { font-size: 1.1rem; }

/* CHANGELOG */
.changelog { padding: 100px 0; background: var(--bg-1); border-top: 1px solid var(--purple-line); border-bottom: 1px solid var(--purple-line); }
.changelog-lead { color: var(--text-2); margin-bottom: 44px; max-width: 540px; }
.changelog-list { position: relative; max-width: 720px; padding-left: 30px; }
.changelog-list::before { content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--purple), transparent); }
.cl-entry { position: relative; margin-bottom: 36px; }
.cl-entry::before {
  content: ''; position: absolute; left: -30px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--purple); border: 2px solid var(--bg-1);
  box-shadow: 0 0 0 3px var(--purple-dim);
}
.cl-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.cl-ver { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--text); }
.cl-tag { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 6px; }
.cl-tag.latest { background: var(--purple); color: #fff; }
.cl-date { font-family: var(--f-mono); font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }
.cl-points li { display: flex; align-items: flex-start; gap: 11px; color: var(--text-2); font-size: 0.92rem; padding: 5px 0; }
.cl-badge { flex-shrink: 0; font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; border-radius: 5px; margin-top: 2px; }
.cl-badge.new { background: rgba(52,211,153,0.14); color: var(--green); }
.cl-badge.fix { background: rgba(255,189,46,0.14); color: var(--yellow); }
.cl-badge.imp { background: var(--purple-dim); color: var(--purple-soft); }

/* REVIEWS */
.reviews { padding: 100px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.review-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--purple-line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.stars { color: #FFBD2E; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; }
.review-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.rv-name { font-family: var(--f-mono); font-size: 0.86rem; color: var(--purple-soft); font-weight: 500; }
.rv-meta { font-size: 0.78rem; color: var(--text-muted); }

/* responsive for new blocks */
@media (max-width: 920px) {
  .hero { padding: 50px 24px 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-content { text-align: center; }
  .hero-content .badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-shot { transform: none; max-width: 620px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .games-grid { justify-content: center; }
  .cl-date { margin-left: 0; width: 100%; }
}
