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

:root {
  --bg:        #1a1c1e;
  --bg2:       #22252a;
  --bg3:       #2a2d33;
  --border:    #3a3d44;
  --text:      #f0f0f0;
  --muted:     #9aa0aa;
  --accent:    #c8a96e;
  --accent2:   #7bbfcf;
  --white:     #ffffff;
  --radius:    8px;
  --max:       1200px;
  --font:      'Inter', system-ui, sans-serif;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ── Nav ──────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 28, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo svg {
  width: 44px;
  height: 44px;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; color: var(--bg) !important; }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(200,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(123,191,207,0.05) 0%, transparent 60%);
}

/* stars */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 90%, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  width: 180px;
  height: 180px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1;
}

.hero-tagline span { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

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

.btn-secondary:hover { border-color: var(--accent2); color: var(--accent2); }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-hint svg { opacity: 0.6; }

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

/* ── Section Header ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ── Services ─────────────────────────────────────────────────── */
#services {
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Podcast ──────────────────────────────────────────────────── */
#podcasts {
  background: var(--bg);
}

.podcast-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.podcast-visual {
  position: relative;
}

.podcast-art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.podcast-art {
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: border-color 0.3s;
}

.podcast-art:hover { border-color: var(--accent2); color: var(--accent2); }

.podcast-art.large {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
  font-size: 1.5rem;
}

.podcast-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.podcast-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.podcast-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

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

/* ── Games ────────────────────────────────────────────────────── */
#games {
  background: var(--bg2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.game-card-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card h3 {
  font-size: 1.8rem;
  color: var(--white);
}

.game-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.game-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Podcast Cards ────────────────────────────────────────────── */
.podcast-shows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.podcast-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.podcast-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.podcast-card-art {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-card-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.podcast-card-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(200,169,110,0.1);
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.2);
}

a.platform-badge:hover {
  background: rgba(200,169,110,0.2);
  border-color: var(--accent);
}

.platform-badge--note {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border-color: var(--border);
}

@media (max-width: 560px) {
  .podcast-card { flex-direction: column; gap: 1rem; }
  .podcast-card-art { width: 60px; height: 60px; }
}

/* ── Process ──────────────────────────────────────────────────── */
#process {
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-num {
  font-family: var(--font-head);
  font-size: 4rem;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────────────────────────── */
#contact {
  background: var(--bg);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-detail svg { color: var(--accent); flex-shrink: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select option { background: var(--bg3); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-logo svg { width: 36px; height: 36px; }

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── Animations ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .podcast-feature { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .podcast-stats { gap: 1rem; }
  section { padding: 4rem 0; }
}
