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

:root {
  --bg: #0e0820;
  --purple-mid: #2d1b69;
  --purple-light: #3d2590;
  --gold: #f7941d;
  --gold-light: #ffb347;
  --gold-text: #ffd080;
  --text: #f0eaff;
  --text-soft: #c4b8e8;
  --muted: #9b8dcc;
  --muted-dim: #5a4e80;
  --footer: #4a3d70;
  --card: #1f1150;
  --card-deep: #170e40;
  --discord: #5865f2;
  --discord-soft: #7289da;
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.wrap-md {
  width: min(768px, calc(100% - 48px));
  margin-inline: auto;
}

.wrap-lg {
  width: min(1024px, calc(100% - 48px));
  margin-inline: auto;
}

.wrap-hero {
  width: min(1024px, calc(100% - 48px));
  margin-inline: auto;
}

.font-display {
  font-family: var(--font-display);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #f7941d 0%, #ffd080 50%, #f7941d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glow-gold-text {
  text-shadow: 0 0 20px rgba(247, 148, 29, 0.5);
}

.divider-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(247, 148, 29, 0.4), transparent);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(247, 148, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 148, 29, 0); }
}

.pulse-ring {
  animation: pulse-ring 2.5s ease-out infinite;
  border-radius: 999px;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #f7941d, #ffb347, #f7941d);
  background-size: 200% auto;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 14px;
  transition: background-position 0.4s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.4);
}

.btn-gold.sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(247, 148, 29, 0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(247, 148, 29, 0.1);
  box-shadow: 0 0 16px rgba(247, 148, 29, 0.2);
}

.btn-discord {
  display: inline-block;
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-discord:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.card-gog {
  background: linear-gradient(135deg, var(--card) 0%, var(--card-deep) 100%);
  border: 1px solid rgba(61, 37, 144, 0.6);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-gog:hover {
  border-color: rgba(247, 148, 29, 0.3);
  box-shadow: 0 4px 24px rgba(247, 148, 29, 0.08);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(14, 8, 32, 0.85);
  border-bottom: 1px solid rgba(61, 37, 144, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 27, 105, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(247, 148, 29, 0.05) 0%, transparent 60%),
    var(--bg);
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(247, 148, 29, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 32px;
  object-fit: contain;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 72px);
  line-height: 1;
  margin: 0 0 24px;
}

.hero-lead {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 42rem;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* About */
.section {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.2;
}

.section-title .accent {
  color: var(--gold);
}

.about-copy p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 16px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-grid h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 8px;
}

.feature-grid p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

/* Recruitment */
.recruit-head {
  text-align: center;
  margin-bottom: 64px;
}

.recruit-head p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(247, 148, 29, 0.5), rgba(247, 148, 29, 0.1));
  display: none;
}

@media (min-width: 768px) {
  .steps::before {
    display: block;
  }
}

.step {
  position: relative;
  padding: 24px 24px 24px 72px;
  border-color: rgba(247, 148, 29, 0.35);
}

@media (min-width: 768px) {
  .step {
    padding-left: 80px;
  }
}

.step-num {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #f7941d, #ffb347);
  color: var(--bg);
  z-index: 1;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .step-body {
    flex-direction: row;
    align-items: center;
  }
}

.step-text {
  flex: 1;
}

.step-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.step-title-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.step-title-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.step-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.step-action {
  flex-shrink: 0;
}

.help {
  text-align: center;
  font-size: 12px;
  color: var(--muted-dim);
  margin: 24px 0 0;
}

.help a {
  color: var(--discord-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Requirements */
.req-head {
  text-align: center;
  margin-bottom: 48px;
}

.req-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .req-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.req-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.req-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.req-grid p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(61, 37, 144, 0.4);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.footer-copy {
  font-size: 12px;
  color: var(--footer);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--footer);
  transition: color 0.2s ease;
}

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