:root {
  --bg: #07070d;
  --bg2: #11111b;
  --card: rgba(255,255,255,0.055);
  --card2: rgba(255,255,255,0.085);
  --line: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #a7a6b8;
  --pink: #f35ac7;
  --purple: #9b5cff;
  --soft: rgba(243, 90, 199, 0.18);
  --green: #68f2b0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 20%, rgba(155,92,255,0.22), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(243,90,199,0.18), transparent 32%),
    linear-gradient(180deg, #080812 0%, #06060b 48%, #0c0912 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}
.bg-glow {
  position: fixed; inset: auto 0 0 0; height: 45vh; z-index: -2;
  background: linear-gradient(180deg, transparent, rgba(155,92,255,0.18), rgba(243,90,199,0.16));
}
.page { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav-wrap { padding: 18px 0; position: sticky; top: 0; z-index: 10; backdrop-filter: blur(18px); }
.nav {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10,10,18,0.78); box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.04em; }
.logo {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: grid; place-items: center; box-shadow: 0 0 32px rgba(243,90,199,0.38);
}
.logo::before { content: "✦"; color: white; font-weight: 900; }
.nav-links { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 750; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  border: 1px solid var(--line); background: var(--card); color: white; border-radius: 999px;
  padding: 13px 20px; font-weight: 850; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.26); background: var(--card2); }
.btn.primary { border: none; background: linear-gradient(90deg, var(--pink), var(--purple)); box-shadow: 0 18px 50px rgba(243,90,199,0.25); }
.btn.light { background: white; color: #080812; border: none; }

.hero { min-height: 720px; display: grid; place-items: center; text-align: center; position: relative; padding: 70px 0 40px; }
.hero-art { position: absolute; inset: 0; overflow: hidden; z-index: -1; opacity: .95; }
.discord-orb {
  position: absolute; width: 380px; height: 260px; border-radius: 42px; filter: blur(.2px);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.07); transform: rotate(13deg);
}
.discord-orb.left { left: -20px; top: 95px; }
.discord-orb.right { right: -65px; top: 120px; transform: rotate(-15deg); width: 480px; height: 330px; }
.discord-face { position: absolute; inset: 0; display: grid; place-items: center; font-size: 110px; opacity: .08; }
.badge {
  display: inline-flex; gap: 8px; align-items: center; color: #e7d9ff; border: 1px solid rgba(243,90,199,0.35);
  background: rgba(243,90,199,0.09); border-radius: 999px; padding: 9px 14px; font-weight: 850; font-size: 13px;
}
.hero h1 { margin: 22px auto 18px; max-width: 850px; line-height: .98; font-size: clamp(46px, 7vw, 92px); letter-spacing: -0.08em; }
.gradient { background: linear-gradient(90deg, #fff, #ff70cf 44%, #a46bff); -webkit-background-clip: text; color: transparent; }
.hero p { margin: 0 auto; max-width: 700px; color: var(--muted); font-size: clamp(17px, 2.2vw, 22px); line-height: 1.55; }
.hero-actions { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: -40px; }
.stat-card, .panel, .product-card, .form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
  border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 70px rgba(0,0,0,0.24);
}
.stat-card { padding: 32px; min-height: 180px; display: flex; flex-direction: column; justify-content: center; }
.stat-card strong { display: block; font-size: 48px; letter-spacing: -0.06em; background: linear-gradient(90deg, var(--purple), var(--pink)); -webkit-background-clip: text; color: transparent; }
.stat-card span { color: white; font-weight: 900; font-size: 23px; }
.stat-card p { color: var(--muted); margin: 8px 0 0; }
.section { padding: 90px 0 10px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section h2 { font-size: clamp(34px, 4.3vw, 62px); letter-spacing: -0.07em; margin: 0; }
.section-head p { max-width: 480px; color: var(--muted); line-height: 1.6; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(243,90,199,0.42); }
.product-img { height: 185px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at center, rgba(243,90,199,0.23), rgba(155,92,255,0.15), rgba(255,255,255,0.03)); }
.product-img::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 18px 18px; opacity:.28; }
.product-img span { z-index:1; font-size: 44px; font-weight: 1000; letter-spacing: -0.08em; text-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.product-body { padding: 20px; }
.topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.tag { color: #ffd7f4; background: rgba(243,90,199,.12); border: 1px solid rgba(243,90,199,.24); padding: 7px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.price { color: var(--muted); font-weight: 800; }
.price strong { color: var(--pink); font-size: 28px; }
.product-card h3 { margin: 0 0 9px; font-size: 21px; letter-spacing: -0.04em; }
.product-card p { color: var(--muted); line-height: 1.5; min-height: 68px; }
.product-actions { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 18px; }
.panel { padding: 34px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: stretch; }
.feature-list { display:grid; gap:14px; margin-top:20px; }
.feature { display:flex; gap:13px; align-items:flex-start; padding:14px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.035); }
.icon { width:38px; height:38px; border-radius:13px; display:grid; place-items:center; background:rgba(243,90,199,.16); color:#ffd2f2; flex:none; }
.feature b { display:block; margin-bottom:4px; }
.feature span { color:var(--muted); line-height:1.45; }

.order-hero { padding: 70px 0 30px; text-align:center; }
.order-hero h1 { font-size: clamp(42px, 6vw, 78px); letter-spacing:-.08em; margin: 16px 0 10px; }
.order-hero p { color:var(--muted); max-width:680px; margin:0 auto; line-height:1.55; }
.order-layout { display:grid; grid-template-columns: .85fr 1.15fr; gap:22px; align-items:start; padding-bottom:80px; }
.form-card { padding: 26px; }
.form-card h2 { margin:0 0 12px; letter-spacing:-.04em; }
label { display:block; margin: 15px 0 7px; color:#eae9f7; font-weight:850; font-size:14px; }
input, select, textarea {
  width:100%; border:1px solid var(--line); background:rgba(255,255,255,.06); color:white; border-radius:15px; padding:14px 15px; outline:none; font:inherit;
}
select option { color:#111; }
textarea { min-height:125px; resize:vertical; }
.pay-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:18px; }
.pay-card { padding:18px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.04); }
.pay-card h3 { margin:0 0 7px; }
.pay-card p { color:var(--muted); min-height:48px; }
.full { width:100%; justify-content:center; }
.footer { border-top:1px solid var(--line); margin-top:80px; padding:30px 0; color:var(--muted); display:flex; justify-content:space-between; gap:15px; flex-wrap:wrap; }
.notice { color:var(--muted); font-size:13px; margin-top:12px; line-height:1.5; }

@media (max-width: 900px) {
  .nav-links { display:none; }
  .stats, .product-grid, .split, .order-layout { grid-template-columns:1fr; }
  .hero { min-height: 640px; }
  .discord-orb.right { opacity:.35; }
  .discord-orb.left { opacity:.4; }
}
@media (max-width: 560px) {
  .nav { border-radius: 22px; }
  .brand span { display:none; }
  .hero-actions, .pay-grid { display:grid; grid-template-columns:1fr; }
  .stat-card strong { font-size:38px; }
}
