/* MegaMods — base stylesheet */

:root {
  --bg: #0b0d12;
  --bg-elev: #12151d;
  --bg-card: #161a24;
  --bg-card-hover: #1b2030;
  --border: #242a38;
  --border-strong: #323a4d;
  --text: #e9ecf3;
  --text-dim: #9aa3b4;
  --text-mute: #6b7387;
  --accent: #ff6b1a;
  --accent-bright: #ff8a3d;
  --accent-deep: #e55a0a;
  --accent-glow: rgba(255, 107, 26, 0.35);
  --success: #3ddc84;
  --star: #ffb020;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-image: radial-gradient(
      1200px 600px at 50% -100px,
      rgba(255, 107, 26, 0.08),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 90% 10%,
      rgba(60, 120, 255, 0.05),
      transparent 60%
    );
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.logo-mega {
  color: var(--text);
}

.logo-mods {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-elev);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.2s;
}

.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown a:hover {
  color: var(--text);
  background: var(--bg-card-hover);
}

.nav-dropdown a.active {
  color: var(--accent);
  background: rgba(255, 107, 26, 0.08);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.icon-btn:hover {
  color: var(--accent);
  background: var(--bg-elev);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.menu-toggle {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 300px at 20% 30%,
      rgba(255, 107, 26, 0.18),
      transparent 70%
    ),
    radial-gradient(
      500px 300px at 85% 60%,
      rgba(80, 130, 255, 0.1),
      transparent 70%
    );
  z-index: -1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span.sep {
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.25);
  color: var(--accent-bright);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #c9cfe0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .accent {
  background: linear-gradient(
    120deg,
    var(--accent-bright),
    var(--accent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual — layered controller render */

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.35),
    transparent 60%
  );
  filter: blur(40px);
  z-index: 0;
}

.hero-controller {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 60px var(--accent-glow));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
}

/* ---------- Mod features strip ---------- */

.features-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  text-align: center;
  border-radius: 10px;
  transition: background 0.2s;
}

.feature-chip:hover {
  background: var(--bg-card);
}

.feature-chip-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.08);
  border-radius: 10px;
  transition: all 0.2s;
}

.feature-chip:hover .feature-chip-icon {
  background: rgba(255, 107, 26, 0.15);
  transform: translateY(-2px);
}

.feature-chip-icon svg {
  width: 22px;
  height: 22px;
}

.feature-chip-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
}

/* ---------- Products ---------- */

.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-title h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-dim);
  max-width: 560px;
}

.filter-bar {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.filter-btn {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--text);
}

.filter-btn.active {
  color: var(--text);
  background: var(--bg-card-hover);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(11, 13, 18, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
}

.platform-badge.ps {
  border-color: rgba(80, 130, 255, 0.4);
  color: #9fb8ff;
}

.platform-badge.xbox {
  border-color: rgba(80, 220, 120, 0.4);
  color: #8ee9a9;
}

.platform-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.product-card,
.platform-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover,
.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.product-media {
  position: relative;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-elev);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient, radial-gradient(circle at 50% 50%, rgba(255, 107, 26, 0.25), transparent 65%));
  transition: opacity 0.3s;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.product-controller {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-controller {
  transform: scale(1.06) translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.product-badge.new {
  background: #3ddc84;
  box-shadow: 0 4px 12px rgba(61, 220, 132, 0.3);
}

.product-badge.best {
  background: #5f7dff;
  box-shadow: 0 4px 12px rgba(95, 125, 255, 0.3);
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 13, 18, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text-dim);
  display: grid;
  place-items: center;
  transition: color 0.15s, background 0.15s;
}

.fav-btn:hover {
  color: var(--accent);
  background: rgba(11, 13, 18, 0.85);
}

.fav-btn.active {
  color: var(--accent);
}

.fav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
}

.fav-btn:not(.active) svg {
  fill: none;
}

.product-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mute);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.product-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mod-tag {
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-current {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-from {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.btn-ghost {
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- Info blocks (why / features text) ---------- */

.info-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.2s;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.info-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14.5px;
  color: var(--text-dim);
}

/* ---------- Mods detail section ---------- */

.mods-detail {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.mods-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.mod-item {
  padding: 24px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.mod-item:hover {
  border-color: var(--accent);
}

.mod-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.mod-item-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.mod-item-icon svg {
  width: 20px;
  height: 20px;
}

.mod-item h3 {
  font-size: 17px;
}

.mod-item p {
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
  transition: color 0.15s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
  }

.faq-item summary:hover {
  color: var(--accent);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--text-mute);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- CTA ---------- */

.cta {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(135deg, #1a1d28, #0f1119);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 300px at 20% 0%,
      rgba(255, 107, 26, 0.25),
      transparent 70%
    ),
    radial-gradient(
      500px 300px at 80% 100%,
      rgba(80, 130, 255, 0.12),
      transparent 70%
    );
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.footer-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 14.5px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--text-mute);
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: var(--text-dim);
}

/* ---------- Custom landing sections ---------- */

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.option-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.3s;
}

.option-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.option-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.1);
  border-radius: 10px;
  margin-bottom: 18px;
}

.option-icon svg {
  width: 22px;
  height: 22px;
}

.option-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.option-card p {
  font-size: 14.5px;
  color: var(--text-dim);
}

.how-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

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

.step-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent-bright), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14.5px;
  color: var(--text-dim);
  position: relative;
}

.gallery-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), border-color 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.gallery-item img {
  width: 88%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.proof-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.proof-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.stars-big {
  display: inline-flex;
  gap: 4px;
  color: var(--star);
  margin-bottom: 20px;
}

.stars-big svg {
  width: 22px;
  height: 22px;
}

.proof-inner blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.proof-inner cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ---------- Prose (text-heavy pages: legal, mods) ---------- */

.prose {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.75;
}

.prose p {
  margin-bottom: 18px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 107, 26, 0.4);
  transition: text-decoration-color 0.15s;
}

.prose a:hover {
  text-decoration-color: var(--accent);
}

.prose h2 {
  color: var(--text);
  font-size: 26px;
  margin: 44px 0 14px;
}

.prose h3 {
  color: var(--text);
  font-size: 22px;
  margin: 36px 0 12px;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose ul,
.prose ol {
  list-style: none;
  padding: 0;
  margin: 8px 0 20px;
}

.prose li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.prose ul > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.prose ol {
  counter-reset: ol-counter;
}

.prose ol > li {
  counter-increment: ol-counter;
}

.prose ol > li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.prose .last-updated {
  display: inline-block;
  font-size: 13px;
  color: var(--text-mute);
  padding: 6px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 32px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 48px 0 32px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats {
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-section,
  .gallery-section,
  .proof-section {
    padding: 56px 0;
  }
  .section,
  .info-section,
  .mods-detail,
  .faq {
    padding: 56px 0;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .feature-chip {
    padding: 12px 4px;
  }
  .feature-chip-label {
    font-size: 11px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-bar {
    overflow-x: auto;
    max-width: 100%;
  }
}

/* Mobile menu */

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu details {
  border-bottom: 1px solid var(--border);
}

.mobile-menu details:last-child {
  border-bottom: none;
}

.mobile-link {
  display: block;
  padding: 14px 4px;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid var(--border);
  transition: color 0.15s;
}

.mobile-link:hover {
  color: var(--accent);
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--text);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 14px;
  height: 14px;
  color: var(--text-mute);
  transition: transform 0.2s;
}

.mobile-menu details[open] summary svg {
  transform: rotate(180deg);
}

.mobile-menu details ul {
  list-style: none;
  padding: 4px 0 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu details a {
  color: var(--text-dim);
  font-size: 14.5px;
  padding: 4px 0;
}

.mobile-menu details a:hover,
.mobile-menu details a.active {
  color: var(--accent);
}
