/* ============================================================
   AROUND THE BLOCK RP — Main Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --bg2:       #0d0d0d;
  --bg3:       #111111;
  --card:      #0f0f0f;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.14);

  --red:       #e53e4d;
  --red-dark:  #b8303d;

  --gold:      #e8b84b;
  --gold-dim:  #b8902e;

  --blue:      #5865f2;
  --blue-dark: #4752c4;

  --green:     #3dba72;

  --text:      #e6e6e6;
  --text-muted:#6c6c6c;
  --text-dim:  #383838;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-discord {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-discord:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.btn-gray {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
}
.btn-gray:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(8, 8, 15, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(0.9);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, transparent 40%, transparent 50%, rgba(8,8,8,0.96) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 68px;
  will-change: opacity, transform;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(255,255,255,0.025);
}

.hero-online { color: var(--green); }

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* Economy Banner */
.economy-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: rgba(232,184,75,0.06);
  border: 1px solid rgba(232,184,75,0.16);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s;
}
.economy-banner:hover {
  border-color: rgba(232,184,75,0.28);
}

.economy-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.economy-icon svg { width: 24px; height: 24px; }

.economy-text { text-align: left; }
.economy-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2px;
}
.economy-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.economy-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.18);
  border-radius: 4px;
  padding: 3px 7px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  overflow: hidden;
  max-width: 580px;
  margin: 0 auto;
}

.hero-stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
}
.hero-stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 3px;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
  animation: scroll-bob 2s infinite;
}
@keyframes scroll-bob {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* ============================================================
   SCROLL SEQUENCE
   ============================================================ */
.scroll-sequence {
  height: 400vh;
  position: relative;
}

.scroll-sequence-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.seq-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 20;
}
.seq-progress-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.12s linear;
}

.seq-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* No panel tints */

/* Layout */
.seq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  padding-top: 68px;
}
.seq-layout-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 68px;
}

.seq-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.seq-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--text-dim);
  flex-shrink: 0;
}
.seq-eyebrow-center { justify-content: center; }
.seq-eyebrow-center::before { display: none; }

.seq-mega-num {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  margin-bottom: -14px;
  user-select: none;
  pointer-events: none;
}
.seq-mega-center { text-align: center; }

.seq-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.seq-title-center { text-align: center; }

.seq-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
}
.seq-desc-center {
  text-align: center;
  margin: 0 auto 36px;
}

/* Visual card */
.seq-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Feature list (panel 1) */
.seq-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.seq-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.seq-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Stats grid */
.seq-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.seq-stat-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s;
}
.seq-stat-block:hover { border-color: var(--border-hi); }
.seq-stat-num {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.seq-stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Char cards */
.seq-char-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.seq-char-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.seq-char-card:hover { border-color: var(--border-hi); transform: translateX(3px); }
.seq-char-featured {
  border-color: rgba(232,184,75,0.2) !important;
  background: rgba(232,184,75,0.03) !important;
}
.seq-char-role {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.seq-char-featured .seq-char-role { color: var(--gold-dim); }
.seq-char-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.seq-char-stat { font-size: 12px; color: var(--text-muted); }

/* Economy display */
.seq-visual-economy {
  background: linear-gradient(160deg, rgba(232,184,75,0.04), var(--card)) !important;
  border-color: rgba(232,184,75,0.12) !important;
}
.seq-economy-display { text-align: center; width: 100%; }
.seq-econ-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.seq-econ-value {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 14px;
}
.seq-econ-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--green);
  border: 1px solid rgba(61,186,114,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 22px;
  background: rgba(61,186,114,0.04);
}
.seq-econ-bar {
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.seq-econ-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}
.seq-econ-note { font-size: 11px; color: var(--text-dim); }

/* Center panel */
.seq-center { text-align: center; }
.seq-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Side dots */
.seq-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 20;
}
.seq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.seq-dot.active {
  background: var(--text);
  transform: scale(1.4);
}
.seq-dot:hover:not(.active) { background: rgba(255,255,255,0.35); }

/* Bottom label */
.seq-label-strip {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
  pointer-events: none;
}
.seq-label-text {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
}
.seq-label-counter { font-size: 11px; color: var(--text-dim); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 112px 0;
}
.section-dark { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-icon.red   { background: rgba(229,62,77,0.08);  color: var(--red); }
.feature-icon.gold  { background: rgba(232,184,75,0.08); color: var(--gold); }
.feature-icon.blue  { background: rgba(88,101,242,0.08); color: var(--blue); }
.feature-icon.green { background: rgba(61,186,114,0.08); color: var(--green); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Economy highlight */
.economy-highlight {
  background: rgba(232,184,75,0.035);
  border: 1px solid rgba(232,184,75,0.1);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  transition: border-color 0.25s;
}
.economy-highlight:hover { border-color: rgba(232,184,75,0.18); }

.economy-highlight-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.economy-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232,184,75,0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.economy-highlight-left h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.economy-highlight-left p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.75;
}

.economy-highlight-right { text-align: right; }
.economy-big-value {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.economy-big-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-bottom: 56px;
}

.step-card {
  padding: 40px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin: 8px;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.step-number {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -14px;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.join-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   RULES
   ============================================================ */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.rule-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.rule-card:hover {
  border-color: var(--border-hi);
  transform: translateX(3px);
}

.rule-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.rule-card h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.rule-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.rules-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.footer-logo-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}
.footer-logo-sub { font-size: 12px; color: var(--text-muted); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { border-color: var(--border-hi); color: var(--text); }

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-links-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-server-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--green);
}

/* ============================================================
   EMAIL FAB
   ============================================================ */
.email-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: all 0.2s;
}
.email-fab svg { width: 20px; height: 20px; }
.email-fab:hover { transform: scale(1.08); background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); }

/* ============================================================
   GSAP INITIAL STATES
   ============================================================ */
.hero-title .word,
.hero-subtitle,
.hero-actions,
.hero-scroll {
  opacity: 0;
}

.gs-reveal,
.gs-stagger .feature-card,
.gs-stagger .step-card,
.gs-stagger .rule-card {
  opacity: 0;
  transform: translateY(36px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8, 8, 15, 0.96);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 2px;
    display: none;
    backdrop-filter: blur(20px);
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 11px 14px; }

  .scroll-sequence-inner { overflow-y: auto; }
  .seq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 84px 0 48px;
  }
  .seq-visual { min-height: 200px; padding: 24px; }
  .seq-dots { display: none; }
  .seq-mega-num { font-size: 56px; margin-bottom: -10px; }
  .scroll-sequence { height: 500vh; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 28px; }
  .hero-stats-row { flex-direction: column; }
  .hero-stat-sep { width: 56px; height: 1px; }
  .economy-highlight { flex-direction: column; }
  .economy-highlight-right { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .seq-title { font-size: 32px; }
  .seq-stats-grid { grid-template-columns: 1fr 1fr; }
  .seq-layout-center { padding: 84px 0 48px; }
  .scroll-sequence { height: 600vh; }
  .seq-label-strip { display: none; }
}
