/* kryocore.dev — extracted from Design System v0.4 */
/* =========================================================================
   Kryocore Design System — v0.1
   ========================================================================= */

:root {
  /* Palette — deep space + kryo blue + steel */
  --bg-void:      #050810;
  --bg-panel:    #0b1120;
  --bg-panel-2:  #10182b;
  --bg-elevated: #14203a;

  --line:        #1a2540;
  --line-hi:     #253357;

  --ink:         #e6ebf5;
  --ink-mut:     #8b96b0;
  --ink-dim:     #5b6588;
  --ink-quiet:   #3d4666;

  --steel:       #b3bfd4;
  --steel-hi:    #d6dfeb;

  --kryo:        #4db8ff;
  --kryo-hi:     #7cd0ff;
  --kryo-lo:     #2a8dd8;
  --kryo-ink:    #0a1a2a;
  --kryo-glow:   0 0 32px rgba(77,184,255,0.35);

  --ok:          #3fd671;
  --ok-dim:      #1a4a2f;
  --warn:        #f5b043;
  --warn-dim:    #4a3a1a;
  --danger:      #e5484d;
  --danger-dim:  #4a1a1c;

  /* Radii — sharp for tech feel */
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  /* Type */
  --f-sans: ui-sans-serif, -apple-system, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --f-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.15,1);
}

@media (prefers-color-scheme: light) {
  :root[data-theme="light"], :root:not([data-theme]) {
    /* Kryocore intentionally uses the dark brand theme across public surfaces. */
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-void);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss03", "cv01";
}

/* Subtle grid texture on the void background — makes it feel like a real product,
   not a template. Circuit-adjacent, ties to the logo's PCB trace motif. */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(77,184,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
}

/* -------------------------------------------------------------------------- */
/* Layout                                                                     */
/* -------------------------------------------------------------------------- */

.canvas {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0 128px;
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: none; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--kryo);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--steel-hi);
  margin-bottom: 12px;
  max-width: 780px;
}
.section-desc {
  color: var(--ink-mut);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 48px;
}

/* -------------------------------------------------------------------------- */
/* Sidebar nav (jump between mockups)                                         */
/* -------------------------------------------------------------------------- */
.sidenav {
  position: fixed;
  top: 24px; right: 24px;
  padding: 16px 18px;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  z-index: 100;
  min-width: 200px;
  box-shadow: var(--shadow-md);
}
.sidenav h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.sidenav ol {
  list-style: none;
  counter-reset: nav;
}
.sidenav li {
  counter-increment: nav;
  padding: 4px 0;
  font-size: 13px;
}
.sidenav a {
  color: var(--ink-mut);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sidenav a::before {
  content: counter(nav, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-quiet);
}
.sidenav a:hover { color: var(--kryo); }
@media (max-width: 1100px) { .sidenav { display: none; } }

/* -------------------------------------------------------------------------- */
/* COVER / BRAND PITCH                                                        */
/* -------------------------------------------------------------------------- */

#cover {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}
#cover::after {
  /* Ambient glow behind the K mark */
  content: "";
  position: absolute;
  top: 30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(77,184,255,0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.cover-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 32px;
}
.cover-brand-mark {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--kryo-lo), var(--kryo-hi));
  display: grid; place-items: center;
  color: var(--kryo-ink);
  font-weight: 900;
  font-family: var(--f-sans);
}

.cover-title {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  margin-bottom: 24px;
}
.cover-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--kryo-hi), var(--kryo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cover-lead {
  font-size: 19px;
  color: var(--ink-mut);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.cover-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 480px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cover-meta-item .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.cover-meta-item .v {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--steel-hi);
}

/* Cover visual — big K monogram treated as brand centerpiece */
.cover-visual {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.cover-visual svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 0 60px rgba(77,184,255,0.3));
}
.cover-visual .circuit {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}
.cover-visual .circuit::before,
.cover-visual .circuit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.cover-visual .circuit::before { inset: 40px; opacity: 0.6; }
.cover-visual .circuit::after { inset: 80px; opacity: 0.3; }
@keyframes rotate { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------- */
/* DESIGN SYSTEM                                                              */
/* -------------------------------------------------------------------------- */

.ds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ds-block {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
}

.ds-block h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: help;
}
.swatch small {
  opacity: 0.7;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.type-scale {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.type-scale > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.type-scale .demo { color: var(--steel-hi); }
.type-scale .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-dim);
  margin-left: auto;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Component library                                                          */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.15s var(--ease);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--kryo-hi), var(--kryo));
  color: var(--kryo-ink);
  box-shadow: 0 0 0 1px rgba(124,208,255,0.3), 0 2px 12px rgba(77,184,255,0.3);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #96ddff, var(--kryo-hi));
  box-shadow: 0 0 0 1px rgba(124,208,255,0.5), 0 4px 20px rgba(77,184,255,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-hi);
}
.btn-ghost:hover {
  background: var(--bg-panel-2);
  border-color: var(--kryo);
  color: var(--kryo);
}

.btn-lg { height: 52px; padding: 0 32px; font-size: 15px; }
.btn-block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid;
}
.pill-ok     { background: rgba(63,214,113,0.1);  color: var(--ok);     border-color: rgba(63,214,113,0.3); }
.pill-warn   { background: rgba(245,176,67,0.1);  color: var(--warn);   border-color: rgba(245,176,67,0.3); }
.pill-danger { background: rgba(229,72,77,0.1);   color: var(--danger); border-color: rgba(229,72,77,0.3); }
.pill-kryo   { background: rgba(77,184,255,0.1);  color: var(--kryo);   border-color: rgba(77,184,255,0.3); }
.pill-quiet  { background: var(--bg-panel-2);     color: var(--ink-mut); border-color: var(--line-hi); }

.pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.pill-ok::before { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.input {
  height: 44px;
  padding: 0 16px;
  background: var(--bg-void);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.15s;
}
.input:focus {
  outline: none;
  border-color: var(--kryo);
  box-shadow: 0 0 0 3px rgba(77,184,255,0.15);
}
.input.mono { font-family: var(--f-mono); letter-spacing: 0.05em; }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--line-hi); }

/* -------------------------------------------------------------------------- */
/* MOCKUP FRAME                                                               */
/* -------------------------------------------------------------------------- */

.mockup {
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
}
.mockup-chrome {
  height: 40px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-hi);
}
.mockup-url {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
  height: 24px;
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
}
.mockup-url svg { width: 12px; height: 12px; opacity: 0.6; }
.mockup-url b { color: var(--ink); font-weight: 500; }
.mockup-body { padding: 0; }

/* -------------------------------------------------------------------------- */
/* SITE HEADER (used in every mockup)                                         */
/* -------------------------------------------------------------------------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(11,17,32,0.4);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.site-brand .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--kryo-lo), var(--kryo));
  display: grid;
  place-items: center;
  color: var(--kryo-ink);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(77,184,255,0.3);
  font-family: var(--f-sans);
}
.site-brand .dev { color: var(--kryo); font-weight: 500; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--ink-mut);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.site-nav a:hover { color: var(--ink); background: var(--bg-panel-2); }
.site-nav a.active { color: var(--kryo); }
.site-nav-cta { display: flex; gap: 10px; align-items: center; }

/* -------------------------------------------------------------------------- */
/* LANDING                                                                    */
/* -------------------------------------------------------------------------- */

.hero {
  padding: 96px 32px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--kryo);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.hero-title span {
  background: linear-gradient(135deg, var(--kryo-hi), var(--kryo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-mut);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 80px;
}

/* Trust bar */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.trust-item {
  text-align: left;
  border-left: 2px solid var(--kryo);
  padding-left: 16px;
}
.trust-item .num {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--steel-hi);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
}

/* Features */
.features {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
}
.features-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  padding: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.2s;
}
.feature:hover {
  border-color: var(--kryo);
  transform: translateY(-4px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--kryo);
  margin-bottom: 20px;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--steel-hi);
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--ink-mut);
  font-size: 14px;
  line-height: 1.6;
}

/* Products showcase on landing */
.showcase {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--kryo);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.product-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-panel-2), var(--bg-elevated));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink-quiet);
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}
.product-thumb::before {
  /* Circuit-style overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(77,184,255,0.08) 49%, rgba(77,184,255,0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(77,184,255,0.08) 49%, rgba(77,184,255,0.08) 51%, transparent 52%);
  background-size: 24px 24px;
}
.product-info {
  padding: 16px;
}
.product-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  color: var(--kryo);
  font-family: var(--f-mono);
  font-size: 14px;
}
.product-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding: 64px 32px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-panel);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  color: var(--ink-mut);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--ink-mut);
  font-size: 13px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--kryo); }
.footer-bar {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/* SHOP                                                                       */
/* -------------------------------------------------------------------------- */

.shop-hero {
  padding: 48px 32px 32px;
  border-bottom: 1px solid var(--line);
}
.shop-hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.shop-hero p { color: var(--ink-mut); font-size: 15px; }

.shop-filters {
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(11,17,32,0.4);
}
.shop-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.shop-search .input { padding-left: 40px; }
.shop-search svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--ink-mut);
}
.filter-chip {
  padding: 6px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-mut);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--bg-elevated);
  color: var(--kryo);
  border-color: var(--kryo);
}

.shop-body {
  padding: 32px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-product {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.shop-product:hover {
  border-color: var(--kryo);
  transform: translateY(-2px);
}
.shop-product-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-panel-2), var(--bg-elevated));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 32px;
  color: var(--ink-quiet);
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
}
.shop-product-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(77,184,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(77,184,255,0.05), transparent 40%);
}
.shop-product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-product-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-product-features {
  color: var(--ink-mut);
  font-size: 13px;
  margin-bottom: 20px;
  flex: 1;
}
.shop-product-features span {
  color: var(--steel);
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 2px 8px;
  background: var(--bg-void);
  border-radius: var(--r-xs);
  margin-right: 6px;
  border: 1px solid var(--line);
  display: inline-block;
  margin-bottom: 4px;
}
.shop-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.shop-product-price {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--kryo);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.shop-product-price small {
  font-size: 11px;
  color: var(--ink-mut);
  font-weight: 400;
  margin-left: 4px;
}

/* Product detail */
.pd-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.pd-visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-panel-2), var(--bg-elevated));
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--ink-quiet);
  letter-spacing: -0.03em;
  position: relative;
  overflow: hidden;
}
.pd-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(77,184,255,0.15), transparent 40%);
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.pd-thumbs > div {
  aspect-ratio: 16/9;
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.pd-thumbs > div:hover { border-color: var(--kryo); }

.pd-info h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pd-info .breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.pd-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
}
.pd-features .pill { font-size: 10px; padding: 3px 10px; }

.pd-plans {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pd-plan {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s;
}
.pd-plan:last-child { border-bottom: none; }
.pd-plan:hover { background: var(--bg-panel-2); }
.pd-plan.selected { background: var(--bg-elevated); border-left: 3px solid var(--kryo); }
.pd-plan input[type="radio"] {
  accent-color: var(--kryo);
  margin-right: 12px;
}
.pd-plan-name { font-weight: 600; }
.pd-plan-days { color: var(--ink-mut); font-size: 13px; margin-left: 8px; }
.pd-plan-price {
  margin-left: auto;
  font-family: var(--f-mono);
  color: var(--kryo);
  font-weight: 700;
  font-size: 16px;
}
.pd-plan-price small { color: var(--ink-mut); font-weight: 400; font-size: 11px; }

.pd-changelog {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.pd-changelog h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 12px;
}
.pd-changelog ul { list-style: none; }
.pd-changelog li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-mut);
  display: flex;
  gap: 12px;
}
.pd-changelog li:last-child { border-bottom: none; }
.pd-changelog li .date {
  font-family: var(--f-mono);
  color: var(--kryo);
  font-size: 11px;
  white-space: nowrap;
  padding-top: 2px;
}

/* Checkout */
.ck-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.ck-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
}
.ck-panel h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ck-panel h3 .step {
  width: 22px; height: 22px;
  background: var(--kryo);
  color: var(--kryo-ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
}
.ck-field { margin-bottom: 16px; }
.ck-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 8px;
}
.ck-notice {
  padding: 12px 14px;
  background: rgba(77,184,255,0.08);
  border: 1px solid rgba(77,184,255,0.2);
  border-left: 3px solid var(--kryo);
  border-radius: var(--r-sm);
  color: var(--steel-hi);
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
.ck-notice svg {
  width: 16px; height: 16px;
  color: var(--kryo);
  flex-shrink: 0;
  margin-top: 2px;
}

.ck-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ck-method {
  padding: 14px;
  background: var(--bg-void);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 13px;
  color: var(--ink-mut);
}
.ck-method:hover { border-color: var(--kryo); color: var(--kryo); }
.ck-method.selected {
  background: var(--bg-elevated);
  border-color: var(--kryo);
  color: var(--kryo);
}
.ck-method.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.summary-row .k { color: var(--ink-mut); }
.summary-row .v { color: var(--ink); font-family: var(--f-mono); }
.summary-row.total {
  border-bottom: none;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
}
.summary-row.total .v { color: var(--kryo); font-size: 22px; }

/* -------------------------------------------------------------------------- */
/* APP - ACTIVATE                                                             */
/* -------------------------------------------------------------------------- */

.app-activate-body {
  display: grid;
  place-items: center;
  padding: 64px 32px;
  min-height: 700px;
}
.act-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.act-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.act-head .badge {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--kryo-lo), var(--kryo));
  display: grid; place-items: center;
  box-shadow: 0 0 20px rgba(77,184,255,0.4);
}
.act-head .badge svg { width: 22px; height: 22px; color: var(--kryo-ink); }
.act-head h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.act-lead { color: var(--ink-mut); font-size: 14px; margin-bottom: 24px; }

.act-form { display: flex; flex-direction: column; gap: 12px; }
.act-form .input {
  text-align: center;
  letter-spacing: 0.15em;
  font-family: var(--f-mono);
  font-size: 15px;
  height: 52px;
}

.act-status {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.act-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.act-status-title {
  font-size: 18px;
  font-weight: 700;
}
.act-status-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mut);
  margin-bottom: 20px;
}

.act-progress { margin-top: 20px; }
.act-bar {
  height: 3px;
  background: var(--bg-void);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.act-bar span {
  display: block;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--kryo-lo), var(--kryo-hi));
  border-radius: 999px;
  transition: width 0.4s var(--ease);
  position: relative;
}
.act-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.act-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.act-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink-mut);
  transition: all 0.2s;
}
.act-step .dot {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--bg-void);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--ink-dim);
  transition: all 0.2s;
}
.act-step .dot svg { width: 14px; height: 14px; }

.act-step.done { color: var(--ink); }
.act-step.done .dot {
  background: var(--ok-dim);
  border-color: var(--ok);
  color: var(--ok);
}

.act-step.active {
  background: var(--bg-elevated);
  color: var(--ink);
}
.act-step.active .dot {
  background: var(--kryo);
  border-color: var(--kryo);
  color: var(--kryo-ink);
  box-shadow: 0 0 12px rgba(77,184,255,0.5);
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(77,184,255,0.5); }
  50% { box-shadow: 0 0 24px rgba(77,184,255,0.9); }
}

.act-note {
  margin-top: 16px;
  padding: 14px;
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-mut);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.act-note-pulse {
  width: 8px; height: 8px;
  background: var(--kryo);
  border-radius: 50%;
  margin-top: 4px;
  animation: pulse-dot 1.4s infinite;
  flex-shrink: 0;
}
.act-note-eta {
  font-family: var(--f-mono);
  color: var(--kryo);
  font-size: 12px;
  margin-left: auto;
  padding-left: 12px;
  white-space: nowrap;
  align-self: center;
}

/* -------------------------------------------------------------------------- */
/* APP - CUSTOMER DASHBOARD                                                   */
/* -------------------------------------------------------------------------- */

.app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 700px;
}
.app-side {
  background: var(--bg-panel);
  border-right: 1px solid var(--line);
  padding: 24px 16px;
}
.app-user {
  padding: 12px;
  border-radius: var(--r-sm);
  background: var(--bg-void);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-user .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kryo-lo), var(--kryo));
  color: var(--kryo-ink);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.app-user .name { font-weight: 600; font-size: 13px; }
.app-user .role { font-family: var(--f-mono); font-size: 10px; color: var(--ink-mut); letter-spacing: 0.05em; }

.app-nav ul { list-style: none; }
.app-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-mut);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.app-nav a:hover { background: var(--bg-panel-2); color: var(--ink); }
.app-nav a.active {
  background: var(--bg-elevated);
  color: var(--kryo);
  border-left: 2px solid var(--kryo);
  padding-left: 10px;
}
.app-nav a svg { width: 16px; height: 16px; opacity: 0.7; }
.app-nav a.active svg { opacity: 1; }

.app-nav-section {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 20px 12px 8px;
}

.app-main {
  padding: 32px;
}
.app-main h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.app-main .sub { color: var(--ink-mut); margin-bottom: 32px; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.metric {
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.metric-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 12px;
}
.metric-v {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--steel-hi);
}
.metric-v small { font-size: 13px; color: var(--ink-mut); margin-left: 4px; font-weight: 400; }
.metric-trend {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ok);
  margin-top: 4px;
}
.metric-trend.down { color: var(--danger); }

/* License list */
.lic-list {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.lic-list-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.lic-list-head h2 { font-size: 15px; font-weight: 600; }
.lic-item {
  display: grid;
  grid-template-columns: 40px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.lic-item:hover { background: var(--bg-panel-2); }
.lic-item:last-child { border-bottom: none; }
.lic-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--kryo);
}
.lic-icon svg { width: 18px; height: 18px; }
.lic-title { font-weight: 600; margin-bottom: 2px; }
.lic-key {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
  letter-spacing: 0.05em;
}
.lic-devices {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mut);
}
.lic-expires {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  text-align: right;
}
.lic-expires small { color: var(--ink-mut); font-size: 10px; display: block; }

/* -------------------------------------------------------------------------- */
/* RESELLER                                                                   */
/* -------------------------------------------------------------------------- */

.res-chart {
  height: 200px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.res-chart svg { width: 100%; height: 100%; }
.res-chart-head {
  position: absolute;
  top: 16px; left: 24px;
}
.res-chart-head h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.res-chart-head .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mut); }

.res-two {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.res-keygen {
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.res-keygen h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.res-keygen p {
  color: var(--ink-mut);
  font-size: 13px;
  margin-bottom: 20px;
}
.res-keygen .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

.res-recent {
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.res-recent h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.res-recent-item {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.res-recent-item:last-child { border-bottom: none; }
.res-recent-item time {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-dim);
  white-space: nowrap;
  padding-top: 2px;
}
.res-recent-item .msg { color: var(--ink-mut); }
.res-recent-item .msg strong { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Architecture note                                                          */
/* -------------------------------------------------------------------------- */

.arch {
  padding: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-top: 32px;
}
.arch h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 20px;
}
.arch-subdomains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.arch-sd {
  padding: 16px;
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--kryo);
}
.arch-sd .host {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--kryo);
  margin-bottom: 4px;
}
.arch-sd .desc { color: var(--ink-mut); font-size: 13px; }

.arch-checklist {
  padding: 20px;
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.arch-checklist h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--warn);
}
.arch-checklist ul { list-style: none; }
.arch-checklist li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-mut);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.arch-checklist li::before {
  content: "▸";
  color: var(--warn);
  flex-shrink: 0;
}

/* Icon helper */
.i { display: inline-block; vertical-align: middle; }
.i svg { display: block; width: 1em; height: 1em; }

/* -------------------------------------------------------------------------- */
/* LANDING v3 — collapse.fun inspired: 3-panel hero, product specs cards,    */
/* advantages, cheat menu mockup, community CTA                              */
/* -------------------------------------------------------------------------- */

/* HERO — 3 game panels side-by-side with center overlay */
.heroX {
  position: relative;
  padding: 0;
  height: 620px;
  overflow: hidden;
}
.heroX-triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100%;
  gap: 2px;
  background: var(--line);
}
.heroX-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.heroX-panel:hover { transform: scale(1.02); }
.heroX-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,16,0.95) 100%);
  z-index: 2;
}
.heroX-panel-bg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.heroX-panel-1 .heroX-panel-bg { background: radial-gradient(ellipse at 50% 40%, #1a3a2a 0%, #05100a 70%, #050810 100%); }
.heroX-panel-2 .heroX-panel-bg { background: radial-gradient(ellipse at 50% 40%, #2a1a3a 0%, #100a20 70%, #050810 100%); }
.heroX-panel-3 .heroX-panel-bg { background: radial-gradient(ellipse at 50% 40%, #1a2a3a 0%, #0a1520 70%, #050810 100%); }

.heroX-panel-sil {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  height: 55%;
  opacity: 0.85;
  filter: drop-shadow(0 0 30px rgba(77,184,255,0.15));
  transition: transform 0.5s var(--ease);
}
.heroX-panel:hover .heroX-panel-sil { transform: translateX(-50%) translateY(-8px); }

.heroX-panel-name {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 3;
  text-align: center;
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--steel-hi);
  text-transform: uppercase;
}
.heroX-panel-name .badge {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--kryo);
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 6px;
}

.heroX-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  padding: 40px 48px;
  background: rgba(5,8,16,0.85);
  border: 1px solid rgba(77,184,255,0.25);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(77,184,255,0.15);
  max-width: 640px;
  width: 90%;
}
.heroX-overlay-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 20px;
}
.heroX-overlay-eyebrow::before, .heroX-overlay-eyebrow::after {
  content: ""; width: 24px; height: 1px; background: var(--kryo); opacity: 0.5;
}
.heroX-overlay h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--steel-hi);
  margin-bottom: 16px;
}
.heroX-overlay h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--kryo-hi), var(--kryo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.heroX-overlay p {
  font-size: 16px;
  color: var(--ink-mut);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.heroX-overlay-cta { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* Product cards with specs */
.prod-wall {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
}
.prod-wall-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.prod-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.prod-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  border-color: var(--kryo);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(77,184,255,0.15);
}
.prod-card-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 38px;
  color: var(--steel-hi);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.prod-card-thumb.g1 { background: radial-gradient(ellipse at center, #1a3a2a, #05100a); }
.prod-card-thumb.g2 { background: radial-gradient(ellipse at center, #2a1a3a, #100a20); }
.prod-card-thumb.g3 { background: radial-gradient(ellipse at center, #1a2a3a, #0a1520); }
.prod-card-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.prod-card:hover .prod-card-thumb img { transform: scale(1.025); filter: saturate(1.08); }
.prod-card-thumb.has-image::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,8,17,.08), rgba(4,8,17,.48));
}
.prod-card-thumb-label { position: relative; z-index: 2; }
.prod-card-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(77,184,255,0.06) 49%, rgba(77,184,255,0.06) 51%, transparent 52%);
  background-size: 24px 24px;
  pointer-events: none;
}
.prod-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.prod-card-head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--steel-hi);
}

.prod-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.prod-specs .k {
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 10px;
  padding-top: 3px;
}
.prod-specs .v { color: var(--ink); }
.prod-specs .v.ok { color: var(--ok); }
.prod-specs .v.warn { color: var(--warn); }

.prod-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.prod-features span {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 3px 8px;
  background: var(--bg-void);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xs);
  color: var(--ink-mut);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.prod-price {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--kryo);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.prod-price small { font-size: 11px; color: var(--ink-mut); font-weight: 400; }

/* ADVANTAGES */
.adv-section {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.adv-head { max-width: 720px; margin: 0 auto 56px; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.adv {
  padding: 40px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.adv:hover { border-color: var(--kryo); }
.adv-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(77,184,255,0.15), rgba(42,141,216,0.05));
  border: 1px solid rgba(77,184,255,0.25);
  display: grid;
  place-items: center;
  position: relative;
}
.adv-icon svg { width: 28px; height: 28px; color: var(--kryo); position: relative; z-index: 2; }
.adv-icon.rocket::before {
  content: "";
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(77,184,255,0.4), transparent 60%);
  animation: adv-pulse 2s ease-in-out infinite;
  z-index: 1;
}
.adv-icon.rocket svg { animation: rocket-shake 2s ease-in-out infinite; }
@keyframes adv-pulse { 0%,100% { opacity:0.4; transform: scale(0.9);} 50% { opacity:0.7; transform: scale(1.1);} }
@keyframes rocket-shake { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-3px);} }

.adv h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--steel-hi);
  margin-bottom: 10px;
}
.adv p {
  color: var(--ink-mut);
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* CHEAT MENU MOCKUP — the showpiece */
.cheat-showcase {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
}
.cheat-showcase-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cheat-menu {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0a1220, #050810);
  border: 1px solid var(--kryo-lo);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(77,184,255,0.12);
}
.cheat-titlebar {
  height: 32px;
  background: linear-gradient(180deg, #101828, #0a1220);
  border-bottom: 1px solid var(--kryo-lo);
  display: flex; align-items: center;
  padding: 0 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--kryo);
  letter-spacing: 0.05em;
  gap: 10px;
}
.cheat-titlebar .k-mark {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--kryo-lo), var(--kryo));
  color: var(--kryo-ink);
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 10px;
  display: grid; place-items: center;
}
.cheat-titlebar .status {
  margin-left: auto;
  font-size: 10px;
  color: var(--ok);
}
.cheat-titlebar .status::before {
  content: "●";
  margin-right: 4px;
}

.cheat-tabs {
  display: flex;
  background: #0a1220;
  border-bottom: 1px solid var(--line);
  padding: 0 8px;
}
.cheat-tab {
  padding: 12px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.cheat-tab:hover { color: var(--ink); }
.cheat-tab.active {
  color: var(--kryo);
  border-bottom-color: var(--kryo);
  background: rgba(77,184,255,0.05);
}

.cheat-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: var(--line);
  min-height: 460px;
}
.cheat-col {
  background: #08101c;
  padding: 20px;
}
.cheat-group + .cheat-group { margin-top: 24px; }
.cheat-group h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--kryo);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}

.cheat-check {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-mut);
  cursor: pointer;
  transition: color 0.15s;
}
.cheat-check:hover { color: var(--ink); }
.cheat-check .box {
  width: 16px; height: 16px;
  border: 1px solid var(--line-hi);
  border-radius: 3px;
  display: grid; place-items: center;
  color: var(--bg-void);
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s;
}
.cheat-check.on { color: var(--ink); }
.cheat-check.on .box {
  background: var(--kryo);
  border-color: var(--kryo);
  color: var(--kryo-ink);
  box-shadow: 0 0 8px rgba(77,184,255,0.5);
}

.cheat-slider {
  padding: 8px 0;
}
.cheat-slider label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-mut);
  margin-bottom: 6px;
}
.cheat-slider label span {
  font-family: var(--f-mono);
  color: var(--kryo);
  font-size: 11px;
}
.cheat-slider-bar {
  height: 4px;
  background: var(--bg-void);
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
}
.cheat-slider-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--kryo-lo), var(--kryo-hi));
  border-radius: 999px;
  position: relative;
}
.cheat-slider-bar span::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--kryo);
  border: 2px solid var(--bg-void);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(77,184,255,0.5);
}

.cheat-color-row {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 0;
  font-size: 12px;
  color: var(--ink-mut);
}
.cheat-color {
  width: 22px; height: 22px;
  border-radius: var(--r-xs);
  border: 1px solid var(--line-hi);
  cursor: pointer;
}
.cheat-color.on { box-shadow: 0 0 0 2px var(--kryo); }

.cheat-preview {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(77,184,255,0.06), transparent 70%),
    #050810;
  overflow: hidden;
  min-height: 100%;
}
.cheat-preview-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  padding: 3px 8px;
  background: rgba(5,8,16,0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
}
.cheat-preview svg { width: 100%; height: 100%; display: block; }

.cheat-footer {
  padding: 12px 20px;
  background: #0a1220;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
}
.cheat-footer .k { color: var(--ink-dim); margin-right: 6px; }
.cheat-footer strong { color: var(--kryo); font-weight: 500; }

/* COMMUNITY CTA */
.community {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(77,184,255,0.1), transparent 60%);
  pointer-events: none;
}
.community-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #5865F2, #4a52c9);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(88,101,242,0.3);
}
.community-icon svg { width: 40px; height: 40px; color: #fff; }
.community h2 {
  position: relative;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--steel-hi);
  margin-bottom: 12px;
}
.community p {
  position: relative;
  color: var(--ink-mut);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.community-actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.community-meta {
  position: relative;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mut);
  letter-spacing: 0.05em;
}
.community-meta strong { color: var(--kryo); }

/* PRODUCT DETAIL — features description (replaces changelog) */
.pd-description {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.pd-description h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 20px;
}
.pd-desc-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pd-desc-group {
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.pd-desc-group:last-child { border-bottom: none; padding-bottom: 0; }
.pd-desc-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pd-desc-group-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--kryo);
}
.pd-desc-group-icon svg { width: 14px; height: 14px; }
.pd-desc-group h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--steel-hi);
  letter-spacing: -0.005em;
}
.pd-desc-group ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  padding-left: 38px;
}
.pd-desc-group li {
  font-size: 13px;
  color: var(--ink-mut);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-desc-group li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* STATUS PAGE — status.kryocore.dev */
.status-hero {
  padding: 48px 32px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.status-hero.ok::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(63,214,113,0.12), transparent 60%);
  pointer-events: none;
}
.status-hero.warn::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,176,67,0.12), transparent 60%);
}
.status-hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(63,214,113,0.1);
  border: 1px solid rgba(63,214,113,0.3);
  border-radius: 999px;
  color: var(--ok);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.status-hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ok);
  animation: pulse-dot 2s infinite;
}
.status-hero h1 {
  position: relative;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--steel-hi);
  margin-bottom: 12px;
}
.status-hero p {
  position: relative;
  color: var(--ink-mut);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.status-hero p strong { color: var(--steel-hi); }

.status-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  max-width: 1240px;
  margin: 0 auto;
}
.status-metric {
  padding: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.status-metric .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 8px;
}
.status-metric .v {
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--steel-hi);
}
.status-metric .v.ok { color: var(--ok); }
.status-metric .v.warn { color: var(--warn); }

.status-services {
  padding: 40px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.status-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.status-services-head h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.status-services-head .refresh {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
  letter-spacing: 0.05em;
}

.status-list {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.status-row {
  display: grid;
  grid-template-columns: 40px 1fr auto 140px 100px;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.status-row:last-child { border-bottom: none; }
.status-row:hover { background: var(--bg-panel-2); }
.status-row-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--steel-hi);
  letter-spacing: -0.02em;
}
.status-row-name {
  font-weight: 600;
  font-size: 14px;
}
.status-row-name small {
  display: block;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 2px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid;
  white-space: nowrap;
}
.status-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.status-badge.online   { background: rgba(63,214,113,0.1); color: var(--ok);   border-color: rgba(63,214,113,0.3); }
.status-badge.online   .dot { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.status-badge.updating { background: rgba(245,176,67,0.1); color: var(--warn); border-color: rgba(245,176,67,0.3); }
.status-badge.updating .dot { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.status-badge.maint    { background: rgba(229,72,77,0.1);  color: var(--danger); border-color: rgba(229,72,77,0.3); }
.status-badge.maint    .dot { background: var(--danger); box-shadow: 0 0 8px var(--danger); animation: none; }
.status-badge.beta     { background: rgba(77,184,255,0.1); color: var(--kryo);  border-color: rgba(77,184,255,0.3); }
.status-badge.beta     .dot { background: var(--kryo); box-shadow: 0 0 8px var(--kryo); }

.status-row-uptime {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mut);
  text-align: right;
}
.status-row-uptime strong { color: var(--steel-hi); font-weight: 600; }

.status-uptime-bar {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}
.status-uptime-bar .bar {
  width: 3px;
  height: 20px;
  background: var(--ok);
  border-radius: 1px;
  opacity: 0.85;
}
.status-uptime-bar .bar.down { background: var(--danger); height: 10px; }
.status-uptime-bar .bar.deg { background: var(--warn); height: 15px; }

.status-incidents {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.status-incidents h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 16px;
}
.status-incident {
  display: grid;
  grid-template-columns: 90px 90px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.status-incident:last-child { border-bottom: none; }
.status-incident time {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.status-incident .msg { color: var(--ink); }
.status-incident .msg small { display: block; color: var(--ink-mut); font-size: 12px; margin-top: 2px; }

/* HERO v3 (plain centered) + GAME MARQUEE */
.hero-plain {
  padding: 100px 32px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-plain::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(77,184,255,0.15), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(42,141,216,0.1), transparent 55%);
  pointer-events: none;
}
.hero-plain-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero-plain-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--steel-hi);
  margin: 20px 0 24px;
  text-wrap: balance;
}
.hero-plain-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--kryo-hi), var(--kryo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-plain-sub {
  font-size: 18px;
  color: var(--ink-mut);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-plain-proof {
  margin-top: 40px;
  display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mut);
  letter-spacing: 0.03em;
}
.hero-plain-proof strong { color: var(--steel-hi); font-weight: 700; }
.hero-plain-proof .sep { color: var(--ink-quiet); }

/* Marquee band */
.game-marquee {
  padding: 32px 0 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11,17,32,0.4), transparent);
  position: relative;
}
.game-marquee-eyebrow {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.game-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.game-marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.game-marquee:hover .game-marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.game-tile {
  flex-shrink: 0;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.game-tile-icon {
  width: 76px; height: 76px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 24px;
  color: var(--steel-hi);
  letter-spacing: -0.02em;
  border: 1px solid var(--line-hi);
  position: relative;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.game-tile:hover .game-tile-icon {
  border-color: var(--kryo);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(77,184,255,0.35);
  transform: translateY(-4px);
}
.game-tile-icon::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}
.game-tile-icon::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  pointer-events: none;
}
.game-tile-name {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-mut);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.2s;
  white-space: nowrap;
}
.game-tile:hover .game-tile-name { color: var(--kryo); }
.game-tile-status {
  font-size: 8px;
  letter-spacing: 0.1em;
}

/* Per-game color schemes */
.gt-unturned  { background: linear-gradient(135deg, #1a3a2a, #05100a); }
.gt-crossfire { background: linear-gradient(135deg, #3a1a2a, #200a15); }
.gt-polygon   { background: linear-gradient(135deg, #1a2a3a, #0a1520); }
.gt-rust      { background: linear-gradient(135deg, #3a1f0a, #1a0d05); }
.gt-dayz      { background: linear-gradient(135deg, #2a2a1a, #15150a); }
.gt-tarkov    { background: linear-gradient(135deg, #2a1a1a, #150a0a); }
.gt-apex      { background: linear-gradient(135deg, #3a2a1a, #201a0a); }
.gt-fortnite  { background: linear-gradient(135deg, #2a1a3a, #150a20); }
.gt-valorant  { background: linear-gradient(135deg, #3a1a2a, #1f0a15); }
.gt-cs2       { background: linear-gradient(135deg, #3a2a0a, #1f1a05); }
.gt-warzone   { background: linear-gradient(135deg, #2a2a2a, #151515); }
.gt-pubg      { background: linear-gradient(135deg, #3a2a1a, #201a0a); }
.gt-r6        { background: linear-gradient(135deg, #1a1a3a, #0a0a20); }
.gt-dbd       { background: linear-gradient(135deg, #2a0a1a, #150510); }

/* Keep placeholder for landing-old classes to avoid breakage */
.hero-cinema {
  position: relative;
  padding: 80px 32px 60px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #2a8dd8, transparent 60%); top: -140px; left: -140px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #4db8ff, transparent 60%); bottom: -80px; right: -80px; animation-delay: -7s; }
@keyframes orb-float { 0%,100% { transform: translate(0,0);} 50% { transform: translate(28px,-28px);} }

.hero-cinema-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(77,184,255,0.08);
  border: 1px solid rgba(77,184,255,0.25);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--kryo);
  margin-bottom: 28px;
}
.hero-eyebrow-v2 .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--kryo);
  box-shadow: 0 0 10px var(--kryo);
  animation: pulse-dot 2s infinite;
}

.hero-headline {
  font-size: clamp(56px, 7.2vw, 96px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero-headline .l1, .hero-headline .l2, .hero-headline .l3 { display: block; }
.hero-headline .l1 { color: var(--steel-hi); }
.hero-headline .l2 {
  background: linear-gradient(135deg, var(--kryo-hi), var(--kryo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-headline .l3 {
  color: var(--ink-mut);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-sub-v2 {
  font-size: 17px;
  color: var(--ink-mut);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-cta-v2 { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-cta-v2 .btn-lg { height: 54px; padding: 0 26px; font-size: 15px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mut);
  letter-spacing: 0.03em;
}
.hero-proof strong { color: var(--steel-hi); font-weight: 700; }
.hero-proof .sep { color: var(--ink-quiet); }

/* HUD mockup on the right */
.hud-wrap { position: relative; }
.hud-mockup {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(77,184,255,0.18);
  border: 1px solid var(--line-hi);
  animation: hud-float 7s ease-in-out infinite;
}
@keyframes hud-float {
  0%,100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-6px) rotateX(0.5deg) rotateY(-0.5deg); }
}
.hud-svg { width: 100%; height: 100%; display: block; }
.hud-svg .esp-box { animation: esp-pulse 3s ease-in-out infinite; }
.hud-svg .esp-box:nth-of-type(2) { animation-delay: -1s; }
.hud-svg .esp-box:nth-of-type(3) { animation-delay: -2s; }
@keyframes esp-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

.hud-corner {
  position: absolute;
  padding: 6px 10px;
  background: rgba(5,8,16,0.75);
  border: 1px solid rgba(77,184,255,0.3);
  border-radius: var(--r-xs);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--kryo-hi);
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  line-height: 1.55;
}
.hud-corner.tl { top: 10px; left: 10px; }
.hud-corner.tr { top: 10px; right: 10px; }
.hud-corner.bl { bottom: 10px; left: 10px; }
.hud-corner.br { bottom: 10px; right: 10px; text-align: right; }
.hud-corner .k { color: var(--ink-dim); margin-right: 4px; }

.hero-badge {
  position: absolute;
  padding: 8px 14px;
  background: rgba(11,17,32,0.92);
  border: 1px solid rgba(77,184,255,0.35);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--kryo);
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 8px;
  animation: badge-float 5s ease-in-out infinite;
}
.hero-badge svg { width: 12px; height: 12px; color: var(--ok); }
.hero-badge-1 { top: -14px; left: -20px; animation-delay: 0s; }
.hero-badge-2 { bottom: -14px; right: -20px; animation-delay: -2.5s; }
@keyframes badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Syscall ticker */
.syscall-ticker {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.ticker-track {
  display: flex; gap: 40px;
  animation: ticker-scroll 60s linear infinite;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  width: max-content;
}
.ticker-track b { color: var(--kryo); font-weight: 500; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Live status strip */
.status-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding: 14px 24px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mut);
}
.status-strip strong { color: var(--steel-hi); font-weight: 600; }
.status-strip .sep { color: var(--ink-quiet); }
.status-strip .status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px rgba(63,214,113,0.7);
  animation: pulse-dot 2s infinite;
  display: inline-block; margin-right: 8px; vertical-align: middle;
}

/* Featured products — 3 dramatic cards */
.featured { padding: 90px 32px; border-top: 1px solid var(--line); }
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1240px; margin: 0 auto;
}
.featured-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
  isolation: isolate;
}
.featured-card:hover {
  border-color: var(--kryo);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(77,184,255,0.25);
}
.featured-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #101828, #14203a);
  display: grid; place-items: center;
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 44px;
  color: rgba(77,184,255,0.1);
  letter-spacing: -0.03em;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}
.featured-card:hover .featured-card-bg { transform: scale(1.06); }
.featured-card-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(77,184,255,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(42,141,216,0.12), transparent 55%);
}
.featured-card-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,16,0.95) 100%);
}
.featured-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.featured-card-body h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
  color: var(--steel-hi);
}
.featured-card-body .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.featured-card-body .tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(5,8,16,0.6);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xs);
  color: var(--ink-mut);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.featured-card-body .footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-hi);
}
.featured-card-body .price {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--kryo);
  font-weight: 700;
}
.featured-card-body .price small { font-size: 11px; color: var(--ink-mut); font-weight: 400; }
.featured-card-body .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--kryo);
  transition: all 0.25s;
}
.featured-card:hover .featured-card-body .arrow {
  background: var(--kryo);
  color: var(--kryo-ink);
  transform: translateX(4px);
  border-color: var(--kryo);
}

/* How it works — numbered steps */
.how { padding: 96px 32px; border-top: 1px solid var(--line); text-align: center; }
.how-header { max-width: 720px; margin: 0 auto 56px; }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kryo), var(--kryo), transparent);
  opacity: 0.25;
  z-index: 0;
}
.how-step { position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 1px solid var(--kryo);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--kryo);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 24px rgba(77,184,255,0.2);
}
.how-step h3 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
  color: var(--steel-hi);
  letter-spacing: -0.01em;
}
.how-step p {
  color: var(--ink-mut);
  font-size: 13px;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 96px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(77,184,255,0.12), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  position: relative;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--steel-hi);
  margin-bottom: 16px;
}
.final-cta p {
  position: relative;
  color: var(--ink-mut);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
}
.final-cta .btn { position: relative; }

/* Responsive-ish */
@media (max-width: 900px) {
  .cover-grid, .pd-body, .ck-body, .res-two { grid-template-columns: 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .features-grid, .shop-grid, .showcase-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidenav { display: none; }
  .hero-cinema-grid { grid-template-columns: 1fr; gap: 48px; }
  .status-strip { flex-direction: column; gap: 8px; padding: 16px; }
  .featured-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
}
/* =========================================================================
   Kryocore v2 â€” inspired by collapse.fun / baunticheats / cff.team
   Appended to kryocore.css â€” use ?v=2 in the stylesheet link
   ========================================================================= */

/* Extend palette with a secondary magenta accent (Collapse-inspired duo). */
:root {
  --kryo-mag:      #b467ff;
  --kryo-mag-hi:   #d18eff;
  --kryo-mag-lo:   #8033d9;
  --kryo-mag-glow: 0 0 32px rgba(180,103,255,0.35);
}

/* -------------------------------------------------------------------------- */
/* HEADER v2 â€” social icons row + language toggle                             */
/* -------------------------------------------------------------------------- */
.site-header-v2 {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 32px;
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header-v2 .site-nav {
  display: flex; align-items: center; gap: 6px; margin-left: 8px;
}
.site-header-v2 .site-nav a {
  color: var(--ink-mut); text-decoration: none;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.site-header-v2 .site-nav a:hover { color: var(--ink); background: var(--bg-panel); }
.site-header-v2 .site-nav a.active { color: var(--kryo); }
.site-header-v2 .spacer { flex: 1; }

.hdr-social {
  display: flex; align-items: center; gap: 4px;
  padding-right: 6px;
  border-right: 1px solid var(--line);
  margin-right: 8px;
}
.hdr-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  color: var(--ink-dim);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.hdr-social a:hover { color: var(--kryo); background: var(--bg-panel); }
.hdr-social svg { width: 16px; height: 16px; }

.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; height: 30px; margin-right: 4px;
}
.lang-toggle button {
  background: transparent; border: 0; padding: 0 10px; height: 100%;
  color: var(--ink-dim); font-family: var(--f-sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.05em; cursor: pointer;
}
.lang-toggle button.on { background: var(--bg-panel-2); color: var(--kryo); }
.lang-toggle button:hover { color: var(--ink); }

/* -------------------------------------------------------------------------- */
/* STATUS STRIP â€” thin bar under header, live game status                     */
/* -------------------------------------------------------------------------- */
.status-strip {
  display: flex; align-items: center; gap: 24px;
  padding: 10px 32px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px;
  overflow-x: auto; scrollbar-width: none;
}
.status-strip::-webkit-scrollbar { display: none; }
.status-strip-label {
  color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 10px; flex-shrink: 0;
}
.status-item { display: flex; align-items: center; gap: 8px; flex-shrink: 0; color: var(--ink-mut); }
.status-item strong { color: var(--steel-hi); font-weight: 600; }
.status-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 8px var(--ok);
  animation: pulse-dot 2s infinite;
}
.status-item.warn .dot { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.status-item.danger .dot { background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.status-item.quiet .dot { background: var(--ink-quiet); box-shadow: none; animation: none; }

/* -------------------------------------------------------------------------- */
/* HERO SPLIT â€” asymmetric: text left + GUI preview right (Collapse-style)    */
/* -------------------------------------------------------------------------- */
.hero-split {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  align-items: center;
  min-height: 620px;
}
.hero-split::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 400px at 15% 30%, rgba(77,184,255,0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 70%, rgba(180,103,255,0.08), transparent 60%);
}

.hero-split-left { display: flex; flex-direction: column; gap: 22px; max-width: 560px; }

.hero-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border: 1px solid var(--line-hi); border-radius: 100px;
  background: var(--bg-panel);
  color: var(--ink-mut); font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; align-self: flex-start;
}
.hero-eyebrow-v2 .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 8px var(--ok); animation: pulse-dot 2s infinite;
}

.hero-split-title {
  font-size: 64px; font-weight: 900; line-height: 1.02;
  letter-spacing: -0.04em; color: var(--steel-hi);
  text-wrap: balance;
}
.hero-split-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--kryo) 20%, var(--kryo-mag) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-split-sub {
  font-size: 17px; line-height: 1.55; color: var(--ink-mut); max-width: 500px;
}
.hero-split-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.hero-split-proof {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px;
  padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--ink-mut); font-size: 13px;
}
.hero-split-proof .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-split-proof .stat strong {
  color: var(--steel-hi); font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.hero-split-proof .stat span {
  color: var(--ink-dim); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
}

/* GUI preview panel on the right side of hero â€” compact cheat menu look. */
.hero-preview {
  position: relative;
  border: 1px solid var(--line-hi); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-panel-2) 0%, var(--bg-panel) 100%);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(77,184,255,0.08);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center right;
}
.hero-preview::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(77,184,255,0.5), transparent 30%, transparent 70%, rgba(180,103,255,0.5));
  filter: blur(20px); opacity: 0.6;
}
.hero-preview-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim);
}
.hero-preview-bar .k-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 3px;
  background: linear-gradient(135deg, var(--kryo), var(--kryo-mag));
  color: var(--kryo-ink); font-weight: 900; font-size: 11px;
}
.hero-preview-bar .status {
  margin-left: auto; padding: 2px 8px; border-radius: 100px;
  background: rgba(63,214,113,0.15); color: var(--ok);
  font-size: 10px; letter-spacing: 0.08em;
}
.hero-preview-tabs {
  display: flex; border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
}
.hero-preview-tabs span {
  padding: 10px 14px; font-size: 12px; color: var(--ink-mut); font-weight: 500;
  border-bottom: 2px solid transparent;
}
.hero-preview-tabs span.on {
  color: var(--kryo); border-bottom-color: var(--kryo);
  background: rgba(77,184,255,0.06);
}
.hero-preview-body { display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.hero-preview-side { padding: 14px; border-right: 1px solid var(--line); background: var(--bg-panel); }
.hero-preview-side h5 {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 10px; font-weight: 600;
}
.hp-check {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 12px; color: var(--ink-mut);
}
.hp-check .box {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid var(--line-hi); display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.hp-check.on { color: var(--steel-hi); }
.hp-check.on .box { background: var(--kryo); border-color: var(--kryo); color: var(--kryo-ink); }
.hero-preview-scene {
  position: relative; background: radial-gradient(ellipse at 40% 60%, #0f1a2d, #050810);
  min-height: 260px; overflow: hidden;
}
.hero-preview-scene svg { width: 100%; height: 100%; display: block; }

/* -------------------------------------------------------------------------- */
/* PRODUCT CARD â€” feature chips with icons (upgraded from text pills)         */
/* -------------------------------------------------------------------------- */
.feat-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.feat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px 4px 7px; height: 24px;
  background: var(--bg-panel); border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-mut);
  transition: all .15s var(--ease);
}
.feat-chip:hover { color: var(--kryo); border-color: var(--kryo); background: rgba(77,184,255,0.05); }
.feat-chip svg { width: 12px; height: 12px; }
.feat-chip.on { color: var(--kryo); border-color: rgba(77,184,255,0.4); background: rgba(77,184,255,0.06); }

/* Pricing row per duration â€” inspired by BauntiCheats subscription strip */
.price-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  margin: 12px 0; padding: 4px; background: var(--bg-panel);
  border: 1px solid var(--line); border-radius: var(--r-sm);
}
.price-cell {
  padding: 8px 4px; text-align: center; border-radius: 3px;
  cursor: default; transition: background .15s var(--ease);
}
.price-cell:hover { background: var(--bg-panel-2); }
.price-cell .dur {
  display: block; font-size: 10px; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px;
}
.price-cell .val {
  display: block; font-size: 13px; color: var(--steel-hi); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-cell.hot { background: rgba(77,184,255,0.08); border: 1px solid rgba(77,184,255,0.25); }
.price-cell.hot .val { color: var(--kryo); }

/* -------------------------------------------------------------------------- */
/* HOW IT WORKS â€” 3-step (Buy â†’ Redeem â†’ Play)                                */
/* -------------------------------------------------------------------------- */
.howit {
  max-width: 1440px; margin: 0 auto; padding: 80px 32px;
  position: relative; z-index: 1;
}
.howit-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.howit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.howit-grid::before {
  content: ""; position: absolute; top: 42px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hi) 20%, var(--line-hi) 80%, transparent);
  z-index: 0;
}
.howit-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 20px;
}
.howit-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--bg-panel-2); border: 1px solid var(--line-hi);
  color: var(--kryo); font-family: var(--f-mono); font-size: 32px; font-weight: 700;
  margin-bottom: 24px;
  box-shadow: inset 0 0 24px rgba(77,184,255,0.1);
}
.howit-step:nth-child(2) .howit-num { color: var(--kryo-mag); box-shadow: inset 0 0 24px rgba(180,103,255,0.1); }
.howit-step:nth-child(3) .howit-num { color: var(--ok); box-shadow: inset 0 0 24px rgba(63,214,113,0.1); }
.howit-step h3 {
  font-size: 20px; font-weight: 700; color: var(--steel-hi); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.howit-step p { color: var(--ink-mut); font-size: 14px; line-height: 1.6; max-width: 280px; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; min-height: auto; }
  .hero-preview { transform: none; }
  .hero-split-title { font-size: 44px; }
  .howit-grid { grid-template-columns: 1fr; gap: 40px; }
  .howit-grid::before { display: none; }
  .site-header-v2 { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .site-header-v2 .site-nav { display: none; }
  .status-strip { padding: 8px 16px; font-size: 11px; gap: 16px; }
}


/* =========================================================================
   Hex-Core logo mark override (v2) — appended after original .mark rules
   ========================================================================= */
.site-brand .mark {
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  filter: drop-shadow(0 0 12px rgba(77,184,255,0.4));
}
.site-brand .mark svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   Kryocore production refinement · v5
   Shared visual and responsive layer for home, shop, product, key activation
   and status. Transactional behavior remains untouched.
   ========================================================================== */

html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  overflow-x: hidden;
  background-color: #060911;
  background-image:
    radial-gradient(900px 560px at 88% -12%, rgba(93, 114, 255, .10), transparent 66%),
    radial-gradient(760px 500px at -12% 18%, rgba(77, 184, 255, .075), transparent 64%);
}
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--kryo-hi);
  outline-offset: 3px;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  padding: 10px 14px; border-radius: 8px;
  color: #04111c; background: var(--kryo-hi);
  font-weight: 750; text-decoration: none;
  transform: translateY(-160%); transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header-v2 {
  min-height: 68px; gap: 26px;
  padding: 13px max(24px, calc((100vw - 1280px) / 2));
  background: rgba(7, 11, 20, .88);
  border-bottom-color: rgba(124, 208, 255, .11);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.site-header-v2 .site-brand { flex: none; font-size: 18px; letter-spacing: -.025em; }
.site-header-v2 .site-brand .mark { width: 34px; height: 34px; }
.site-header-v2 .site-nav { gap: 2px; }
.site-header-v2 .site-nav a { padding: 9px 13px; font-size: 13px; font-weight: 620; }
.site-header-v2 .site-nav a.active { color: var(--steel-hi); background: rgba(77, 184, 255, .09); }
.site-header-actions { display: flex; align-items: center; gap: 14px; }
.header-signin { color: var(--ink-mut); font-size: 13px; font-weight: 650; text-decoration: none; }
.header-signin:hover { color: var(--steel-hi); }
.header-buy { min-height: 40px; height: 40px; padding: 0 17px; border-radius: 8px; font-size: 13px; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  list-style: none; width: 40px; height: 40px; cursor: pointer;
  display: grid; place-content: center; gap: 4px;
  border: 1px solid var(--line-hi); border-radius: 9px; background: var(--bg-panel);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 17px; height: 1.5px; border-radius: 3px; background: var(--steel-hi); transition: transform .2s, opacity .2s; }
.mobile-menu[open] summary span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu > nav {
  position: fixed; top: 68px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px; border: 1px solid var(--line-hi); border-radius: 12px;
  background: #080d18; box-shadow: 0 24px 60px rgba(0, 0, 0, .58);
}
.mobile-menu > nav a { padding: 12px; color: var(--ink-mut); text-decoration: none; font-size: 14px; font-weight: 650; border-radius: 8px; }
.mobile-menu > nav a:hover { color: var(--steel-hi); background: var(--bg-panel-2); }
.mobile-menu > nav .btn { justify-content: center; color: var(--kryo-ink); margin-top: 4px; }

.status-strip { background: rgba(10, 16, 30, .78); }
.hero-split { max-width: 1280px; min-height: 660px; padding: 84px 32px 66px; gap: clamp(46px, 6vw, 82px); }
.hero-split-left { max-width: 620px; }
.hero-split-title { max-width: 700px; font-size: clamp(54px, 5.6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.hero-split-title em { display: block; background: linear-gradient(110deg, #d9f3ff 0%, #75d2ff 38%, #7a79ff 82%); -webkit-background-clip: text; background-clip: text; }
.hero-split-sub { max-width: 590px; font-size: 18px; line-height: 1.68; }
.hero-split-proof { gap: 28px; }
.hero-preview { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); border-color: rgba(124, 208, 255, .21); box-shadow: 0 44px 100px rgba(0, 0, 0, .52), 0 0 70px rgba(77, 184, 255, .10); }
.hero-preview-bar .status { color: var(--ok); }

.prod-wall, .howit, .adv-section, .cheat-showcase { max-width: 1280px; margin-inline: auto; }
.prod-card { border-radius: 15px; background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 35%), var(--bg-panel); }
.prod-card:hover { transform: translateY(-5px); border-color: rgba(77, 184, 255, .32); box-shadow: 0 26px 60px rgba(0, 0, 0, .30); }
.prod-card-body { padding: 24px; }
.howit-num { width: 76px; height: 76px; font-size: 26px; }
.site-footer { background: #070b14; }
.footer-bar { align-items: center; gap: 24px; }

/* Shop and product pages */
.public-surface { min-height: 100vh; }
.shop-hero, .shop-toolbar, .shop-content, .pd-wrap, .portal-hero, .portal-flow, .portal-single, .app-shell { width: min(1280px, calc(100% - 48px)); }
.shop-hero { padding-top: 88px !important; }
.shop-hero h1 { max-width: 900px; font-size: clamp(50px, 6.4vw, 82px) !important; line-height: .98 !important; letter-spacing: -.055em !important; text-wrap: balance; }
.shop-hero > p { max-width: 720px; font-size: 17px !important; line-height: 1.7 !important; }
.shop-stat-row { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px !important; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px !important; overflow: hidden; background: rgba(11, 17, 32, .72) !important; }
.shop-toolbar { position: sticky; top: 78px; z-index: 20; padding: 12px !important; border: 1px solid var(--line); border-radius: 14px; background: rgba(7, 11, 20, .88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.p-card { border-radius: 15px !important; background: linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 35%), var(--bg-panel) !important; }
.p-card:hover { transform: translateY(-5px) !important; box-shadow: 0 26px 60px rgba(0, 0, 0, .30); }
.pd-hero, .pd-main-card, .pd-description, .portal-card, .auth-card, .stat-card, .license-card, .lic-card { border-radius: 16px !important; }
.pd-hero { box-shadow: 0 34px 90px rgba(0, 0, 0, .34); }

/* Key activation and shared authentication components */
.portal-hero { min-height: calc(100vh - 68px); padding-top: 78px !important; }
.portal-lede h1 { text-wrap: balance; }
.portal-card, .auth-card { background: linear-gradient(155deg, rgba(255, 255, 255, .03), transparent 42%), rgba(11, 17, 32, .95) !important; box-shadow: 0 34px 90px rgba(0, 0, 0, .34); }
.auth-wrap { min-height: calc(100vh - 68px) !important; padding: 70px 24px !important; }
.auth-card { width: min(460px, 100%) !important; padding: 36px 34px !important; }
.auth-form input, .portal-form input { min-height: 50px; border-radius: 9px !important; }
.auth-form button, .portal-form button, .dl-cta-btn { min-height: 48px; border-radius: 9px !important; }
.app-shell { padding-top: 58px !important; }

/* Shared status/public utility surface */
.site-header { position: sticky; top: 0; z-index: 90; min-height: 68px; padding: 13px max(24px, calc((100vw - 1280px) / 2)); background: rgba(7, 11, 20, .88); border-bottom: 1px solid rgba(124, 208, 255, .11); display: flex; align-items: center; gap: 26px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-header .spacer { flex: 1; }
.site-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.public-page { min-height: 100vh; }
.public-shell { position: relative; z-index: 1; width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 82px 0 92px; }
.public-hero { max-width: 820px; margin-bottom: 34px; }
.public-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--kryo); font: 700 10px/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase; }
.public-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--kryo); }
.public-hero h1 { margin: 0; color: #f1f6fc; font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: -.05em; text-wrap: balance; }
.public-panel { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(77, 184, 255, .055), transparent 34%), rgba(11, 17, 32, .84); box-shadow: 0 34px 90px rgba(0, 0, 0, .30); }
.public-lead { max-width: 720px; margin: 0 0 30px; color: var(--ink-mut); font-size: 17px; line-height: 1.7; }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.status-overall { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px; margin-bottom: 18px; border: 1px solid rgba(63, 214, 113, .20); border-radius: 12px; background: rgba(63, 214, 113, .055); }
.status-overall.is-maintenance { border-color: rgba(245, 176, 67, .26); background: rgba(245, 176, 67, .06); }
.status-overall.is-detected { border-color: rgba(255, 94, 113, .32); background: rgba(255, 94, 113, .075); }
.status-overall .state { display: flex; align-items: center; gap: 12px; color: var(--ok); font-weight: 750; }
.status-overall.is-maintenance .state { color: var(--warn); }
.status-overall.is-detected .state { color: var(--danger); }
.status-overall .state i { width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.status-overall small { color: var(--ink-dim); font: 600 10px/1 var(--f-mono); letter-spacing: .08em; }
.service-list { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.service-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; min-height: 64px; padding: 14px 18px; background: rgba(5, 8, 16, .55); border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: 0; }
.service-row strong { display: block; color: var(--steel-hi); font-size: 13px; }
.service-row small { color: var(--ink-dim); font-size: 11px; }
.service-state { display: inline-flex; align-items: center; gap: 7px; color: var(--ok); font: 700 9px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; }
.service-state::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.service-state.undetected { color: var(--ok); }
.service-state.maintenance { color: var(--warn); }
.service-state.detected { color: var(--danger); }
.cheat-status-legend { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.cheat-status-legend span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5, 8, 16, .48); color: var(--ink-mut); font: 700 9px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; }
.cheat-status-legend span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cheat-status-legend .undetected { color: var(--ok); }
.cheat-status-legend .maintenance { color: var(--warn); }
.cheat-status-legend .detected { color: var(--danger); }
.cheat-status-row { min-height: 74px; }
.status-guidance { margin-top: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: rgba(5, 8, 16, .42); }
.status-guidance strong { display: block; margin-bottom: 7px; color: var(--steel-hi); font-size: 13px; }
.status-guidance p { margin: 0; color: var(--ink-mut); font-size: 12px; line-height: 1.65; }
.status-guidance b { color: var(--steel-hi); }
.compact-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; max-width: 1120px; margin: 0 auto; padding: 24px 0 34px; border-top: 1px solid var(--line); color: var(--ink-dim); font: 500 10px/1.5 var(--f-mono); }
.compact-footer a { color: var(--ink-mut); text-decoration: none; }

/* Universal FAQ */
.faq-page {
  position: relative;
  background:
    radial-gradient(ellipse 760px 460px at 50% 2%, rgba(77,184,255,.10), transparent 62%),
    var(--bg-void);
}
.faq-shell {
  position: relative; z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto; padding: 92px 0 104px;
}
.faq-hero { max-width: 900px; margin: 0 auto 44px; text-align: center; }
.faq-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  color: var(--kryo); font: 700 10px/1 var(--f-mono);
  letter-spacing: .2em; text-transform: uppercase;
}
.faq-eyebrow span { width: 28px; height: 1px; background: currentColor; }
.faq-hero h1 {
  margin: 0; color: var(--steel-hi);
  font-size: clamp(50px, 7vw, 82px); line-height: .98;
  letter-spacing: -.055em; text-wrap: balance;
}
.faq-hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, #d9f3ff 0%, #75d2ff 42%, #8c78ff 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.faq-hero > p {
  max-width: 730px; margin: 26px auto 0;
  color: var(--ink-mut); font-size: 17px; line-height: 1.72;
}
.faq-metrics {
  display: inline-grid; grid-template-columns: repeat(3, minmax(130px, 1fr));
  margin-top: 34px; overflow: hidden;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(11,17,32,.72);
}
.faq-metrics > * {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
  padding: 15px 22px; border-right: 1px solid var(--line);
  color: inherit; text-decoration: none;
}
.faq-metrics > *:last-child { border-right: 0; }
.faq-metrics strong { color: var(--steel-hi); font-size: 18px; line-height: 1; }
.faq-metrics a strong { color: var(--ok); }
.faq-metrics span {
  color: var(--ink-dim); font: 650 9px/1.2 var(--f-mono);
  letter-spacing: .12em; text-transform: uppercase;
}
.faq-topic-nav {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px;
  margin-bottom: 28px; padding: 10px;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(7,11,20,.80);
}
.faq-topic-nav a {
  display: flex; align-items: center; gap: 9px; min-width: 0;
  padding: 12px 13px; border: 1px solid transparent; border-radius: 9px;
  color: var(--ink-mut); font-size: 12px; font-weight: 650;
  text-decoration: none; transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.faq-topic-nav a:hover { color: var(--steel-hi); border-color: var(--line-hi); background: var(--bg-panel); }
.faq-topic-nav span { color: var(--kryo); font: 700 9px/1 var(--f-mono); }
.support-faq-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; align-items: start;
}
.support-faq-group {
  min-width: 0; padding: 20px; scroll-margin-top: 90px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(155deg, rgba(77,184,255,.045), transparent 34%), rgba(11,17,32,.76);
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
}
.support-faq-group > header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.support-faq-group > header > span {
  display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto;
  border: 1px solid rgba(77,184,255,.26); border-radius: 9px;
  background: rgba(77,184,255,.08); color: var(--kryo);
  font: 700 10px/1 var(--f-mono);
}
.support-faq-group h2 { margin: 0; color: var(--steel-hi); font-size: 17px; letter-spacing: -.015em; }
.support-faq-group header p { margin: 3px 0 0; color: var(--ink-dim); font-size: 11px; }
.support-faq-list { display: flex; flex-direction: column; gap: 8px; }
.support-faq-item {
  overflow: hidden; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(5,8,16,.64); transition: border-color .18s var(--ease), background .18s var(--ease);
}
.support-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 17px; cursor: pointer; list-style: none;
  color: var(--steel-hi); font-size: 13.5px; font-weight: 650; line-height: 1.45;
}
.support-faq-item summary::-webkit-details-marker { display: none; }
.support-faq-item summary::after {
  content: "+"; flex: 0 0 auto; color: var(--ink-dim);
  font-size: 20px; font-weight: 400; line-height: 1;
  transition: transform .18s var(--ease), color .18s var(--ease);
}
.support-faq-item[open] { border-color: rgba(77,184,255,.30); background: rgba(10,18,32,.88); }
.support-faq-item[open] summary { color: var(--kryo); }
.support-faq-item[open] summary::after { color: var(--kryo); transform: rotate(45deg); }
.support-faq-answer {
  padding: 0 17px 17px; color: var(--ink-mut);
  font-size: 13px; line-height: 1.7;
}
.faq-contact-panel {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px;
  margin-top: 28px; padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(77,184,255,.20); border-radius: 18px;
  background: linear-gradient(120deg, rgba(77,184,255,.10), rgba(180,103,255,.055) 75%, rgba(11,17,32,.92));
}
.faq-contact-label {
  display: block; margin-bottom: 10px; color: var(--kryo);
  font: 700 10px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase;
}
.faq-contact-panel h2 { max-width: 690px; margin: 0; color: var(--steel-hi); font-size: clamp(27px, 4vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
.faq-contact-panel p { max-width: 720px; margin: 15px 0 0; color: var(--ink-mut); font-size: 14px; line-height: 1.7; }
.faq-contact-actions { display: flex; flex-direction: column; gap: 10px; min-width: 180px; }
.faq-contact-actions .btn { justify-content: center; }
.faq-footer .footer-bar nav { display: flex; gap: 18px; }
.faq-footer .footer-bar a { color: var(--ink-dim); text-decoration: none; }
.faq-footer .footer-bar a:hover { color: var(--kryo); }

@media (max-width: 1080px) {
  .site-header-v2 .site-nav, .site-header .site-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-split { grid-template-columns: 1fr; min-height: auto; padding-top: 66px; }
  .hero-split-left { max-width: 760px; }
  .hero-preview { width: min(100%, 720px); transform: none; }
  .shop-toolbar { top: 76px; }
  .faq-topic-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 68px; }
  .site-header-v2, .site-header { min-height: 64px; padding: 11px 16px; gap: 12px; flex-wrap: nowrap; }
  .site-header-v2 .site-brand, .site-header .site-brand { margin-right: auto; }
  .site-header-actions, .site-nav-cta { display: none; }
  .mobile-menu > nav { top: 64px; }
  .status-strip { flex-direction: row; padding: 9px 16px; gap: 18px; }
  .hero-split { padding: 56px 18px 50px; gap: 36px; }
  .hero-split-title { font-size: clamp(43px, 13vw, 60px); }
  .hero-split-sub { font-size: 16px; }
  .hero-split-cta { flex-direction: column; }
  .hero-split-cta .btn { width: 100%; justify-content: center; }
  .hero-split-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-preview-body { grid-template-columns: 1fr; }
  .hero-preview-side { display: none; }
  .prod-wall, .howit, .adv-section, .cheat-showcase { padding-inline: 18px; }
  .prod-wall-grid { grid-template-columns: 1fr; }
  .howit { padding-top: 64px; padding-bottom: 64px; }
  .shop-hero, .shop-toolbar, .shop-content, .pd-wrap, .portal-hero, .portal-flow, .portal-single, .app-shell { width: min(100% - 28px, 1280px); }
  .shop-hero { padding-top: 58px !important; }
  .shop-hero h1 { font-size: clamp(43px, 12.5vw, 58px) !important; }
  .shop-stat-row { grid-template-columns: 1fr 1fr !important; }
  .shop-toolbar { position: static; }
  .portal-hero { min-height: auto; padding-top: 52px !important; }
  .auth-wrap { min-height: auto !important; padding: 52px 14px !important; }
  .auth-card { padding: 30px 22px !important; }
  .public-shell { width: min(100% - 28px, 1120px); padding: 58px 0 64px; }
  .status-overall { align-items: flex-start; flex-direction: column; }
  .compact-footer { margin-inline: 14px; flex-direction: column; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .faq-shell { width: min(100% - 28px, 1180px); padding: 58px 0 70px; }
  .faq-hero { margin-bottom: 34px; text-align: left; }
  .faq-hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .faq-hero > p { margin-left: 0; font-size: 15px; }
  .faq-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }
  .faq-metrics > * { padding: 13px 10px; }
  .faq-topic-nav { display: flex; overflow-x: auto; scrollbar-width: none; }
  .faq-topic-nav::-webkit-scrollbar { display: none; }
  .faq-topic-nav a { flex: 0 0 auto; }
  .support-faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .support-faq-group { padding: 14px; }
  .support-faq-item summary { padding: 15px 14px; }
  .support-faq-answer { padding: 0 14px 16px; }
  .faq-contact-panel { grid-template-columns: 1fr; gap: 24px; }
  .faq-contact-actions { width: 100%; }
  .faq-footer .footer-bar nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .game-marquee-track, .status-item .dot, .hero-eyebrow-v2 .dot { animation: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
