@charset "UTF-8";

:root {
  --black: #0a0a0c;
  --black-soft: #131316;
  --black-card: #17171b;
  --gold: #d9a520;
  --gold-light: #f2c14e;
  --gold-dark: #96690f;
  --red: #b4222c;
  --red-light: #e34350;
  --red-dark: #6e0b13;
  --text: #f2ede3;
  --text-muted: #b7b2a8;
  --border: rgba(217, 165, 32, 0.25);
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(600px 400px at 15% 0%, rgba(180, 34, 44, 0.18), transparent 60%),
    radial-gradient(700px 500px at 85% 20%, rgba(217, 165, 32, 0.14), transparent 60%),
    radial-gradient(900px 600px at 50% 100%, rgba(180, 34, 44, 0.10), transparent 60%),
    var(--black);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(217, 165, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 165, 32, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-light), var(--gold));
  z-index: 100;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo { width: 44px; height: 44px; }

.brand-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.05;
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14.5px;
}

.main-nav a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn .icon { width: 20px; height: 20px; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(180, 34, 44, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(180, 34, 44, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(217, 165, 32, 0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 40px rgba(217, 165, 32, 0.25));
}

.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(180, 34, 44, 0.55);
  animation: pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(180, 34, 44, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(180, 34, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(180, 34, 44, 0); }
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  font-size: 15px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 560px;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label { color: var(--text-muted); font-size: 13px; letter-spacing: 0.03em; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; scroll-margin-top: 76px; }
.section-alt { background: var(--black-soft); }

.kicker {
  color: var(--red-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 700px;
  font-size: 16.5px;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.feature-icon { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--gold-light); }
.feature-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.process-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.process-num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(217, 165, 32, 0.12);
  line-height: 1;
}
.process-icon { font-size: 28px; margin-bottom: 16px; }
.process-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--gold-light); }
.process-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* ---------- Regions ---------- */
.regions { margin-top: 50px; text-align: center; }
.regions-label {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.regions-flags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.flag-pill {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.flag-pill:hover { border-color: var(--gold); color: var(--text); }

/* ---------- Discord mockup window ---------- */
.pings-inner, .success-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.order-1 { order: 1; }
.order-2 { order: 2; }

.discord-window {
  background: #1a1a1e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.discord-titlebar {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.discord-hash { color: var(--text-muted); font-weight: 700; }
.discord-channel { font-weight: 700; color: var(--text); }
.discord-sub { color: var(--text-muted); font-size: 12.5px; margin-left: auto; }

.discord-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: 460px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}
.discord-messages::-webkit-scrollbar { width: 8px; }
.discord-messages::-webkit-scrollbar-track { background: transparent; }
.discord-messages::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 999px;
}
.discord-messages::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.discord-msg { display: flex; gap: 14px; }
.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
}
.discord-avatar-generic {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--black-soft);
}
.discord-msg-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.discord-user { font-weight: 700; color: var(--gold-light); font-size: 14.5px; }
.discord-bot-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}
.discord-time { color: var(--text-muted); font-size: 11.5px; }

.discord-embed {
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  max-width: 420px;
}
.discord-embed-title { color: #7bb8f5; font-weight: 700; font-size: 14.5px; margin-bottom: 10px; }
.discord-embed-main { display: flex; justify-content: space-between; gap: 14px; }
.discord-embed-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; flex: 1; }
.field-label { display: block; color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; }
.field-value { display: block; font-size: 14px; font-weight: 600; margin-top: 2px; }
.status-instock { color: #57d68d; }
.discord-embed-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.discord-embed-footer { margin-top: 12px; color: var(--text-muted); font-size: 11px; }

.discord-order-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 4px 0;
}
.discord-order-row span:first-child { white-space: nowrap; }
.discord-order-total {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 6px;
  padding-top: 8px;
  color: var(--text);
  font-weight: 700;
}
.discord-reactions { display: flex; gap: 8px; margin-top: 10px; }
.reaction {
  background: rgba(217, 165, 32, 0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12.5px;
}

/* ---------- Accordion ---------- */
.accordion { max-width: 760px; margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
}
.accordion-plus {
  color: var(--gold-light);
  font-size: 20px;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.is-open .accordion-plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p { color: var(--text-muted); font-size: 14.5px; padding: 0 22px 18px; margin: 0; }

/* ---------- Community ---------- */
.community-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  padding-left: 30px;
  position: relative;
  color: var(--text-muted);
  font-size: 15.5px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.community-card {
  background: radial-gradient(circle at 50% 20%, rgba(180,34,44,0.18), transparent 60%), var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.community-logo { width: 90px; height: 90px; margin-bottom: 18px; }
.community-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- CTA ---------- */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(180,34,44,0.08));
}
.cta-logo { width: 80px; height: 80px; margin-bottom: 20px; }
.cta-inner p { color: var(--text-muted); margin: 14px 0 30px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { gap: 10px; }
.footer-logo { width: 32px; height: 32px; }
.footer-brand .brand-name { font-size: 13px; }
.footer-links { display: flex; gap: 22px; font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .pings-inner, .success-inner { grid-template-columns: 1fr; }
  .order-1, .order-2 { order: initial; }
  .discord-embed { max-width: 100%; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .discord-embed-main { flex-direction: column; }
  .discord-embed-fields { grid-template-columns: 1fr 1fr; }
}

/* ---------- Legal pages ---------- */
.legal-section { padding: 60px 0 100px; }
.legal-container { max-width: 760px; }
.legal-container h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 30px;
}
.legal-container h2 {
  font-size: 19px;
  color: var(--gold-light);
  margin: 34px 0 10px;
}
.legal-container p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-container a { color: var(--gold-light); text-decoration: underline; }
.legal-updated { margin-top: 40px; font-size: 13px; opacity: 0.7; }
.legal-form-box {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 18px 0;
}
.legal-form-box p { margin: 0 0 14px; }
.legal-form-box p:last-child { margin-bottom: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float, .btn-pulse::after { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .feature-card, .process-card, .flag-pill { transition: none; }
}
