/* ── Page typography ── */
.home-body {
  font-family: 'DM Sans', sans-serif;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  opacity: 0.7;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
  color: #fff;
}

.hero-sub {
  max-width: 460px;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

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

.btn-primary {
  background: var(--victory-gold);
  color: #000;
  border: none;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  background: none;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.25;
  animation: bob 2s ease-in-out infinite;
    color: white;
}

.scroll-hint span {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Shared section styles ── */
.home-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  opacity: 0.6;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}

/* ── What is Irrite ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0 0 16px;
}

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

.about-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}

.pill:hover { border-color: rgba(0,242,254,0.2); }

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  flex-shrink: 0;
}

.pill-text {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 560px) { .stats-row { grid-template-columns: 1fr; } }

.stat-cell {
  background: rgba(5,5,15,0.6);
  padding: 36px 28px;
  text-align: center;
}

.stat-number {
  font-family: 'DM Mono', monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── How it works ── */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}

@media (max-width: 700px) { .steps-list { grid-template-columns: 1fr 1fr; } }

@media (max-width: 400px) { .steps-list { grid-template-columns: 1fr; } }

.step-cell {
  background: rgba(5,5,15,0.6);
  padding: 32px 24px;
  position: relative;
}

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.step-name {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
}

.step-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin: 0;
}

/* ── Mini leaderboard ── */
.lb-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}

.lb-table thead th {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 0 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-table thead th:last-child { text-align: right; }

.lb-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.15s;
}

.lb-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.lb-table tbody tr:last-child { border-bottom: none; }

.lb-table tbody td {
  padding: 14px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.lb-table tbody td:last-child {
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  color: var(--neon-cyan);
}

.lb-rank {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  width: 40px;
}

.lb-rank[data-rank="1"] { color: var(--victory-gold); }

.lb-rank[data-rank="2"] { color: rgba(255,255,255,0.6); }

.lb-rank[data-rank="3"] { color: #cd7f32; }

.lb-username { font-weight: 400; }

.lb-footer {
  margin-top: 20px;
  text-align: center;
}

.lb-footer a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}

.lb-footer a:hover { color: rgba(255,255,255,0.7); }

/* ── CTA strip ── */
.cta-strip {
  text-align: center;
  padding: 80px 24px 120px;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
}

/*Discord styles*/
.discord-card {
  margin: 0 auto;
  margin-top: 50px;
  background: #2b2d31;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.discord-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.discord-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;

}

.discord-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5865F2;
  font-weight: 600;
  font-size: 18px;
}

.discord-status {
  font-size: 14px;
  color: #b5bac1;
}

.discord-button {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  background: #5865F2;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.discord-button:hover {
  background: #4752C4;
  transform: scale(1.02);
}