/* ==========================================================================
   Landing page — hero, features, categories, screenshots, about, contact
   ========================================================================== */

.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .brand {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md);
}
.site-header .brand .material-symbols-rounded { color: var(--color-gold); font-size: 26px; }
.site-header nav { display: none; gap: var(--space-6); }
.site-header nav a { font-size: var(--fs-sm); font-weight: 600; color: var(--color-text-muted); transition: color var(--dur-base); }
.site-header nav a:hover { color: var(--color-text); }
.site-header .header-actions { display: flex; align-items: center; gap: var(--space-3); }
.site-header .header-actions .btn { width: auto; padding: 10px 20px; font-size: var(--fs-sm); }

@media (min-width: 860px) {
  .site-header nav { display: flex; }
}

.site-main { max-width: 1100px; margin: 0 auto; padding: 0 var(--space-5); }

/* ---- Hero ---- */
.hero {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-7) 0 var(--space-6);
  text-align: center;
}
.hero .eyebrow-chip {
  justify-self: center;
  margin-bottom: var(--space-3);
}
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: var(--space-4);
}
.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: var(--fs-md);
  max-width: 46ch;
  margin: 0 auto var(--space-5);
}
.hero .hero-ctas {
  display: flex; flex-direction: column; gap: var(--space-3);
  max-width: 340px; margin: 0 auto;
}
@media (min-width: 560px) {
  .hero .hero-ctas { flex-direction: row; max-width: none; justify-content: center; }
  .hero .hero-ctas .btn { width: auto; padding-left: var(--space-6); padding-right: var(--space-6); }
}

.hero-visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  background: var(--gradient-card), var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  overflow: hidden;
}
.hero-visual .room-badge { width: 80%; }
.hero-visual .floating-avatar {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #241300;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: float-orb 5s ease-in-out infinite;
}
.hero-visual .fa-1 { top: 14%; left: 10%; }
.hero-visual .fa-2 { top: 22%; right: 8%; animation-delay: 1.2s; }
.hero-visual .fa-3 { bottom: 16%; left: 14%; animation-delay: 2.4s; }

/* ---- Section shell ---- */
.section { padding: var(--space-7) 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto var(--space-6); }
.section-head .eyebrow { color: var(--color-gold); font-weight: 700; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 2px; }
.section-head h2 { margin-top: var(--space-2); }

/* ---- Features ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  padding: var(--space-5);
}
.feature-card .material-symbols-rounded {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--gradient-gold);
  color: #241300;
  font-size: 24px;
  margin-bottom: var(--space-4);
}

/* ---- Game categories ---- */
.category-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) { .category-scroll { grid-template-columns: repeat(4, 1fr); } }

/* ---- Screenshots placeholder strip ---- */
.screenshot-strip {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding: var(--space-2) 0 var(--space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshot-strip::-webkit-scrollbar { display: none; }
.screenshot-placeholder {
  flex: 0 0 200px;
  aspect-ratio: 9 / 18;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-card), var(--glass-fill);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
}
.screenshot-placeholder .material-symbols-rounded { font-size: 34px; color: var(--color-gold); opacity: 0.8; }
.screenshot-placeholder span.label { font-size: var(--fs-xs); font-weight: 600; }

/* ---- About ---- */
.about-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 780px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.about-stats .stat { text-align: center; }
.about-stats .stat strong { display: block; font-family: var(--font-display); font-size: var(--fs-xl); color: var(--color-gold); }
.about-stats .stat span { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ---- Contact ---- */
.contact-grid { display: grid; gap: var(--space-5); }
@media (min-width: 780px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-method { display: flex; align-items: center; gap: var(--space-3); }
.contact-method .material-symbols-rounded {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--glass-fill); border: 1px solid var(--glass-border);
  color: var(--color-gold);
}

/* ---- Site footer ---- */
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5) calc(var(--space-8) + var(--safe-bottom));
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-7);
  display: grid;
  gap: var(--space-5);
}
.site-footer .footer-top {
  display: flex; flex-wrap: wrap; gap: var(--space-6); justify-content: space-between;
}
.site-footer .footer-col h4 { font-size: var(--fs-sm); margin-bottom: var(--space-3); }
.site-footer .footer-col a { display: block; font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-2); }
.site-footer .footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--fs-xs); color: var(--color-text-muted);
}
