/* ============================================================
   RS SHOP — style-landing.css
   HOME PAGE — Cinematic dark luxury FiveM aesthetic
   Upgraded: English LTR + Enhanced Design
   ============================================================ */

/* View: home */
[data-view="home"] {
  background: #020202;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Animated grid background */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,90,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridDrift 25s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 70px 70px; }
}

/* Radial fade over grid */
.hero-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 75% at 50% 50%, transparent 20%, #020202 85%);
}

/* Large glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  animation: orbFloat var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 70%);
  top: -12%; left: -12%;
  --dur: 11s; --delay: 0s;
}
.hero-orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(88,101,242,0.07) 0%, transparent 70%);
  bottom: -8%; right: -8%;
  --dur: 13s; --delay: 2s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,175,90,0.07) 0%, transparent 70%);
  top: 35%; right: 18%;
  --dur: 10s; --delay: 1s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(35px, -25px) scale(1.1); }
  66%       { transform: translate(-25px, 18px) scale(0.92); }
}

/* Scanline overlay */
.hero-scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.02) 2px,
    rgba(0,0,0,0.02) 4px
  );
}

/* Noise texture */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Floating particles canvas */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 950px;
  padding: 0 28px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px;
  background: rgba(212,175,90,0.05);
  border: 1px solid rgba(212,175,90,0.18);
  border-radius: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,175,90,0.65);
  margin-bottom: 36px;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d4af5a;
  animation: eyebrowPulse 2.2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.55); }
}

/* Main headline */
.hero-headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero-headline-rs {
  display: block;
  background: linear-gradient(135deg, #f0c760 0%, #d4af5a 40%, #9e7e37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 45px rgba(212,175,90,0.35));
  animation: heroGlitch 10s ease-in-out infinite 3s;
}
@keyframes heroGlitch {
  0%, 92%, 100% { filter: drop-shadow(0 0 45px rgba(212,175,90,0.35)); transform: none; }
  93%   { transform: translateX(-3px); filter: drop-shadow(-4px 0 #d4af5a) drop-shadow(4px 0 #5865F2); }
  94%   { transform: translateX(3px);  filter: drop-shadow(4px 0 #d4af5a) drop-shadow(-4px 0 #5865F2); }
  95%   { transform: none; filter: drop-shadow(0 0 45px rgba(212,175,90,0.35)); }
  96%   { transform: translateX(-2px); filter: drop-shadow(-3px 0 #d4af5a); }
  97%   { transform: none; filter: drop-shadow(0 0 45px rgba(212,175,90,0.35)); }
}

.hero-headline-project {
  display: block;
  color: rgba(247,244,238,0.88);
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Subtitle */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.4vw, 21px);
  color: rgba(196,192,184,0.65);
  max-width: 580px;
  margin: 32px auto 48px;
  line-height: 1.75;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.hero-subtitle em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.65s both;
}

.hero-btn-primary {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #f0c760, #d4af5a, #b8922e);
  color: #060606;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 36px rgba(212,175,90,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}
.hero-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.55s ease;
}
.hero-btn-primary:hover::before { transform: translateX(200%) skewX(-15deg); }
.hero-btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 24px 64px rgba(212,175,90,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.hero-btn-secondary {
  display: flex; align-items: center; gap: 10px;
  padding: 17px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(247,244,238,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  border-radius: 50px; cursor: pointer;
  transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,90,0.35);
  color: var(--white);
  transform: translateY(-4px);
}

/* Mini stats row under CTA */
.hero-mini-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.8s both;
}
.hero-mini-stat {
  text-align: center;
}
.hero-mini-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, #f0c760, #d4af5a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-mini-stat-label {
  font-size: 12px; color: rgba(196,192,184,0.45);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 500;
}
.hero-mini-sep {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(212,175,90,0.2), transparent);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 10;
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 1.2s both;
}
.hero-scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(212,175,90,0.28);
  border-radius: 14px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 7px;
}
.hero-scroll-wheel {
  width: 4px; height: 9px;
  background: rgba(212,175,90,0.55);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero-scroll-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(212,175,90,0.28);
  font-weight: 500;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════════ */
.home-marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(212,175,90,0.08);
  border-bottom: 1px solid rgba(212,175,90,0.08);
  background: rgba(212,175,90,0.015);
  padding: 0;
}
.home-marquee-track {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.home-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 36px;
  white-space: nowrap;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(212,175,90,0.4);
}
.marquee-item.highlight { color: rgba(212,175,90,0.85); }
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(212,175,90,0.25); flex-shrink: 0;
}
.marquee-dot.gold { background: #d4af5a; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT / INFO SECTION
═══════════════════════════════════════════════════════════════ */
.home-about {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.home-about::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(212,175,90,0.3), transparent);
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.home-about-text {}

.home-about-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.home-about-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold); display: block;
}

.home-about-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.home-about-heading span {
  background: linear-gradient(135deg, #f0c760, #d4af5a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-about-desc {
  font-size: 17px; color: rgba(196,192,184,0.65);
  line-height: 1.85; margin-bottom: 40px;
}

.home-about-features {
  display: flex; flex-direction: column; gap: 16px;
}
.home-about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: rgba(212,175,90,0.025);
  border: 1px solid rgba(212,175,90,0.08);
  border-radius: 14px;
  transition: all 0.28s ease;
}
.home-about-feature:hover {
  background: rgba(212,175,90,0.06);
  border-color: rgba(212,175,90,0.2);
  transform: translateX(8px);
}
.home-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(212,175,90,0.1);
  border: 1px solid rgba(212,175,90,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.home-feature-text {}
.home-feature-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.home-feature-desc  { font-size: 13px; color: rgba(196,192,184,0.5); line-height: 1.55; }

/* Right: Stats visual block */
.home-about-stats-visual {
  position: relative;
}
.home-stats-card-main {
  background: linear-gradient(145deg, #0d0d0d, #121212);
  border: 1px solid rgba(212,175,90,0.14);
  border-radius: 28px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,0.6);
}
.home-stats-card-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af5a 50%, transparent);
}
.home-stats-card-main::after {
  content: 'RS PROJECT';
  position: absolute; bottom: -24px; right: -14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 90px; font-weight: 900;
  color: rgba(212,175,90,0.025);
  letter-spacing: 0.06em; pointer-events: none; line-height: 1;
  white-space: nowrap;
}

.home-big-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  position: relative; z-index: 1;
}
.home-big-stat {
  text-align: center; padding: 28px 18px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,90,0.06);
  border-radius: 18px;
  transition: all 0.32s ease;
}
.home-big-stat:hover {
  border-color: rgba(212,175,90,0.22);
  background: rgba(212,175,90,0.035);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.home-big-stat-icon {
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212,175,90,0.25));
}
.home-big-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, #f0c760, #d4af5a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.home-big-stat-label {
  font-size: 12px; color: rgba(196,192,184,0.42);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600;
}

/* Badge inside stats card */
.stats-card-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  background: linear-gradient(135deg, #d4af5a, #b8922e);
  border-radius: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800;
  color: #060606; letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(212,175,90,0.45);
  white-space: nowrap;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORIES SHOWCASE
═══════════════════════════════════════════════════════════════ */
.home-categories {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,90,0.012) 50%, transparent 100%);
}
.home-section-header {
  text-align: center; margin-bottom: 72px;
}
.home-section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(212,175,90,0.55);
  margin-bottom: 18px;
}
.home-section-tag::before, .home-section-tag::after {
  content: '';
  width: 28px; height: 1px;
  background: rgba(212,175,90,0.28);
}
.home-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.home-section-subtitle {
  font-size: 16px; color: rgba(196,192,184,0.48); max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

.home-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-cat-card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(212,175,90,0.07);
  border-radius: 22px;
  padding: 40px 28px 32px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  display: block;
}
.home-cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(212,175,90,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.38s ease;
}
.home-cat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cat-color, #d4af5a), transparent);
  opacity: 0; transition: opacity 0.38s ease;
}
.home-cat-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212,175,90,0.28);
  box-shadow: 0 36px 72px rgba(0,0,0,0.65), 0 0 0 1px rgba(212,175,90,0.06);
}
.home-cat-card:hover::before, .home-cat-card:hover::after { opacity: 1; }

.home-cat-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: rgba(212,175,90,0.05);
  border: 1px solid rgba(212,175,90,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; z-index: 1;
}
.home-cat-card:hover .home-cat-icon-wrap {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(212,175,90,0.12);
  border-color: rgba(212,175,90,0.35);
  box-shadow: 0 10px 28px rgba(212,175,90,0.18);
}
.home-cat-name {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
}
.home-cat-desc {
  font-size: 13px; color: rgba(196,192,184,0.42);
  line-height: 1.65; position: relative; z-index: 1;
  margin-bottom: 18px;
}
.home-cat-count {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(212,175,90,0.05);
  border: 1px solid rgba(212,175,90,0.12);
  border-radius: 30px;
  font-size: 12px; font-weight: 700; color: rgba(212,175,90,0.55);
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.04em;
  position: relative; z-index: 1;
  transition: all 0.28s ease;
}
.home-cat-card:hover .home-cat-count {
  background: rgba(212,175,90,0.12);
  border-color: rgba(212,175,90,0.35);
  color: #d4af5a;
}

/* ═══════════════════════════════════════════════════════════════
   LATEST PRODUCTS PREVIEW
═══════════════════════════════════════════════════════════════ */
.home-latest {
  padding: 100px 0 120px;
}

.home-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════════════════ */
.home-why {
  padding: 100px 0 120px;
  background: #050505;
  position: relative;
  overflow: hidden;
}
.home-why::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,90,0.14) 50%, transparent);
}
.home-why::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,90,0.14) 50%, transparent);
}

/* Decorative corner glows */
.home-why-glow-tl, .home-why-glow-br {
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.home-why-glow-tl {
  top: -200px; left: -200px;
  background: rgba(212,175,90,0.04);
}
.home-why-glow-br {
  bottom: -200px; right: -200px;
  background: rgba(88,101,242,0.03);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-why-card {
  position: relative;
  background: linear-gradient(145deg, rgba(13,13,13,0.9), rgba(18,18,18,0.9));
  border: 1px solid rgba(212,175,90,0.08);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.home-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.home-why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,90,0.22);
  box-shadow: 0 32px 72px rgba(0,0,0,0.55), 0 0 40px rgba(212,175,90,0.06);
}
.home-why-card:hover::before { opacity: 1; }

.why-card-number {
  position: absolute; top: 18px; left: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(212,175,90,0.35);
  letter-spacing: 0.1em;
}

.why-card-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,90,0.06);
  border: 1px solid rgba(212,175,90,0.14);
  border-radius: 20px;
  color: var(--gold);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.home-why-card:hover .why-card-icon {
  transform: scale(1.1);
  background: rgba(212,175,90,0.12);
  border-color: rgba(212,175,90,0.3);
  box-shadow: 0 10px 28px rgba(212,175,90,0.18);
}

.why-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.why-card-desc {
  font-size: 14px; color: rgba(196,192,184,0.5);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════ */
.home-cta-section {
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #020202 0%, #0a0800 50%, #020202 100%);
}
.home-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,175,90,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.home-cta-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(212,175,90,0.5);
  margin-bottom: 20px;
}
.home-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.home-cta-title span {
  background: linear-gradient(135deg, #f0c760, #d4af5a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-cta-desc {
  font-size: 17px; color: rgba(196,192,184,0.55);
  max-width: 520px; margin: 0 auto 44px;
  line-height: 1.75;
}
.home-cta-buttons {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.home-discord-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--discord), #4752c4);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: all 0.28s var(--ease);
  box-shadow: 0 10px 32px rgba(88,101,242,0.4);
}
.home-discord-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(88,101,242,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .home-about-inner { grid-template-columns: 1fr; gap: 60px; }
  .home-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .home-why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-hero { min-height: auto; padding: 100px 0 80px; }
  .hero-mini-stats { flex-direction: column; gap: 24px; }
  .hero-mini-sep { display: none; }
  .home-cats-grid { grid-template-columns: 1fr; }
  .home-latest-grid { grid-template-columns: 1fr; }
  .home-cta-buttons { flex-direction: column; }
  .home-about { padding: 80px 0 60px; }
  .home-categories { padding: 60px 0 80px; }
  .home-latest { padding: 60px 0 80px; }
  .home-why { padding: 60px 0 80px; }
  .home-cta-section { padding: 80px 0 100px; }
}
