/* StarForge Gems minimal styles: navy background with gold accents */
:root {
  --navy: #0a1830;
  --navy-2: #0f2244;
  --gold: #d4af37;
  --text: #e8edf7;
  --muted: #c5cde0;
  --card: #0f2244;
  --shadow: rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; color: var(--text); background: linear-gradient(180deg, var(--navy), var(--navy-2)); min-height: 100%; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top: 0; backdrop-filter: blur(6px); background: rgba(10,24,48,0.7); border-bottom: 1px solid rgba(212,175,55,0.25); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.5px; }
.brand-text { color: var(--text); }
.logo { width: 28px; height: 28px; }

.nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-weight: 600; }
.nav a[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }

.hero { padding: clamp(48px, 8vw, 96px) 0; text-align: left; }
.hero h1 { font-size: clamp(28px, 5vw, 56px); margin: 0 0 12px; color: var(--text); }
.lead { font-size: clamp(16px, 2.4vw, 20px); color: var(--muted); max-width: 60ch; }
.cta-row { display: flex; gap: 14px; margin-top: 22px; }

.btn { display: inline-block; padding: 12px 18px; background: var(--gold); color: #0a0a0a; font-weight: 800; border-radius: 999px; text-decoration: none; box-shadow: 0 6px 14px var(--shadow); }
.link { color: var(--gold); text-decoration: underline; align-self: center; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding-bottom: 72px; }
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.2); border-radius: 16px; padding: 18px; box-shadow: 0 8px 24px var(--shadow); }
.card h3 { margin-top: 4px; color: var(--gold); }

.site-footer { border-top: 1px solid rgba(212,175,55,0.25); padding: 20px 0; color: var(--muted); }

@media (max-width: 840px) {
  .cards { grid-template-columns: 1fr; }
}
