:root {
  --blue: #1b52a1;
  --blue-bright: #2b7dff;
  --background: #05070b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: #2b7dff #0b0f18; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b0f18; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #2b7dff; border-radius: 10px; box-shadow: 0 0 12px #2b7dff80; }
::-webkit-scrollbar-thumb:hover { background: #1b52a1; }

html { }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ─── Navbar ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 9000;
  background: rgba(4, 7, 11, 0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s var(--ease);
}
.navbar.scrolled { background: rgba(4,7,11,0.95); border-bottom-color: rgba(255,255,255,0.1); }
.nav-inner {
  width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a, .nav-social a { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-social a:hover { color: var(--blue-bright); }
.nav-social { display: flex; align-items: center; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s var(--ease);
}
.social-icon:hover { transform: translateY(-2px); border-color: rgba(43,125,255,0.4); background: rgba(43,125,255,0.08); box-shadow: 0 0 28px rgba(43,125,255,0.2); }
.social-icon svg { width: 16px; height: 16px; }

/* ─── Hero ────────────────────────────────── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; justify-content: center; padding: 140px 20px 60px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-content { width: min(1000px, 100%); text-align: center; }
.hero-panel { display: inline-block; padding: 20px 22px; border-radius: 22px; background: linear-gradient(180deg, rgba(5,7,11,0.66), rgba(5,7,11,0.42)); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); box-shadow: 0 16px 60px rgba(0,0,0,0.25); }
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── Shared button ───────────────────────── */
.hero-button, .buy-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 160px; padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s var(--ease);
  font-family: "Inter", sans-serif;
}
.hero-button.primary, .buy-button {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: white; box-shadow: 0 10px 36px rgba(27,82,161,0.3); border: none;
}
.hero-button.secondary {
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: white;
}
.hero-button:hover, .buy-button:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(43,125,255,0.4); }
.hero-button.secondary:hover { background: rgba(255,255,255,0.09); }

/* ─── Sections ────────────────────────────── */
.services, .about, .reviews, .faq { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: var(--blue-bright); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.section-head h2 { margin: 0 0 14px; font-size: clamp(30px,4vw,46px); line-height: 1.06; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 16px; }

/* ─── Pricing ─────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.plan {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 40px 30px 30px;
  box-shadow: var(--shadow); transition: all 0.25s var(--ease);
  display: flex; flex-direction: column; text-align: center; min-height: 540px;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(43,125,255,0.42); box-shadow: var(--shadow), 0 0 55px rgba(27,82,161,0.16); }
.plan.featured { border-color: rgba(43,125,255,0.48); box-shadow: var(--shadow), 0 20px 80px rgba(27,82,161,0.22); }
.tag { position: absolute; top: -14px; right: 24px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(43,125,255,0.25); border: 1px solid rgba(43,125,255,0.6); color: white; box-shadow: 0 4px 12px rgba(43,125,255,0.4); white-space: nowrap; }
.plan h3 { margin: 0; font-size: 22px; }
.price { margin: 14px 0 18px; color: var(--blue-bright); font-size: 34px; font-weight: 800; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 auto; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.plan li { position: relative; padding-left: 18px; margin: 11px 0; color: var(--muted); line-height: 1.55; text-align: left; }
.plan li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 999px; background: var(--blue-bright); }
.buy-button { margin-top: auto; width: 80%; max-width: 220px; margin-left: auto; margin-right: auto; display: block; }

/* Greyed out "Available on Discord" state */
.buy-button.buy-disabled {
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.35) !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  cursor: not-allowed !important;
  transform: none !important;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.buy-button.buy-disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ─── About ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-top: 10px; }
.about-card { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: all 0.25s var(--ease); }
.about-card:hover, .glow-card:hover { transform: translateY(-6px); border-color: rgba(43,125,255,0.42); box-shadow: var(--shadow), 0 0 55px rgba(27,82,161,0.16); }

/* ─── Reviews ─────────────────────────────── */
.review-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent); }
.review-track { display: flex; gap: 18px; width: max-content; animation: scrollReviews 28s linear infinite; }
@keyframes scrollReviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { width: 340px; background: #0d1117; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-shrink: 0; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-top strong { display: block; font-size: 15px; }
.review-top span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  font-weight: 700; font-size: 16px; overflow: hidden; position: relative;
}
.review-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.review-card p { margin: 0; color: rgba(255,255,255,0.86); line-height: 1.65; }

/* ─── FAQ ─────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item[open] { border-color: rgba(43,125,255,0.3); box-shadow: 0 0 28px rgba(43,125,255,0.06); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-size: 1rem; font-weight: 600; cursor: pointer; list-style: none; user-select: none; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-chevron { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1px solid rgba(43,125,255,0.3); background: rgba(43,125,255,0.07); display: flex; align-items: center; justify-content: center; position: relative; transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease); }
.faq-chevron::before, .faq-chevron::after { content: ''; position: absolute; background: var(--blue-bright); border-radius: 2px; }
.faq-chevron::before { width: 10px; height: 2px; }
.faq-chevron::after  { width: 2px;  height: 10px; transition: transform 0.35s var(--ease); }
.faq-item[open] .faq-chevron { background: rgba(43,125,255,0.18); border-color: rgba(43,125,255,0.55); transform: rotate(45deg); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.38s ease; }
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body p { overflow: hidden; margin: 0; padding: 0 24px 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* ─── Footer ──────────────────────────────── */
footer { margin-top: 30px; padding: 60px 20px 28px; background: #030508; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { width: min(1180px,100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.7fr 0.7fr; gap: 28px; }
.footer-brand p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 380px; }
.footer-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-links h5 { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.88); }
.footer-links a { display: block; margin: 8px 0; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-bright); }
.copyright { width: min(1180px,100%); margin: 26px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.48); text-align: center; font-size: 14px; }

/* ─── Reveal ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ─── Responsive ──────────────────────────── */
@media (max-width: 980px) {
  .pricing, .about-grid, .footer-inner { grid-template-columns: 1fr; }
  .nav-social { display: none; }
}
@media (max-width: 760px) {
  .nav-inner { flex-wrap: wrap; justify-content: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
