:root {
  --bg: #040408;
  --bg-elevated: #0c0c14;
  --bg-card: rgba(14, 14, 22, 0.72);
  --white: #f4f4f8;
  --muted: #8b8ba3;
  --accent: #ff3b5c;
  --accent-2: #a855f7;
  --purple-deep: #08040f;
  --purple-mid: #2a1258;
  --pink-cascade: #ff4d8d;
  --home-gradient: linear-gradient(
    180deg,
    #06030c 0%,
    #0c0618 10%,
    #120822 20%,
    #1a0c32 32%,
    #241045 44%,
    #2e1560 55%,
    #3d1a78 65%,
    #4f2288 74%,
    #6a2d9a 82%,
    #8e3da8 89%,
    #b84a96 94%,
    #e84d8f 98%,
    #ff5b9a 100%
  );
  --accent-glow: rgba(255, 59, 92, 0.35);
  --purple-glow: rgba(168, 85, 247, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 59, 92, 0.28);
  --success: #34d399;
  --danger: #f87171;
  --nav-h: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(168, 85, 247, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(255, 59, 92, 0.1), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(255, 59, 92, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}

body:has(#page-home.active)::before {
  opacity: 0;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(4, 4, 8, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 28px var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(4, 4, 8, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  flex-direction: column;
  padding: 0.5rem 0;
}

.mobile-nav-drawer.open { display: flex; }

.mobile-nav-drawer a {
  padding: 0.9rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-drawer a:hover { color: var(--accent); }

/* ─── PAGES ─── */
.page {
  display: none;
  padding-top: var(--nav-h);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.page.active { display: block; }

/* ─── HOME CASCADE GRADIENT ─── */
#page-home {
  background: var(--home-gradient);
  background-attachment: fixed;
}

#page-home .section,
#page-home .discord-banner {
  background: transparent;
}

#page-home .bento-card,
#page-home .product-card {
  background: rgba(10, 6, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#page-home .marquee-wrap {
  background: rgba(8, 4, 16, 0.35);
  border-color: rgba(255, 255, 255, 0.06);
}

/* ─── HERO ─── */
.home-atmosphere {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.home-atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(255, 77, 141, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(120, 40, 180, 0.14), transparent 45%);
}

#hero-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#hero-parallax-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.hero-content {
  max-width: 780px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: rgba(255, 59, 92, 0.06);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--border-accent);
  background: rgba(255, 59, 92, 0.06);
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background: rgba(8, 8, 14, 0.5);
}

#page-home .marquee-item {
  color: rgba(255, 220, 240, 0.75);
  text-shadow: 0 0 20px rgba(255, 91, 154, 0.4);
}

#page-home .marquee-dot {
  color: rgba(255, 91, 154, 0.65);
}

.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 2rem;
}

.marquee-dot {
  font-size: 0.45rem;
  color: var(--accent);
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.view-all {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── BENTO GRID ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s;
}

.bento-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.bento-wide { grid-column: span 2; }

.bento-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.products-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px var(--purple-glow);
}

.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #12121c, #1a1020);
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img img { transform: scale(1.04); }

.product-img.img-fallback::after {
  content: 'SM';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 59, 92, 0.2);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  z-index: 1;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin: 0.25rem 0 0.75rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-actions .btn-primary,
.product-actions .btn-ghost {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
}

/* ─── PAGE BANNER ─── */
.page-banner {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}

.page-banner p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ─── STORE ─── */
.store-controls {
  display: flex;
  gap: 0.6rem;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem) 0;
  max-width: 1320px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.store-section { padding-top: 2rem; }

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--border-accent);
  color: var(--white);
  background: rgba(255, 59, 92, 0.08);
}

/* ─── GUIDES ─── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guide-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.guide-card:hover { border-color: var(--border-accent); }

.guide-img {
  background: linear-gradient(145deg, #12121c, #1a1020);
  min-height: 220px;
  position: relative;
}

.guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-img.img-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,59,92,0.15), rgba(168,85,247,0.15));
}

.guide-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.guide-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.guide-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.guide-body .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s;
}

.review-card:hover { border-color: var(--border-accent); }

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.review-game {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-cta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FAQ ─── */
.faq-section { max-width: 860px; }

.faq-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--border-accent); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-q span { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }

.faq-a {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { display: block; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.contact-primary { grid-row: span 2; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card h2,
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-card h2 { font-size: 1.5rem; }
.contact-card h3 { font-size: 1.1rem; }

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.discord-icon {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.35);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #5865f2;
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
}

.btn-discord:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.contact-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover { text-decoration: underline; }

/* ─── DISCORD BANNER ─── */
.discord-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  margin: 0 auto;
  max-width: 1320px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(255, 59, 92, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#page-home .discord-banner {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.14), rgba(255, 91, 154, 0.1));
  border-color: rgba(255, 255, 255, 0.06);
}

.discord-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}

.discord-banner p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 0;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1320px;
  margin: 0 auto 2.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.55rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── TOAST ─── */
.toast {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 9999;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.toast.show {
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-primary { grid-row: span 1; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; }

  .bento-grid,
  .products-grid,
  .products-grid.three-col,
  .reviews-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide { grid-column: span 1; }

  .guide-card { grid-template-columns: 1fr; }

  .discord-banner {
    flex-direction: column;
    text-align: center;
  }

  .discord-banner .btn-discord { width: 100%; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-primary { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
