
:root {
  --bg: #020202;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.11);
  --text: #ffffff;
  --muted: #a9a9a9;
  --green: #1ee16c;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0,0,0,.6);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(255,255,255,.07), transparent 22%), #020202;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .06;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 12px 12px; mix-blend-mode: soft-light;
}
.bg-orb {
  position: fixed; border-radius: 999px; filter: blur(120px); pointer-events: none; opacity: .13;
}
.orb-1 { width: 460px; height: 460px; background: #fff; top: -140px; left: -80px; }
.orb-2 { width: 360px; height: 360px; background: #fff; right: -80px; top: 26vh; }
.page-transition {
  position: fixed; inset: 0; z-index: 120; background: rgba(0,0,0,.96); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: .28s ease;
}
.page-transition.active { opacity: 1; visibility: visible; }
.topbar {
  position: sticky; top: 0; z-index: 40; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; backdrop-filter: blur(28px); background: rgba(0,0,0,.6); border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.15rem; letter-spacing: .06em; }
.brand-snowflake { width: 30px; height: 30px; animation: spinSlow 12s linear infinite; filter: drop-shadow(0 0 14px rgba(255,255,255,.38)); opacity: .92; }
.topnav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topnav a {
  padding: 12px 16px; border: 1px solid transparent; color: #d9d9d9; border-radius: 999px; transition: .25s ease;
}
.topnav a:hover { background: rgba(255,255,255,.05); border-color: var(--line); color: #fff; transform: translateY(-1px); }
.discord-link { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); }
.discord-link svg { width: 18px; height: 18px; }
main { width: min(1440px, calc(100% - 34px)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.hero {
  min-height: calc(100vh - 82px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 36px;
}
.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.hero-copy h1 { font-size: clamp(3.3rem, 10vw, 7rem); margin: 0 0 12px; line-height: .92; }
.hero-copy h2 { font-size: clamp(1.15rem, 3vw, 2rem); color: #dedede; margin: 0 0 18px; font-weight: 700; }
.hero-copy p { max-width: 760px; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.eyebrow, .section-tag, .plan-price {
  display: inline-flex; border: 1px solid var(--line); background: rgba(255,255,255,.04); padding: 9px 14px; border-radius: 999px; color: #e3e3e3;
}
.eyebrow, .section-tag { margin-bottom: 18px; font-size: .88rem; }
.hero-actions, .admin-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; border-radius: 18px; padding: 14px 22px; border: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(255,255,255,.08); }
.btn-primary { background: #fff; color: #000; box-shadow: 0 0 40px rgba(255,255,255,.12); }
.btn-secondary { background: rgba(255,255,255,.04); color: #fff; }
.full { width: 100%; }
.hero-art { min-height: 540px; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-logo-wrap { position: relative; width: min(820px, 100%); aspect-ratio: 1 / 1; }
.hero-logo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 58px rgba(255,255,255,.18));
}
.hero-logo-back { opacity: .32; transform: translate(9%, -7%) scale(1.05); filter: blur(1px) drop-shadow(0 0 80px rgba(255,255,255,.18)); }
.hero-logo-front { animation: float 6s ease-in-out infinite; }
.section-head { margin-bottom: 28px; }
.section-head h3 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
.section-head p { margin: 0; color: var(--muted); }
.plans-vertical, .feedback-grid, .status-stack { display: grid; gap: 18px; }
.plan-card, .feedback-card, .status-card, .admin-shell, .modal-card, .admin-gate, .admin-table-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.plan-card {
  padding: 26px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
}
.plan-title { font-size: 1.45rem; font-weight: 900; margin-bottom: 10px; }
.plan-description { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.feedback-grid { grid-template-columns: repeat(3, 1fr); }
.feedback-card { padding: 22px; min-height: 220px; }
.feedback-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feedback-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); background: rgba(255,255,255,.07); }
.feedback-name { font-weight: 800; }
.feedback-time { color: var(--muted); font-size: .9rem; }
.feedback-content { color: #ebebeb; line-height: 1.8; white-space: pre-wrap; }
.status-card { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 26px 24px; }
.status-label { font-size: 1.2rem; font-weight: 800; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(30,225,108,.08); color: var(--green); border: 1px solid rgba(30,225,108,.3); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px var(--green); }
.loader-screen {
  position: fixed; inset: 0; z-index: 100; background: #000; display: grid; place-items: center; transition: opacity .5s ease, visibility .5s ease;
}
.loader-screen.hidden { opacity: 0; visibility: hidden; }
.loader-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,255,255,.07), rgba(0,0,0,1) 58%); filter: blur(24px); }
.loader-inner { position: relative; width: min(620px, calc(100% - 40px)); text-align: center; z-index: 1; }
.loader-logo { width: min(460px, 82vw); margin: 0 auto 10px; filter: drop-shadow(0 0 46px rgba(255,255,255,.28)); }
.loader-glow { position: absolute; inset: 0; margin: auto; width: min(400px, 70vw); height: 160px; background: rgba(255,255,255,.10); filter: blur(80px); z-index: -1; }
.loader-bar { height: 10px; border-radius: 999px; border: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.06); }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #4f4f4f, #fff, #4f4f4f); animation: load 2.2s ease forwards; }
.loader-inner p { color: #d3d3d3; margin-top: 16px; }
.modal.hidden { display: none; }
.modal { position: fixed; inset: 0; z-index: 70; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(14px); }
.modal-card { position: relative; width: min(540px, calc(100% - 24px)); margin: 8vh auto 0; padding: 24px; }
.modal-close { position: absolute; top: 14px; right: 16px; background: transparent; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }
.modal-form { display: grid; gap: 14px; }
.modal-form label { display: grid; gap: 8px; }
.modal-form input, .admin-select {
  width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.05); color: #fff;
}
.purchase-message { margin-top: 12px; color: #d2d2d2; }
.admin-page main { width: min(1380px, calc(100% - 30px)); margin: 40px auto; }
.admin-shell { padding: 26px; }
.admin-header { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 24px; }
.admin-gate { padding: 22px; }
.admin-table-wrap { overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.admin-table th, .admin-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); }
.admin-table th { color: #d8d8d8; font-size: .92rem; }
.env-box { margin-top: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.04); padding: 14px 16px; color: #f1f1f1; overflow-wrap: anywhere; }
.reveal { opacity: 0; transform: translateY(34px); transition: .85s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-card { opacity: 0; transform: translateY(24px) scale(.985); transition: .6s cubic-bezier(.2,.8,.2,1); }
.reveal-card.visible { opacity: 1; transform: translateY(0) scale(1); }
.hidden { display: none !important; }
.empty-state { padding: 24px; color: var(--muted); border: 1px dashed var(--line); border-radius: 24px; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes load { from { width: 0; } to { width: 100%; } }
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 30px; }
  .feedback-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .topbar { padding: 16px; flex-direction: column; gap: 14px; align-items: stretch; }
  .brand { justify-content: center; }
  .topnav { justify-content: center; }
  .hero-panel { padding: 24px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 16vw, 4.5rem); }
  .plan-card { grid-template-columns: 1fr; }
  .feedback-grid { grid-template-columns: 1fr; }
  .status-card { align-items: flex-start; flex-direction: column; }
  .admin-header { flex-direction: column; align-items: flex-start; }
  main { width: min(100% - 18px, 1440px); }
}
