*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ff3131;
  --redHot: #ff2b4a;
  --redDeep: #6b0714;
  --green: #22c55e;
  --bg-panel: rgba(8,5,8,.86);
  --bg-card: rgba(6,4,7,.88);
  --border: rgba(255,255,255,.12);
  --border-soft: rgba(255,255,255,.06);
  --text: #ffffff;
  --muted: #b4bac7;
  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: #000;
  background-image:
    radial-gradient(900px 700px at 50% -10%, #ff28288c, #0000 70%),
    radial-gradient(900px 650px at 0 90%, #dc14147a, #0000 70%),
    radial-gradient(800px 580px at 100% 100%, #ff3c3c80, #0000 70%),
    linear-gradient(#1a0505 0%, #0c0203 45%, #050001 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #FF0C25; color: #fff; }

::-webkit-scrollbar { width: 10px; background: #221313; }
::-webkit-scrollbar-track { border-radius: 25px; box-shadow: inset 0 0 10px rgba(0,0,0,0.25); }
::-webkit-scrollbar-thumb { border-radius: 2rem; background: linear-gradient(170deg, #FF0C25, #75000c); }

/* ─── HEADER ─── */
.header {
  position: relative; width: 100%; z-index: 999;
}
.header-inner {
  position: relative; z-index: 1;
  width: 100%; margin: 0; padding: 0 20px;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
@media (min-width: 1024px) { .header-inner { padding: 0 32px; height: 100px; } }
.header-brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.header-logo {
  width: 52px; height: 52px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 50% 0, #4b151f, #040203 70%);
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.header-brand:hover .header-logo {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(220,38,38,0.55);
}
.header-brand-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.header-brand-title {
  font-weight: 800; font-size: 16px; line-height: 1.1;
  transition: color 0.3s;
}
.header-brand:hover .header-brand-title { color: var(--red); }
.header-brand-sub { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }

.header-nav { display: none; align-items: center; gap: 12px; margin: 0 16px; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-link {
  border-radius: 999px; padding: 9px 22px; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; transition: all 0.25s;
  color: #e5e7eb; border: 1px solid transparent;
}
.header-link:hover { color: #fff; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
.header-link--primary {
  background: #59161c; border-color: #b52a35; color: #fff;
}
.header-link--primary:hover {
  background: #7a2323;
  box-shadow: 0 0 18px rgba(220,38,38,.45);
  transform: translateY(-1px);
}

.header-actions { display: none; align-items: center; gap: 10px; }
@media (min-width: 768px) { .header-actions { display: flex; } }

.header-discord {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: #59161c; border: 1px solid #b52a35;
  color: #fff; text-decoration: none; font-size: .95rem; font-weight: 500;
  white-space: nowrap; transition: all 0.3s;
}
.header-discord:hover {
  background: #7a2323;
  box-shadow: 0 0 18px rgba(220,38,38,.45);
  transform: translateY(-2px);
}
.header-discord i { font-size: 16px; }
.header-discord:hover i { transform: rotate(360deg); transition: transform .7s; }

.mobile-menu-btn {
  display: inline-flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 42px; height: 42px;
  border-radius: 50%; background: #101015;
  border: 1px solid rgba(255,255,255,.08); cursor: pointer; margin-left: auto;
  transition: all 0.2s;
}
.mobile-menu-btn:hover { background: #252525; border-color: rgba(255,255,255,.24); box-shadow: 0 0 12px rgba(255,255,255,.12); }
.mobile-menu-btn span { width: 20px; height: 2px; border-radius: 999px; background: #e5e7eb; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  display: none; flex-direction: column; width: 100%;
  padding: 0 20px 14px; background: #000;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; width: 100%; padding: 10px 0;
  font-size: .95rem; color: #e5e7eb; text-decoration: none;
  border-bottom: 1px solid rgba(148,27,38,.3);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; padding-left: 4px; background: rgba(255,255,255,.02); }

.header-glow {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(to right, transparent, rgba(239,68,68,.85), transparent);
  box-shadow: 0 0 8px rgba(127,29,29,.7); pointer-events: none;
}

/* ─── HERO (South exact) ─── */
.rm-hero-fivem {
  position: relative; width: 100%; padding: 48px 16px;
  color: var(--text); font-family: inherit; background: transparent;
}
.rm-hero-shell { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; }
.rm-hero-accent-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,55,92,1) 0%, rgba(220,38,38,1) 38%, rgba(151,14,35,1) 72%, rgba(107,7,20,1) 100%);
  box-shadow: 0 0 18px rgba(255,43,74,.85), 0 0 55px rgba(255,43,74,.55), 0 0 120px rgba(255,43,74,.25);
}
.rm-hero-accent-bar::before {
  content: ""; position: absolute; inset: -14px -10px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,55,92,.55), rgba(220,38,38,.45), rgba(107,7,20,.20));
  filter: blur(18px); opacity: .95; pointer-events: none;
}
.rm-hero-layout {
  position: relative; display: grid; gap: 44px; align-items: center;
}
@media (min-width: 1024px) { .rm-hero-layout { grid-template-columns: minmax(0,1fr) 430px; } }
.rm-hero-col-left { position: relative; padding-left: 32px; }
.rm-hero-kicker-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rm-hero-kicker-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #ef4444;
  box-shadow: 0 0 12px rgba(220,38,38,.85), 0 0 22px rgba(220,38,38,.5);
  animation: rmPulse 1.35s ease-in-out infinite;
}
.rm-hero-kicker-text { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #a6adbb; }
.rm-hero-heading { margin: 0; font-weight: 700; line-height: 1.05; letter-spacing: .03em; font-size: clamp(2.4rem,3.7vw,3.2rem); }
@media (min-width: 768px) { .rm-hero-heading { font-size: 64px; } }
.rm-hero-heading-accent { color: var(--red); }
.rm-hero-lead { margin: 14px 0 0; max-width: 38rem; color: var(--muted); line-height: 1.7; font-size: 15px; }
.rm-hero-info-grid { margin-top: 18px; display: grid; gap: 16px; }
@media (min-width: 640px) { .rm-hero-info-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
.rm-hero-info-card {
  border-radius: 16px; padding: 14px;
  background: rgba(12,7,10,.88); border: 1px solid var(--border-soft);
  backdrop-filter: blur(6px);
}
.rm-hero-info-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.rm-hero-info-label i { color: #ef4444; font-size: 14px; width: 16px; text-align: center; }
.rm-hero-info-value { color: #e5e7eb; font-size: 14px; }
.rm-hero-bullets { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.rm-hero-bullets li { display: flex; align-items: flex-start; gap: 10px; color: #e5e7eb; font-size: 14px; }
.rm-hero-bullets i { color: #ef4444; font-size: 18px; margin-top: 1px; }
.rm-hero-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.rm-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: all .15s ease;
}
.rm-hero-btn i { font-size: 16px; }
.rm-hero-btn-primary {
  position: relative; isolation: isolate; color: #fff;
  background: linear-gradient(180deg, #ff2b4a, #b11225 55%, #6b0714);
  box-shadow: 0 18px 38px rgba(255,43,74,.18), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.rm-hero-btn-primary::before {
  content: ""; position: absolute; inset: -14px; border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255,108,140,.55), rgba(255,43,74,.25) 42%, transparent 70%);
  filter: blur(18px); opacity: .85; z-index: -1; transition: all .25s;
}
.rm-hero-btn-primary::after {
  content: ""; position: absolute; inset: 1px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 45%);
  opacity: .35; pointer-events: none; z-index: 0;
}
.rm-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(255,43,74,.30), 0 0 0 1px rgba(255,255,255,.06) inset;
  background: linear-gradient(180deg, #ff3956, #c1152b 55%, #7a0a18);
}
.rm-hero-btn-primary:hover::before { inset: -18px; opacity: 1; }
.rm-hero-btn-ghost {
  color: #fff; background: rgba(10,10,14,.75);
  border: 1px solid rgba(255,255,255,.14);
}
.rm-hero-btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(18,18,24,.78); }

.rm-hero-col-right { position: relative; }
.rm-hero-col-right::before {
  content: ""; position: absolute; inset: -18px; border-radius: 999px;
  background: rgba(248,113,113,.16); filter: blur(42px); opacity: .55; z-index: 0;
}
.rm-hero-panel {
  position: relative; z-index: 1; border-radius: 22px; padding: 18px;
  background: var(--bg-panel); border: 1px solid var(--border);
  box-shadow: 0 22px 55px rgba(0,0,0,.85);
  overflow: hidden; backdrop-filter: blur(10px);
  transition: transform .25s, border-color .25s;
}
.rm-hero-panel:hover { transform: translateY(-4px); border-color: rgba(255,49,49,.8); }
.rm-hero-panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  transform: translateX(-120%); transition: transform 1s; pointer-events: none;
}
.rm-hero-panel:hover::after { transform: translateX(120%); }
.rm-hero-panel-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px;
}
.rm-hero-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.rm-hero-logo {
  width: 56px; height: 56px; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 50% 0, #4b151f, #040203 70%);
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.rm-hero-brand-texts { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rm-hero-brand-name { font-weight: 800; font-size: 16px; line-height: 1.1; }
.rm-hero-brand-sub { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.rm-hero-status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,5,8,.92); font-size: 12px; font-weight: 600; white-space: nowrap;
}
.rm-hero-status-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); animation: rmPulse 1.25s ease-in-out infinite; }
.rm-hero-preview {
  border-radius: 18px; padding: 16px;
  border: 1px solid rgba(255,49,49,.75);
  background: radial-gradient(circle at 0 0, rgba(220,38,38,.95), rgba(60,8,16,.95) 50%, rgba(8,2,6,.95));
  box-shadow: 0 0 44px rgba(220,38,38,.10), 0 0 85px rgba(220,38,38,.06);
  margin-bottom: 16px; overflow: hidden;
}
.rm-hero-preview::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,113,113,.75), transparent);
}
.rm-hero-preview-tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(54,5,14,.85);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 800; color: #d1d5db; margin-bottom: 10px;
}
.rm-hero-preview-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.rm-hero-preview-sub { font-size: 14px; color: #c3c8d2; }
.rm-hero-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.rm-hero-stat { border-radius: 16px; padding: 12px; background: var(--bg-card); border: 1px solid rgba(255,255,255,.06); }
.rm-hero-stat-label { display: block; font-size: 12px; color: #7b8493; margin-bottom: 4px; }
.rm-hero-stat-value { display: block; font-size: 16px; font-weight: 800; color: #fff; }
.rm-hero-stat-good { color: var(--green); }
.rm-hero-panel-footer { margin-top: 14px; }
.rm-hero-foot-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.06);
  color: #c2c8d4; font-size: 13px;
}
.rm-hero-foot-badge i { color: #ef4444; font-size: 15px; }

@keyframes rmPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.22); opacity: .45; } }

/* ─── PRICING / CHOOSE YOUR PLAN ─── */
.rm-pricing { padding: 56px 16px 64px; color: #fff; }
.rm-pricing-container { max-width: 1100px; margin: 0 auto; }
.rm-pricing-grid { display: grid; gap: 20px; margin-top: 36px; }
@media (min-width: 768px) { .rm-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.rm-pricing-grid--4col { }
@media (min-width: 900px) { .rm-pricing-grid--4col { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) and (max-width: 899px) { .rm-pricing-grid--4col { grid-template-columns: repeat(3, 1fr); } }
.rm-pricing-card { position: relative; border-radius: 22px; overflow: hidden; }
.rm-pricing-card-border {
  position: absolute; inset: 0; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,49,49,.55), rgba(107,7,20,.55));
  padding: 1px; pointer-events: none;
}
.rm-pricing-card--featured .rm-pricing-card-border {
  background: linear-gradient(135deg, #ff2b4a, #b11225 40%, #6b0714, #ff2b4a);
  box-shadow: 0 0 32px rgba(255,43,74,.35);
}
.rm-pricing-card-inner {
  border-radius: 22px; padding: 32px 24px; height: 100%;
  background: linear-gradient(145deg, #070102, #020001);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.rm-pricing-card--featured .rm-pricing-card-inner {
  background: linear-gradient(145deg, #0f0102, #040001);
  box-shadow: inset 0 0 60px rgba(255,49,49,.06);
}
.rm-pricing-free { font-size: 36px; font-weight: 900; color: #22c55e !important; }
.rm-pricing-status {
  position: absolute; bottom: 14px; right: 14px;
  font-size: 8px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.rm-pricing-status--live { background: rgba(34,197,94,.15); color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.rm-pricing-status--dev { background: rgba(245,158,11,.15); color: #f59e0b; border: 1px solid rgba(245,158,11,.3); }
.rm-pricing-popular {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #ff2b4a, #b11225);
  color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
  animation: rm-pill-pulse 2s ease-in-out infinite;
}
.rm-pricing-badge {
  font-size: 10px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 12px;
}
.rm-pricing-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #ff3a56, #c1132b 55%, #6b0714);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 22px rgba(255,49,49,.38);
  margin-bottom: 16px; font-size: 22px;
}
.rm-pricing-name { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.rm-pricing-price { font-size: 42px; font-weight: 900; line-height: 1; color: #fff; display: flex; align-items: flex-start; justify-content: center; }
.rm-pricing-currency { font-size: 20px; margin-top: 6px; color: var(--red); }
.rm-pricing-cents { font-size: 20px; margin-top: 6px; color: var(--muted); }
.rm-pricing-period { font-size: 12px; color: var(--muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .12em; }
.rm-pricing-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.rm-pricing-features li { display: flex; align-items: center; gap: 10px; color: #d1d5db; font-size: 14px; }
.rm-pricing-features i { color: var(--red); font-size: 14px; width: 16px; }
.rm-pricing-btn { width: 100%; justify-content: center; }
.rm-pricing-card--featured { transform: scale(1.04); z-index: 1; }
@media (max-width: 767px) { .rm-pricing-card--featured { transform: none; } }

/* ─── ACCOMPLISHMENTS ─── */
.rm-accomplishments { position: relative; width: 100%; padding: 56px 16px 64px; color: #fff; }
.rm-acc-container { max-width: 1200px; margin: 0 auto; }
.rm-acc-header { text-align: center; margin-bottom: 36px; }
.rm-acc-header h2 { margin: 0 0 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: 34px; }
.rm-acc-header h2::after {
  content: ""; display: block; width: 72px; height: 2px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.rm-acc-header p { margin: 0 auto; max-width: 760px; color: #b4bac7; font-size: 15px; line-height: 1.7; }
.rm-acc-grid { display: grid; gap: 26px; }
@media (min-width: 768px) { .rm-acc-grid { grid-template-columns: repeat(3,1fr); } }
.rm-acc-card { border-radius: 22px; border: 1px solid rgba(255,58,58,.55); background: transparent; overflow: hidden; position: relative; }
.rm-acc-card-inner {
  border-radius: 22px; padding: 16px 20px; min-height: 150px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  background: linear-gradient(145deg, #070102, #020001);
  box-shadow: 0 18px 40px rgba(0,0,0,.9), 0 0 14px rgba(255,58,58,.25);
  transition: all .22s ease; position: relative;
}
.rm-acc-card:hover .rm-acc-card-inner { transform: translateY(-6px) scale(1.02); box-shadow: 0 28px 80px rgba(0,0,0,.85), 0 0 38px rgba(255,49,49,.22); }
.rm-acc-icon-wrap { position: relative; margin-bottom: 14px; }
.rm-acc-icon-wrap::before {
  content: ""; position: absolute; inset: -16px; border-radius: 18px;
  background: radial-gradient(circle, rgba(255,49,49,.42), transparent 68%);
  filter: blur(16px); opacity: 1; pointer-events: none;
}
.rm-acc-icon-square {
  position: relative; width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(180deg, #ff3a56, #c1132b 55%, #6b0714);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 22px rgba(255,49,49,.38);
}
.rm-acc-value { font-weight: 900; font-size: 1.8rem; letter-spacing: .02em; margin-top: 2px; }
.rm-acc-label { margin-top: 10px; font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: #b4bac7; }

/* ─── SHOP ─── */
.rm-shop-layout { color: #fff; background: transparent; padding: 52px 0 56px; position: relative; }
.rm-shop-layout .rm-shop-layout-grid { max-width: 1520px; margin: 0 auto; padding: 0 26px; display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
@media (max-width: 980px) { .rm-shop-layout .rm-shop-layout-grid { grid-template-columns: 1fr; } }
.rm-shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.rm-shop-section-title { margin: 0; font-size: 28px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.rm-shop-section-title::after {
  content: ""; display: block; width: 92px; height: 2px; margin-top: 8px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 16px rgba(255,59,74,.7);
}
.rm-shop-section-sub { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }
.rm-shop-mixed-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fill,minmax(310px,1fr)); gap: 24px; }

.rm-product-card {
  position: relative; display: flex; flex-direction: column; border-radius: 20px;
  overflow: hidden; background: #080202;
  box-shadow: 0 18px 42px rgba(0,0,0,.90);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .22s cubic-bezier(.22,.61,.36,1);
  color: #fff; text-decoration: none;
}
.rm-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,1), 0 0 36px rgba(224,33,52,.55);
  border-color: rgba(255,255,255,.18);
  background: radial-gradient(circle at top, #120303, #080202 55%, #040101);
}
.rm-product-card-img { position: relative; width: 100%; padding-top: 60%; overflow: hidden; background: #101010; }
.rm-product-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { position: absolute; inset: 0; }

.rm-sm-pill {
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a0004, #0d0002);
  border: 1px solid rgba(255,49,49,.70); color: #fff;
  font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  animation: rm-pill-pulse 2s ease-in-out infinite;
}
@keyframes rm-pill-pulse { 0%,100% { box-shadow: 0 0 8px rgba(255,49,49,.30); } 50% { box-shadow: 0 0 18px rgba(255,49,49,.65); } }
.rm-sm-pill--live { border-color: #22c55e !important; color: #22c55e !important; }
.rm-sm-pill--dev { border-color: #f59e0b !important; color: #f59e0b !important; }
.rm-product-price--free { color: #22c55e !important; }
.rm-product-tiers { font-size: 11px; color: #888; margin-top: 8px; letter-spacing: .02em; }

.product-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: .02em; }
.product-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rm-product-price { font-size: 20px; font-weight: 800; color: #fff; }
.rm-product-buy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px;
  background: #59161c; border: 1px solid #b52a35;
  color: #fff; font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.rm-product-card:hover .rm-product-buy { background: #7a2323; box-shadow: 0 0 14px rgba(220,38,38,.35); }

.shop-controls {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px;
}
@media (min-width: 768px) { .shop-controls { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-filter-group { display: flex; gap: 12px; flex-wrap: wrap; }
.shop-filter { display: flex; flex-direction: column; gap: 4px; }
.shop-filter label { font-size: 10px; text-transform: uppercase; color: var(--muted); font-weight: 800; letter-spacing: .1em; }
.shop-filter select { background: #101015; color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 8px 14px; font-size: .85rem; outline: none; cursor: pointer; }
.shop-filter select:focus { border-color: var(--red); }
.shop-search input { background: #101015; color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 8px 14px; font-size: .85rem; outline: none; min-width: 180px; width: 100%; }
.shop-search input:focus { border-color: var(--red); }
.shop-search input::placeholder { color: #555; }

/* ─── SHOP SIDEBAR ─── */
.rm-shop-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rm-sidebar-card {
  border-radius: 18px; padding: 20px;
  background: rgba(8,5,8,.86); border: 1px solid rgba(255,255,255,.08);
}
.rm-sidebar-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.rm-sidebar-card h4 i { color: var(--red); }
.rm-sidebar-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── FAQ ─── */
.rm-faq-section { padding: 56px 16px 64px; }
.rm-faq-container { max-width: 700px; margin: 0 auto; }
.rm-faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.rm-faq-item { border: 1px solid rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.rm-faq-item:hover { border-color: rgba(220,38,38,.2); }
.rm-faq-item.open { border-color: rgba(220,38,38,.4); }
.rm-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; color: #fff;
  font-size: 15px; font-weight: 600; text-align: left; cursor: pointer;
}
.rm-faq-question:hover { background: rgba(255,255,255,.02); }
.rm-faq-icon { color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.rm-faq-item.open .rm-faq-icon { transform: rotate(45deg); }
.rm-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.rm-faq-item.open .rm-faq-answer { max-height: 300px; }
.rm-faq-answer p { padding: 0 24px 20px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; }

/* ─── STATUS PAGE ─── */
.rm-status { padding: 48px 16px 64px; color: #fff; }
.rm-status-container { max-width: 800px; margin: 0 auto; }
.rm-status-header { text-align: center; margin-bottom: 40px; }
.rm-status-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(34,197,94,.3);
  background: rgba(34,197,94,.08);
  font-size: 12px; font-weight: 700; color: #22c55e; margin-bottom: 16px;
}
.rm-status-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: rmPulse 1.25s ease-in-out infinite;
}
.rm-status-header h1 {
  font-size: 42px; font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rm-status-header p { color: #b4bac7; font-size: 15px; margin-top: 8px; }
.rm-status-summary {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  margin-bottom: 24px; flex-wrap: wrap;
}
.rm-status-summary-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.1); flex-shrink: 0;
}
.rm-status-summary-icon i { font-size: 24px; color: #22c55e; }
.rm-status-summary-text { flex: 1; }
.rm-status-summary-text h2 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.rm-status-summary-text p { font-size: 13px; color: #b4bac7; }
.rm-status-summary-count { text-align: center; }
.rm-status-summary-num { font-size: 36px; font-weight: 900; color: #22c55e; }
.rm-status-summary-denom { color: #666; font-weight: 400; }
.rm-status-summary-label { display: block; font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.rm-status-products { display: flex; flex-direction: column; gap: 10px; }
.rm-status-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03); transition: all .2s;
  flex-wrap: wrap;
}
.rm-status-card:hover { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
.rm-status-card-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.rm-status-card-icon {
  width: 44px; height: 44px; border-radius: 12px; object-fit: cover;
  border: 1px solid rgba(255,255,255,.08); flex-shrink: 0;
}
.rm-status-card-name { font-size: 15px; font-weight: 700; color: #fff; text-decoration: none; }
.rm-status-card-name:hover { color: var(--red); }
.rm-status-card-meta { font-size: 12px; color: #888; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.rm-status-card-meta i { font-size: 12px; }
.rm-status-card-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.rm-status-dot-pulse {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
  animation: rmPulse 1.25s ease-in-out infinite;
}
.rm-status-badge {
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.rm-status-badge--working {
  background: rgba(34,197,94,.15); color: #22c55e;
}
.rm-status-badge--dev {
  background: rgba(245,158,11,.15); color: #f59e0b;
}
.rm-status-dot-amber {
  width: 10px; height: 10px; border-radius: 50%; background: #f59e0b;
  animation: rmPulse 1.25s ease-in-out infinite;
}

/* ─── CHECKOUT MODAL ─── */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.checkout-modal {
  background: #0a0505; border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px; max-width: 780px; width: 100%;
  position: relative; max-height: 90vh; overflow: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.9);
  animation: slideUp .25s ease-out;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.checkout-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1); background: #111;
  color: #fff; font-size: 22px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.checkout-close:hover { background: #222; }
.checkout-layout { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-summary-col {
  padding: 28px 24px; background: rgba(0,0,0,.4);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 20px;
}
@media (max-width: 700px) { .checkout-summary-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); } }
.checkout-summary-product { display: flex; gap: 16px; align-items: flex-start; }
.checkout-product-img { width: 80px; height: 80px; border-radius: 14px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(255,255,255,.08); }
.checkout-summary-product h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.checkout-desc { font-size: 12px; color: #b4bac7; line-height: 1.5; margin-bottom: 6px; }
.checkout-price { font-size: 20px; font-weight: 900; color: var(--red); }
.checkout-summary-detail { display: flex; flex-direction: column; gap: 10px; }
.checkout-row { display: flex; justify-content: space-between; font-size: 14px; color: #b4bac7; }
.checkout-total { font-size: 18px; font-weight: 800; color: #fff; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.06); }
.checkout-free { color: var(--green); font-weight: 600; }
.checkout-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.checkout-badges span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #888; }
.checkout-badges i { color: var(--red); width: 16px; }
.checkout-form-col { padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; }
.checkout-form-col h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.checkout-field { display: flex; flex-direction: column; gap: 6px; }
.checkout-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #b4bac7; }
.checkout-field input {
  background: #101015; border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 12px 14px; color: #fff;
  font-size: 14px; outline: none; width: 100%;
}
.checkout-field input:focus { border-color: var(--red); }
.checkout-field input::placeholder { color: #444; }
.checkout-row-fields { display: flex; gap: 12px; }
.checkout-separator { display: flex; align-items: center; gap: 14px; font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: .1em; }
.checkout-separator::before, .checkout-separator::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.06); }
.checkout-crypto { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.checkout-crypto-btn {
  padding: 10px 8px; border-radius: 10px; background: #101015;
  border: 1px solid rgba(255,255,255,.08); color: #ccc;
  font-size: 11px; font-weight: 600; cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.checkout-crypto-btn i { font-size: 18px; }
.checkout-crypto-btn:hover { border-color: var(--red); color: #fff; background: #1a0808; }
.checkout-pay-btn {
  width: 100%; padding: 14px; border: none; border-radius: 999px;
  background: linear-gradient(180deg, #ff2b4a, #b11225 55%, #6b0714);
  color: #fff; font-size: 16px; font-weight: 800; cursor: pointer;
  transition: all .2s; text-align: center;
}
.checkout-pay-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,43,74,.3); }
.checkout-note { font-size: 11px; color: #666; text-align: center; }
.checkout-modal::-webkit-scrollbar { width: 6px; background: transparent; }
.checkout-modal::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(255,255,255,.1); }

/* ─── CTA ─── */
.rm-cta { padding: 0 16px 60px; }
.rm-cta-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 40px 36px;
  border-radius: 22px;
  background: rgba(8,5,8,.86); border: 1px solid rgba(255,255,255,.08);
}
.rm-cta-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.rm-cta-text h2 span { color: var(--red); }
.rm-cta-text p { color: var(--muted); font-size: 14px; max-width: 400px; line-height: 1.6; }
.rm-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid rgba(255,255,255,.05); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 32px; height: 32px; border-radius: 8px; background: radial-gradient(circle at 50% 0, #4b151f, #040203 70%); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--red); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.footer-nav a { color: rgba(161,161,170,.7); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: .8rem; color: rgba(113,113,122,.6); }