/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg:           #0c0e14;
  --surface:      #12151e;
  --border:       #222633;
  --text:         #dde3ed;
  --text-muted:   #6e7a90;
  --gold:         #c9a227;
  --gold-glow:    rgba(201, 162, 39, 0.35);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background-image: url('screenshot.png');
  background-size: cover;
  background-position: center 35%;
  filter: blur(12px) brightness(0.2) saturate(0.6);
  z-index: 0;
}

/* radial vignette over the blurred bg */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 40%, transparent 10%, rgba(12,14,20,0.55) 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.studio-label {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 80px var(--gold-glow),
    0 0 160px rgba(201, 162, 39, 0.15),
    0 6px 30px rgba(0, 0, 0, 0.9);
  margin-bottom: 2rem;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.sub-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  font-style: italic;
}

/* Steam-style badge — disabled until link is ready */
.btn-steam {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #171a21;
  border: 1px solid #2a475e;
  color: #c7d5e0;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: default;
  user-select: none;
  opacity: 0.8;
}

.steam-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Features ───────────────────────────────────────────────────────────── */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.08);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── Screenshot ─────────────────────────────────────────────────────────── */
.screenshot-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--bg);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.screenshot-frame {
  display: inline-block;
  border-radius: 8px;
  padding: 4px;
  background: linear-gradient(135deg, #3a3010, var(--border), #3a3010);
  box-shadow:
    0 0 0 1px var(--border),
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 162, 39, 0.06);
}

.screenshot {
  display: block;
  max-width: min(720px, 88vw);
  border-radius: 5px;
}

.screenshot-caption {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-studio {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
