/* ---------- HERO SECTION ---------- */
/* Hero section container */
.hero {
  min-height: calc(100svh - 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* Hero tag container */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-dark);
  background: var(--orange-light);
  border: 1px solid var(--orange-muted);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease both;
}

/* Hero mark dot */
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Headline */
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.55s 0.1s ease both;
}

/* special character */
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Subtitle */
.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.55s 0.2s ease both;
}

/* Call to action container */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.3s ease both;
}

/* Discord button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 18px rgba(245,124,43,0.28);
}

/* Discord button states */
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,124,43,0.35);
}

/* Learn more button */
.btn-secondary {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.8rem 1.25rem;
  transition: color 0.15s;
}

/* Learn more button states */
.btn-secondary:hover { 
    color: var(--ink); 
}

/* Scroll tag */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeUp 0.6s 0.7s ease both;
}

/* Scroll text */
.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Scroll arrow icon */
.scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

/* Scrolling animation */
@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(-8px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}



/* ---------- ABOUT ---------- */
/* About container */
.about {
    background: var(--surface-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Inner style */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* about text */
.about-text p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    font-weight: 300;
    margin-bottom: 1rem;
}

/* bold text in about */
.about-text p strong { 
  color: var(--ink); 
  font-weight: 500; 
}
.about-text p:last-child { 
  margin-bottom: 0; 
}

/* Visuals container group */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Visuals container */
.about-stat {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.18s;
}

/* Visuals states */
.about-stat:hover { 
  transform: translateX(4px); 
}

/* Icon */
.about-stat-icon {
    width: 44px; height: 44px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* bold text / headlines */
.about-stat-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
}

/* description */
.about-stat-text span {
    font-size: 0.85rem;
    color: var(--ink-faint);
}



/* ---------- WHY JOIN ---------- */
/* Order in Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

/* Why-card style */
.why-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

/* Why-card hovering style */
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}

/* Why-card states */
.why-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 32px rgba(30,27,24,0.08); 
}
.why-card:hover::before { 
  opacity: 1; 
}

/* Icon style in why-card */
.why-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* headline */
.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* desscription */
.why-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
}



/* ---------- DISCORD CTA ---------- */
/* Container background */
.discord-section {
  background: var(--ink);
}

/* Inner container */
.discord-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* label */
.discord-text .section-label { 
  color: #F57C2B; 
}

/* headline */
.discord-text .section-title { 
  color: #fff; 
}

/* Special words in headline */
.discord-text .section-title em { 
  color: var(--orange); 
  font-style: normal; 
}

/* description */
.discord-text p {
  color: rgba(255,253,249,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 420px;
}

/* Discord card*/
.discord-card {
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 240px;
}

/* Member count */
.discord-members {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

/* Member label */
.discord-members-label {
  font-size: 0.8rem;
  color: rgba(255,253,249,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* quote */
.discord-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,253,249,0.6);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* CTA button */
.btn-discord-big {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  width: 100%;
  justify-content: center;
  transition: background 0.18s, transform 0.12s;
}

/* CTA button states */
.btn-discord-big:hover { 
  background: var(--orange-dark); 
  transform: translateY(-2px); 
}



/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  /* hero */
  .hero { 
    padding: 3.5rem 1.25rem 3rem; 
    min-height: auto; 
  }

  /* hero scroll tag */
  .hero-scroll {
    display: none;
  }

  /* sections */
  .about-inner { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .why-grid { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }
  .discord-inner { 
    flex-direction: column; 
  }
  .discord-card { 
    width: 100%; 
    min-width: unset; 
  }
}

/* section mid - width */
@media (max-width: 480px) {
  section { 
    padding: 3.5rem 1.25rem; 
  }
}