@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg:         #0c1508;
  --surface:    #131f0d;
  --card:       #192910;
  --border:     #2a4018;
  --gold:       #c8961e;
  --gold-light: #e8b830;
  --text:       #ddd5b0;
  --text-muted: #7a8e68;
  --green-mid:  #3a6020;
  --green-dark: #1e3a10;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold-light);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(12, 21, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(12, 21, 8, 0.98);
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-logo {
  width: min(720px, 88vw);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 40px rgba(200, 150, 30, 0.35));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 1.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,21,8,0.35) 0%, rgba(12,21,8,0.7) 70%, var(--bg) 100%),
    url('../images/hero-back.gif') center / cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, #06120a 0%, #0e2208 35%, #1a3c10 55%, #0a1e06 80%, #060e04 100%);
}

/* Pixel-style star field */
.hero-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 8%,  #ffe8a0 0%, transparent 100%),
    radial-gradient(1px 1px at 27% 15%, #ffe8a0 0%, transparent 100%),
    radial-gradient(2px 2px at 41% 5%,  #fff8d0 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 12%, #ffe8a0 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 7%,  #fff8d0 0%, transparent 100%),
    radial-gradient(2px 2px at 79% 18%, #ffe8a0 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 9%,  #fff8d0 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 22%, #ffe8a0 0%, transparent 100%),
    radial-gradient(1px 1px at 7%  28%, #fff8d0 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 32%, #ffe8a0 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 25%, #fff8d0 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 30%, #ffe8a0 0%, transparent 100%);
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 1rem;
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  text-shadow: 0 0 60px rgba(200, 150, 30, 0.4);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #0c1508;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #0c1508;
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── ABOUT ── */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong {
  color: var(--text);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
}

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

/* ── WORLD ── */
.world {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.world-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.world-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.world-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem;
  font-size: 0.85rem;
}

.world-tile .tile-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
}

.world-tile .tile-name {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.3rem;
}

.world-tile p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ── COMING SOON ── */
.coming-soon {
  text-align: center;
}

.coming-soon .section-label,
.coming-soon .section-title,
.coming-soon .section-desc,
.coming-soon .divider {
  margin-left: auto;
  margin-right: auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.roadmap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
  width: 100%;
  text-align: left;
}

.roadmap-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px;
  top: calc(1.5rem + 24px);
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.roadmap-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-dot.active {
  border-color: var(--gold);
  background: var(--gold);
}

.roadmap-dot.active::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c1508;
}

.roadmap-text h4 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.roadmap-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  background: var(--surface);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { gap: 1.2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .world-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .world-tiles  { order: -1; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
