
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
}

.title-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 16vw, 12rem);
  color: var(--purple);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow:
    0 0 20px rgba(168,85,247,0.5),
    0 0 80px rgba(168,85,247,0.25),
    0 0 140px rgba(168,85,247,0.12);
  animation: fadeDown 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.title-sub {
  font-size: clamp(0.65rem, 1.8vw, 1rem);
  font-weight: 400;
  color: rgba(168,85,247,0.8);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.15em;
  animation: fadeDown 0.8s 0.08s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-desc {
  font-size: clamp(0.7rem, 1.9vw, 0.9rem);
  color: rgba(168,85,247,0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 2.8rem;
  animation: fadeDown 0.8s 0.14s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.8s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.55rem;
  background: transparent;
  border: 1.5px solid var(--purple-border);
  border-radius: 999px;
  color: var(--purple);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.15s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--purple-fill);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  z-index: 0;
}

.btn:hover::before { transform: scale(1); opacity: 1; }
.btn:hover { border-color: var(--purple); box-shadow: 0 0 22px rgba(168,85,247,0.35), 0 0 50px rgba(168,85,247,0.12); color: #fff; }
.btn:active { transform: scale(0.96); }
.btn-text { position: relative; z-index: 1; }

.btn-icon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.btn-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover .btn-icon { opacity: 1; transform: translateX(4px); }

.btn--discord { border-color: rgba(88,101,242,0.55); color: #818cf8; }
.btn--discord::before { background: rgba(88,101,242,0.15); }
.btn--discord:hover { border-color: #818cf8; box-shadow: 0 0 22px rgba(88,101,242,0.3); color: #fff; }
.btn--discord .btn-icon svg { fill: currentColor; stroke: none; }
.btn--discord:hover .btn-icon { transform: none; }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
  animation: fadeIn 1s 1s both;
}

.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--purple); }

.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}


section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.section-title span { color: var(--purple); }

.section-body {
  font-size: 0.8rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  letter-spacing: 0.05em;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.feature-card {
  background: rgba(168,85,247,0.03);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-right: 1px solid rgba(168,85,247,0.1);
  transition: background 0.3s;
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(168,85,247,0.06); }

.feature-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.feature-icon svg { width: 16px; height: 16px; stroke: var(--purple); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.feature-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; letter-spacing: 0.06em; }

.feature-desc { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.58); letter-spacing: 0.05em; }

.feature-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); text-decoration: none; opacity: 0.7; margin-top: auto;
  transition: opacity 0.2s, gap 0.2s;
}

.feature-link:hover { opacity: 1; gap: 0.65rem; }
.feature-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }


.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid rgba(168,85,247,0.1); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: rgba(168,85,247,0.03);
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-q:hover { background: rgba(168,85,247,0.06); }

.faq-q-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

.faq-chevron {
  width: 16px; height: 16px;
  stroke: var(--purple); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding: 0 1.8rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem;
}

.faq-a p {
  font-size: 0.76rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.faq-a a { color: var(--purple); text-decoration: none; opacity: 0.8; }
.faq-a a:hover { opacity: 1; }


.hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,85,247,0.2), transparent);
  position: relative;
  z-index: 1;
}


.notice-band {
  position: relative;
  z-index: 1;
  background: rgba(168,85,247,0.05);
  border-top: 1px solid rgba(168,85,247,0.12);
  border-bottom: 1px solid rgba(168,85,247,0.12);
  padding: 1.2rem 2rem;
  text-align: center;
}

.notice-band p {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(168,85,247,0.75);
}

.notice-band strong { color: var(--purple); font-weight: 500; }

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(168,85,247,0.1); }
  .feature-card:last-child { border-bottom: none; }
}
