/* ==========================================================================
   LJ3D STUDIOS — folha de estilo principal
   Paleta e tipografia derivadas da arte de 4Wheel Challenge.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0B0616;
  --bg-2:      #120A24;
  --surface:   #170D2C;
  --surface-2: #1F1240;
  --line:      rgba(255, 255, 255, .10);
  --line-2:    rgba(255, 255, 255, .18);

  --text:      #F3EEFF;
  --muted:     #A899C9;
  --muted-2:   #7E6EA3;

  --violet:    #7C3BE8;
  --magenta:   #FF3D8A;
  --orange:    #FF8A3D;
  --yellow:    #FFC531;
  --cyan:      #35C8FF;
  --green:     #4BE38A;

  --grad-hot:  linear-gradient(100deg, var(--yellow), var(--orange) 45%, var(--magenta));
  --grad-cool: linear-gradient(100deg, var(--cyan), var(--violet));

  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1200px;
  --gutter:    clamp(20px, 5vw, 48px);
  --section:   clamp(88px, 13vh, 160px);

  --ff-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --ff-body:    "Inter", "Segoe UI", system-ui, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;

  --ease: cubic-bezier(.22, .8, .28, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
/* <picture> nao gera caixa: as regras de tamanho continuam valendo direto no <img> */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--magenta); color: #fff; }

/* Fundo global: brilhos radiais fixos */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 82% -8%,  rgba(124, 59, 232, .28), transparent 62%),
    radial-gradient(55vw 55vw at 8%  38%,  rgba(255, 61, 138, .13), transparent 60%),
    radial-gradient(70vw 60vw at 50% 108%, rgba(53, 200, 255, .12), transparent 62%),
    var(--bg);
}

/* Granulado sutil por cima do fundo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(56px, 8vh, 96px); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--magenta); color: #fff;
  padding: 12px 18px; border-radius: 0 0 12px 12px; font-weight: 600;
}
.skip-link:focus { top: 0; }

.kicker {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 200, 255, .5), transparent);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-top: 22px;
  max-width: 20ch;
  text-wrap: balance;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  max-width: 62ch;
  margin-top: 20px;
}

.grad-text {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid var(--line-2);
  background: var(--btn-bg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease), background-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  border-color: transparent;
  background: var(--grad-hot);
  color: #2A0B1E;
  box-shadow: 0 10px 32px -12px rgba(255, 61, 138, .8);
}
.btn--primary:hover { box-shadow: 0 16px 42px -12px rgba(255, 61, 138, .95); }

.btn--ghost { background: rgba(255, 255, 255, .04); }
.btn--ghost:hover { border-color: var(--line-2); background: rgba(255, 255, 255, .09); }

.btn--sm { padding: 10px 18px; font-size: .88rem; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck,
.site-header.is-solid {
  background: rgba(11, 6, 22, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.05rem;
  margin-right: auto;
}
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad-hot);
  color: #2A0B1E;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: -.04em;
  box-shadow: 0 6px 20px -8px rgba(255, 138, 61, .9);
}
.brand__text small {
  display: block;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--muted-2);
  font-weight: 500;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--text); background: rgba(255, 255, 255, .07); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, .03);
}
.lang button {
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--muted-2);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.lang button[aria-pressed="true"] { background: rgba(255, 255, 255, .12); color: var(--text); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  place-items: center;
}
.nav__toggle span {
  display: block; width: 17px; height: 1.5px; background: var(--text);
  position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--text);
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(40px, 7vh, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.06);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 6, 22, .82) 0%, rgba(11, 6, 22, .35) 30%, rgba(11, 6, 22, .88) 76%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11, 6, 22, .9) 0%, rgba(11, 6, 22, .25) 55%, transparent 100%);
}

.hero__inner { width: 100%; }

.hero__kicker {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 197, 49, .32);
  border-radius: 999px;
  background: rgba(255, 197, 49, .07);
}
.hero__kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); box-shadow: 0 0 12px var(--yellow);
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 12.5vw, 10.5rem);
  line-height: .86;
  letter-spacing: -.045em;
  margin: 26px 0 0;
  text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title .line-2 {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin-top: 28px;
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  color: #D8CFF0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--violet);
}

/* ---------- Faixa de destaques ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  padding-block: 16px;
}
.ticker__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: ticker 42s linear infinite;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker__track b { color: var(--text); font-weight: 700; }
.ticker__track i { color: var(--orange); font-style: normal; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Estúdio ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  margin-top: 46px;
}
.about p + p { margin-top: 18px; }
.about p { color: var(--muted); font-size: 1.05rem; }
.about p strong { color: var(--text); font-weight: 600; }

.facts { display: grid; gap: 12px; }
.fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
}
.fact__icon {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(124, 59, 232, .22);
  color: var(--cyan);
}
.fact__icon svg { width: 19px; height: 19px; }
.fact h3 {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
}
.fact p { font-size: .92rem; color: var(--muted-2); margin-top: 3px; }

/* ---------- Estatísticas ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.stat {
  background: var(--bg-2);
  padding: 30px 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: -.03em;
  line-height: 1;
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- Jogo ---------- */
.game {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
.game__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -40px rgba(124, 59, 232, .9);
}
.game__art img { width: 100%; }

.game__sub {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 12px;
  margin-bottom: 20px;
}
.game__desc { color: var(--muted); font-size: 1.05rem; }
.game__desc + .game__desc { margin-top: 16px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 26px;
  margin-top: 28px;
}
.features li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .96rem; color: var(--muted);
}
.features li::before {
  content: ""; flex: none; width: 7px; height: 7px; margin-top: .55em;
  border-radius: 2px; background: var(--grad-hot);
}

.game__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- Modos ---------- */
.modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.mode {
  position: relative;
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(23, 13, 44, .35));
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.mode::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent, linear-gradient(90deg, #FFC531, #FF3D8A));
  opacity: .85;
}
.mode::after {
  content: "";
  position: absolute; inset: auto -30% -60% -30%; height: 220px;
  background: radial-gradient(closest-side, var(--glow, rgba(255, 138, 61, .35)), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.mode:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}
.mode:hover::after { opacity: 1; }

.mode__num {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .2em; color: var(--muted-2);
}
.mode__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -.02em;
  margin-top: 14px;
  text-transform: uppercase;
}
.mode__tag {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--chip, var(--orange));
  margin-top: 8px;
}
.mode__text { color: var(--muted); font-size: .97rem; margin-top: 16px; }

.mode--soon {
  grid-column: 1 / -1;
  display: grid; place-content: center; text-align: center;
  padding-block: 30px;
  border-style: dashed;
  background: transparent;
}
.mode--soon .mode__name { font-size: 1.2rem; margin-top: 0; }
.mode--soon::before { display: none; }

/* ---------- Galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.shot {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: zoom-in;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
  padding: 0;
}
.shot:first-child { grid-column: span 2; grid-row: span 2; }
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), opacity .5s var(--ease);
  opacity: 0;
}
.shot img.is-loaded { opacity: 1; }
.shot:hover { border-color: var(--line-2); transform: translateY(-3px); }
.shot:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  place-items: center;
  background: rgba(6, 3, 13, .93);
  backdrop-filter: blur(6px);
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1400px, 100%);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 120px -30px #000;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  transition: background-color .2s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .16); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: max(16px, 3vw); }
.lightbox__nav--next { right: max(16px, 3vw); }
.lightbox__count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .14em; color: var(--muted);
}

/* ---------- Onde jogar ---------- */
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.platform {
  display: flex; flex-direction: column;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.platform:hover { transform: translateY(-4px); border-color: var(--line-2); }
.platform__head { display: flex; align-items: center; gap: 14px; }
.platform__head svg { width: 30px; height: 30px; flex: none; }
.platform__name {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em;
}
.platform__meta {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 2px;
}
.platform__list { margin-top: 24px; display: grid; gap: 9px; }
.platform__list li {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .92rem; color: var(--muted);
  padding-bottom: 9px; border-bottom: 1px solid var(--line);
}
.platform__list li b { color: var(--text); font-weight: 600; text-align: right; }
.platform .btn { margin-top: 26px; align-self: flex-start; }

.specs {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  background: rgba(255, 255, 255, .02);
}
.specs summary {
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 700; font-size: 1rem;
  list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.specs summary::-webkit-details-marker { display: none; }
.specs summary::before {
  content: "+"; font-family: var(--ff-mono); color: var(--orange); font-size: 1.1rem;
}
.specs[open] summary::before { content: "\2212"; }
.specs__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 24px;
}
.specs__grid h4 {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.specs__grid li {
  font-size: .9rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--line);
}

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  padding: clamp(48px, 8vw, 92px) clamp(28px, 6vw, 72px);
  text-align: center;
  isolation: isolate;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 6, 22, .86), rgba(11, 6, 22, .94));
}
.cta h2 {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 4rem); line-height: 1; letter-spacing: -.04em;
  text-transform: uppercase;
}
.cta p { color: var(--muted); margin: 20px auto 0; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ---------- Contato ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.contact__card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.contact__card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.contact__card h3 {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
}
.contact__card p { color: var(--muted-2); font-size: .92rem; margin-top: 8px; }
.contact__card a.link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-weight: 600; color: var(--cyan); font-size: .95rem;
  border-bottom: 1px solid rgba(53, 200, 255, .35); padding-bottom: 2px;
  word-break: break-word;
}
.contact__card a.link:hover { border-bottom-color: var(--cyan); }

/* ---------- Rodapé ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
  margin-top: var(--section);
  background: rgba(0, 0, 0, .25);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.footer__about p { color: var(--muted-2); font-size: .92rem; margin-top: 16px; max-width: 40ch; }
.site-footer h4 {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: var(--muted); font-size: .93rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2);
}

/* ---------- Páginas internas ---------- */
.page-hero {
  padding-top: 168px;
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: .95; letter-spacing: -.04em;
  margin-top: 20px; text-transform: uppercase;
}
.page-hero p { color: var(--muted); margin-top: 20px; max-width: 62ch; }

.prose { max-width: 76ch; }
.prose h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.8rem); letter-spacing: -.02em;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
}
.prose h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem;
  margin-top: 28px;
}
.prose p, .prose li { color: var(--muted); font-size: 1rem; }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 14px; display: grid; gap: 9px; }
.prose ul li { display: flex; gap: 11px; }
.prose ul li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin-top: .6em;
  border-radius: 2px; background: var(--violet);
}
.prose a { color: var(--cyan); border-bottom: 1px solid rgba(53, 200, 255, .35); }
.prose strong { color: var(--text); font-weight: 600; }

.note {
  border: 1px solid rgba(255, 197, 49, .28);
  background: rgba(255, 197, 49, .06);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-top: 24px;
}
.note p { color: #E9DCB8; font-size: .93rem; margin: 0; }

/* Press kit */
.kit {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px; margin-top: 32px;
}
.kit__item {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.kit__item:hover { transform: translateY(-4px); border-color: var(--line-2); }
.kit__thumb {
  height: 190px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(124, 59, 232, .25), rgba(255, 61, 138, .18)),
    repeating-conic-gradient(rgba(255,255,255,.05) 0% 25%, transparent 0% 50%) 0 0 / 22px 22px;
  padding: 20px;
}
.kit__thumb img { width: 100%; height: 100%; object-fit: contain; }
.kit__body { padding: 18px 20px 20px; }
.kit__body h3 { font-family: var(--ff-display); font-size: .98rem; font-weight: 700; }
.kit__body p {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 6px;
}
.kit__body a {
  display: inline-block; margin-top: 14px; font-size: .88rem; font-weight: 600; color: var(--cyan);
}

.factsheet {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: 32px;
}
.factsheet > div {
  display: grid; grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 20px; padding: 15px 24px; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.factsheet > div:last-child { border-bottom: 0; }
.factsheet dt {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-2); padding-top: 3px;
}
.factsheet dd { margin: 0; color: var(--text); }

.copyblock {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; margin-top: 20px; background: rgba(255, 255, 255, .02);
}
.copyblock h3 {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.copyblock p { color: var(--muted); font-size: .97rem; }
.copyblock p + p { margin-top: 12px; }

/* ---------- Revelação por scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .about { grid-template-columns: 1fr; }
  .game { grid-template-columns: 1fr; }
  .game__art { max-width: 300px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shot:first-child { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .nav { height: 68px; }
  .nav__toggle { display: grid; }
  .nav__links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(11, 6, 22, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px var(--gutter) 26px;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  body.menu-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding: 13px 14px; font-size: 1.02rem; }
  .nav__actions .btn { display: none; }
  .hero { min-height: 92svh; padding-top: 120px; }
  .hero__bg img { object-position: center 38%; }
}

@media (max-width: 420px) {
  .brand__text small { display: none; }
  .brand { font-size: 1rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .shot:first-child { grid-column: auto; }
  .footer__top { grid-template-columns: 1fr; }
  .factsheet > div { grid-template-columns: 1fr; gap: 4px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
