/* GAMEPAD — Landing temporária (editorial) */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

.gp-root {
  --gp-bg: #f4f1ea;
  --gp-paper: #ebe7dd;
  --gp-ink: #14130f;
  --gp-ink-2: #2a2824;
  --gp-dim: #6b6760;
  --gp-rule: #1a1813;
  --gp-accent: #b3261e;

  position: relative;
  min-height: 100vh;
  background: var(--gp-bg);
  color: var(--gp-ink);
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-feature-settings: "ss01", "liga";
  overflow-x: hidden;
}

.gp-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(20,19,15,0.08) 1px, transparent 1px),
    radial-gradient(rgba(20,19,15,0.05) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  z-index: 1;
}

.gp-nav,
.gp-hero,
.gp-pillars,
.gp-foot {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.gp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gp-rule);
}
.gp-logo { height: 36px; width: auto; }
.gp-status {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gp-accent);
  box-shadow: 0 0 0 3px rgba(179,38,30,0.18);
  animation: gp-pulse 2.4s ease-in-out infinite;
}
@keyframes gp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.gp-hero {
  padding-top: 96px;
  padding-bottom: 96px;
  max-width: 980px;
}
.gp-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gp-accent);
  margin: 0 0 28px;
}
.gp-title {
  font-family: "Source Serif 4", "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--gp-ink);
}
.gp-title em { font-style: italic; font-weight: 400; }
.gp-hl {
  background: linear-gradient(transparent 62%, rgba(179,38,30,0.22) 62%);
  padding: 0 2px;
}
.gp-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 680px;
  color: var(--gp-ink-2);
  margin: 0 0 40px;
}

.gp-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.gp-link {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gp-ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--gp-ink-2);
  padding-bottom: 2px;
}
.gp-link:hover { color: var(--gp-accent); border-color: var(--gp-accent); }

.gp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 96px;
  border-top: 1px solid var(--gp-rule);
}
.gp-pillars article { display: flex; flex-direction: column; }
.gp-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gp-accent);
  margin-bottom: 18px;
}
.gp-pillars h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.gp-pillars p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--gp-ink-2);
  margin: 0;
}

.gp-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 40px;
  border-top: 1px solid var(--gp-rule);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-dim);
  flex-wrap: wrap;
}
.gp-foot-sep { color: var(--gp-accent); }
.gp-foot-mail {
  color: var(--gp-ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--gp-dim);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.gp-foot-mail:hover { color: var(--gp-accent); border-color: var(--gp-accent); }

@media (max-width: 820px) {
  .gp-pillars { grid-template-columns: 1fr; gap: 40px; }
  .gp-hero { padding-top: 64px; padding-bottom: 64px; }
}
