/* gta-6-unlock-all.com — Loot4Games satellite LP */
:root {
  --navy: #000620;
  --navy-2: #070d28;
  --navy-3: #0c1322;
  --ink: #111;
  --text: #eef1fb;
  --muted: #9aa6cf;
  --muted-2: #cfd5ee;
  --yellow: #ffc400;
  --yellow-dim: rgba(255, 196, 0, 0.14);
  --green: #00b67a;
  --green-bar: #18c07c;
  --danger: #e23b3b;
  --line: rgba(154, 166, 207, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--yellow);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap-wide {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: var(--green-bar);
  color: #fff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  letter-spacing: 0.01em;
}

.topbar span {
  opacity: 0.95;
}

/* Header */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-switch a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
}

.lang-switch a.is-active {
  background: var(--yellow);
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 2.25rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 196, 0, 0.18);
  background: #0a0a12;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 6, 32, 0.55), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.hero-chip {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 6, 32, 0.72);
  border: 1px solid rgba(255, 196, 0, 0.45);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero-lead {
  max-width: 46rem;
  margin: 0 auto 1rem;
  color: var(--muted-2);
  font-size: 1.05rem;
}

.hero-note {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.98rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-row span::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* Sections */
.section {
  padding: 3.75rem 0;
  position: relative;
}

.section.navy {
  background: var(--navy);
}

.section.alt {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.section-label {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 38rem;
}

.section.center {
  text-align: center;
}

.section.center h2 {
  margin-inline: auto;
}

.section-intro {
  color: var(--muted);
  max-width: 44rem;
  margin: 0 0 2rem;
  font-size: 1.02rem;
}

.section.center .section-intro {
  margin-inline: auto;
}

.prose p {
  color: var(--muted-2);
  margin: 0 0 1rem;
  max-width: 46rem;
}

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

/* Stats / problem cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: rgba(255, 196, 0, 0.08);
  color: var(--text);
  font-weight: 750;
}

.compare-table td {
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.02);
}

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

.compare-table .good {
  color: var(--green);
  font-weight: 700;
}

.compare-table .bad {
  color: var(--danger);
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
}

/* Reviews strip */
.reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: left;
}

.stars {
  color: var(--green);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.review-card p {
  margin: 0 0 0.85rem;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.review-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.proof-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-note a {
  font-weight: 700;
}

/* Product preview cards */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.feature-box {
  background: rgba(255, 196, 0, 0.06);
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem;
  text-align: left;
}

.feature-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--yellow);
}

.feature-box p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.platform-tabs span {
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.platform-tabs span.is-active {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

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

.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem 1.15rem;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: rgba(255, 196, 0, 0.35);
  transform: translateY(-2px);
}

.product-card.featured {
  border-color: rgba(255, 196, 0, 0.45);
  background: rgba(255, 196, 0, 0.07);
}

.product-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.product-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.product-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  min-height: 2.6em;
}

.product-card .status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
}

.product-card .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

/* Why table */
.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.vs-table th,
.vs-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
}

.vs-table th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 750;
}

.vs-table td:nth-child(2) {
  color: var(--green);
  font-weight: 700;
}

.vs-table td:nth-child(3) {
  color: var(--danger);
}

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

.vs-punchline {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.benefit {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.2rem;
}

.benefit h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Coming soon banner (no CTA) */
.soon-banner {
  text-align: center;
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 196, 0, 0.12), transparent 60%),
    var(--navy-2);
  border-block: 1px solid var(--line);
}

.soon-banner h2 {
  margin: 0 auto 0.85rem;
  max-width: 28rem;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.soon-banner p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
}

.soon-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.35rem;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 1.75rem auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

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

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

.faq-item summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

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

.faq-item .answer p {
  margin: 0;
}

/* GTA 5 cross-sell */
.gta5-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #0a1230, #000620);
}

.gta5-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 196, 0, 0.06);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.gta5-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.gta5-card p {
  margin: 0 0 1.35rem;
  color: var(--muted-2);
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.gta5-aside {
  background: rgba(0, 6, 32, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem;
}

.gta5-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gta5-aside li {
  display: flex;
  gap: 0.5rem;
  color: var(--muted-2);
  font-size: 0.92rem;
  padding: 0.4rem 0;
}

.gta5-aside li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* Footer */
.site-footer {
  background: #050914;
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  line-height: 1.5;
}

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

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--muted-2);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid,
  .reviews-strip,
  .benefit-grid,
  .feature-pair,
  .footer-grid,
  .gta5-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

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

  .logo-badge {
    display: none;
  }

  .compare-table th,
  .compare-table td,
  .vs-table th,
  .vs-table td {
    padding: 0.7rem 0.75rem;
    font-size: 0.85rem;
  }

  .gta5-card {
    padding: 1.35rem;
  }
}
