/* Happy Hangar landing — single-file static, mobile-first.
   Palette: warm hangar-yellow, soft sky blue, friendly ink. */

:root {
  --yellow:   #f6c453;
  --yellow-2: #ffd97a;
  --sky:      #bfe5ff;
  --sky-2:    #7ac1f0;
  --ink:      #2a1f0a;
  --paper:    #fff7e0;
  --shadow:   rgba(58, 44, 10, 0.18);
  --radius:   18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, #ffe9aa 0%, transparent 50%),
    linear-gradient(180deg, var(--sky) 0%, #e9f6ff 60%, #fff7e0 100%);
  min-height: 100vh;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* ----- Hero ----- */
.hero {
  text-align: center;
  padding: 28px 8px 36px;
}
.logo {
  display: inline-block;
  filter: drop-shadow(0 4px 0 var(--shadow));
  margin-bottom: 10px;
}
.hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 7vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 0 #fff;
}
.tagline {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.45;
  color: #4a3a14;
}

/* ----- Game shelf ----- */
.shelf-title {
  margin: 32px 0 14px;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5a4520;
  font-weight: 800;
}
.games {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.game {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.game:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--shadow);
}
.game--soon {
  opacity: 0.7;
  cursor: default;
}
.game--soon:hover {
  transform: none;
  box-shadow: 0 6px 0 var(--shadow);
}

.game-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.game-art {
  aspect-ratio: 3 / 2;
  background: var(--paper);
  display: block;
  border-bottom: 3px solid var(--ink);
}
.game-art svg { display: block; }

.game-meta {
  padding: 16px 18px 18px;
}
.game-meta h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.game-meta p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #3a2c0a;
}

.cta {
  display: inline-block;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--shadow);
}
.cta--muted {
  background: #d6cae8;
  color: #4a3a72;
}

/* ----- Manifesto ----- */
.manifesto {
  margin-top: 44px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--shadow);
  padding: 22px 24px;
}
.manifesto h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}
.vows {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.vows li {
  font-size: 15px;
  line-height: 1.5;
}
.vows b { color: var(--ink); }

/* ----- Footer ----- */
.foot {
  margin-top: 36px;
  text-align: center;
  font-size: 13px;
  color: #5a4520;
}
.foot a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  .game { transition: none; }
  .game:hover { transform: none; }
}
