﻿
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080614;
  --bg2: #0c0a1a;
  --card: #13102a;
  --panel: #181535;
  --pur: #a855f7;
  --lime: #84cc16;
  --pink: #f472b6;
  --txt: #f5f3ff;
  --sub: #c4b5fd;
  --brd: rgba(168, 85, 247, 0.22);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.shell { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.seg { padding: 80px 0; }
.seg-alt { background: var(--bg2); }

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 6, 20, 0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brd);
}
.hdr-band {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto; gap: 20px;
}
.h-logo img { display: block; }
.h-nav { display: flex; gap: 2px; }
.h-nav a {
  color: rgba(196, 181, 253, 0.65); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 6px; transition: color 0.2s, background 0.2s;
}
.h-nav a:hover { color: var(--lime); background: rgba(132, 204, 22, 0.1); }
.h-cta {
  display: inline-block; padding: 10px 22px;
  background: linear-gradient(90deg, var(--pur), var(--lime));
  color: #080614; font-weight: 700; font-size: 14px;
  border-radius: 6px; transition: opacity 0.2s;
}
.h-cta:hover { opacity: 0.88; }
.h-tog {
  display: none; background: none; border: 1px solid var(--brd);
  color: var(--txt); border-radius: 6px; padding: 6px 10px; cursor: pointer; font-size: 18px;
}
@media (max-width: 900px) {
  .h-nav { display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: #0c0a1a; flex-direction: column; padding: 16px 24px; gap: 8px; border-bottom: 1px solid var(--brd); }
  .h-nav.open { display: flex; }
  .h-tog { display: block; }
}

.neon-hero {
  padding: 100px 0 90px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(168, 85, 247, 0.14) 0%, transparent 65%),
              radial-gradient(ellipse 40% 30% at 80% 70%, rgba(132, 204, 22, 0.08) 0%, transparent 55%),
              var(--bg);
}
.neon-hero h1 {
  font-size: 72px; font-weight: 900; letter-spacing: 1px; margin-bottom: 18px;
  color: var(--txt);
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 80px rgba(168, 85, 247, 0.25);
}
.neon-hero h1 span { color: var(--lime); text-shadow: 0 0 20px rgba(132, 204, 22, 0.7), 0 0 60px rgba(132, 204, 22, 0.3); }
.hero-desc { color: var(--sub); font-size: 18px; max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.neon-btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px; font-weight: 700;
  font-size: 15px; background: linear-gradient(90deg, var(--pur), var(--lime));
  color: #080614; box-shadow: 0 8px 26px rgba(168, 85, 247, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.neon-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(132, 204, 22, 0.35); }
.ghost-btn {
  display: inline-block; padding: 14px 30px; border-radius: 10px; font-weight: 700;
  font-size: 15px; border: 1px solid var(--brd); color: var(--txt); transition: border-color 0.2s, color 0.2s;
}
.ghost-btn:hover { border-color: var(--pur); color: var(--pur); }
.hero-stats { display: flex; justify-content: center; gap: 0; }
.hs-item {
  padding: 20px 32px; border-right: 1px solid var(--brd); text-align: center;
}
.hs-item:last-child { border-right: none; }
.hs-item b { display: block; font-size: 28px; font-weight: 800; color: var(--lime); }
.hs-item span { color: rgba(196, 181, 253, 0.65); font-size: 13px; }
@media (max-width: 980px) { .neon-hero h1 { font-size: 48px; } }
@media (max-width: 620px) { .neon-hero { padding: 64px 0 54px; } .neon-hero h1 { font-size: 34px; } .hero-stats { flex-wrap: wrap; } .hs-item { border: none; border-bottom: 1px solid var(--brd); width: 50%; } }

.seg-title { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.seg-sub { color: var(--sub); font-size: 16px; margin-bottom: 36px; }
.p-accent { color: var(--pur); }
.l-accent { color: var(--lime); }

.split-canvas { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.split-facts { display: flex; flex-direction: column; gap: 14px; }
.fact-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--brd); border-radius: 14px; overflow: hidden;
}
.fact-num {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.3), rgba(132, 204, 22, 0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--lime);
}
.fact-body { padding: 16px 18px; }
.fact-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.fact-body p { color: var(--sub); font-size: 13px; line-height: 1.55; }
.highlight-card {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(132, 204, 22, 0.06)), var(--panel);
  border: 1px solid rgba(168, 85, 247, 0.35); border-radius: 20px; padding: 30px 28px;
}
.highlight-card h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.highlight-card p { color: var(--sub); font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.hi-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.hi-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(196, 181, 253, 0.8); font-size: 14px; }
.hi-list li::before { content: '▸'; color: var(--lime); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.hi-cta {
  display: inline-block; padding: 12px 26px;
  background: linear-gradient(90deg, var(--pur), var(--lime));
  color: #080614; font-weight: 700; font-size: 14px;
  border-radius: 8px; transition: opacity 0.2s;
}
.hi-cta:hover { opacity: 0.88; }
@media (max-width: 900px) { .split-canvas { grid-template-columns: 1fr; } }

.slots-duo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.duo-card {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--brd);
  background: var(--card); position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.duo-card:hover { transform: translateY(-5px); border-color: var(--pur); box-shadow: 0 20px 44px rgba(168, 85, 247, 0.2); }
.duo-card img { width: 100%; height: 170px; object-fit: cover; object-position: center; background: var(--panel); }
.duo-body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.duo-info b { font-size: 15px; display: block; margin-bottom: 3px; }
.duo-info span { font-size: 12px; color: rgba(196, 181, 253, 0.6); }
.duo-demo {
  display: inline-block; padding: 7px 14px; border-radius: 20px; font-size: 12px; font-weight: 700;
  border: 1px solid rgba(132, 204, 22, 0.45); color: var(--lime); white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.duo-demo:hover { background: rgba(132, 204, 22, 0.15); border-color: var(--lime); }
@media (max-width: 900px) { .slots-duo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .slots-duo { grid-template-columns: 1fr; } }

.glow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.glow-card {
  background: var(--card); border: 1px solid var(--brd); border-radius: 18px;
  padding: 26px 20px; text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.glow-card:hover { border-color: var(--pur); box-shadow: 0 0 28px rgba(168, 85, 247, 0.25); transform: translateY(-4px); }
.glow-ico { font-size: 38px; margin-bottom: 14px; display: block; }
.glow-val { font-size: 26px; font-weight: 800; color: var(--lime); display: block; margin-bottom: 4px; }
.glow-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.glow-card p { color: var(--sub); font-size: 13px; line-height: 1.6; }
@media (max-width: 960px) { .glow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .glow-grid { grid-template-columns: 1fr; } }

.tier-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tier-table { width: 100%; min-width: 640px; border-collapse: collapse; border-radius: 16px; overflow: hidden; }
.tier-table th {
  padding: 16px 20px; font-size: 14px; font-weight: 700; text-align: left;
  background: var(--panel); color: var(--sub); border-bottom: 1px solid var(--brd);
}
.tier-table td {
  padding: 16px 20px; font-size: 14px; border-bottom: 1px solid var(--brd);
  background: var(--card); color: var(--txt);
}
.tier-table tr:last-child td { border-bottom: none; }
.tier-table tr:hover td { background: rgba(168, 85, 247, 0.07); }
.tier-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.t-base { background: rgba(168, 85, 247, 0.15); color: var(--pur); }
.t-silver { background: rgba(196, 181, 253, 0.12); color: #c4b5fd; }
.t-gold { background: rgba(132, 204, 22, 0.15); color: var(--lime); }
.t-vip { background: linear-gradient(90deg, rgba(244, 114, 182, 0.2), rgba(168, 85, 247, 0.2)); color: var(--pink); }

.about-zone { background: var(--bg2); padding: 80px 0; }
.about-top-h { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.about-top-p { color: var(--sub); font-size: 16px; margin-bottom: 38px; max-width: 700px; }
.about-duo { max-width: 880px; }
.about-duo h3 { font-size: 17px; color: var(--pur); margin: 24px 0 8px; }
.about-duo h3:first-child { margin-top: 0; }
.about-duo p { color: var(--sub); font-size: 15px; line-height: 1.75; margin-bottom: 8px; }


.faq-numlist { max-width: 800px; display: flex; flex-direction: column; gap: 14px; }
.faq-num-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--brd); border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-num-row:hover { border-color: var(--pur); }
.faq-idx {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.25), rgba(132, 204, 22, 0.1));
  display: flex; align-items: flex-start; justify-content: center; padding-top: 20px;
  font-size: 14px; font-weight: 800; color: var(--lime);
}
.faq-content { padding: 18px 20px; }
.faq-content dt { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.faq-content dd { color: var(--sub); font-size: 14px; line-height: 1.7; }

.ftr { background: #050311; border-top: 1px solid var(--brd); padding: 40px 0; }
.ftr-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ftr-copy { color: rgba(196, 181, 253, 0.4); font-size: 14px; }
.ftr-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.ftr-nav a { color: rgba(196, 181, 253, 0.4); font-size: 14px; transition: color 0.2s; }
.ftr-nav a:hover { color: var(--pur); }
@media (max-width: 620px) { .seg { padding: 60px 0; } .ftr-row { flex-direction: column; align-items: flex-start; } }
