/* ============================================================
   App Games Daily — jogos de construção para Android
   Dark, full-bleed, modern. Construction hazard motif:
   vivid orange + hazard yellow on warm near-black.
   ============================================================ */

:root {
  /* Surfaces (dark) */
  --bg:        #0c0a09;   /* warm near-black */
  --bg-2:      #131110;   /* raised band */
  --surface:   #1a1715;   /* cards */
  --surface-2: #221e1b;   /* hover */

  /* Text on dark */
  --ink:    #faf6f0;      /* headings */
  --body:   #d7cfc6;      /* paragraphs (~12:1) */
  --muted:  #9b938a;      /* secondary (~7:1) */
  --faint:  #6f6760;

  /* Brand */
  --accent:     #ff6a2b;  /* vivid construction orange */
  --accent-2:   #ff8a4c;
  --hazard:     #ffd23f;  /* hazard yellow */
  --on-accent:  #150a04;  /* text on orange */

  /* Light surfaces (legal / offerings prose) */
  --paper:      #1a1715;

  /* Lines & effects */
  --line:    rgba(255, 246, 240, 0.10);
  --line-2:  rgba(255, 246, 240, 0.16);
  --ring:    rgba(255, 106, 43, 0.45);
  --shadow:    0 18px 40px -18px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, 0.85);
  --glow:      0 16px 40px -12px rgba(255, 106, 43, 0.55);

  --radius:    18px;
  --radius-sm: 12px;

  /* Layout: no narrow container — full-bleed shell */
  --pad:  clamp(20px, 5.5vw, 96px);
  --maxw: 1500px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* z-scale */
  --z-header: 50;
  --z-cookie: 60;
}

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

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

body {
  font-family: 'Karla', system-ui, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--on-accent); }

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }

p { max-width: 68ch; text-wrap: pretty; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Full-bleed shell: content padded + capped, sections span edge-to-edge */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.muted { color: var(--muted); }

/* Eyebrow — hazard chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hazard);
  margin-bottom: 18px;
}

/* Section heads */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .muted { font-size: 1.08rem; margin-top: 14px; }

section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 30px;
  background: var(--b);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
  box-shadow: 0 10px 24px -10px rgba(255, 106, 43, 0.6);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow); color: var(--on-accent); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn-full { width: 100%; }
.btn-sm { min-height: 42px; padding: 9px 20px; font-size: 14px; }

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn-line:hover { background: rgba(255, 246, 240, 0.06); border-color: var(--hazard); color: var(--ink); box-shadow: none; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: relative;
  z-index: var(--z-cookie);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 12px var(--pad);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.cookie-banner p { margin: 0; max-width: none; color: var(--body); }
.cookie-banner a { color: var(--hazard); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(12, 10, 9, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled { background: rgba(12, 10, 9, 0.92); border-bottom-color: var(--line); }
.nav-inner,
.site-header > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
/* Compat: legacy pages use <ul><li> inside .site-nav */
.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
/* Compat: legacy cookie-banner wrapped content in an inner .shell */
.cookie-banner > .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-inline: 0;
}
/* Compat: legacy offerings wrapped each card body */
.card-body { display: contents; }
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.site-logo:hover { text-decoration: none; }
.site-logo b { color: var(--accent); font-weight: 800; }
.site-logo .mark { width: 32px; height: 32px; flex: none; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: var(--body);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 13px;
  border-radius: 9px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a:hover { color: var(--ink); background: rgba(255, 246, 240, 0.06); text-decoration: none; }
.site-nav .nav-cta { color: var(--on-accent); margin-left: 6px; }
.site-nav .nav-cta:hover { color: var(--on-accent); background: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: none; border: 1px solid var(--line-2);
  border-radius: 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hazard strip helper ---------- */
.marquee,
.stats,
.cta,
.site-footer { position: relative; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 9vw, 130px) clamp(70px, 10vw, 150px);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(255, 106, 43, 0.20), transparent 60%),
    radial-gradient(800px 460px at 4% 108%, rgba(255, 210, 63, 0.10), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 246, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 246, 240, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, #000 35%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero-copy { animation: rise 0.7s var(--ease) both; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--accent); }
.hero .lead { font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: var(--body); max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.trust-line {
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none;
  font-size: 14px; color: var(--muted); font-family: 'Archivo', sans-serif; font-weight: 600;
}
.trust-line li { display: flex; align-items: center; gap: 8px; }
.trust-line svg { width: 17px; height: 17px; color: var(--hazard); }
.hero-teaser {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--hazard);
  background: rgba(255, 210, 63, 0.1);
  border: 1px solid rgba(255, 210, 63, 0.32);
  border-radius: 999px;
  padding: 9px 18px;
}
.hero-teaser::before {
  content: "🔥";
  font-size: 15px;
}

.hero-visual { position: relative; animation: rise 0.7s var(--ease) 0.12s both; }
.hero-panel {
  position: relative;
  background: #f1ede6;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 246, 240, 0.12);
}
.hero-panel::before {
  content: "";
  position: absolute; left: -4px; top: -4px; width: 44px; height: 44px;
  border-top: 4px solid var(--hazard); border-left: 4px solid var(--hazard);
  border-top-left-radius: var(--radius);
}
.hero-panel::after {
  content: "";
  position: absolute; right: -4px; bottom: -4px; width: 44px; height: 44px;
  border-bottom: 4px solid var(--accent); border-right: 4px solid var(--accent);
  border-bottom-right-radius: var(--radius);
}
.hero-panel svg,
.hero-panel img { border-radius: 10px; width: 100%; display: block; }
.hero-panel img { aspect-ratio: 1280 / 676; object-fit: cover; }
.hero-chip {
  position: absolute;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.hero-chip-a { top: -14px; left: 18px; color: var(--hazard); }
.hero-chip-b { bottom: 38px; left: -16px; color: var(--accent-2); }
.hero-chip-c { top: 40%; right: -18px; }

/* ---------- Showcase gallery ---------- */
.showcase { background: var(--bg); }
.shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.shot:hover { transform: translateY(-5px); border-color: rgba(255, 106, 43, 0.45); }
.shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.shot figcaption {
  padding: 16px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 2px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 16px;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 26px;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--ink);
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee-track i { color: var(--accent); font-style: normal; font-size: 0.7em; }

/* ---------- Stats ---------- */
.stats { background: var(--accent); padding-block: clamp(36px, 5vw, 56px); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1;
  color: var(--on-accent); letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; font-weight: 600; color: rgba(21, 10, 4, 0.78); }

/* ---------- Games (alternating editorial rows) ---------- */
.games { background: var(--bg); }
.game {
  display: grid; gap: clamp(24px, 4vw, 60px); align-items: center;
  padding-block: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.game:first-of-type { border-top: none; }

.game-media { position: relative; }
.game-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.game-cover svg,
.game-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.game:hover .game-cover svg,
.game:hover .game-cover img { transform: scale(1.05); }
.game-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--hazard); color: var(--on-accent);
}
.game-app {
  position: absolute; left: 16px; bottom: -22px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 10px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.game-app .game-icon { width: 46px; height: 46px; border-radius: 12px; flex: none; }
.game-app b { display: block; font-family: 'Archivo', sans-serif; color: var(--ink); font-size: 15px; }
.game-app span { font-size: 12.5px; color: var(--muted); }

.game-info .game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.03em; padding: 6px 13px; border-radius: 999px;
  background: rgba(255, 106, 43, 0.14); color: var(--accent-2);
  border: 1px solid rgba(255, 106, 43, 0.3);
}
.badge-ghost { background: rgba(255, 246, 240, 0.05); color: var(--body); border-color: var(--line-2); }
.game-info h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.game-info > p { color: var(--body); margin-bottom: 22px; }
.game-meta { list-style: none; margin-bottom: 26px; }
.game-meta li {
  display: flex; gap: 16px; padding: 11px 0;
  border-top: 1px solid var(--line); font-size: 15px;
}
.game-meta b {
  font-family: 'Archivo', sans-serif; color: var(--hazard);
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; min-width: 104px; flex: none; padding-top: 2px;
}
.game-meta span { color: var(--body); }

.games .notice { margin-top: clamp(40px, 5vw, 64px); }

/* notice — full border + icon, no side-stripe */
.notice {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 20px 22px 20px 56px;
  font-size: 14.5px; color: var(--body); max-width: 80ch;
}
.notice::before {
  content: "i";
  position: absolute; left: 18px; top: 20px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  font-family: 'Archivo', serif; font-style: italic; font-weight: 800;
  display: grid; place-items: center; font-size: 15px;
}
.notice b { color: var(--ink); }

/* ---------- Why ---------- */
.why { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.why-item { padding: 26px 0; border-top: 1px solid var(--line); }
.why-item .why-no {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--accent); letter-spacing: 0.05em;
}
.why-item h3 { margin: 8px 0 8px; }
.why-item p { color: var(--muted); font-size: 15.5px; }

/* ---------- How (steps track) ---------- */
.how { background: var(--bg); }
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: none; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform 0.22s var(--ease), border-color 0.25s ease, background 0.25s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(255, 106, 43, 0.4); background: var(--surface-2); }
.step-no {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: var(--on-accent);
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 19px;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px -8px rgba(255, 106, 43, 0.6);
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about-grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: start; }
.about-lead h2 { margin-top: 6px; }
.about-body p { color: var(--body); font-size: 1.08rem; margin-bottom: 18px; }
.about-body p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-list { max-width: 880px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-ic { position: relative; width: 22px; height: 22px; flex: none; }
.faq-ic::before, .faq-ic::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.faq-ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-ic::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.faq details[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--muted); max-width: none; padding: 0 4px 24px; font-size: 15.5px; }

/* ---------- CTA / Subscribe ---------- */
.cta {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(255, 106, 43, 0.22), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-inner { display: grid; gap: clamp(32px, 5vw, 60px); align-items: center; }
.cta-copy h2 { margin: 6px 0 14px; }
.cta-copy .lead { color: var(--body); font-size: 1.1rem; }
.cta-form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 15px; }
.form-row label {
  display: block; font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 700;
  margin-bottom: 7px; color: var(--ink);
}
.form-row label .muted { font-weight: 500; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%; min-height: 52px; padding: 13px 16px;
  background: var(--bg); color: var(--ink);
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  font-size: 16px; font-family: 'Karla', sans-serif; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
input::placeholder { color: var(--faint); }
input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid var(--line-2);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-consent input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 5px; height: 10px;
  margin: 2px auto 0;
  border: solid var(--on-accent);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.form-consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}
.form-consent a { color: var(--hazard); text-decoration: underline; }

.form-note { font-size: 13px; color: var(--muted); margin: 6px 0 18px; max-width: none; }
.form-note a { color: var(--hazard); text-decoration: underline; }
.success-msg {
  margin-top: 16px; padding: 14px;
  background: rgba(255, 210, 63, 0.12); color: var(--hazard);
  border: 1px solid rgba(255, 210, 63, 0.4); border-radius: var(--radius-sm);
  text-align: center; font-size: 15px; font-weight: 700;
}
.hidden { display: none; }

/* ---------- Offerings (offer-grid + cards) ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: clamp(28px, 4vw, 48px); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.22s var(--ease), border-color 0.25s ease, background 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 106, 43, 0.4); background: var(--surface-2); }
.card h3 { margin-bottom: 8px; color: var(--ink); }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- Legal / prose ---------- */
.legal-content { max-width: 760px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 34px; margin-bottom: 8px; }
.legal-content p { color: var(--body); margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 18px 22px; }
.legal-content li { margin-bottom: 8px; color: var(--body); }
.legal-content a { color: var(--hazard); }
.legal-content .muted { display: block; margin-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 28px;
  font-size: 14.5px; color: var(--muted);
}
.footer-top { display: grid; gap: 30px; margin-bottom: 32px; }
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 42ch; }
.footer-col h4 {
  font-family: 'Archivo', sans-serif; font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-weight: 500; }
.footer-col a:hover { color: var(--hazard); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  justify-content: space-between; align-items: center;
}
.footer-bottom .muted { color: var(--faint); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 680px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .shots { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); column-gap: 48px; }
  .why-item:nth-child(2) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.08fr 0.92fr; }
  .game { grid-template-columns: 1.05fr 1fr; }
  .game:nth-child(even) .game-media { order: 2; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .cta-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 72px 0 auto 0; z-index: var(--z-header);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 16px var(--pad) 24px;
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s ease;
  }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 12px; font-size: 17px; border-radius: 11px; }
  .site-nav .nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ============================================================
   Motion
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track { animation: none; transform: none; }
  .hero-copy, .hero-visual { opacity: 1; transform: none; }
}
