:root {
  --tv-void: #0b0c10;
  --tv-stone: #15171c;
  --tv-stone-light: #1c1e24;
  --tv-gold: #b8935a;
  --tv-gold-bright: #e0bd82;
  --tv-blood: #8f2d2d;
  --tv-blood-bright: #c94a4a;
  --tv-arcane: #2f5d63;
  --tv-parchment: #e8e2d0;
  --tv-parchment-dim: #9c9686;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--tv-void);
  color: var(--tv-parchment);
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

a { text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11,12,16,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #221d12;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: Georgia, serif; font-size: 20px; letter-spacing: 5px; color: var(--tv-gold-bright);
}
.nav-cta {
  padding: 9px 22px; border: 1px solid var(--tv-gold); color: var(--tv-gold-bright);
  font-family: Georgia, serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.15s ease;
}
.nav-cta:hover { background: rgba(184,147,90,0.12); box-shadow: 0 0 16px rgba(184,147,90,0.2); }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 24px 90px;
  background: radial-gradient(ellipse at 50% 20%, #1a1c22 0%, var(--tv-void) 70%);
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4px; color: var(--tv-blood-bright); margin-bottom: 20px;
}
.hero-title {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(56px, 10vw, 96px);
  letter-spacing: 14px; color: var(--tv-gold-bright);
  text-shadow: 0 0 40px rgba(224,189,130,0.3);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: var(--tv-parchment-dim); margin-bottom: 36px;
}
.hero-cta {
  display: inline-block; padding: 18px 48px;
  background: linear-gradient(180deg, #2a2416, #17140c);
  border: 1px solid var(--tv-gold); color: var(--tv-gold-bright);
  font-family: Georgia, serif; letter-spacing: 3px; text-transform: uppercase; font-size: 15px;
  transition: all 0.15s ease;
}
.hero-cta:hover { background: linear-gradient(180deg, #3a3320, #211c10); box-shadow: 0 0 28px rgba(184,147,90,0.3); transform: translateY(-1px); }
.hero-meta { margin-top: 18px; font-size: 12px; letter-spacing: 1px; color: var(--tv-parchment-dim); }

/* ---------- World peek ---------- */
.worldpeek {
  max-width: 1000px; margin: 0 auto; padding: 0 24px 100px;
}
.worldpeek-grid {
  position: relative; height: 380px;
  background-color: #132018;
  background-image:
    linear-gradient(rgba(34,51,31,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,51,31,0.5) 1px, transparent 1px);
  background-size: 44px 44px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}
.wp-dot {
  position: absolute; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #1a1a2a; transform: translate(-50%, -50%);
}
.wp-knight { background: #6fa8dc; }
.wp-mage { background: #b07fe0; }
.wp-archer { background: #8fce7c; }
.wp-tri {
  position: absolute; width: 0; height: 0; transform: translate(-50%, -50%);
  border-left: 15px solid transparent; border-right: 15px solid transparent; border-bottom: 26px solid #d06a5a;
}
.wp-label {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif; font-size: 11px; color: var(--tv-parchment); white-space: nowrap;
}
.wp-label-mob { color: #ff8a8a; top: -18px; }
.worldpeek-caption {
  text-align: center; margin-top: 16px; font-size: 13px; color: var(--tv-parchment-dim);
}

/* ---------- Section shared ---------- */
.section-eyebrow {
  text-align: center; font-size: 12px; letter-spacing: 3px; color: var(--tv-blood-bright);
  text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  text-align: center; font-family: Georgia, serif; font-size: 32px; letter-spacing: 2px;
  color: var(--tv-gold-bright); margin-bottom: 56px;
}

/* ---------- Classes ---------- */
.classes { max-width: 1100px; margin: 0 auto; padding: 100px 24px; }
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.class-card {
  background: var(--tv-stone-light); border: 1px solid #2a2a2a; padding: 36px 28px;
  text-align: center; transition: border-color 0.2s ease;
}
.class-card:hover { border-color: var(--accent); }
.class-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--accent); box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 45%, transparent);
}
.class-card h3 { font-family: Georgia, serif; font-size: 19px; letter-spacing: 1px; margin-bottom: 12px; }
.class-card p { font-size: 14px; color: var(--tv-parchment-dim); }

/* ---------- Features ---------- */
.features { max-width: 1100px; margin: 0 auto; padding: 40px 24px 110px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
.feature-num {
  font-family: Georgia, serif; font-size: 13px; color: var(--tv-blood-bright); letter-spacing: 2px;
}
.feature h3 { font-family: Georgia, serif; font-size: 18px; margin: 10px 0 10px; color: var(--tv-parchment); }
.feature p { font-size: 14px; color: var(--tv-parchment-dim); }

/* ---------- Final CTA ---------- */
.finalcta {
  text-align: center; padding: 110px 24px;
  background: linear-gradient(180deg, var(--tv-void), #16110a 60%, var(--tv-void));
  border-top: 1px solid #221d12;
}
.finalcta h2 {
  font-family: Georgia, serif; font-size: 28px; color: var(--tv-parchment); margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 32px 24px; color: var(--tv-parchment-dim); font-size: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .class-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 20px 60px; }
  .worldpeek-grid { height: 260px; }
}
