/* ══════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════ */
:root {
  --border: rgba(255,255,255,0.06);
  --card: #111111;
  --dark: #080808;
  --dark2: #0f0f0f;
  --dark3: #161616;
  --muted: #666;
  --red: #e8000f;
  --red-dim: rgba(232,0,15,0.15);
  --red-hot: #ff2233;
  --silver: #c0c8d4;
  --text: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Exo 2',sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
/* ══════════════════════════════════════
   NOISE OVERLAY
══════════════════════════════════════ */
body::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  content: '';
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}
/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(8,8,8,0.85);
  border-bottom: 1px solid var(--border);
  display: flex;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 48px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.nav-logo {
  color: #fff;
  font-family: 'Rajdhani',sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a::after {
  background: var(--red);
  bottom: -4px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  align-items: center;
  background: var(--red);
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-family: 'Rajdhani',sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 1px;
  padding: 8px 20px;
  transition: background 0.2s,transform 0.2s;
}

.nav-cta:hover {
  background: var(--red-hot);
  transform: translateY(-1px);
}
/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 48px 80px;
  position: relative;
}
/* background layers */

.hero-bg {
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(180,0,10,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(120,0,8,0.15) 0%, transparent 60%),
    var(--dark);
  inset: 0;
  position: absolute;
}

.hero-grid {
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  inset: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 80%);
  position: absolute;
}

/* diagonal energy lines */

.hero-lines {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-lines::after {
  animation-delay: 1.5s;
  left: 68%;
  opacity: 0.3;
  top: -10%;
}

.hero-lines::before {
  animation-delay: 0s;
  left: 62%;
  opacity: 0.5;
  top: -10%;
}

.hero-lines::before,.hero-lines::after {
  animation: line-drop 3s ease-in-out infinite;
  background: linear-gradient(to bottom,transparent,var(--red),transparent);
  content: '';
  height: 120%;
  position: absolute;
  width: 1px;
}

@keyframes line-drop{
  0%,100%{transform:translateY(-10%) scaleY(0.6);opacity:0;}
  50%{transform:translateY(0%) scaleY(1);opacity:0.6;}
}

/* hero content */

.btn-outline {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-family: 'Rajdhani',sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 1px;
  padding: 14px 28px;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-primary {
  align-items: center;
  background: var(--red);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  color: #fff;
  display: inline-flex;
  font-family: 'Rajdhani',sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 1px;
  padding: 14px 28px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--red-hot);
  box-shadow: 0 12px 40px rgba(232,0,15,0.4);
  transform: translateY(-2px);
}

.hero-actions {
  animation: fadeUp 0.6s 0.65s forwards;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  align-items: center;
  animation: fadeUp 0.6s 0.2s forwards;
  color: var(--red);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  opacity: 0;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  background: var(--red);
  content: '';
  height: 1px;
  width: 28px;
}

.hero-sub {
  animation: fadeUp 0.6s 0.5s forwards;
  color: #999;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 28px;
  max-width: 420px;
  opacity: 0;
}

.hero-sub strong {
  color: var(--silver);
}

.hero-title {
  animation: fadeUp 0.6s 0.35s forwards;
  color: #fff;
  font-family: 'Barlow Condensed',sans-serif;
  font-size: clamp(64px,9vw,110px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.9;
  opacity: 0;
  text-transform: uppercase;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}

.hero-title .red {
  color: var(--red);
}

/* hero stats */

.hero-stats {
  animation: fadeUp 0.6s 0.8s forwards;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  opacity: 0;
  padding-top: 40px;
}

.stat-item {}

.stat-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

.stat-num {
  color: #fff;
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.stat-num span {
  color: var(--red);
}

/* hero visual */

.hero-visual {
  align-items: center;
  animation: fadeIn 1s 0.4s forwards;
  bottom: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
}

.hex-container {
  height: 380px;
  position: relative;
  width: 380px;
}

.hex-ring {
  animation: rotate-hex 20s linear infinite;
  border: 2px solid rgba(232,0,15,0.3);
  clip-path: polygon(50% 0%,93.3% 25%,93.3% 75%,50% 100%,6.7% 75%,6.7% 25%);
  inset: 0;
  position: absolute;
}

.hex-core {
  align-items: center;
  background: linear-gradient(135deg,#1a0000,#0d0d0d);
  box-shadow: 0 0 60px rgba(232,0,15,0.3);
  clip-path: polygon(50% 0%,93.3% 25%,93.3% 75%,50% 100%,6.7% 75%,6.7% 25%);
  display: flex;
  inset: 50px;
  justify-content: center;
  position: absolute;
}

.hex-dot {
  animation: dot-pulse 2s ease-in-out infinite;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  height: 8px;
  position: absolute;
  width: 8px;
}

.hex-dot:nth-child(1) {
  animation-delay: 0s;
  left: 50%;
  top: 2%;
}

.hex-dot:nth-child(2) {
  animation-delay: 0.3s;
  right: 3%;
  top: 26%;
}

.hex-dot:nth-child(3) {
  animation-delay: 0.6s;
  bottom: 26%;
  right: 3%;
}

.hex-dot:nth-child(4) {
  animation-delay: 0.9s;
  bottom: 2%;
  left: 50%;
}

.hex-dot:nth-child(5) {
  animation-delay: 1.2s;
  bottom: 26%;
  left: 3%;
}

.hex-dot:nth-child(6) {
  animation-delay: 1.5s;
  left: 3%;
  top: 26%;
}

.hex-dots {
  inset: 0;
  position: absolute;
}

.hex-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hex-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px var(--red)) drop-shadow(0 0 60px rgba(232,0,15,0.4));
}

@keyframes rotate-hex{from{transform:rotate(0)}to{transform:rotate(360deg)}}

@keyframes dot-pulse{0%,100%{opacity:0.3;transform:scale(0.8);}50%{opacity:1;transform:scale(1.2);}}

/* ══════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════ */
section {
  padding: 100px 48px;
}

.section-tag {
  align-items: center;
  color: var(--red);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-tag::before {
  background: var(--red);
  content: '';
  height: 1px;
  width: 20px;
}

.section-title {
  color: #fff;
  font-family: 'Barlow Condensed',sans-serif;
  font-size: clamp(36px,5vw,56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.section-sub {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}
/* ══════════════════════════════════════
   ABOUT / BRAND STRIP
══════════════════════════════════════ */
.brand-strip {
  background: var(--red);
  overflow: hidden;
  padding: 20px 48px;
  position: relative;
}

.brand-strip-inner {
  align-items: center;
  animation: scroll-strip 20s linear infinite;
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll-strip{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.strip-item {
  align-items: center;
  color: rgba(0,0,0,0.5);
  display: flex;
  font-family: 'Rajdhani',sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.strip-item::after {
  color: rgba(0,0,0,0.3);
  content: '◆';
  font-size: 8px;
}
/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  align-items: center;
  background: var(--dark2);
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.about-left {}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.badge {
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.badge:hover {
  border-color: var(--red);
  color: var(--red);
}

.about-right {
  position: relative;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.about-card::before {
  background: linear-gradient(to right,var(--red),transparent);
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.about-card-title {
  color: var(--silver);
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-list-row {
  align-items: center;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
}

.platform-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.platform-url {
  color: var(--muted);
  font-size: 12px;
}

.platform-dot {
  animation: dot-pulse 2s infinite;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  height: 8px;
  width: 8px;
}
/* ══════════════════════════════════════
   CONTENT FEATURES
══════════════════════════════════════ */
.features {
  background: var(--dark);
}

.features-grid {
  border: 2px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3,1fr);
  margin-top: 60px;
  overflow: hidden;
}

.feature-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}

.feature-card::before {
  background: var(--red);
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  background: #141414;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-title {
  color: #fff;
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
/* ══════════════════════════════════════
   PLATFORMS / SOCIALS
══════════════════════════════════════ */
.platforms {
  background: var(--dark2);
}

.platforms-header {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.platforms-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
}

.platform-card {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 20px 24px;
  position: relative;
  transition: all 0.25s;
}

.platform-card::after {
  color: var(--muted);
  content: '→';
  font-size: 18px;
  position: absolute;
  right: 20px;
  transition: all 0.25s;
}

.platform-card:hover {
  border-color: rgba(232,0,15,0.3);
  transform: translateY(-4px);
}

.platform-card:hover::after {
  color: var(--red);
  right: 14px;
}

.platform-icon {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.platform-info {}

.platform-card-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.platform-card-handle {
  color: var(--muted);
  font-size: 12px;
}
/* ══════════════════════════════════════
   JOIN / CTA
══════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  overflow: hidden;
  padding: 120px 48px;
  position: relative;
  text-align: center;
}

.cta-section::before {
  background: radial-gradient(circle,rgba(232,0,15,0.12) 0%,transparent 70%);
  content: '';
  height: 600px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
}

.cta-big {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: clamp(48px,8vw,96px);
  font-weight: 800;
  line-height: 0.9;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.cta-big .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  color: transparent;
}

.cta-big .fill {
  color: #fff;
}

.cta-big .red {
  color: var(--red);
}

.cta-desc {
  color: #666;
  font-size: 16px;
  margin: 24px auto;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.btn-discord {
  align-items: center;
  background: #5865F2;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-family: 'Rajdhani',sans-serif;
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 1px;
  padding: 16px 36px;
  transition: all 0.2s;
}

.btn-discord:hover {
  background: #4752c4;
  box-shadow: 0 12px 40px rgba(88,101,242,0.4);
  transform: translateY(-2px);
}
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  align-items: center;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 48px;
}

.footer-logo {
  color: #fff;
  font-family: 'Rajdhani',sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--red);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: #333;
  font-size: 12px;
  letter-spacing: 1px;
}
/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}

@keyframes fadeIn{
  from{opacity:0;}to{opacity:1;}
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease,transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:900px){
  nav{padding:0 24px;}
  .nav-links{display:none;}
  .hero{padding:100px 24px 80px;}
  .hero-visual{display:none;}
  section{padding:80px 24px;}
  .about{grid-template-columns:1fr;}
  .features-grid{grid-template-columns:1fr;}
  .brand-strip{padding:20px 24px;}
  footer{padding:40px 24px;}
}
