/* ============================================
   fiestalunars — Catálogo de juegos de construcción
   Palette: teal/mint + grafito
   ============================================ */

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

:root {
  --c-bg-1: #ecfdf5;
  --c-bg-2: #f0fdfa;
  --c-ink: #0f2724;
  --c-body: #41524f;
  --c-muted: #7a8d8a;
  --c-brand: #0d9488;
  --c-brand-dark: #115e59;
  --c-accent: #f59e0b;
  --c-line: #d6ece8;
  --c-surface: rgba(255, 255, 255, 0.78);
  --c-surface-solid: #ffffff;
  --shadow-sm: 0 1px 2px rgba(13, 148, 136, 0.06);
  --shadow-md: 0 10px 26px rgba(13, 148, 136, 0.10);
  --shadow-lg: 0 22px 60px rgba(13, 148, 136, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(900px 600px at 0% 0%, #ccfbf1 0%, transparent 55%),
    radial-gradient(900px 700px at 100% 0%, #fef3c7 0%, transparent 50%),
    linear-gradient(160deg, var(--c-bg-1), var(--c-bg-2));
  background-attachment: fixed;
  font-family: 'Karla', system-ui, -apple-system, sans-serif;
  color: var(--c-body);
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .site-logo {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 18px; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1.02rem; margin-bottom: 6px; }

p { margin-bottom: 14px; }
a { color: var(--c-brand); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--c-brand-dark); text-decoration: underline; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.section { padding: 80px 0; }
.section--tight { padding: 50px 0; }
.muted { color: var(--c-muted); font-size: 14.5px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--c-brand);
  display: inline-block;
}

.lead { font-size: 1.1rem; color: var(--c-body); max-width: 700px; }

/* ---------- Cookie modal (bottom fixed) ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #0f2724;
  color: #ccfbf1;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner .container {
  padding: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 14.5px; color: #d1fae5; line-height: 1.5; }
.cookie-banner a { color: #5eead4; text-decoration: underline; }
.cookie-banner button {
  background: var(--c-brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  cursor: pointer;
  font: 700 14px 'Karla', sans-serif;
  transition: background 0.18s;
}
.cookie-banner button:hover { background: #14b8a6; }

/* ---------- Header ---------- */
.site-header {
  padding: 20px 0;
  background: rgba(240, 253, 250, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid rgba(214, 236, 232, 0.6);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: var(--c-ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}
.site-logo .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--c-brand), #14b8a6);
  display: inline-grid; place-items: center;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.site-logo .logo-text { line-height: 1; }
.site-logo .logo-tag { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); font-family: 'Karla', sans-serif; font-weight: 700; margin-top: 4px; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: var(--c-brand);
  border: 1px solid var(--c-brand-dark);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  z-index: 70;
}
.nav-toggle:hover { background: var(--c-brand-dark); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute;
  left: 11px; right: 11px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.site-nav ul {
  display: flex; gap: 28px; align-items: center;
  list-style: none;
}
.site-nav a { color: var(--c-body); font-weight: 700; font-size: 15px; }
.site-nav a:hover { color: var(--c-brand); text-decoration: none; }
.site-nav a.is-cta {
  background: var(--c-brand);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
}
.site-nav a.is-cta:hover { background: var(--c-brand-dark); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 60px;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { max-width: 600px; }
.hero-text p { font-size: 1.1rem; color: var(--c-body); }
.hero-cta {
  display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-top: 36px;
  align-items: flex-end;
}
.hero-stats .stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: 2rem; color: var(--c-ink); font-weight: 700;
  display: block; line-height: 1;
}
.hero-stats .stat-label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 700;
}

/* Hero illustration — construction blueprint */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #0d9488 0%, #115e59 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 24px;
}
.hero-art svg { width: 100%; height: 100%; display: block; }

/* ---------- Catalog ---------- */
.section-head { max-width: 740px; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--c-muted); font-size: 1rem; }

.catalog-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.chip {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-body);
  cursor: pointer;
  transition: all 0.18s;
}
.chip:hover { border-color: var(--c-brand); color: var(--c-brand); }
.chip.is-active { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

/* ---------- Card ---------- */
.card {
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(13, 148, 136, 0.32); }

.game-card { display: flex; flex-direction: column; }
.game-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.game-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8f7f4;
}
.game-icon--svg {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}
.game-icon--svg svg { width: 100%; height: 100%; display: block; border-radius: 14px; }
.game-head h3 { margin-bottom: 4px; }
.game-dev { font-size: 13px; color: var(--c-muted); }

.game-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.badge, .meta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge { background: rgba(13, 148, 136, 0.12); color: var(--c-brand-dark); }
.meta-badge { background: rgba(245, 158, 11, 0.16); color: #92400e; }

.rating {
  display: inline-flex; gap: 4px; align-items: center;
  font-size: 13px; color: var(--c-muted); margin-bottom: 10px;
}
.rating .stars { color: var(--c-accent); letter-spacing: 1px; }

.game-desc { font-size: 14.5px; color: var(--c-body); margin-bottom: 14px; line-height: 1.65; }

.game-pros {
  list-style: none;
  margin-bottom: 14px;
}
.game-pros li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--c-body);
  margin-bottom: 4px;
}
.game-pros li::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--c-brand);
  border-bottom: 2px solid var(--c-brand);
  transform: rotate(45deg);
  border-radius: 1px;
}

.shots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%; height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--c-line);
}

.btn {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  border-radius: 999px;
  padding: 11px 26px;
  border: none;
  cursor: pointer;
  font: 700 15px 'Karla', sans-serif;
  transition: background 0.18s, transform 0.18s;
  text-align: center;
  text-decoration: none;
}
.btn:hover { background: var(--c-brand-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-brand); border: 1px solid var(--c-brand); }
.btn--ghost:hover { background: var(--c-brand); color: #fff; }
.btn--accent { background: var(--c-accent); }
.btn--accent:hover { background: #d97706; }
.btn-full, .btn--block { width: 100%; padding: 14px; }
.game-card .btn { margin-top: auto; }

/* ---------- Blueprint feature strip ---------- */
.blueprint {
  background:
    linear-gradient(180deg, #0f2724 0%, #134e4a 100%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(94, 234, 212, 0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(94, 234, 212, 0.06) 39px 40px);
  color: #d1fae5;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.blueprint::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(94, 234, 212, 0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(94, 234, 212, 0.06) 39px 40px);
  pointer-events: none;
}
.blueprint > * { position: relative; z-index: 1; }
.blueprint h2 { color: #fff; }
.blueprint p { color: #d1fae5; opacity: 0.92; }
.blueprint .eyebrow { color: #5eead4; }
.blueprint .eyebrow::before { background: #5eead4; }

.blueprint-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
}
.steps {
  display: grid; gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 14px;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #14b8a6;
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif; font-weight: 700;
}
.step strong { display: block; color: #fff; font-family: 'Archivo', sans-serif; margin-bottom: 4px; }
.step span { font-size: 14px; color: #d1fae5; opacity: 0.85; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(13, 148, 136, 0.4); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: var(--c-brand-dark);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--c-body); margin: 0; }

/* ---------- Comparison table ---------- */
.compare {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
}
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.compare th {
  background: rgba(13, 148, 136, 0.08);
  font-family: 'Archivo', sans-serif;
  color: var(--c-ink);
  font-size: 14px;
}
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 700; color: var(--c-ink); }
.compare-wrap { overflow-x: auto; margin-top: 24px; }
.tag-on { color: var(--c-brand-dark); font-weight: 700; }
.tag-off { color: #b1574a; font-weight: 700; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 30px;
  border-left: 2px dashed var(--c-line);
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 8px;
  width: 14px; height: 14px;
  background: var(--c-brand);
  border: 3px solid var(--c-bg-2);
  border-radius: 50%;
}
.timeline-item .step-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 700; margin-bottom: 4px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 24px auto 0; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font: 700 1.05rem 'Archivo', sans-serif;
  color: var(--c-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  color: var(--c-brand);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--c-body);
  font-size: 15px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 64px;
  color: rgba(13, 148, 136, 0.18);
  line-height: 1;
}
.testimonial p { font-style: italic; color: var(--c-body); margin-bottom: 16px; position: relative; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--c-line); padding-top: 14px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-brand), #14b8a6);
  color: #fff;
  display: grid; place-items: center;
  font: 700 14px 'Archivo', sans-serif;
}
.testimonial-author strong { display: block; color: var(--c-ink); font-size: 14.5px; font-family: 'Archivo', sans-serif; }
.testimonial-author span { font-size: 12.5px; color: var(--c-muted); }

/* ---------- About / Contact ---------- */
.about-block { max-width: 840px; }
.about-block p { font-size: 1.02rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.facts-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.facts-card h3 { margin-bottom: 16px; }
.facts-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; }
.facts-card dt { font-weight: 700; color: var(--c-ink); font-size: 13.5px; }
.facts-card dd { color: var(--c-body); font-size: 14px; }

/* ---------- Subscribe ---------- */
#subscribe { background: linear-gradient(180deg, transparent, rgba(204, 251, 241, 0.45)); }
.subscribe-card { max-width: 600px; margin: 0 auto; padding: 36px; box-shadow: var(--shadow-md); }
.subscribe-card h2 { text-align: center; }
.lead-subscribe, .form-subtitle { text-align: center; color: var(--c-muted); margin-bottom: 26px; font-size: 14.5px; }
.form-row, .form-group { margin-bottom: 16px; }
.form-row label, .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8e3df;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  background: #ffffff;
  color: var(--c-ink);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--c-body);
  margin-bottom: 18px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--c-brand);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent label { cursor: pointer; line-height: 1.5; }
.form-consent a { color: var(--c-brand); text-decoration: underline; }

.form-error {
  display: none;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.form-error.is-visible { display: block; }
.success-msg {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--c-brand-dark);
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
}
.success-msg.hidden { display: none; }

/* ---------- Page hero (about/contact/legal) ---------- */
.page-hero {
  padding: 72px 0 28px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { font-size: 1.15rem; color: var(--c-body); }
.breadcrumbs {
  font-size: 13px; color: var(--c-muted); margin-bottom: 18px;
}
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-brand); }

/* ---------- Legal ---------- */
.legal-content { max-width: 840px; }
.legal-content h2 { margin-top: 34px; }
.legal-content h3 { margin-top: 24px; }
.legal-content ul { margin: 12px 0 16px 24px; }
.legal-content li { margin-bottom: 6px; }
.legal-meta {
  display: inline-block;
  background: rgba(13, 148, 136, 0.1);
  color: var(--c-brand-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f2724;
  color: #a7c8c2;
  padding: 60px 0 30px;
  margin-top: 60px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 36px;
}
.site-footer .footer-brand .site-logo { color: #d1fae5; }
.site-footer .footer-brand p { font-size: 14px; color: #a7c8c2; margin-top: 14px; max-width: 280px; }
.site-footer h4 { color: #d1fae5; font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-family: 'Karla', sans-serif; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: #a7c8c2; font-size: 14px; }
.site-footer a:hover { color: #5eead4; text-decoration: none; }
.site-footer .footer-bottom {
  border-top: 1px solid #1e433f;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7a9994;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { max-width: 100%; }
  .blueprint { padding: 40px 28px; }
  .blueprint-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 40px; }
  .hero-stats { gap: 22px; }
  .nav-toggle { display: inline-block; }
  .site-nav ul {
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 320px);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    padding: 88px 24px 32px;
    box-shadow: -16px 0 40px rgba(0,0,0,0.14);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .site-nav ul.is-open { transform: translateX(0); }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--c-line); display: block; font-size: 1rem; }
  .site-nav a.is-cta { border-bottom: 0; margin-top: 16px; text-align: center; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(15, 39, 36, 0.5);
    z-index: 55;
  }
  .subscribe-card { padding: 26px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
  .cookie-banner .container { gap: 12px; }
  .games-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
