/* ═══════════════════════════════════════════════
   RUST ISR — Premium Gaming Landing Page v3
   Palette: Steel-Dark · Amber-Copper · Warm Gold
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Heebo:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Backgrounds */
  --bg-0:     #05080d;
  --bg-1:     #090d14;
  --bg-2:     #0d1219;
  --bg-3:     #121820;
  --bg-card:  #141c26;
  --bg-panel: #19222e;

  /* Amber-Copper accent */
  --a-100:    #7a3208;
  --a-200:    #a84510;
  --a-300:    #c85618;
  --a-400:    #d96c24;   /* primary */
  --a-500:    #e88338;
  --a-600:    #f4a060;   /* hover / glow */

  /* Gold */
  --g-300:    #a87820;
  --g-400:    #c49228;
  --g-500:    #d8aa3a;

  /* Text */
  --t-high:   #e8dfd4;
  --t-mid:    #b0b8c4;
  --t-low:    #5e6878;

  /* Borders */
  --b-dim:    rgba(212,108,36,0.15);
  --b-mid:    rgba(212,108,36,0.35);
  --b-bright: rgba(212,108,36,0.65);

  /* Steel-blue accent (secondary) */
  --steel:    #2a3e55;
  --steel-l:  #3d5470;

  /* Discord */
  --discord:  #5865f2;

  /* Fonts */
  --f-title:  'Rajdhani', sans-serif;
  --f-body:   'Heebo', sans-serif;
  --f-mono:   'Share Tech Mono', monospace;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg-0);
  color: var(--t-high);
  overflow-x: hidden;
  direction: rtl;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--a-400); border-radius: 2px; }

/* ─── SCANLINES ─── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none; z-index: 9990;
}

/* ─── GRAIN ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9989;
  animation: grain 1s steps(3) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-1%, 2%); }
  66%  { transform: translate(2%, -1%); }
  100% { transform: translate(-1%, 1%); }
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--a-500);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--a-400);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(5,8,13,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--b-mid);
  box-shadow: 0 1px 30px rgba(0,0,0,0.5);
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: 1px solid var(--b-bright);
  object-fit: cover;
  box-shadow: 0 0 14px rgba(217,108,36,0.35);
  filter: saturate(1.2) brightness(0.95);
}
.nav-wordmark {
  font-family: var(--f-title);
  font-weight: 700; font-size: 1.45rem; letter-spacing: 3px;
  color: var(--t-high);
}
.nav-wordmark em {
  font-style: normal;
  color: var(--a-400);
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--f-mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--t-low); text-decoration: none;
  transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--a-400);
  transform: scaleX(0); transform-origin: right; transition: transform 0.25s;
}
.nav-links a:hover { color: var(--t-high); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-discord {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(88,101,242,0.5);
  color: #a0aaff; text-decoration: none;
  padding: 8px 18px; border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.08em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.nav-discord:hover {
  background: var(--discord); color: #fff;
  border-color: var(--discord);
  box-shadow: 0 0 20px rgba(88,101,242,0.4);
}
.nav-discord svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden; padding-top: 64px;
}

/* Hex grid */
.hero-hex-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 69L0 52V18L30 1l30 17v34L30 69zM30 104L0 87V69l30 17 30-17v18z' fill='none' stroke='rgba(212,108,36,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 104px;
}

/* Ambient glow center */
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 55%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,108,36,0.1) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}

.hero-img-pane {
  position: absolute; top: 0; left: 0; bottom: 0; width: 60%; z-index: 2;
}
.hero-img-pane img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.2) saturate(1.4);
}
.hero-img-pane::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to left, var(--bg-0) 0%, rgba(5,8,13,0.55) 40%, transparent 100%),
    linear-gradient(to top, var(--bg-0) 0%, transparent 30%);
}

/* Slash */
.hero-slash {
  position: absolute; top: 0; bottom: 0; left: 48%; width: 100px;
  background: var(--bg-0);
  clip-path: polygon(45% 0, 100% 0, 55% 100%, 0% 100%);
  z-index: 3;
}

/* Stats column */
.hero-stat-col {
  position: relative; z-index: 10; grid-column: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 80px 0 60px 56px; gap: 10px;
}
.hero-stat-box {
  background: rgba(212,108,36,0.05);
  border: 1px solid var(--b-mid);
  border-right: 2px solid var(--a-400);
  padding: 12px 18px; max-width: 185px;
  transition: background 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.hero-stat-box::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--a-500), transparent);
}
.hero-stat-box:hover {
  background: rgba(212,108,36,0.1);
  box-shadow: 0 0 20px rgba(212,108,36,0.12);
}
.hero-stat-num {
  font-family: var(--f-title); font-weight: 700; font-size: 1.45rem;
  color: var(--a-500); line-height: 1; letter-spacing: 1px;
}
.hero-stat-label {
  font-family: var(--f-mono); font-size: 0.65rem;
  color: var(--t-low); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px;
}

/* Content column */
.hero-content {
  position: relative; z-index: 10; grid-column: 2;
  padding: 90px 56px 60px 16px;
  display: flex; flex-direction: column; gap: 14px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 0.7rem;
  color: var(--a-500); letter-spacing: 0.16em; text-transform: uppercase;
}
.hero-tag .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6bde9a; box-shadow: 0 0 8px #6bde9a;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.25} }

.hero-title {
  font-family: var(--f-title); font-weight: 700;
  line-height: 0.92; letter-spacing: 3px; text-transform: uppercase;
  display: inline-block;
}
.hero-title .line-rust {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  background: linear-gradient(100deg, var(--t-high) 30%, var(--a-500) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-isr {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  color: var(--a-400);
  filter: drop-shadow(0 0 18px rgba(212,108,36,0.55));
  animation: glitch 5s ease-in-out infinite;
}
@keyframes glitch {
  0%,85%,100% { transform: none; filter: drop-shadow(0 0 18px rgba(212,108,36,0.55)); }
  88%  { transform: translateX(3px) skewX(-1deg); filter: drop-shadow(-3px 0 #3ab8a0) drop-shadow(3px 0 #6b4fcc); }
  91%  { transform: translateX(-2px); filter: drop-shadow(2px 0 #3ab8a0) drop-shadow(-2px 0 #6b4fcc); }
  93%  { transform: none; filter: drop-shadow(0 0 18px rgba(212,108,36,0.55)); }
}

.hero-divider {
  width: 60px; height: 1.5px;
  background: linear-gradient(90deg, var(--a-400), transparent);
}

.hero-desc {
  font-size: 0.98rem; line-height: 1.75;
  color: var(--t-mid); max-width: 400px;
}
.hero-desc strong { color: var(--t-high); font-weight: 600; }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--a-400); color: #fff; text-decoration: none;
  padding: 13px 28px;
  font-family: var(--f-title); font-weight: 700;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(212,108,36,0.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  filter: brightness(1.12); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,108,36,0.55);
}
.btn-primary svg { width: 17px; height: 17px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--t-mid); text-decoration: none;
  padding: 13px 22px;
  font-family: var(--f-mono); font-size: 0.8rem; letter-spacing: 0.07em;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm);
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--t-high); border-color: rgba(255,255,255,0.25); }
.btn-outline svg { width: 15px; height: 15px; }

.hero-terminal {
  font-family: var(--f-mono); font-size: 0.75rem;
  color: var(--a-500); opacity: 0.65; letter-spacing: 0.04em;
}
.hero-terminal .t-prefix { color: var(--t-low); }
.t-cursor { animation: blink 0.9s step-end infinite; }

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker {
  background: linear-gradient(90deg, var(--a-300), var(--a-400), var(--a-300));
  overflow: hidden; white-space: nowrap; padding: 9px 0;
  border-top: 1px solid var(--b-bright); border-bottom: 1px solid var(--b-bright);
  position: relative; z-index: 20;
}
.ticker-inner { display: inline-block; animation: ticker-scroll 28s linear infinite; }
.ticker span {
  font-family: var(--f-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; padding: 0 36px;
}
.ticker span.sep { opacity: 0.45; padding: 0 8px; }
@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.s-inner { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

.s-header { margin-bottom: 36px; }

.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--a-400); margin-bottom: 10px;
}
.s-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--a-400);
}
.s-label::after {
  content: ''; display: block; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, var(--b-bright), transparent);
}

.s-title {
  font-family: var(--f-title); font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.1; color: #fff;
}
.s-title em { font-style: normal; color: var(--a-400); }
.s-desc {
  font-size: 0.95rem; color: var(--t-mid); line-height: 1.8;
  max-width: 520px; margin-top: 10px;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section { background: var(--bg-1); padding: 72px 0; }

.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}

.about-img-frame {
  position: relative; border: 1px solid var(--b-mid); overflow: hidden;
  border-radius: var(--r-sm);
}
.about-img-frame::before {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 48px; height: 48px;
  border-top: 2px solid var(--a-400); border-left: 2px solid var(--a-400); z-index: 2;
}
.about-img-frame::after {
  content: ''; position: absolute; bottom: -1px; right: -1px;
  width: 48px; height: 48px;
  border-bottom: 2px solid var(--a-400); border-right: 2px solid var(--a-400); z-index: 2;
}
.about-img-frame img {
  width: 100%; height: 260px; object-fit: cover;
  filter: brightness(0.55) saturate(1.3); display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); filter: brightness(0.68) saturate(1.5); }

.about-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--a-400); color: #fff;
  font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; z-index: 3;
}

.about-text h3 {
  font-family: var(--f-title); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.about-text p { color: var(--t-mid); line-height: 1.85; font-size: 0.95rem; margin-bottom: 16px; }
.about-text strong { color: var(--t-high); }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-section { background: var(--bg-0); padding: 72px 0; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 28px;
  border: 1px solid var(--b-dim);
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.feat-card {
  background: var(--bg-card); padding: 28px 24px;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.feat-card::before {
  content: attr(data-num);
  position: absolute; top: 14px; left: 18px;
  font-family: var(--f-mono); font-size: 0.6rem;
  color: var(--b-bright); letter-spacing: 0.1em;
}
.feat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--a-300), var(--g-400));
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
}
.feat-card:hover::after { transform: scaleX(1); transform-origin: left; }
.feat-card:hover { background: var(--bg-panel); border-color: var(--b-mid); }

.feat-icon {
  font-size: 1.8rem; display: block; margin: 18px 0 14px;
  transition: transform 0.3s;
}
.feat-card:hover .feat-icon { transform: scale(1.1) rotate(-4deg); }

.feat-card h3 {
  font-family: var(--f-title); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 8px;
}
.feat-card p { font-size: 0.88rem; color: var(--t-mid); line-height: 1.65; }

/* ═══════════════════════════════════════════
   ROLES
═══════════════════════════════════════════ */
.roles-section { background: var(--bg-1); padding: 72px 0; }

.roles-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--b-dim);
  padding: 26px 28px; position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
/* top-right corner cut */
.role-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0; border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--bg-0) transparent transparent;
  transition: border-color 0.3s;
}
/* bottom glow on hover */
.role-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--a-400), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.role-card:hover {
  border-color: var(--b-bright); background: var(--bg-panel);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,108,36,0.06);
}
.role-card:hover::before { border-color: transparent var(--bg-panel) transparent transparent; }
.role-card:hover::after { opacity: 1; }

.role-chip {
  display: inline-block;
  font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 2px; margin-bottom: 14px;
}
.role-chip.admin  { background: rgba(200,86,24,0.18); color: var(--a-500); border: 1px solid rgba(200,86,24,0.45); }
.role-chip.player { background: rgba(88,101,242,0.15); color: #b0b8ff; border: 1px solid rgba(88,101,242,0.35); }
.role-chip.mod    { background: rgba(196,146,40,0.15); color: var(--g-500); border: 1px solid rgba(196,146,40,0.35); }

.role-card h3 {
  font-family: var(--f-title); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.role-card > p { color: var(--t-mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }

.req-list { display: flex; flex-direction: column; gap: 7px; }
.req-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--t-high);
  padding: 7px 12px;
  background: rgba(255,255,255,0.025);
  border-right: 2px solid var(--a-300);
}
.req-item .req-icon { color: var(--a-400); font-size: 0.6rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section {
  background: var(--bg-0); padding: 88px 0;
  position: relative; overflow: hidden; text-align: center;
}
/* Layered ambient glow */
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,108,36,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,108,36,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-title); font-size: clamp(8rem, 18vw, 16rem); font-weight: 700;
  letter-spacing: 10px; color: transparent;
  -webkit-text-stroke: 1px rgba(212,108,36,0.06);
  white-space: nowrap; user-select: none; pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 24px; }

.cta-pre {
  font-family: var(--f-mono); font-size: 0.72rem;
  color: var(--a-400); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cta-pre::before, .cta-pre::after {
  content: ''; display: block; height: 1px; width: 36px; background: var(--a-400);
}

.cta-title {
  font-family: var(--f-title); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 3px; text-transform: uppercase; color: #fff;
  margin-bottom: 16px; line-height: 1.05;
}
.cta-title em { font-style: normal; color: var(--a-400); }

.cta-sub {
  color: var(--t-mid); font-size: 0.97rem;
  line-height: 1.75; margin-bottom: 36px;
}

.btn-mega {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--discord), #7b84f5);
  color: #fff; text-decoration: none;
  padding: 18px 48px;
  font-family: var(--f-title); font-weight: 700;
  font-size: 1.2rem; letter-spacing: 2.5px; text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 8px 40px rgba(88,101,242,0.4);
  position: relative; overflow: hidden;
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-mega::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{transform:translateX(-100%)} 50%{transform:translateX(100%)} }
.btn-mega:hover {
  filter: brightness(1.1); transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(88,101,242,0.6);
}
.btn-mega svg { width: 24px; height: 24px; }

.cta-note {
  margin-top: 20px;
  font-family: var(--f-mono); font-size: 0.72rem;
  color: var(--t-low); letter-spacing: 0.08em;
}
.cta-note strong { color: var(--a-400); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #030508;
  border-top: 1px solid var(--b-mid);
  padding: 36px 48px;
}
.footer-layout {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: var(--f-title); font-weight: 700;
  font-size: 1.4rem; letter-spacing: 4px; color: #fff;
}
.footer-brand em { font-style: normal; color: var(--a-400); }

.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-family: var(--f-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t-low); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--a-500); }

.footer-copy {
  font-family: var(--f-mono); font-size: 0.65rem;
  color: rgba(255,255,255,0.12); letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > *:nth-child(1){opacity:1;transform:none;transition-delay:0s}
.stagger.visible > *:nth-child(2){opacity:1;transform:none;transition-delay:0.07s}
.stagger.visible > *:nth-child(3){opacity:1;transform:none;transition-delay:0.14s}
.stagger.visible > *:nth-child(4){opacity:1;transform:none;transition-delay:0.21s}
.stagger.visible > *:nth-child(5){opacity:1;transform:none;transition-delay:0.28s}
.stagger.visible > *:nth-child(6){opacity:1;transform:none;transition-delay:0.35s}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-img-pane {
    width: 100%;
  }
  .hero-img-pane::after {
    background: linear-gradient(to top, var(--bg-0) 0%, rgba(5,8,13,0.82) 55%, transparent 100%);
  }
  .hero-slash { display: none; }
  .hero-stat-col { display: none; }
  .hero-content { grid-column: 1; padding: 100px 24px 70px; text-align: center; }
  .hero-tag { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-divider { margin: 0 auto; }
  .s-inner { padding: 0 20px; }
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  footer { padding: 28px 20px; }
  .footer-layout { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
