/* ================================================
   STAND MOD MENU — style.css
   Theme: Crisp White · Accent: Electric Blue #1a6fff
   Fonts: Sora (headings) · DM Sans (body)
   ================================================ */

:root {
  --accent:       #e8317a;
  --accent-dark:  #c4205f;
  --accent-light: #fce8f1;
  --accent-glow:  rgba(232,49,122,0.16);
  --bg:           #ffffff;
  --bg-alt:       #f5f7fb;
  --bg-card:      #ffffff;
  --border:       #e2e8f4;
  --border-strong:#c8d3e8;
  --text:         #0c1121;
  --text-2:       #475569;
  --text-3:       #94a3b8;
  --success:      #10b981;
  --r:            16px;
  --r-sm:         10px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);
  --font-h:       'Sora', sans-serif;
  --font-b:       'DM Sans', sans-serif;
  --max:          1160px;
  --narrow:       740px;
  --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.68; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--r); }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: var(--narrow); margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb-wrap { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.breadcrumb { list-style: none; display: flex; gap: 6px; font-size: 12px; color: var(--text-3); padding: 8px 20px; }
.breadcrumb a { color: var(--accent); text-decoration: none; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: var(--font-h); font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -0.4px; }
.logo-hex { color: var(--accent); font-size: 22px; line-height: 1; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: var(--text-2); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav a:hover { color: var(--accent); }

/* Burger */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-h); font-weight: 600; font-size: 14px;
  border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all var(--transition); white-space: nowrap; padding: 10px 22px;
}
.btn-nav { background: var(--accent); color: #ffffff !important; font-size: 13px; padding: 8px 18px; box-shadow: 0 2px 10px var(--accent-glow); }
.btn-nav:hover { background: var(--accent-dark); color: #ffffff !important; transform: translateY(-1px); box-shadow: 0 4px 16px var(--accent-glow); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 18px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 28px rgba(26,111,255,.3); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-discord { background: #5865f2; color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

.btn-cta { background: #fff; color: var(--accent); font-size: 17px; padding: 18px 44px; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.btn-cta:hover { background: var(--accent-light); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }

.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; margin-top: 24px; }

/* ── SECTION COMMON ── */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.section h2 { font-family: var(--font-h); font-size: clamp(24px,3.5vw,38px); font-weight: 800; letter-spacing: -1px; color: var(--text); margin-bottom: 14px; line-height: 1.15; }
.section-sub { font-size: 17px; color: var(--text-2); margin-bottom: 44px; max-width: 560px; }
.section p { color: var(--text-2); margin-bottom: 14px; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 96px 0 0; text-align: center; background: var(--bg); }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 50% 0%, rgba(232,49,122,.12) 0%, transparent 70%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(232,49,122,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--text-2);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.08;
  color: var(--text); max-width: 860px; margin: 0 auto 22px;
}
.hero h1 br { display: block; }
.hero-sub { font-size: clamp(16px,2vw,19px); color: var(--text-2); max-width: 600px; margin: 0 auto 36px; line-height: 1.62; }
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 18px 28px; gap: 0;
  box-shadow: var(--shadow); margin-bottom: 52px;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat strong { font-family: var(--font-h); font-size: 21px; font-weight: 800; color: var(--text); }
.stat span { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: .04em; margin-top: 2px; text-transform: uppercase; }
.stat-sep { width: 1px; height: 32px; background: var(--border); }

.hero-img-wrap {
  margin: 0 auto; max-width: 1100px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border: 1px solid var(--border); border-bottom: none;
  border-radius: 20px 20px 0 0; overflow: hidden;
  box-shadow: 0 -2px 40px rgba(232,49,122,.07);
}
.hero-img-wrap img { width: 100%; border-radius: 0; }

/* ── VERSIONS ── */
.versions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.version-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.version-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.version-enhanced { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.version-enhanced:hover { box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg); }

.ver-new-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: #fff;
  font-family: var(--font-h); font-size: 10px; font-weight: 800; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 100px;
}
.version-tag {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-3); font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px;
  border-radius: 6px; margin-bottom: 10px;
}
.version-tag-blue { background: var(--accent-light); border-color: rgba(26,111,255,.25); color: var(--accent); }
.version-card h3 { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 18px; }
.version-card h3 small { font-size: 13px; font-weight: 400; color: var(--text-3); display: block; margin-top: 3px; }
.version-img { margin-bottom: 20px; overflow: hidden; border-radius: var(--r-sm); border: 1px solid var(--border); min-height: 160px; background: var(--bg-alt); }
.version-img img { width: 100%; }
.ver-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 8px; }
.ver-list li { font-size: 14px; color: var(--text-2); }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text { max-width: 520px; }
.about-text h2 { margin-bottom: 18px; }
.about-img { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); min-height: 260px; background: var(--bg-alt); }
.about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 22px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent); box-shadow: 0 6px 28px var(--accent-glow); transform: translateY(-4px); }
.fi { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feature-card p { font-size: 13px; color: var(--text-2); margin: 0; line-height: 1.55; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-top: 8px; }
.gallery-main { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); grid-row: span 2; min-height: 300px; background: var(--bg-alt); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.gallery-side { display: flex; flex-direction: column; gap: 14px; }
.gallery-item { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); min-height: 120px; background: var(--bg-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* ── STEPS ── */
.steps { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 14px; margin-top: 2px;
  box-shadow: 0 4px 12px rgba(232,49,122,0.3);
}
.steps strong { display: block; font-family: var(--font-h); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.steps p { font-size: 14px; color: var(--text-2); margin: 0; }
code { background: var(--bg-alt); border: 1px solid var(--border); padding: 2px 7px; border-radius: 5px; font-size: 12.5px; font-family: 'Courier New', monospace; color: var(--accent-dark); }
kbd { background: var(--text); color: #fff; padding: 2px 9px; border-radius: 5px; font-size: 12px; font-family: var(--font-h); font-weight: 600; }
.install-note {
  background: var(--accent-light); border: 1px solid rgba(26,111,255,.2);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-size: 13px; color: var(--text-2); margin-top: 8px;
}

/* ── COMPARE TABLE ── */
.table-wrap { overflow-x: auto; margin-top: 24px; border-radius: var(--r); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-family: var(--font-h); font-weight: 700; font-size: 11px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; background: var(--bg-alt); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-alt); }
.yes { color: var(--accent); font-weight: 700; }
.no { color: var(--text-3); }

/* ── COMMUNITY ── */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.com-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; text-align: center; transition: var(--transition); }
.com-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: translateY(-3px); }
.com-num { font-family: var(--font-h); font-size: 36px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.com-lbl { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.com-card p { font-size: 13px; color: var(--text-2); margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; transition: border-color var(--transition); }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 17px 20px; font-family: var(--font-h); font-weight: 600; font-size: 14px; color: var(--text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 16px; font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, #2d0a1a 0%, #6b0f35 50%, #9e1d52 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; }
.cta-inner { position: relative; z-index: 1; }
.cta-badge { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); font-family: var(--font-h); font-size: 12px; font-weight: 600; letter-spacing: .06em; padding: 5px 16px; border-radius: 100px; margin-bottom: 20px; }
.cta-inner h2 { color: #fff; font-size: clamp(26px,4vw,44px); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }

/* ── SOCIAL SHARE ── */
.social-share { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; background: var(--bg-alt); }
.social-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; font-family: var(--font-h);
  text-decoration: none; color: var(--text-2); border: 1px solid var(--border);
  transition: all var(--transition); background: var(--bg-card);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-2); max-width: 300px; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-family: var(--font-h); font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.footer-col a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-note { font-size: 12px; color: var(--text-3); max-width: 600px; margin: 0 auto 8px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: var(--text-3); }

/* ── DOWNLOAD PAGE ── */
.dl-page { min-height: 80vh; padding: 64px 0; }
.dl-hero { text-align: center; margin-bottom: 52px; }
.dl-hero h1 { font-family: var(--font-h); font-size: clamp(28px,4vw,46px); font-weight: 900; letter-spacing: -1.5px; color: var(--text); margin-bottom: 12px; }
.dl-hero p { font-size: 17px; color: var(--text-2); max-width: 500px; margin: 0 auto; }

.dl-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 780px; margin: 0 auto 48px; }
.dl-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 28px; text-align: center; position: relative; transition: all var(--transition);
}
.dl-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.dl-card-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.dl-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-h); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.dl-card h2 { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.dl-card .dl-version-sub { font-size: 13px; color: var(--text-3); margin-bottom: 18px; }
.dl-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; text-align: left; font-size: 13px; color: var(--text-2); margin-bottom: 22px; }
.dl-btn-wrap { position: relative; }
.dl-btn { width: 100%; text-align: center; }
.dl-btn.ready { display: none; }

/* Timer */
.dl-timer-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.dl-timer-bar-bg { width: 100%; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.dl-timer-bar { height: 100%; background: var(--accent); width: 100%; border-radius: 4px; transition: width 1s linear; }
.dl-timer-text { font-family: var(--font-h); font-size: 13px; color: var(--text-3); font-weight: 600; }
.dl-fallback { font-size: 12px; color: var(--text-3); margin-top: 8px; }
.dl-fallback a { color: var(--accent); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .versions-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .about-img { min-height: 220px; }
  .dl-cards { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 640px) {
  .burger { display: flex; }
  .nav {
    display: none; position: fixed; top: 62px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 8px 0; z-index: 200;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; font-size: 15px; border-bottom: 1px solid var(--border); width: 100%; }
  .nav a:last-child { border-bottom: none; }
  .btn-nav { border-radius: 0; text-align: center; }

  .hero { padding: 64px 0 0; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { padding: 14px 16px; }
  .stat { padding: 0 12px; }
  .stat strong { font-size: 18px; }
  .stat-sep { height: 24px; }

  .section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { min-height: 200px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { gap: 10px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
  .btn-cta { padding: 16px 32px; font-size: 16px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }
}
