:root {
  color-scheme: dark;
  --topbar-h: 84px;
  --bg0: #05070d;
  --bg1: #0b1022;
  --panel: rgba(14, 19, 33, 0.78);
  --panel2: rgba(10, 14, 25, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7ff;
  --muted: #9aa6c4;
  --gold0: #fffef5;
  --gold1: #f5c451;
  --gold2: #d49c12;
  --neon: #00d4ff;
  --violet: #8e7dff;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  --v: "1.0.4";
}

@media (min-width: 1400px) {
  html { font-size: 19px; }
}

@media (min-width: 2200px) {
  html { font-size: 22px; }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(245, 196, 81, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(112, 225, 255, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.glow-text-gold {
  color: var(--gold1);
  text-shadow: 0 0 12px rgba(245, 196, 81, 0.4);
}

.glow-text-blue {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  position: relative;
  overflow-x: hidden;
  padding-top: var(--topbar-h);
}

.aura {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.aura.left {
  top: 5rem;
  left: -12rem;
  background: rgba(245, 196, 81, 0.18);
}

.aura.right {
  top: 14rem;
  right: -10rem;
  background: rgba(112, 225, 255, 0.14);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(5, 7, 13, 0.75);
  border-bottom: 1px solid rgba(245, 196, 81, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.topbar-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 34px rgba(245, 196, 81, 0.14);
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  line-height: 1.1;
}

.brand-sub {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: rgba(244, 247, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.nav a:hover {
  color: rgba(244, 247, 255, 0.96);
}

.nav a.active {
  color: rgba(244, 247, 255, 0.98);
  text-shadow: 0 0 22px rgba(112, 225, 255, 0.12);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, filter 160ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(112, 225, 255, 0.24);
}

.btn:hover::after {
  opacity: 1;
  filter: blur(20px);
}

.w-full { width: 100%; }

.btn.primary {
  border: none;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold0) 0%, var(--gold1) 42%, var(--gold2) 100%);
  box-shadow:
    0 0 0 1px rgba(245, 196, 81, 0.26),
    0 18px 50px rgba(245, 196, 81, 0.26),
    0 0 24px rgba(112, 225, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn.primary:hover {
  box-shadow:
    0 0 0 1px rgba(245, 196, 81, 0.36),
    0 18px 60px rgba(245, 196, 81, 0.32),
    0 0 30px rgba(112, 225, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  filter: saturate(1.1) brightness(1.1);
}

/* Neon Glow Extras */
.glow-neon-gold {
  border-color: rgba(245, 196, 81, 0.3) !important;
  color: var(--gold1) !important;
  text-shadow: 0 0 8px rgba(245, 196, 81, 0.4);
}

.glow-neon-gold:hover {
  border-color: var(--gold1) !important;
  box-shadow: 0 0 15px rgba(245, 196, 81, 0.3) !important;
  background: rgba(245, 196, 81, 0.08) !important;
}

.glow-neon-blue {
  border-color: rgba(0, 212, 255, 0.3) !important;
  color: var(--neon) !important;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.glow-neon-blue:hover {
  border-color: var(--neon) !important;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important;
  background: rgba(0, 212, 255, 0.08) !important;
}

.neon-pulse {
  animation: neon-pulse 2s infinite ease-in-out;
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(245, 196, 81, 0.26), 0 0 10px rgba(245, 196, 81, 0.2); }
  50% { box-shadow: 0 18px 60px rgba(245, 196, 81, 0.4), 0 0 20px rgba(245, 196, 81, 0.4); filter: brightness(1.1); }
}

.logout-btn {
  background: rgba(255, 100, 100, 0.05) !important;
  border-color: rgba(255, 100, 100, 0.2) !important;
  color: rgba(255, 150, 150, 0.8) !important;
}

.logout-btn:hover {
  background: rgba(255, 50, 50, 0.15) !important;
  border-color: rgba(255, 50, 50, 0.4) !important;
  box-shadow: 0 0 15px rgba(255, 50, 50, 0.2) !important;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 54px 0 38px;
  display: grid;
  gap: 22px;
}

.hero-immersive {
  position: relative;
  min-height: 86vh;
  padding: 78px 0 82px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(112, 225, 255, 0.22), transparent 32%),
    radial-gradient(circle at 72% 24%, rgba(138, 125, 255, 0.2), transparent 36%),
    radial-gradient(circle at 50% 80%, rgba(245, 196, 81, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.9), rgba(5, 6, 12, 0.95));
  mask-image: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.9), transparent 75%);
  z-index: 0;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 8px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 22%, rgba(255, 255, 255, 0.9), transparent 60%),
    radial-gradient(2px 2px at 82% 18%, rgba(112, 225, 255, 0.9), transparent 60%),
    radial-gradient(2px 2px at 64% 68%, rgba(138, 125, 255, 0.9), transparent 60%),
    radial-gradient(2px 2px at 22% 72%, rgba(245, 196, 81, 0.9), transparent 60%);
  animation: drift 16s linear infinite;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6.2rem);
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(245, 196, 81, 0.16), 0 0 70px rgba(112, 225, 255, 0.1);
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  color: rgba(244, 247, 255, 0.9);
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52rem;
}

.panel {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  position: relative;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  border: 1px solid rgba(112, 225, 255, 0.16);
  box-shadow:
    0 0 40px rgba(112, 225, 255, 0.18),
    0 0 64px rgba(138, 125, 255, 0.12),
    inset 0 0 22px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  opacity: 0.8;
}

.hero-visual {
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.voxel-stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(120, 210, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #0b142a 0%, #112243 48%, #0a101d 100%);
}

.voxel-layer {
  position: absolute;
  inset-inline: -4%;
  height: 28%;
  transform: skewY(-8deg);
  background-size: 84px 84px, 84px 84px;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.voxel-layer.back {
  bottom: 24%;
  background-color: rgba(48, 105, 72, 0.85);
}

.voxel-layer.mid {
  bottom: 12%;
  height: 22%;
  background-color: rgba(141, 112, 56, 0.95);
}

.voxel-layer.front {
  bottom: -3%;
  height: 20%;
  background-color: rgba(64, 78, 109, 1);
}

.voxel-sun {
  position: absolute;
  top: 20%;
  right: 13%;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fff6bf 0%, #f5c451 45%, rgba(245, 196, 81, 0) 72%);
  filter: blur(6px);
  box-shadow: 0 0 80px rgba(245, 196, 81, 0.35);
}

.section {
  padding: 34px 0 0;
  scroll-margin-top: calc(var(--topbar-h) + 14px);
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.05;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 12px;
  color: var(--gold1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 255, 0.86);
  font-size: 0.9rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold0), var(--gold2));
  box-shadow: 0 0 8px rgba(245, 196, 81, 0.6);
}

.icon-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(112, 225, 255, 0.14), rgba(138, 125, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.footer {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 13, 0.74);
  backdrop-filter: blur(18px);
}

.footer-inner {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.tiny {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.7);
}

.form {
  display: grid;
  gap: 10px;
}

.input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 6, 12, 0.55);
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(112, 225, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(112, 225, 255, 0.08);
}

.notice {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 12px;
  color: rgba(244, 247, 255, 0.8);
}

.notice.ok {
  border-color: rgba(102, 255, 170, 0.18);
}

.notice.bad {
  border-color: rgba(255, 116, 140, 0.18);
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.scroll-row > * {
  scroll-snap-align: start;
}

.store-rail {
  display: grid;
  gap: 10px;
}

.store-rail .card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}

.store-rail img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.store-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(112, 225, 255, 0.16);
  background: linear-gradient(135deg, rgba(112, 225, 255, 0.08), rgba(138, 125, 255, 0.06));
}

.gc-chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
}

.gc-chatbot-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(112, 225, 255, 0.22), rgba(138, 125, 255, 0.12));
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
}

.gc-chatbot-fab img {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.gc-chatbot-panel {
  width: min(420px, calc(100vw - 36px));
  height: min(560px, calc(100vh - 110px));
  margin-bottom: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 13, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  grid-template-rows: auto 1fr auto;
}

.gc-chatbot-panel.open {
  display: grid;
  animation: gc-in 180ms ease-out;
}

.gc-chatbot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(245, 196, 81, 0.08), rgba(112, 225, 255, 0.06));
}

.gc-chatbot-title {
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gc-chatbot-sub {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.gc-chatbot-close {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 247, 255, 0.8);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.72rem;
}

.gc-chatbot-scroll {
  padding: 14px 14px;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.gc-bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 247, 255, 0.92);
  line-height: 1.6;
  white-space: pre-wrap;
}

.gc-bubble.user {
  margin-left: auto;
  border-color: rgba(245, 196, 81, 0.16);
  background: rgba(245, 196, 81, 0.08);
}

.gc-bubble.assistant {
  margin-right: auto;
  border-color: rgba(112, 225, 255, 0.16);
  background: rgba(112, 225, 255, 0.08);
}

.gc-chatbot-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.gc-chatbot-input input {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 6, 12, 0.55);
  color: var(--text);
  outline: none;
}

.gc-chatbot-input input:focus {
  border-color: rgba(112, 225, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(112, 225, 255, 0.08);
}

/* HOME V2 */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 320ms ease;
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-hero {
  position: relative;
  min-height: calc(92vh - var(--topbar-h));
  display: grid;
  align-items: center;
  padding: 44px 0 38px;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(112, 225, 255, 0.18), transparent 40%),
    radial-gradient(circle at 86% 22%, rgba(138, 125, 255, 0.18), transparent 44%),
    radial-gradient(circle at 55% 78%, rgba(245, 196, 81, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.88), rgba(5, 6, 12, 0.96));
  z-index: 0;
}

.home-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.08;
  transform: perspective(900px) rotateX(58deg) translateY(12%);
  transform-origin: center;
  z-index: 1;
  pointer-events: none;
}

.home-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;
}

.home-hero-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(112, 225, 255, 0.16), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(138, 125, 255, 0.16), transparent 48%),
    radial-gradient(circle at 50% 75%, rgba(245, 196, 81, 0.14), transparent 52%);
  filter: blur(40px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.home-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
}

.home-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(112, 225, 255, 0.9);
  box-shadow: 0 0 14px rgba(112, 225, 255, 0.55);
}

.home-title {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(245, 196, 81, 0.16),
    0 0 64px rgba(112, 225, 255, 0.12),
    0 0 90px rgba(138, 125, 255, 0.09);
}

.home-tagline {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  color: rgba(244, 247, 255, 0.92);
}

.home-tagline-accent {
  color: rgba(112, 225, 255, 0.95);
  text-shadow: 0 0 22px rgba(112, 225, 255, 0.22);
}

.home-hero-actions {
  margin-top: 6px;
  flex-wrap: wrap;
}

.home-fastfacts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 6px;
}

.home-fact {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px;
}

.home-fact.best {
  border-color: rgba(245, 196, 81, 0.28);
  box-shadow:
    0 0 0 1px rgba(245, 196, 81, 0.12),
    0 0 34px rgba(245, 196, 81, 0.12),
    0 0 44px rgba(112, 225, 255, 0.08);
}

.home-fact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-fact-main {
  margin-top: 10px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-fact-sub {
  font-size: 0.9rem;
  color: rgba(244, 247, 255, 0.7);
  letter-spacing: 0.12em;
  margin-left: 6px;
}

.home-hero-visual {
  display: none;
}

.home-visual-frame {
  padding: 14px;
  border-radius: 26px;
}

.home-visual-top,
.home-visual-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.home-visual-screen {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 6, 12, 0.6);
  position: relative;
  min-height: 320px;
}

.home-visual-voxel {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 24%, rgba(112, 225, 255, 0.16), transparent 34%),
    radial-gradient(circle at 70% 26%, rgba(138, 125, 255, 0.16), transparent 38%),
    radial-gradient(circle at 55% 80%, rgba(245, 196, 81, 0.14), transparent 42%),
    linear-gradient(180deg, #0b142a 0%, #112243 48%, #0a101d 100%);
}

.home-visual-voxel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
}

.home-visual-hud {
  position: absolute;
  inset: 12px 12px auto auto;
  display: grid;
  gap: 8px;
}

.home-hud-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 247, 255, 0.88);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.home-section-head {
  display: grid;
  gap: 6px;
  max-width: 62rem;
}

.home-pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.home-price-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.home-price-card.best {
  border-color: rgba(245, 196, 81, 0.3);
  background: linear-gradient(180deg, rgba(245, 196, 81, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 0 0 1px rgba(245, 196, 81, 0.14),
    0 0 40px rgba(245, 196, 81, 0.16),
    0 0 46px rgba(112, 225, 255, 0.08);
}

.home-price-head {
  display: grid;
  gap: 10px;
}

.home-price {
  font-size: 1.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-price-sub {
  font-size: 0.95rem;
  color: rgba(244, 247, 255, 0.7);
  letter-spacing: 0.12em;
}

.home-list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
  color: rgba(244, 247, 255, 0.86);
  line-height: 1.6;
}

.home-premium-note {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245, 196, 81, 0.16);
  background: rgba(245, 196, 81, 0.07);
  color: rgba(244, 247, 255, 0.88);
}

.home-carousel {
  margin-top: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.home-carousel-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-tab {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 247, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(112, 225, 255, 0.22);
  box-shadow: 0 0 20px rgba(112, 225, 255, 0.16);
}

.home-tab.is-active {
  color: rgba(10, 12, 18, 0.95);
  border: none;
  background: linear-gradient(135deg, rgba(112, 225, 255, 0.85), rgba(138, 125, 255, 0.72));
}

.home-carousel-viewport {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(4, 6, 12, 0.55);
}

.home-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
}

.home-slide.is-active {
  display: grid;
}

.home-slide-media {
  min-height: 240px;
  background:
    radial-gradient(circle at 25% 25%, rgba(112, 225, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  position: relative;
}

.home-slide-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.25;
}

.home-slide-media.build {
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 196, 81, 0.18), transparent 42%),
    radial-gradient(circle at 70% 25%, rgba(112, 225, 255, 0.14), transparent 46%),
    linear-gradient(180deg, #0e1731 0%, #0a0f1b 100%);
}

.home-slide-media.explore {
  background:
    radial-gradient(circle at 25% 25%, rgba(112, 225, 255, 0.18), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(138, 125, 255, 0.16), transparent 46%),
    linear-gradient(180deg, #0b2030 0%, #070b12 100%);
}

.home-slide-media.multi {
  background:
    radial-gradient(circle at 35% 30%, rgba(138, 125, 255, 0.18), transparent 44%),
    radial-gradient(circle at 72% 26%, rgba(245, 196, 81, 0.12), transparent 52%),
    linear-gradient(180deg, #13153a 0%, #070b12 100%);
}

.home-slide-media.create {
  background:
    radial-gradient(circle at 22% 28%, rgba(112, 225, 255, 0.18), transparent 46%),
    radial-gradient(circle at 68% 26%, rgba(245, 196, 81, 0.14), transparent 52%),
    linear-gradient(180deg, #0c1226 0%, #070b12 100%);
}

.home-slide-copy {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.home-slide-title {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-carousel-controls {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.home-store-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-store-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.home-store-list {
  display: grid;
  gap: 10px;
}

.home-store-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-store-item:hover {
  transform: translateY(-1px);
  border-color: rgba(112, 225, 255, 0.18);
  box-shadow: 0 0 22px rgba(112, 225, 255, 0.12);
}

.home-store-item img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.home-store-name {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.home-store-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-store-cta {
  color: rgba(112, 225, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
}

.home-download-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-stat {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes gc-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 980px) {
  .nav {
    display: inline-flex;
  }

  .home-hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 18px;
  }

  .home-hero-visual {
    display: block;
  }

  .home-fastfacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-carousel-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-slide.is-active {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .home-slide-media {
    min-height: 320px;
  }

  .home-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.home-list li.disabled {
  text-decoration: line-through;
  opacity: 0.5;
}

.border-neon-gold {
  border-color: rgba(245, 196, 81, 0.4) !important;
  box-shadow: 0 0 15px rgba(245, 196, 81, 0.15);
}

/* ================================================
   PRICING CAROUSEL
   ================================================ */

.pricing-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0 48px;
}

.pricing-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.pricing-carousel-track::-webkit-scrollbar {
  display: none;
}

.pricing-slide {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: start;
  min-width: 280px;
  max-width: 400px;
}

@media (min-width: 768px) {
  .pricing-carousel-wrapper {
    padding: 0 56px;
  }
  .pricing-slide {
    flex: 0 0 calc(33.333% - 12px);
    max-width: none;
  }
}

.pricing-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 7, 13, 0.8);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  backdrop-filter: blur(12px);
}

.pricing-carousel-btn:hover {
  background: rgba(245, 196, 81, 0.15);
  border-color: rgba(245, 196, 81, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.pricing-carousel-prev { left: 8px; }
.pricing-carousel-next { right: 8px; }

.pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  padding: 0;
}

.pricing-dot.active {
  background: var(--gold1);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(245, 196, 81, 0.4);
}

/* ================================================
   LIGHT THEME
   ================================================ */

body.light-theme {
  --bg0: #f4f5f7;
  --bg1: #e8ecf2;
  --panel: rgba(255, 255, 255, 0.88);
  --panel2: rgba(240, 243, 250, 0.92);
  --line: rgba(0, 0, 0, 0.1);
  --text: #0a0e1a;
  --muted: #4a5572;
  --gold1: #c88a16;
  --gold2: #8b5a09;
  --neon: #006fa8;
  --violet: #5a4abf;
  color-scheme: light;
}

body.light-theme html,
body.light-theme {
  background:
    radial-gradient(circle at top left, rgba(200, 138, 22, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(0, 111, 168, 0.06), transparent 24%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  color: var(--text);
}

body.light-theme .topbar {
  background: rgba(248, 249, 252, 0.88);
  border-bottom-color: rgba(200, 138, 22, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body.light-theme .shell {
  background:
    radial-gradient(circle at top left, rgba(200, 138, 22, 0.06), transparent 30%),
    #f4f5f7;
}

body.light-theme .aura.left {
  background: rgba(200, 138, 22, 0.08);
}

body.light-theme .aura.right {
  background: rgba(0, 111, 168, 0.06);
}

body.light-theme .card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75));
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

body.light-theme .btn:hover {
  border-color: rgba(0, 111, 168, 0.3);
  box-shadow: 0 0 14px rgba(0, 111, 168, 0.12);
}

body.light-theme .btn.primary {
  background: linear-gradient(135deg, #f5c451 0%, #d49c12 60%, #8b5a09 100%);
  color: #1a1200;
}

body.light-theme .glow-neon-blue {
  border-color: rgba(0, 111, 168, 0.3) !important;
  color: var(--neon) !important;
}

body.light-theme .glow-neon-gold {
  border-color: rgba(200, 138, 22, 0.3) !important;
  color: var(--gold1) !important;
}

body.light-theme .badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .input {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

body.light-theme .input:focus {
  border-color: rgba(0, 111, 168, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 111, 168, 0.08);
}

body.light-theme .home-price-card {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .home-price-card.best {
  background: linear-gradient(180deg, rgba(200, 138, 22, 0.08), rgba(255, 255, 255, 0.7));
  border-color: rgba(200, 138, 22, 0.3);
}

body.light-theme .pricing-carousel-wrapper {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .pricing-carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

body.light-theme .home-carousel {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .home-carousel-viewport {
  background: rgba(240, 243, 250, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .home-tab {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text);
}

body.light-theme .home-tab.is-active {
  background: linear-gradient(135deg, rgba(0, 111, 168, 0.75), rgba(90, 74, 191, 0.65));
  color: #fff;
}

body.light-theme .footer {
  background: rgba(220, 225, 235, 0.85);
  border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .home-hero-bg {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 111, 168, 0.1), transparent 40%),
    radial-gradient(circle at 86% 22%, rgba(90, 74, 191, 0.1), transparent 44%),
    radial-gradient(circle at 55% 78%, rgba(200, 138, 22, 0.08), transparent 44%),
    transparent;
}

body.light-theme .cta-strip {
  background: linear-gradient(135deg, rgba(0, 111, 168, 0.06), rgba(90, 74, 191, 0.04));
  border-color: rgba(0, 111, 168, 0.15);
}

body.light-theme .home-store-item {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.07);
}

body.light-theme .home-store-item:hover {
  border-color: rgba(0, 111, 168, 0.2);
  box-shadow: 0 0 18px rgba(0, 111, 168, 0.08);
}

body.light-theme .notice {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

body.light-theme .notice.ok {
  border-color: rgba(22, 160, 90, 0.25);
}

body.light-theme .notice.bad {
  border-color: rgba(200, 40, 60, 0.2);
}

body.light-theme .logout-btn {
  background: rgba(200, 50, 50, 0.04) !important;
  border-color: rgba(200, 50, 50, 0.15) !important;
  color: rgba(180, 50, 50, 0.9) !important;
}

body.light-theme .home-fact {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .home-fact.best {
  border-color: rgba(200, 138, 22, 0.25);
  box-shadow: 0 0 0 1px rgba(200, 138, 22, 0.1), 0 0 30px rgba(200, 138, 22, 0.08);
}

/* ================================================
   STORE CARD ENHANCED
   ================================================ */
.store-full-card:hover {
  transform: translateY(-3px) !important;
}

/* ================================================
   THEME TOGGLE LABEL
   ================================================ */
.theme-toggle::after {
  content: 'Mode';
  position: absolute;
  font-size: 0;
}

.homev2 {
  position: relative;
  z-index: 1;
}

.homev2-announcement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 0 40px;
}

.homev2-announcement-track {
  position: relative;
  min-height: 164px;
}

.homev2-announcement-slide {
  display: none;
  height: 100%;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(245, 196, 81, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(14, 19, 33, 0.88), rgba(10, 14, 25, 0.94));
  box-shadow: var(--shadow);
}

.homev2-announcement-slide.is-active {
  display: block;
}

.homev2-announcement-slide strong {
  display: block;
  margin: 12px 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
}

.homev2-announcement-slide p {
  margin: 0;
  max-width: 62ch;
  color: rgba(244, 247, 255, 0.82);
  line-height: 1.7;
}

.homev2-announcement-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}

.homev2-hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  padding: 42px 40px 28px;
  overflow: hidden;
}

.homev2-hero-backdrop,
.homev2-grid-lines,
.homev2-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.homev2-hero-backdrop {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 196, 81, 0.24), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(0, 212, 255, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(8, 11, 21, 0.18), rgba(4, 7, 14, 0.62));
  border-radius: 36px;
}

.homev2-grid-lines {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 85%);
  opacity: 0.42;
}

.homev2-canvas {
  width: 100%;
  height: 100%;
}

.homev2-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.homev2-copy,
.homev2-stage-shell,
.homev2-pillar,
.homev2-showcase,
.homev2-price,
.homev2-platform,
.homev2-review,
.homev2-final {
  backdrop-filter: blur(18px);
}

.homev2-copy {
  padding: 26px 8px 20px;
}

.homev2-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.homev2-kicker-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 196, 81, 0.8), rgba(0, 212, 255, 0.2));
}

.homev2-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-family: "Arial Black", "Trebuchet MS", "Segoe UI", sans-serif;
}

.homev2-title span {
  display: block;
  max-width: 10.5ch;
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}

.homev2-lead {
  max-width: 52rem;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: rgba(244, 247, 255, 0.88);
}

.homev2-actions {
  margin-top: 26px;
  flex-wrap: wrap;
}

.homev2-stat-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.homev2-stat-tile {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.homev2-stat-tile strong {
  display: block;
  margin: 6px 0 8px;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.homev2-stage-shell {
  height: 100%;
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(11, 15, 27, 0.94), rgba(8, 10, 18, 0.9)),
    radial-gradient(circle at top right, rgba(245, 196, 81, 0.08), transparent 30%);
}

.homev2-stage-top,
.homev2-card-head,
.homev2-card-meta,
.homev2-showcase-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.homev2-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.homev2-card {
  min-height: 148px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.homev2-card strong,
.homev2-price h3,
.homev2-platform strong,
.homev2-pillar h3,
.homev2-review-author {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.12rem;
}

.homev2-card-feature,
.homev2-card-accent {
  grid-column: span 2;
}

.homev2-card-accent {
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.11), rgba(0, 212, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.homev2-heightmap {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  height: 126px;
  align-items: end;
  margin: 18px 0;
}

.homev2-heightmap span {
  display: block;
  min-height: 20px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.95), rgba(245, 196, 81, 0.55));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.16);
}

.homev2-card-meta {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homev2-marquee {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
  padding-bottom: 10px;
}

.homev2-marquee div {
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: rgba(244, 247, 255, 0.82);
}

.homev2-section {
  padding: 60px 40px 0;
}

.homev2-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.homev2-section-head h2,
.homev2-final h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.homev2-pillars,
.homev2-pricing,
.homev2-platforms,
.homev2-reviews {
  display: grid;
  gap: 18px;
}

.homev2-pillars {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.homev2-pillar,
.homev2-showcase,
.homev2-price,
.homev2-platform,
.homev2-review,
.homev2-review-form,
.homev2-final {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.homev2-pillar a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.homev2-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 196, 81, 0.18), rgba(0, 212, 255, 0.1));
  font-size: 1.25rem;
}

.homev2-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.homev2-narrative {
  padding: 10px 2px;
}

.homev2-narrative p {
  max-width: 44rem;
  line-height: 1.8;
  color: rgba(244, 247, 255, 0.84);
}

.homev2-checklist {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.homev2-checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 247, 255, 0.9);
}

.homev2-checklist i,
.homev2-review-stars {
  color: var(--gold1);
}

.homev2-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homev2-showcase-body {
  margin-top: 16px;
}

.homev2-showcase .home-slide {
  display: none;
  min-height: 200px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.homev2-showcase .home-slide.is-active {
  display: block;
}

.homev2-pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homev2-price-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.homev2-price-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(244, 247, 255, 0.88);
}

.homev2-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold1), var(--neon));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.24);
}

.homev2-price-main {
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  transform: translateY(-8px);
}

.homev2-price-value {
  margin: 14px 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.homev2-price-value span {
  font-size: 0.42em;
  letter-spacing: 0;
  color: var(--muted);
}

.homev2-platforms {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homev2-platform {
  display: grid;
  gap: 10px;
  align-content: start;
}

.homev2-platform i {
  font-size: 2rem;
  color: var(--neon);
}

.homev2-reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homev2-review {
  min-height: 220px;
}

.homev2-review p {
  margin: 14px 0 18px;
  line-height: 1.7;
  color: rgba(244, 247, 255, 0.86);
}

.homev2-review-stars {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.homev2-review-form {
  margin-top: 20px;
}

.homev2-form-row {
  margin-top: 14px;
}

.homev2-form-row label {
  display: grid;
  gap: 8px;
}

.homev2-form-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.homev2-final {
  margin: 60px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(245, 196, 81, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

@media (max-width: 1200px) {
  .homev2-announcement {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .homev2-announcement-nav {
    flex-direction: row;
    min-width: 0;
    flex-wrap: wrap;
  }

  .homev2-hero-layout,
  .homev2-split,
  .homev2-pillars,
  .homev2-pricing,
  .homev2-platforms,
  .homev2-reviews {
    grid-template-columns: 1fr;
  }

  .homev2-stage-grid,
  .homev2-card-feature,
  .homev2-card-accent {
    grid-column: auto;
  }

  .homev2-stat-ribbon,
  .homev2-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .homev2-announcement,
  .homev2-hero,
  .homev2-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .homev2-title {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .homev2-stat-ribbon,
  .homev2-marquee {
    grid-template-columns: 1fr;
  }

  .homev2-final {
    margin: 44px 18px 64px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.gc-chatbot-headline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gc-chatbot-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 14px 0;
}

.gc-chatbot-quick .btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.72rem;
}

.gc-chatbot-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(112, 225, 255, 0.24), rgba(245, 196, 81, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  flex: 0 0 auto;
}

.gc-chatbot-pixel {
  position: absolute;
  display: block;
}

.gc-chatbot-pixel.hat {
  inset: 4px 8px auto;
  height: 10px;
  background: #7c5320;
}

.gc-chatbot-pixel.face {
  inset: 14px 10px 10px;
  background: #f4c996;
}

.gc-chatbot-pixel.eye {
  top: 22px;
  width: 5px;
  height: 5px;
  background: #1b2134;
}

.gc-chatbot-pixel.eye.left {
  left: 14px;
}

.gc-chatbot-pixel.eye.right {
  right: 14px;
}

.gc-chatbot-pixel.shirt {
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 10px;
  background: #4aa7ff;
}
