/* Marketing site; shares tokens and components with styles.css */
body.landing { background: var(--bg); }
.landing .nav { margin-left: 8px; }
.nav-cta { margin-left: auto; }
.kicker { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; }
.btn-lg { height: 40px; padding: 0 18px; font-size: 14px; }

.hero { max-width: 1180px; margin: 0 auto; padding: 72px 24px 48px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; }
.lede { color: #c3c8cf; font-size: 17px; line-height: 1.65; margin: 0 0 28px; max-width: 58ch; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-art { margin: 0; }
.hero-art svg { width: 100%; height: auto; display: block; }
.hero-art figcaption { color: var(--faint); font-size: 12px; margin-top: 8px; }

.stats-strip { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stats-strip > div { background: var(--surface); border: 1px solid var(--border); padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.stats-strip > div:first-child { border-radius: 8px 0 0 8px; }
.stats-strip > div:last-child { border-radius: 0 8px 8px 0; }
.stats-strip b { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.stats-strip span { color: var(--muted); font-size: 13px; }

.section { max-width: 1180px; margin: 0 auto; padding: 72px 24px 0; }
.section-head { margin-bottom: 28px; max-width: 720px; }
.section-head.row { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; gap: 16px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; line-height: 1.15; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.step-n { color: var(--accent); font-size: 13px; }
.steps h3 { font-size: 17px; margin: 10px 0 8px; }
.steps p { color: var(--muted); margin: 0; line-height: 1.6; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 14px; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 24px; color: #c3c8cf; line-height: 1.5; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 10px; height: 6px; border-left: 2px solid var(--good); border-bottom: 2px solid var(--good); transform: rotate(-45deg); }

.game-band { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding: 36px; }
.game-band h2 { font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; margin-bottom: 12px; }
.game-band p { line-height: 1.65; margin: 0 0 20px; max-width: 60ch; }
.game-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.game-points li { display: flex; align-items: baseline; gap: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface-2); }
.game-points b { font-size: 20px; font-weight: 500; min-width: 56px; }
.game-points span { color: var(--muted); }

.endpoints { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.endpoints > div { background: var(--surface); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.endpoints code { align-self: flex-start; }
.endpoints span { color: var(--muted); font-size: 13px; }

.cta-band { max-width: 1180px; margin: 72px auto 0; padding: 48px 24px; text-align: center; border-top: 1px solid var(--border); }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; margin-bottom: 20px; }
.footer { max-width: 1180px; margin: 0 auto; padding: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; gap: 32px; }
  .steps, .two-col, .game-band, .endpoints { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip > div { border-radius: 0 !important; }
  .landing .nav { display: none; }
  .section { padding-top: 56px; }
  .game-band { padding: 24px; }
  .card { overflow-x: auto; }
  .hero, .section { padding-left: 16px; padding-right: 16px; }
}
