/* Meccha Chameleon Cheats — Global Design System */
:root {
  --bg: #0B0914;
  --bg-elevated: #12101C;
  --bg-card: #161422;
  --bg-card-hover: #1C1830;
  --border: rgba(168, 85, 247, 0.18);
  --border-strong: rgba(168, 85, 247, 0.35);
  --text: #F5F3FF;
  --text-muted: #A8A3B8;
  --text-dim: #7A758A;
  --accent: #A855F7;
  --accent-hover: #C084FC;
  --accent-soft: rgba(168, 85, 247, 0.12);
  --accent-glow: rgba(168, 85, 247, 0.35);
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #F87171;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(88, 28, 135, 0.12), transparent 50%),
    radial-gradient(ellipse 35% 25% at 0% 70%, rgba(124, 58, 237, 0.08), transparent 50%),
    var(--bg);
}

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

a {
  color: var(--accent-hover);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text);
}

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 9, 20, 0.94);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand span {
  background: linear-gradient(135deg, #fff, #C084FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 24px var(--accent-glow);
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

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

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.redirect-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.65rem;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.hero--bg {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 9, 20, 0.78) 0%, rgba(11, 9, 20, 0.42) 32%, rgba(11, 9, 20, 0.55) 55%, rgba(11, 9, 20, 0.92) 78%, #0B0914 100%),
    linear-gradient(90deg, rgba(88, 28, 135, 0.32) 0%, transparent 42%, rgba(168, 85, 247, 0.22) 100%),
    radial-gradient(ellipse 70% 55% at 50% 30%, rgba(168, 85, 247, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero--bg .hero-eyebrow {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.45);
}

.hero--bg h1 {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65), 0 0 40px rgba(168, 85, 247, 0.25);
  max-width: 20ch;
}

.hero--bg .hero-sub {
  color: #D4CFE3;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.hero--bg .hero-stats {
  border-top-color: rgba(168, 85, 247, 0.28);
  background: rgba(11, 9, 20, 0.72);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.hero--bg .btn-secondary {
  background: rgba(11, 9, 20, 0.55);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.15rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--text);
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(22, 20, 34, 0.45);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card .card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-hover);
}

/* Preview */
.preview-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, #1a1530, #0f0d18);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow), 0 0 60px rgba(168, 85, 247, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-frame--photo {
  display: block;
  padding: 0;
}

.preview-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(8, 6, 16, 0.92));
}

.preview-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.preview-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.preview-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.55rem;
  display: block;
}

.preview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}

.preview-content {
  text-align: center;
  padding: 2rem;
}

.preview-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.preview-content p {
  color: var(--text-muted);
  max-width: 36ch;
  margin-inline: auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0 1.5rem 1.5rem;
}

.preview-tile {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.08);
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.preview-tile strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step::before {
  counter-increment: step;
  content: "Step " counter(step);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-hover);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Requirements */
.req-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.req-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.req-item span {
  color: var(--text-muted);
}

.req-item strong {
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.review-stars {
  color: var(--warning);
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.review p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.review-meta strong {
  color: var(--text);
}

.review-meta span {
  color: var(--text-dim);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 1rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.18);
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.price-card .price-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  margin: 1.5rem 0;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* Feature groups */
.feature-group {
  margin-bottom: 2rem;
}

.feature-group h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--accent-hover);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.feature-checklist {
  margin: 1.75rem auto 0;
  max-width: 960px;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.feature-checklist li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  break-inside: avoid;
}

.feature-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 720px) {
  .feature-checklist {
    columns: 1;
  }
}

/* Screenshots */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shot {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.15), transparent 50%),
    linear-gradient(225deg, #1a1530, #0d0b14);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.shot--photo {
  aspect-ratio: auto;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #12101C;
}

.shot--photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.shot--photo figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.ign-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.ign-photo-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #12101C;
}

@media (max-width: 900px) {
  .ign-photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .ign-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-hover);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Explore cards */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Page header (inner pages) */
.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 58ch;
  margin-inline: auto;
}

/* Tags / pills */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border: 1px solid var(--border);
}

.pill-esp { background: rgba(56, 189, 248, 0.12); color: #38BDF8; border-color: rgba(56, 189, 248, 0.3); }
.pill-combat { background: rgba(248, 113, 113, 0.12); color: #F87171; border-color: rgba(248, 113, 113, 0.3); }
.pill-hider { background: rgba(52, 211, 153, 0.12); color: #34D399; border-color: rgba(52, 211, 153, 0.3); }
.pill-safety { background: rgba(251, 191, 36, 0.12); color: #FBBF24; border-color: rgba(251, 191, 36, 0.3); }
.pill-comparison { background: rgba(167, 139, 250, 0.15); color: #C4B5FD; border-color: rgba(167, 139, 250, 0.35); }

/* Keyword strip */
.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.keyword-strip span {
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* About / prose block on home */
.about-block {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-block p + p {
  margin-top: 1rem;
}

.about-block a {
  font-weight: 600;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.25), transparent 60%),
    var(--bg-card);
}

.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: #09070F;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 32ch;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-disclaimer {
  max-width: 640px;
  line-height: 1.5;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 600;
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

/* Guide TOC */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc h2 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.toc ol {
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.toc li {
  margin: 0.4rem 0;
  list-style: decimal;
}

.toc a {
  color: var(--text-muted);
}

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

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .req-box { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 9, 20, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  .nav-links .nav-cta {
    margin: 0.5rem;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .reviews,
  .pricing-grid,
  .feature-list,
  .shot-grid,
  .explore-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .req-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero--bg {
    min-height: min(78vh, 720px);
    padding: 4rem 0 3rem;
  }

  .hero-bg img {
    object-position: center 35%;
  }

  .section {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
