:root {
  /* Light theme matching main site */
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #fafafa;
  --border: #e7e5e4; /* stone-200 */
  --text: #0c0a09;   /* stone-900 */
  --muted: #57534e;  /* stone-600 */
  --muted-2: #78716c; /* stone-500 */
  --blue: #2563eb;   /* blue-600 */
  --emerald: #059669;/* emerald-600 */
  --purple: #7c3aed; /* purple-600 */
  --footer-bg: #ffffff; /* keep footer white */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

/* Custom scrollbar */
/* For WebKit */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f5f5f4; }
::-webkit-scrollbar-thumb { background: #c8c7c3; border-radius: 8px; border: 2px solid #f5f5f4; }
::-webkit-scrollbar-thumb:hover { background: #a8a7a2; }
/* For Firefox */
* { scrollbar-width: thin; scrollbar-color: #c8c7c3 #f5f5f4; }

/* Main site background gradient like homepage */
.main {
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 50%, #f0fdfa 100%);
  min-height: 100%;
  padding-top: 64px; /* offset fixed header so top content is visible */
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: center; height: 64px; }
.brand-and-links { display: flex; align-items: center; gap: 32px; }
.brand { color: var(--text); font-weight: 800; font-size: 20px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { width: 24px; height: 24px; filter: brightness(0); }
.nav-links { display: none; gap: 24px; }
.nav-links a { color: #57534e; text-decoration: none; }
.nav-links a:hover { color: #0c0a09; background: #f5f5f4; padding: 6px 8px; border-radius: 8px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.btn { display: inline-flex; align-items: center; justify-content: center; height: 34px; padding: 0 12px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #3b82f6; }
.btn-discord { background: #5865F2; color: #fff; padding: 10px 16px; border-radius: 10px; box-shadow: 0 6px 14px rgba(88,101,242,0.3); }
.btn-discord:hover { background: #4752C4; }

/* Hero */
.hero { padding: 64px 0 48px; text-align: center; background: transparent; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #dbeafe; color: #1d4ed8; font-weight: 600; font-size: 13px; }
.hero h1 { font-size: 44px; line-height: 1.15; margin: 12px 0 8px; color: #1c1917; }
.subtitle { color: var(--muted); max-width: 800px; margin: 0 auto; font-size: 18px; }

/* Timeline */
.timeline { padding: 64px 0; }
.timeline .container { position: relative; }
.timeline-line { position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--border); }
@media (min-width: 768px) { .timeline-line { left: 50%; transform: translateX(-50%); } }

.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item .timeline-icon { position: absolute; left: 10px; top: 4px; width: 48px; height: 48px; border-radius: 999px; display: flex; align-items: center; justify-content: center; z-index: 1; box-shadow: 0 0 0 8px var(--bg); }
@media (min-width: 768px) { .timeline-item .timeline-icon { left: 50%; transform: translateX(-50%); } }

.timeline-item .card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-left: 64px; box-shadow: 0 10px 24px rgba(0,0,0,0.05); }
.timeline-item.right .card { margin-left: 64px; }
@media (min-width: 768px) {
  .timeline-item.left .card { margin-left: 0; margin-right: 55%; }
  .timeline-item.right .card { margin-left: 55%; }
}

.card-head { display: flex; align-items: center; gap: 12px; }
.card-head h3 { margin: 0; font-size: 20px; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; color: white; }
.bg-emerald { background: var(--emerald); }
.bg-blue { background: var(--blue); }
.bg-purple { background: var(--purple); }

.features { list-style: none; padding: 0; margin: 12px 0 0; color: #292524; }
.features li { display: flex; align-items: flex-start; gap: 8px; }
.features .check { color: #059669; font-weight: 800; margin-top: 2px; }

/* Goal */
.goal { padding: 64px 0; }
.goal-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.goal-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--panel-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.goal h2 { margin: 8px 0 8px; font-size: 34px; color: #1c1917; }
.goal p { margin: 0 auto; color: var(--muted); font-size: 18px; }

/* Discord CTA */
.cta { padding: 48px 0 64px; }
.cta-inner { text-align: center; }
.cta-inner h3 { margin: 0 0 8px; font-size: 24px; color: #1c1917; }
.cta-inner p { margin: 0 0 16px; color: #57534e; }
.cta-divider { height: 1px; background: var(--border); width: 100%; max-width: 760px; margin: 24px auto; }

/* Creator recruitment block */
/* creator styles are now within cta */
.creator-areas { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.creator-areas li { background: #f5f5f4; border: 1px solid var(--border); color: #1c1917; padding: 6px 12px; border-radius: 999px; font-size: 13px; }

/* Footer */
.footer { border-top: 1px solid var(--border); background: var(--footer-bg); display: flex; flex-direction: column; align-items: center; text-align: center; }
/* Center only the first row; avoid affecting the copyright line */
.footer .footer-inner { display: flex; justify-content: center; }
.footer-inner { display: flex; flex-direction: column; gap: 24px; padding: 40px 0; margin-left: auto; margin-right: auto; }
.footer-inner.center { align-items: center; text-align: center; width: 100%; }
.footer-core.center { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.brand { font-weight: 800; color: #1c1917; }
.muted { color: var(--muted); font-size: 14px; margin-top: 6px; }
.text-dark { color: #1c1917; }
.muted-dark { color: #57534e; font-size: 14px; margin-top: 6px; }
.footer-links { display: none; }
.copyright { color: #78716c; font-size: 12px; padding: 12px 0 24px; border-top: 1px solid var(--border); text-align: center; display: block; white-space: nowrap; }

/* Team message block like main site */
.team-message { margin-top: 16px; border: 1px solid var(--border); background: #fafaf9; color: #44403c; border-radius: 12px; padding: 24px; max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.semibold { font-weight: 600; color: #0c0a09; }


