/* Landing page — Falcon Gaming. Depends on falcon.css tokens. */

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 92px) clamp(56px, 8vw, 100px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.hero__title em { font-style: italic; color: var(--primary); }
.hero__sub { font-size: 1.15rem; line-height: 1.65; color: var(--body); max-width: 46ch; margin: 22px 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--muted); }
.hero__trust svg { color: var(--ok); flex: 0 0 auto; }

/* Dark showcase card (featured covers) */
.showcase {
  background: var(--dark); border-radius: var(--r-xl); padding: 22px;
  box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
}
.showcase__label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.showcase__label span { color: var(--on-dark-soft); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cover { display: block; border-radius: var(--r-lg); overflow: hidden; background: var(--dark-soft); border: 1px solid rgba(255,255,255,.06); }
.cover--tall { grid-row: span 2; }
.cover img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; transition: transform .4s ease; }
.cover--tall img { aspect-ratio: 3/4; }
.cover:hover img { transform: scale(1.05); }
.cover__meta { padding: 10px 12px 12px; }
.cover__meta h4 { color: var(--on-dark); font-size: 15px; }
.cover__meta p { margin: 3px 0 0; font-size: 12px; color: var(--on-dark-soft); }
.cover__meta .price { color: var(--accent-amber); font-weight: 600; font-family: var(--font-body); }

/* ---------- Stats band ---------- */
.stats { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--surface-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { text-align: center; padding: clamp(28px, 4vw, 44px) 20px; }
.stat + .stat { border-left: 1px solid var(--hairline); }
.stat-number { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.stat-label { margin-top: 6px; font-size: 14px; color: var(--muted); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); counter-reset: step; }
.step { position: relative; }
.step__n { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.step h3 { font-size: 1.5rem; margin: 14px 0 8px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Featured games ---------- */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gcard { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.gcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.gcard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gcard__body { padding: 14px 16px 18px; }
.gcard__body h4 { font-size: 1.2rem; }
.gcard__body p { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.games-more { text-align: center; margin-top: 40px; }

/* ---------- SteamUnlock coral callout ---------- */
.su { background: var(--primary); border-radius: var(--r-xl); padding: clamp(36px, 6vw, 64px); color: var(--on-primary); display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.su h2 { color: var(--on-primary); font-size: clamp(2rem, 4vw, 2.8rem); }
.su p { color: rgba(255,255,255,.9); margin: 16px 0 26px; max-width: 46ch; font-size: 1.05rem; }
.su .btn--secondary { background: var(--canvas); border-color: transparent; color: var(--ink); }
.su .btn--secondary:hover { background: #fff; }
.su__price { text-align: center; }
.su__price .big { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.su__price .unit { display: block; margin-top: 6px; font-size: 15px; color: rgba(255,255,255,.85); }

/* ---------- Why Falcon (features) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { background: var(--surface-card); border-radius: var(--r-lg); padding: 30px; }
.feature__icon { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--canvas); color: var(--primary); margin-bottom: 18px; }
.feature h3 { font-size: 1.5rem; margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final h2 { color: var(--on-dark); font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 18ch; margin: 0 auto 16px; }
.final p { color: var(--on-dark-soft); max-width: 52ch; margin: 0 auto 30px; }
.final .btn--secondary { background: var(--dark-elev); color: var(--on-dark); border-color: rgba(255,255,255,.12); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .su { grid-template-columns: 1fr; text-align: center; }
  .su p { margin-inline: auto; }
  .su__price { display: none; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .games-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--hairline); }
}
