/* ===============================================================
   Arceus X — Landing Page
   Aesthetic: extends the app's own premium mobile-gaming UI into web.
   Glass surfaces, rounded corners, NEO blue-cyan + V5 pink-violet gradients,
   soft glows. Sora + Plus Jakarta Sans.
   =============================================================== */

/* Local subsetted fonts — A-Z, 0-9, basic punctuation only (no Google CDN) */
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/plus-jakarta-sans-400.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/plus-jakarta-sans-500.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/plus-jakarta-sans-600.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/plus-jakarta-sans-700.woff2) format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/sora-500.woff2) format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/sora-600.woff2) format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/sora-700.woff2) format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 800; font-display: swap; src: url(../fonts/sora-800.woff2) format('woff2'); }

/* ============ TOKENS ============ */
:root {
  --lp-bg:        #0a0b14;
  --lp-bg-2:      #0f1020;
  --lp-bg-3:      #161830;

  --lp-card:       rgba(255, 255, 255, 0.04);
  --lp-card-h:     rgba(255, 255, 255, 0.07);
  --lp-card-strong: rgba(255, 255, 255, 0.06);

  --lp-border:     rgba(255, 255, 255, 0.08);
  --lp-border-h:   rgba(255, 255, 255, 0.16);
  --lp-border-glow: rgba(255, 255, 255, 0.12);

  --lp-text:   #ffffff;
  --lp-text-2: rgba(255, 255, 255, 0.72);
  --lp-text-3: rgba(255, 255, 255, 0.5);
  --lp-text-4: rgba(255, 255, 255, 0.35);

  /* Primary brand — blue / cyan (matches the actual app UI) */
  --neo-1: #22d3ee;      /* cyan-400 */
  --neo-2: #0891b2;      /* cyan-600 */
  --neo-gradient: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
  --neo-soft: rgba(34, 211, 238, 0.12);
  --neo-glow: rgba(34, 211, 238, 0.32);

  /* V5 — deeper electric blue (matches V5's premium blue feel) */
  --v5-1: #3b82f6;       /* blue-500 */
  --v5-2: #1d4ed8;       /* blue-700 */
  --v5-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --v5-soft: rgba(59, 130, 246, 0.12);
  --v5-glow: rgba(59, 130, 246, 0.35);

  --ok:    #22c55e;
  --ok-soft: rgba(34, 197, 94, 0.15);
  --warn:  #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.15);

  --display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --body:    'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --container: 1240px;
  --pad-x: 40px;
}
@media (max-width: 1024px) { :root { --pad-x: 32px; } }
@media (max-width: 640px)  { :root { --pad-x: 18px; } }

/* ============ PAGE BASE ============ */
body.is-landing {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--body);
  font-feature-settings: 'cv11', 'ss01';
}
body.is-landing .site-header { display: none; }

body.is-landing main {
  background: var(--lp-bg);
  position: relative;
  overflow: hidden;
}
/* Atmospheric background glows — subtle, page-wide */
body.is-landing main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 5% 0%, rgba(34, 211, 238, 0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 95% 30%, rgba(59, 130, 246, 0.10) 0%, transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body.is-landing main > * { position: relative; z-index: 1; }

body.is-landing h1, body.is-landing h2, body.is-landing h3, body.is-landing h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--lp-text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
body.is-landing p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-text-2);
  margin: 0 0 14px;
}
body.is-landing p:last-child { margin-bottom: 0; }
body.is-landing strong { color: var(--lp-text); font-weight: 600; }
body.is-landing em { font-style: normal; color: var(--lp-text); font-weight: 500; }

.lp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ HEADER ============ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 11, 20, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lp-border);
}
.lp-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.lp-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 20px var(--neo-glow);
}
.lp-brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-text);
  letter-spacing: -0.01em;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--lp-border);
}
.lp-nav a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}
.lp-nav a:hover { color: var(--lp-text); background: rgba(255, 255, 255, 0.05); }

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neo-gradient);
  color: #fff;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px var(--neo-glow);
  transition: transform 0.15s, box-shadow 0.2s;
}
.lp-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--neo-glow);
}

/* mobile hamburger — replaces Get Started on small screens */
.lp-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border-h);
  border-radius: 10px;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
}
.lp-mobile-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.lp-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
.lp-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .lp-header-cta { display: none; }
  .lp-mobile-toggle { display: inline-flex; }
  /* Hide original desktop nav on mobile — JS overlay (#lp-mobile-menu) takes over */
  .lp-nav { display: none; }
}

/* ============ HERO ============ */
.lp-hero {
  position: relative;
  padding: 80px 0 100px;
}
.lp-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-2);
  margin-bottom: 28px;
}
.lp-hero-badge .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neo-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lp-hero-badge .dot svg { width: 12px; height: 12px; }
.lp-hero-badge .sep { color: var(--lp-text-4); margin: 0 4px; }
.lp-hero-badge strong { color: var(--lp-text); }

:root { --hero-title-size: clamp(56px, 7.5vw, 96px); }
.lp-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--hero-title-size);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.lp-hero-prelude {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: calc(var(--hero-title-size) * 0.42);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--lp-text-3);
  margin-bottom: 8px;
}
.lp-hero-title .neo {
  background: var(--neo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero-title .v5 {
  background: var(--v5-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lead {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--lp-text-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.lp-hero-lead .neo-text { color: #22d3ee; font-weight: 600; }
.lp-hero-lead .v5-text  { color: #60a5fa; font-weight: 600; }

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neo-gradient);
  color: #fff !important;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 28px var(--neo-glow);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--neo-glow);
  filter: brightness(1.06);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-text) !important;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1px solid var(--lp-border-h);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--lp-text-3); }

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-hero-avatars { display: flex; }
.lp-hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--lp-bg);
  margin-left: -10px;
  display: inline-block;
}
.lp-hero-avatars span:first-child { margin-left: 0; }
.lp-hero-avatars span:nth-child(1) { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.lp-hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #60a5fa, #1d4ed8); }
.lp-hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #34d399, #06b6d4); }
.lp-hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #818cf8, #3b82f6); }
.lp-hero-trust-text {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--lp-text-3);
}
.lp-hero-trust-text strong { color: var(--lp-text); font-weight: 700; }
.lp-hero-stars {
  display: inline-flex;
  gap: 1px;
  color: #fbbf24;
  margin-right: 4px;
  vertical-align: middle;
}
.lp-hero-stars svg { width: 13px; height: 13px; fill: currentColor; }

/* Hero art */
.lp-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.lp-hero-art::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background:
    radial-gradient(50% 50% at 50% 50%, var(--neo-glow), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.lp-shot-wrap {
  position: relative;
  z-index: 1;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--lp-border-h);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lp-shot-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .lp-hero-art { min-height: 420px; }
  .lp-shot-wrap { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .lp-hero { padding: 50px 0 70px; }
}

/* ============ STATS ============ */
.lp-stats {
  padding: 0 0 80px;
}
.lp-stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-stat {
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-stat:hover {
  background: var(--lp-card-h);
  border-color: var(--lp-border-h);
  transform: translateY(-2px);
}
.lp-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-stat-icon svg { width: 18px; height: 18px; }
.lp-stat-icon.tone-amber { background: var(--warn-soft); color: var(--warn); }
.lp-stat-icon.tone-blue  { background: var(--neo-soft); color: #22d3ee; }
.lp-stat-icon.tone-pink  { background: rgba(59, 130, 246, 0.14); color: #60a5fa; }
.lp-stat-icon.tone-green { background: var(--ok-soft); color: var(--ok); }
.lp-stat-icon.tone-cyan  { background: var(--neo-soft); color: #22d3ee; }
.lp-stat-icon.tone-deep  { background: var(--v5-soft); color: #60a5fa; }

.lp-stat-val {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin-bottom: 4px;
  font-feature-settings: 'tnum';
}
.lp-stat-label {
  font-family: var(--body);
  font-size: 13px;
  color: var(--lp-text-3);
}

@media (max-width: 820px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SECTION SCAFFOLD ============ */
.lp-section {
  position: relative;
  padding: 100px 0;
}
.lp-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.lp-section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lp-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: #22d3ee;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 18px;
}
.lp-eyebrow.tone-pink {
  color: #60a5fa;
  background: var(--v5-soft);
  border-color: rgba(59, 130, 246, 0.3);
}
.lp-section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.lp-section-sub {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--lp-text-2);
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .lp-section { padding: 70px 0; }
  .lp-section-head { margin-bottom: 44px; }
}

/* ============ TWO VERSIONS ============ */
.lp-versions { padding-bottom: 100px; }
.lp-version-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-version {
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.lp-version:hover {
  border-color: var(--lp-border-h);
  background: var(--lp-bg-3);
}

.lp-version-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-version-tier {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  line-height: 1.4;
}
.lp-version--neo .lp-version-tier {
  color: #22d3ee;
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.lp-version--v5 .lp-version-tier {
  color: #60a5fa;
  background: var(--v5-soft);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.lp-version-sub {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--lp-text-2);
  margin: 0;
}

.lp-version-bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--lp-border);
  display: grid;
  gap: 8px;
}
.lp-version-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-text-2);
}
.lp-version-bullets li::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  margin-top: 4px;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-version--neo .lp-version-bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}
.lp-version--v5 .lp-version-bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

@media (max-width: 820px) {
  .lp-version-grid { grid-template-columns: 1fr; }
}

/* ============ FEATURE PILLARS — editorial, no card chrome ============ */
.lp-pillars { display: flex; flex-direction: column; counter-reset: pillar; }
.lp-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 70px 0;
  align-items: center;
  border-top: 1px solid var(--lp-border);
}
.lp-pillar:first-child { border-top: none; padding-top: 0; }
.lp-pillar:last-child  { padding-bottom: 0; }

.lp-pillar--reverse .lp-pillar-fig { order: 2; }
.lp-pillar--reverse .lp-pillar-body { order: 1; }

.lp-pillar-fig {
  margin: 0;
  padding: 0;
  background: none;
  display: flex;
  justify-content: center;
}
.lp-pillar-fig img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--lp-border-h);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.03);
}

.lp-pillar-body {
  padding: 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pillar-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.lp-pillar-meta::before {
  counter-increment: pillar;
  content: counter(pillar, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--lp-text-3);
  letter-spacing: 0.04em;
}
.lp-pillar-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: #22d3ee;
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.lp-pillar-chip.tone-v5 {
  color: #60a5fa;
  background: var(--v5-soft);
  border-color: rgba(59, 130, 246, 0.35);
}
.lp-pillar-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 2px 0 6px;
}
.lp-pillar-body p {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--lp-text-2);
  margin: 0;
}
.lp-pillar-body p + p { margin-top: 10px; }

/* Dual-image pillar (editor) */
.lp-pillar--dual { grid-template-columns: 1fr; gap: 40px; }
.lp-pillar--dual .lp-pillar-body { max-width: 720px; margin: 0 auto; text-align: center; align-items: center; }
.lp-pillar--dual .lp-pillar-meta { justify-content: center; }
.lp-pillar--dual .lp-pillar-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lp-pillar--dual .lp-pillar-fig { flex-direction: column; gap: 12px; }
.lp-pillar--dual .lp-pillar-fig img { max-width: 100%; }
.lp-pillar--dual .lp-pillar-fig figcaption {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--lp-text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 820px) {
  .lp-pillar { grid-template-columns: 1fr; gap: 32px; padding: 50px 0; }
  .lp-pillar--reverse .lp-pillar-fig,
  .lp-pillar--reverse .lp-pillar-body { order: unset; }
  .lp-pillar-fig img { max-width: 100%; }
  .lp-pillar-body { max-width: 100%; }
  .lp-pillar-body h3 { font-size: 26px; }
  .lp-pillar--dual .lp-pillar-figs { grid-template-columns: 1fr; }
}

/* ============ IN-GAME ============ */
.lp-ingame-card {
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.lp-ingame-fig {
  margin: 0;
  padding: 36px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
}
.lp-ingame-fig img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.lp-ingame-list {
  list-style: none;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-ingame-list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-ingame-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--lp-border-h);
}
.lp-ingame-list li strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--lp-text);
  letter-spacing: -0.005em;
}
.lp-ingame-list li span {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-2);
}

@media (max-width: 820px) {
  .lp-ingame-card { grid-template-columns: 1fr; }
  .lp-ingame-fig { padding: 24px; }
  .lp-ingame-list { padding: 18px; }
}

/* ============ HOW TO USE — icon steps ============ */
.lp-howuse-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  counter-reset: stepnum;
}
.lp-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--lp-border);
  counter-increment: stepnum;
}
.lp-step:first-child { padding-top: 4px; }
.lp-step:last-child  { padding-bottom: 4px; border-bottom: none; }

.lp-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #22d3ee;
  position: relative;
}
.lp-step-icon svg { width: 20px; height: 20px; }
.lp-step-icon::after {
  content: counter(stepnum, decimal-leading-zero);
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border-h);
  color: var(--lp-text-2);
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.lp-step p {
  margin: 0;
  padding-top: 12px;
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--lp-text-2);
}
.lp-step p strong { color: var(--lp-text); font-weight: 600; }

@media (max-width: 640px) {
  .lp-howuse-card { padding: 22px 22px; }
  .lp-step { grid-template-columns: 40px 1fr; gap: 14px; padding: 14px 0; }
  .lp-step-icon { width: 40px; height: 40px; }
  .lp-step-icon svg { width: 18px; height: 18px; }
  .lp-step p { font-size: 14.5px; padding-top: 10px; }
}

/* ============ COMPARISON TABLE ============ */
.lp-compare-card {
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
}
.lp-compare-table th {
  text-align: left;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-text);
  border-bottom: 1px solid var(--lp-border);
}
.lp-compare-table th.th-neo {
  background: var(--neo-soft);
  color: #22d3ee;
}
.lp-compare-table th.th-v5 {
  background: var(--v5-soft);
  color: #60a5fa;
}
.lp-compare-table td {
  padding: 16px 28px;
  font-size: 14.5px;
  color: var(--lp-text-2);
  border-bottom: 1px solid var(--lp-border);
}
.lp-compare-table tr:last-child td { border-bottom: none; }
.lp-compare-table tr:hover td { background: rgba(255, 255, 255, 0.03); }
.lp-compare-table td:first-child { color: var(--lp-text); font-weight: 500; }
.lp-compare-table td.no { color: var(--lp-text-3); }
.lp-compare-table td strong { color: var(--lp-text); }

@media (max-width: 820px) {
  .lp-compare-card { border-radius: var(--r-lg); overflow-x: auto; }
  .lp-compare-table { min-width: 600px; }
  .lp-compare-table th, .lp-compare-table td { padding: 14px 18px; font-size: 13.5px; }
}

/* ============ COMPARISON SPLIT (2-column) ============ */
.lp-compare-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-compare-col {
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-xl);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-compare-col::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.lp-compare-col--shared::before { background: var(--neo-gradient); opacity: 0.5; }
.lp-compare-col--v5::before { background: var(--v5-gradient); }
.lp-compare-col--v5 {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, var(--lp-card) 100%);
  border-color: rgba(59, 130, 246, 0.22);
}
.lp-compare-col--v5::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: var(--v5-glow);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.lp-compare-col > * { position: relative; z-index: 1; }

.lp-compare-head { margin-bottom: 22px; }
.lp-compare-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  color: #22d3ee;
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 14px;
}
.lp-compare-pill--v5 {
  color: #60a5fa;
  background: var(--v5-soft);
  border-color: rgba(59, 130, 246, 0.35);
}
.lp-compare-head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.lp-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.lp-compare-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text-2);
}
.lp-compare-list li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background-color: var(--neo-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-compare-list--v5 li::before {
  background-color: var(--v5-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.lp-compare-list li strong { color: var(--lp-text); font-weight: 600; }

@media (max-width: 820px) {
  .lp-compare-split { grid-template-columns: 1fr; gap: 16px; }
  .lp-compare-col { padding: 26px 24px; }
  .lp-compare-head h3 { font-size: 22px; }
}

/* ============ FAQ ============ */
.lp-faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item {
  background: var(--lp-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.lp-faq-item:hover { border-color: var(--lp-border-h); }
.lp-faq-item[open] {
  background: var(--lp-card-h);
  border-color: var(--lp-border-h);
}
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--lp-text);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '';
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s, background-color 0.2s;
}
.lp-faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--neo-1);
}
.lp-faq-item div {
  padding: 0 26px 24px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-2);
}

@media (max-width: 640px) {
  .lp-faq-item summary { padding: 18px 20px; font-size: 15.5px; }
  .lp-faq-item div { padding: 0 20px 20px; font-size: 14.5px; }
}

/* ============ DOWNLOADS — compact horizontal row layout ============ */
.lp-dl-group { margin-bottom: 36px; }
.lp-dl-group:last-of-type { margin-bottom: 0; }
.lp-dl-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.lp-dl-group-head h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-text-2);
}
.lp-tier-neo {
  color: #22d3ee;
  background: var(--neo-soft);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.lp-tier-v5 {
  color: #60a5fa;
  background: var(--v5-soft);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

/* Stack the 3 cards vertically as a list of rows */
body.is-landing .dl-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 8px;
}
body.is-landing .dl-card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: none;
  transition: background 0.15s;
  font-family: var(--body);

  display: grid;
  grid-template-areas: "icon info status btn";
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 16px;
}
body.is-landing .dl-card:hover { background: rgba(255, 255, 255, 0.03); transform: none; }
body.is-landing .dl-card[data-status="updating"] { opacity: 0.55; }

body.is-landing .dl-card-head {
  display: contents;
}

body.is-landing .dl-icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  margin-bottom: 0;
  color: var(--lp-text-2);
}
body.is-landing .dl-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
body.is-landing .dl-icon[data-tone="green"]   { background: rgba(60, 211, 130, 0.10); border-color: rgba(60, 211, 130, 0.25); color: #65d6a4; }
body.is-landing .dl-icon[data-tone="silver"]  { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); color: #f4f4f5; }
body.is-landing .dl-icon[data-tone="vietnam"] { background: rgba(218, 37, 29, 0.12); border-color: rgba(218, 37, 29, 0.32); color: #fbbf24; }

body.is-landing .dl-card-head h4 {
  grid-area: info;
  align-self: end;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--lp-text);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.2;
}

/* Inline meta line: "v2.2.1 · 161 MB · Roblox v2.721.1108" */
body.is-landing .dl-meta {
  grid-area: info;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  border: none;
  margin: 3px 0 0;
  font-family: var(--body);
  font-size: 12px;
  color: var(--lp-text-3);
}
body.is-landing .dl-card-head { grid-row: 1; }
body.is-landing .dl-card-head h4 { grid-row: 1; align-self: center; }
body.is-landing .dl-meta { grid-row: 1; align-self: end; }
/* The grid-area: info conflict — let's use a different approach */
body.is-landing .dl-card {
  grid-template-areas:
    "icon name   status btn"
    "icon meta   status btn";
  grid-template-columns: 44px 1fr auto auto;
  grid-template-rows: auto auto;
  row-gap: 2px;
}
body.is-landing .dl-card-head h4 { grid-area: name; align-self: end; }
body.is-landing .dl-meta { grid-area: meta; align-self: start; }
body.is-landing .dl-icon { grid-row: 1 / 3; align-self: center; }

body.is-landing .dl-meta div { display: inline-flex; align-items: baseline; }
body.is-landing .dl-meta div:not(:last-child)::after {
  content: '·';
  margin: 0 8px;
  color: var(--lp-text-4);
}
body.is-landing .dl-meta dt { display: none; }
body.is-landing .dl-meta dd {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lp-text-3);
  margin: 0;
  font-feature-settings: 'tnum';
  letter-spacing: 0;
}

body.is-landing .dl-status {
  grid-area: status;
  align-self: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--lp-text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  text-transform: none;
  letter-spacing: 0;
}
body.is-landing .dl-status .dot { width: 6px; height: 6px; border-radius: 50%; }
body.is-landing .dl-status .dot-on { background: var(--ok); box-shadow: 0 0 6px rgba(34, 197, 94, 0.7); }
body.is-landing .dl-status .dot-off { background: var(--warn); }

body.is-landing .dl-card .btn,
body.is-landing .dl-card .btn-block {
  grid-area: btn;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  background: var(--neo-gradient);
  color: #fff !important;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12.5px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px var(--neo-glow);
  transition: transform 0.15s, filter 0.2s;
  letter-spacing: 0;
  text-transform: none;
}
body.is-landing .dl-card .btn::after {
  content: '↓';
  font-size: 13px;
  font-weight: 700;
}
body.is-landing .dl-card .btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
body.is-landing .dl-card .btn-disabled {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--lp-text-4) !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  border: 1px solid var(--lp-border);
}
body.is-landing .dl-card .btn-disabled::after { content: ''; }

@media (max-width: 720px) {
  body.is-landing .dl-card {
    grid-template-areas:
      "icon name   status"
      "icon meta   meta"
      "btn  btn    btn";
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }
  body.is-landing .dl-card .btn { width: 100%; justify-content: center; margin-top: 6px; padding: 11px 18px; }
}

.lp-dl-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--lp-text-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.lp-dl-note a {
  color: #22d3ee;
  text-decoration: none;
  font-weight: 500;
}
.lp-dl-note a:hover { text-decoration: underline; }

/* ============ FOOTER STRIP ============ */
.lp-foot {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--lp-border);
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--lp-text-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-foot span strong { color: var(--lp-text); font-weight: 600; }
/* bump */
/* bump */
/* cache bust 1779747880 */
/* bust 1779748074371308914 */
/* bump 1779748237380603046 */
