/* ==========================================================================
   Zadeyo Deadlock Cheats — Global Stylesheet
   ========================================================================== */

:root {
  --bg-main: #0B0914;
  --bg-card: #181425;
  --accent-primary: #A855F7;
  --accent-hover: #9333EA;
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;

  --border-color: rgba(168, 85, 247, 0.2);
  --radius-md: 10px;
  --radius-lg: 18px;
  --max-width: 1320px;
  --header-height: 72px;

  /* Showcase panel system (hero + pricing) */
  --backdrop-violet-1: #6d28d9;
  --backdrop-violet-2: #4c1d95;
  --backdrop-violet-3: #1e0a35;
  --panel-bg: #0a0a0e;
  --card-flat-bg: #111116;
  --card-flat-border: #2a2a33;
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* -------------------------------------------------------------------------
   Page transitions (native View Transitions API, enabled via the
   <meta name="view-transition" content="same-origin"> tag in <head>).
   Cross-fades the old page out and the new page in on same-origin
   navigations (Chromium browsers only — unsupported browsers just keep
   their normal, instant navigation with no error). Paired with Lenis
   (see js/main.js initSmoothScroll) for eased in-page scrolling.
   ------------------------------------------------------------------------- */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  background-color: #000000;
  color: var(--text-main);
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Single, continuous black-to-purple gradient backdrop shared by every
   section on every page (fixed to the viewport so it never re-starts or
   changes shade as sections/pages scroll past). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 760px at 12% -8%, rgba(124, 58, 237, 0.38), transparent 60%),
    radial-gradient(900px 700px at 100% 8%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(1100px 850px at 50% 105%, rgba(76, 29, 149, 0.3), transparent 60%),
    linear-gradient(180deg, #050308 0%, #0B0914 38%, #0a0612 68%, #030106 100%);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
   font-weight: bold;
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--text-muted);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

ul {
  padding-left: 1.2em;
  color: var(--text-muted);
}

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

.section {
  padding: 72px 0;
}

/* Sections no longer carry their own block background color — the page
   uses a single continuous gradient (see body::before) so nothing reads
   as a separate purple/black stripe. section--card is kept only as a
   spacing/marker hook for now. */
.section--card {
  background-color: transparent;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading p {
  margin: 0;
}

/* Left-aligned, flush-left page header used at the top of long-form
   Blog/Guide article pages — deliberately NOT centered like
   .section-heading, and capped at the same width as the article text
   column below it so the title/eyebrow/lead line up with the body copy
   instead of floating as a separate centered block. */
.article-header {
  text-align: left;
  max-width: 750px;
  margin: 0 0 48px;
}

.article-header p {
  margin: 0;
}

.article-header .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-header .eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: var(--accent-primary);
}

.text-center {
  text-align: center;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--text-main);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-primary);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: rgba(168, 85, 247, 0.12);
  color: var(--text-main);
}

.btn-discord {
  background-color: #5865F2;
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
  background-color: #4752C4;
  color: var(--text-main);
}

.btn-discord svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.cta-row.center {
  justify-content: center;
}

/* Wraps a purchase button together with its small reassurance note below
   it, so the note tracks just that one button instead of stretching or
   centering under the whole .cta-row (which may also hold an unrelated
   secondary button). */
.btn-note-wrap {
  display: flex;
  flex-direction: column;
}

.cta-row.center .btn-note-wrap {
  align-items: center;
}

.buy-note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

/* -------------------------------------------------------------------------
   Top purchase strip
   ------------------------------------------------------------------------- */
.top-strip {
  background-color: var(--accent-hover);
  color: var(--text-main);
  text-align: center;
  font-size: 0.88rem;
  padding: 8px 16px;
}

.top-strip a {
  color: var(--text-main);
  font-weight: 800;
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 9, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: var(--header-height);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
}

.brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  image-rendering: auto;
}

.brand:hover {
  color: var(--text-main);
}

.nav-links {
  /* Absolutely centered on the header's true midpoint (not just the gap
     between .brand and .nav-cta), so an unevenly-weighted right-side
     cluster (Discord button + language switcher + Purchase button)
     doesn't visually drag the links off-center. */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text-main);
}

/* Wraps .nav-links + .nav-cta together. On desktop it's transparent to
   layout (display: contents) so .nav-links stays truly centered and
   .nav-cta stays pinned right, exactly as if this wrapper didn't exist.
   On mobile it becomes the single dropdown panel — see the 860px
   breakpoint below — so nav links, Discord, language and Purchase Now
   all live in one scrollable menu instead of squeezing into one row. */
.nav-menu {
  display: contents;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Nav Discord icon button
   ------------------------------------------------------------------------- */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(88, 101, 242, 0.14);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #5865F2;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.nav-icon-btn:hover {
  background-color: #5865F2;
  border-color: #5865F2;
  color: var(--text-main);
  transform: translateY(-2px);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

/* -------------------------------------------------------------------------
   Nav language switcher
   ------------------------------------------------------------------------- */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.14), rgba(168, 85, 247, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.26), rgba(168, 85, 247, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 3px rgba(168, 85, 247, 0.14);
}

.lang-switcher-globe {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.lang-switcher-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher-chevron {
  transform: rotate(180deg);
}

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 372px;
  padding: 16px;
  background-color: #14101f;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 20px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lang-switcher-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background-color: #14101f;
  border-left: 1px solid rgba(168, 85, 247, 0.28);
  border-top: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
}

.lang-switcher.is-open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-switcher-menu-title {
  margin: 0 0 12px;
  padding: 0 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-height: 320px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0 2px;
}

.lang-switcher-menu-list::-webkit-scrollbar {
  width: 6px;
}

.lang-switcher-menu-list::-webkit-scrollbar-track {
  background: transparent;
}

.lang-switcher-menu-list::-webkit-scrollbar-thumb {
  background-color: rgba(168, 85, 247, 0.35);
  border-radius: 999px;
}

.lang-switcher-menu-footnote {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background-color: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.3);
  outline: none;
  transform: translateY(-1px);
}

.lang-flag {
  flex-shrink: 0;
  width: 22px;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
}

.lang-name {
  flex: 1;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent-primary);
  visibility: hidden;
}

.lang-option[aria-selected="true"] {
  background-color: rgba(168, 85, 247, 0.16);
  border-color: rgba(168, 85, 247, 0.4);
}

.lang-option[aria-selected="true"] .lang-check {
  visibility: visible;
}

.lang-option[aria-selected="true"] .lang-name {
  color: var(--accent-primary);
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   Google Website Translator — the actual widget is pushed off-screen and
   fully driven by the custom .lang-switcher UI above; these overrides
   suppress Google's own banner/tooltip chrome so nothing but our own
   dropdown is ever visible to visitors.
   ------------------------------------------------------------------------- */
.google-translate-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-gadget-icon {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

body {
  top: 0 !important;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(11, 9, 20, 0.55) 0%, rgba(11, 9, 20, 0.75) 55%, rgba(11, 9, 20, 1) 100%),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-main);
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  background-color: rgba(168, 85, 247, 0.14);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------
   Video module — a big cinematic panel modeled after a promo-poster style
   video player: bold headline + "live preview" pill burned into the
   bottom-left of the frame over a purple gradient wash, a persistent
   mute toggle in the bottom-right corner, and a small tracked caption
   underneath. The headline/pill/gradient live *inside* .video-play-overlay
   so they fade out together with the play button once playback starts.
   ------------------------------------------------------------------------- */
.video-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.32);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(168, 85, 247, 0.16);
  background-color: #000;
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.video-play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 5, 14, 0.88) 0%, rgba(46, 12, 66, 0.58) 42%, rgba(88, 28, 135, 0.22) 72%, rgba(88, 28, 135, 0.02) 100%),
    linear-gradient(0deg, rgba(5, 3, 8, 0.55) 0%, rgba(5, 3, 8, 0) 40%);
}

.video-overlay-content {
  position: absolute;
  left: 32px;
  bottom: 28px;
  right: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.video-overlay-headline {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.video-overlay-sub {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-main);
}

.video-overlay-sub em {
  font-style: italic;
  font-weight: 700;
  color: #e9a8ff;
}

.video-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(5, 3, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f43f5e;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.3);
  animation: liveDotPulse 1.6s infinite;
}

@keyframes liveDotPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.play-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6), 0 10px 40px rgba(168, 85, 247, 0.5);
  animation: pulse 2.2s infinite;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-play-overlay:hover .play-button {
  background-color: var(--accent-hover);
  transform: scale(1.06);
}

.play-button svg {
  width: 30px;
  height: 30px;
  fill: var(--text-main);
  margin-left: 4px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.55), 0 10px 40px rgba(168, 85, 247, 0.5);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(168, 85, 247, 0), 0 10px 40px rgba(168, 85, 247, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0), 0 10px 40px rgba(168, 85, 247, 0.5);
  }
}

.video-mute-toggle {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(5, 3, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.video-mute-toggle:hover {
  background: rgba(168, 85, 247, 0.4);
  border-color: var(--accent-primary);
  transform: scale(1.06);
}

.video-mute-toggle svg {
  width: 18px;
  height: 18px;
}

.video-mute-toggle .icon-muted {
  display: none;
}

.video-mute-toggle[aria-pressed="true"] .icon-unmuted {
  display: none;
}

.video-mute-toggle[aria-pressed="true"] .icon-muted {
  display: block;
}

.video-caption {
  max-width: 1100px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   Cards / Grids
   ------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

/* -------------------------------------------------------------------------
   Tilted cards — a vanilla JS/CSS recreation of a mouse-tracked 3D tilt +
   spring-settle effect (no React/framer-motion dependency; this project is
   a static, buildless site — see js/main.js `initTiltCards`). Currently
   applied to the Home page "Product Types" cards. `.tilt-card`'s transform
   is driven entirely by JS on pointer devices; `.card:hover`'s translateY
   above is the no-JS/touch fallback and is naturally overridden by the
   inline transform once the tilt script takes over on mousemove.
   ------------------------------------------------------------------------- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  /* Guaranteed fallback: a fixed, CSS-only tilt on plain :hover so the
     card visibly reacts even if JS hasn't taken over yet (or, on a device
     where it never does). js/main.js strips "transform" out of this
     transition list on mouseenter so the JS spring can drive crisp,
     un-smoothed per-frame updates once the cursor-tracking effect is live. */
  transition: transform 0.3s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(900px) rotateX(6deg) rotateY(-8deg) scale(1.04);
  border-color: var(--accent-primary);
}

.tilt-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--tilt-x, 50%) var(--tilt-y, 50%), rgba(168, 85, 247, 0.28), transparent 70%);
  transition: opacity 0.25s ease;
}

.tilt-card.is-tilting {
  border-color: var(--accent-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.tilt-card.is-tilting .tilt-card-glow {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tilt-card-glow {
    display: none;
  }
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(168, 85, 247, 0.14);
  color: var(--accent-primary);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* -------------------------------------------------------------------------
   Customer reviews marquee (Home page, before "Learn More")
   A CSS-only, infinite horizontally-scrolling row of testimonial cards.
   The track holds one visible set of cards plus a duplicate set (wrapped
   in a `display: contents` div so it doesn't disturb the flex layout);
   translating the whole track by exactly -50% loops seamlessly from the
   duplicate back into the original with no visible seam. Pauses on
   hover/focus so it's readable, and disables entirely for users who
   prefer reduced motion.
   ------------------------------------------------------------------------- */
.reviews-section .section-heading {
  margin-bottom: 40px;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding: 6px 0 10px;
  animation: reviews-scroll 48s linear infinite;
}

.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}

.reviews-track-dup {
  display: contents;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 auto;
  width: 320px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1;
}

.review-stars .star {
  color: rgba(255, 255, 255, 0.18);
}

.review-stars .star.filled {
  color: #FBBF24;
}

.review-text {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 22px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-avatar.avatar-c1 { background-color: #A855F7; }
.review-avatar.avatar-c2 { background-color: #14B8A6; }
.review-avatar.avatar-c3 { background-color: #F59E0B; }
.review-avatar.avatar-c4 { background-color: #EC4899; }
.review-avatar.avatar-c5 { background-color: #3B82F6; }

.review-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
}

.review-author-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-discord-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.reviews-discord-note svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.reviews-discord-note strong {
  color: var(--text-main);
}

.reviews-discord-note a {
  color: var(--accent-primary);
  font-weight: 600;
  white-space: nowrap;
}

.reviews-discord-note a:hover {
  color: var(--accent-hover);
}

@media (max-width: 640px) {
  .review-card {
    width: 260px;
    padding: 20px;
  }

  .reviews-discord-note {
    flex-wrap: wrap;
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

/* -------------------------------------------------------------------------
   Feature list (money page)
   ------------------------------------------------------------------------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-main);
  font-weight: 600;
}

.feature-list li::before {
  content: "\2713";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(168, 85, 247, 0.18);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-list .muted {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   Screenshot preview gallery
   ------------------------------------------------------------------------- */
.preview-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.preview-card figcaption {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* -------------------------------------------------------------------------
   Pricing / plan badges
   ------------------------------------------------------------------------- */
.plan-card {
  position: relative;
  text-align: center;
}

.plan-card.is-popular {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 1px var(--accent-primary), 0 20px 50px rgba(168, 85, 247, 0.25);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-primary);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 10px 0 4px;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   Showcase panel system — shared "rounded dark panel" wrapper used by the
   redesigned hero and the redesigned pricing section. The outer wrapper no
   longer paints its own distinct background — the page's single continuous
   gradient (body::before) already shows through, so nothing reads as a
   separate purple/black block.
   ------------------------------------------------------------------------- */
.showcase-outer {
  position: relative;
  padding: 50px 16px;
}

.showcase-panel {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 28px;
  background-color: var(--panel-bg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.showcase-panel--pricing {
  max-width: 1400px;
  padding: 64px 56px;
}

/* ---------------------------- Hero panel ---------------------------- */
.hero-panel {
  padding: 0;
}

.hero-panel::before {
  content: none;
}

.hero-panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55) saturate(1.15) blur(1px);
  transform: scale(1.03);
}

.hero-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 520px at 10% 10%, rgba(168, 85, 247, 0.4), transparent 60%),
    linear-gradient(165deg, rgba(15, 6, 28, 0.5) 0%, rgba(9, 5, 17, 0.8) 55%, rgba(5, 3, 8, 0.96) 100%);
}

.hero-panel-content {
  position: relative;
  z-index: 1;
  padding: 68px 56px 84px;
}

.hero-panel-content h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.14;
  margin-bottom: 18px;
}

.hero-panel-content .accent-text {
  color: var(--accent-primary);
}

.hero-panel-content .lead {
  color: #d8d5e0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.hero-stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-number {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  max-width: 100%;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  background-color: rgba(10, 10, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-visual-pill span {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-visual-pill-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  color: var(--text-main);
}

.hero-visual-pill-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
}

/* -------------------------------------------------------------------------
   Pricing showcase — glass/gradient pricing cards
   ------------------------------------------------------------------------- */
.pricing-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Two-tier layout (Monthly / Lifetime): keep cards at a comfortable,
   card-shaped width instead of stretching them across the full 3-column
   track — capped and centered rather than spanning the whole panel. */
.pricing-showcase-grid--two {
  grid-template-columns: repeat(2, minmax(0, 380px));
  max-width: 820px;
  margin: 0 auto;
  justify-content: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 20px;
  background-color: var(--card-flat-bg);
  border: 1px solid var(--card-flat-border);
}

.price-card.is-featured {
  background: linear-gradient(160deg, #7c3aed, var(--accent-primary));
  border: none;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.45);
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #7c3aed;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.price-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.price-card.is-featured .price-card-desc {
  color: #ede9fe;
}

.price-card-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 24px 0 22px;
  line-height: 1;
}

.price-card-price .period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card.is-featured .price-card-price .period {
  color: #ede9fe;
}

.price-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 13px;
  flex: 1;
}

.price-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-card.is-featured .price-feature-list li {
  color: #ffffff;
}

.price-feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: #a5b4fc;
}

.price-card.is-featured .price-feature-list li svg {
  color: #ffffff;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
  border: 1.5px solid var(--accent-primary);
  color: #c084fc;
  background-color: transparent;
  margin-top: auto;
}

.price-cta:hover {
  transform: translateY(-2px);
  background-color: rgba(168, 85, 247, 0.12);
  color: var(--text-main);
}

.price-cta.is-inverted {
  border: none;
  background-color: #ffffff;
  color: #7c3aed;
}

.price-cta.is-inverted:hover {
  background-color: #ede9fe;
  color: #7c3aed;
}

.price-card .buy-note {
  margin-top: 10px;
  text-align: center;
}

.price-card.is-featured .buy-note {
  color: #ede9fe;
}

/* -------------------------------------------------------------------------
   FAQ (native details/summary)
   ------------------------------------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--accent-primary);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 18px;
}

/* -------------------------------------------------------------------------
   Comparison table (blog page)
   ------------------------------------------------------------------------- */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background-color: var(--bg-card);
}

table.compare th,
table.compare td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-muted);
}

table.compare th {
  color: var(--text-main);
  font-weight: 800;
  background-color: rgba(168, 85, 247, 0.08);
}

table.compare td:first-child,
table.compare th:first-child {
  color: var(--text-main);
  font-weight: 700;
}

table.compare tr:last-child td {
  border-bottom: none;
}

.check-yes {
  color: #4ADE80;
  font-weight: 800;
}

.check-no {
  color: #F87171;
  font-weight: 800;
}

/* -------------------------------------------------------------------------
   Article / prose content (blog & guide pages)
   ------------------------------------------------------------------------- */
/* .prose is intentionally wider than its readable text column: the column
   (headings, paragraphs, lists, callouts, steps) is capped at ~750px for a
   comfortable 65-75 characters per line, while the wrapper itself stays at
   the full container width so wide elements — the comparison table below —
   can use the extra space instead of being squeezed into the text column. */
.prose {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.prose > h2,
.prose > h3,
.prose > p,
.prose > ul,
.prose > .callout,
.prose > .step,
.prose > .cta-row,
.prose > .requirements-card {
  max-width: 1200px;
}

.prose h2,
.prose h3 {
  text-align: left;
}

/* Font size/weight/case intentionally NOT overridden here — h2/h3 inside
   .prose must render with the exact same font styling (size, weight, case)
   as the bare h2/h3 rules used site-wide on Home and Deadlock Cheats, so headings
   look identical across all 4 pages. Only spacing (margins) is adjusted for
   the article's vertical rhythm. */
.prose h2 {
  margin-top: 3.2em;
  margin-bottom: 0.7em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.6em;
}

.prose a {
  font-weight: 700;
  text-decoration: underline;
}

.callout {
  background-color: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* System requirements block: uppercase heading + a dark rounded card
   holding a purple-dot bullet list, per the reference design. */
.requirements-heading {
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.requirements-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 2rem;
}

.requirements-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.requirements-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-main);
}

.requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-primary);
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  color: var(--text-main);
  font-weight: 800;
}

.step-body h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.step-body p {
  margin: 0;
}

/* -------------------------------------------------------------------------
   Breadcrumbs
   ------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 24px;
}

.breadcrumbs a {
  color: var(--text-muted);
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--accent-primary);
}

.breadcrumbs span[aria-current] {
  color: var(--text-main);
}

/* -------------------------------------------------------------------------
   Trust bar
   ------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar span::before {
  content: "\2022";
  color: var(--accent-primary);
}

.trust-bar span:first-child::before {
  content: "";
}

/* -------------------------------------------------------------------------
   Footer — quiet/flat SaaS-style footer: wide brand column (logo + tagline
   + socials), three link columns, a newsletter column, a thin divider, then
   a slim legal/copyright utility row. Intentionally has no glow/gradient
   drama of its own (unlike the hero/pricing showcase panels) — just a
   faint purple-tinted near-black background and a muted text hierarchy.
   Font stays the site's global Inter stack; only weights/sizes are set here.
   ------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(5, 3, 8, 0) 45%),
    #07050d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, 1fr));
  gap: 48px;
  align-items: start;
}

/* Brand block */
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-main);
}

.footer-brand-logo:hover {
  color: var(--text-main);
}

.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-primary);
  flex-shrink: 0;
}

.footer-logo-badge img {
  height: 16px;
  width: auto;
  object-fit: contain;
  image-rendering: auto;
}

.footer-tagline {
  color: #8b8894;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 380px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8894;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text-main);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Link columns — Site / Store / Support */
.footer-col h4 {
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.footer-col ul a {
  color: #8b8894;
  font-size: 0.88rem;
  font-weight: 400;
}

.footer-col ul a:hover {
  color: var(--text-main);
}

/* Newsletter column */
.footer-newsletter h4 {
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.footer-newsletter p {
  color: #8b8894;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 8px 2px;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
  color: #6b6874;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.newsletter-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.newsletter-submit:hover {
  background-color: #ffffff;
  color: #0a0a0e;
  transform: translateY(-1px);
}

.newsletter-submit:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

/* Divider + bottom utility row */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 44px 0 24px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a,
.footer-legal-links span {
  color: #6b6874;
  font-size: 0.8rem;
  font-weight: 400;
}

.footer-legal-links a:hover {
  color: var(--text-main);
}

.footer-copyright {
  color: #6b6874;
  font-size: 0.8rem;
  white-space: nowrap;
}

.disclaimer {
  font-size: 0.78rem;
  color: #6b6874;
  opacity: 0.9;
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .showcase-panel {
    padding: 40px 32px;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-panel-content {
    padding: 52px 32px 64px;
  }

  .hero-panel-content .lead {
    max-width: none;
  }

  .pricing-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  /* Collapsed top bar: just the logo + hamburger. Nav links, Discord,
     language switcher and Purchase Now all move into the single
     slide-down .nav-menu panel (opened via .nav.is-open) instead of
     squeezing into one cramped row. */
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.is-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
  }

  .nav.is-open .nav-links {
    position: static;
    transform: none;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 12px;
    gap: 16px;
    white-space: normal;
  }

  .nav.is-open .nav-cta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 20px 20px;
    gap: 14px;
    border-top: 1px solid var(--border-color);
  }

  .nav.is-open .nav-cta .lang-switcher,
  .nav.is-open .nav-cta .lang-switcher-btn,
  .nav.is-open .nav-cta .btn-primary {
    width: 100%;
  }

  .nav.is-open .nav-cta .lang-switcher-btn,
  .nav.is-open .nav-cta .btn-primary {
    justify-content: center;
    text-align: center;
  }

  .lang-switcher-menu {
    right: auto;
    left: 0;
    width: 100%;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 78vh;
    text-align: left;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .play-button svg {
    width: 22px;
    height: 22px;
  }

  .video-overlay-content {
    left: 18px;
    bottom: 18px;
    right: 66px;
    gap: 12px;
  }

  .video-live-pill {
    padding: 6px 12px;
    font-size: 0.66rem;
  }

  .video-mute-toggle {
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
  }

  .video-mute-toggle svg {
    width: 16px;
    height: 16px;
  }

  .video-caption {
    font-size: 0.7rem;
  }

  table.compare {
    min-width: 560px;
  }

  .showcase-outer {
    padding: 32px 12px;
  }

  .showcase-panel {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .hero-panel {
    padding: 0;
    border-radius: 20px;
  }

  .hero-panel-content {
    padding: 40px 22px 48px;
  }

  .hero-panel-content h1 {
    text-align: left;
  }

  .hero-stat-row {
    gap: 28px;
  }

  .hero-visual-pill {
    padding: 8px 8px 8px 16px;
  }

  .hero-visual-pill span {
    font-size: 0.8rem;
  }

  .price-card {
    padding: 28px 24px;
  }
}

