:root{
  --ink:#10201c;
  --muted:#66736e;
  --paper:#f5f2e9;
  --card:#fffdf8;
  --line:#d9ddd6;
  --green:#315c49;
  --green-2:#6f9867;
  --cyan:#78e5ef;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.site-header{
  max-width:1120px;
  margin:auto;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;font-weight:760;letter-spacing:-.02em}
.brand img{width:38px;height:38px}
.brand b{font-weight:500;color:var(--muted)}
nav{display:flex;gap:28px}
nav a,.footer-links a{font-size:14px;color:var(--muted);text-decoration:none}
nav a:hover,.footer-links a:hover{color:var(--ink)}
.hero{
  min-height:620px;
  max-width:900px;
  margin:auto;
  padding:90px 30px 110px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-mark{width:118px;height:118px;margin-bottom:28px;filter:drop-shadow(0 14px 20px rgba(15,39,31,.10))}
.eyebrow{margin:0 0 16px;font-size:12px;font-weight:800;letter-spacing:.18em;color:var(--green)}
h1{
  margin:0;
  max-width:760px;
  font-size:clamp(52px,8vw,92px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:800;
}
.hero-copy{max-width:600px;margin:28px 0 30px;color:var(--muted);font-size:18px;line-height:1.65}
.hero-actions{display:flex;gap:10px;align-items:center}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--ink);
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}
.button-secondary{background:transparent;color:var(--ink);border:1px solid rgba(16,32,28,.22)}
.button-secondary:hover{background:rgba(16,32,28,.05)}
.games{
  max-width:1120px;
  margin:auto;
  padding:90px 30px 120px;
  border-top:1px solid rgba(16,32,28,.12);
}
.section-heading{margin-bottom:34px}
.section-heading h2{font-size:clamp(34px,5vw,58px);line-height:1;letter-spacing:-.045em;margin:0}
.game-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.game-card{
  min-height:260px;
  padding:28px;
  border:1px solid rgba(16,32,28,.12);
  border-radius:24px;
  background:var(--card);
  display:grid;
  grid-template-columns:112px 1fr;
  gap:25px;
  align-items:start;
}
.game-card h3{font-size:25px;letter-spacing:-.03em;margin:5px 0 9px}
.game-card p:not(.platform){color:var(--muted);line-height:1.6;margin:0}
.platform{font-size:11px;font-weight:800;letter-spacing:.16em;color:var(--green);margin:4px 0 0}
.game-icon{
  width:112px;height:112px;border-radius:25px;
  background:#172a25;color:white;position:relative;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.puzzle-icon{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:23px}
.puzzle-icon span{display:block;background:var(--cyan);border-radius:7px}
.puzzle-icon span:nth-child(2),.puzzle-icon span:nth-child(3){background:var(--green-2)}
.next-icon{display:flex;align-items:center;justify-content:center;font-size:44px;font-weight:200;background:#e5e7e1;color:#7a837f}
.card-links{display:flex;gap:18px;align-items:center;margin-top:24px;font-size:13px;font-weight:700}
.card-links a{color:var(--green)}
.status{padding:7px 10px;border-radius:999px;background:#e9eee8;color:#466455}
.muted-card{opacity:.78}
footer{
  max-width:1120px;
  margin:auto;
  padding:34px 30px 50px;
  border-top:1px solid rgba(16,32,28,.12);
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px 30px;
  align-items:start;
}
footer strong{font-size:15px}
footer p{color:var(--muted);font-size:13px;margin:6px 0 0}
.footer-links{display:flex;gap:20px}
.copyright{grid-column:1/-1;margin-top:24px!important}
@media(max-width:760px){
  .site-header{padding:20px}
  .brand b{display:none}
  nav{gap:16px}
  .hero{min-height:560px;padding:68px 22px 90px}
  .hero-mark{width:96px;height:96px}
  .hero-actions{flex-direction:column;width:100%;max-width:280px}
  .hero-actions .button{width:100%}
  .games{padding:70px 20px 90px}
  .game-grid{grid-template-columns:1fr}
  .game-card{grid-template-columns:82px 1fr;padding:22px;min-height:220px}
  .game-icon{width:82px;height:82px;border-radius:20px}
  .puzzle-icon{padding:17px}
  footer{grid-template-columns:1fr;padding:30px 20px 44px}
  .footer-links{flex-direction:column;gap:8px}
}
