/* ═══════════════════════════════════════
   GFC MISSION — STYLESHEET
   Global Football Collective
═══════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════
   PASSWORD OVERLAY & LOCK
═══════════════════════════════════════ */
body.locked {
  overflow: hidden; /* Prevents the user from scrolling down to see the site */
}

.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999; /* Ensures it sits on top of absolutely everything */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* We use this class to smoothly fade out the lock when opened */
.password-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.password-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.password-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #fff;
}

.password-desc {
  color: #a3a3a3;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}

.password-form {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.password-form input {
  padding: 16px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  text-align: center;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.password-form input:focus {
  border-color: #00ff87; /* Matches your neon green particles */
}

.pass-error {
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
}

.pass-error.hidden {
  display: none;
}



/* ── VARIABLES ── */
:root {
  --bg:           #03030a;
  --surface:      #060610;
  --card:         #0a0a18;
  --border:       #141428;
  --border2:      #1e1e38;
  --green:        #00ff87;
  --green-dim:    #00d470;
  --green-glow:   rgba(0, 255, 135, 0.2);
  --green-ghost:  rgba(0, 255, 135, 0.05);
  --purple:       #6b52ff;
  --red:          #ff3b5c;
  --text:         #e0e0ee;
  --sub:          #60607a;
  --muted:        #2a2a42;
  --white:        #f4f4fc;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
  mix-blend-mode: screen;
}

#cur2 {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.2s ease;
}

body.hovering #cur {
  width: 14px;
  height: 14px;
}

body.hovering #cur2 {
  width: 50px;
  height: 50px;
  border-color: rgba(0, 255, 135, 0.55);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  transition: background 0.4s ease, padding 0.3s ease;
}

nav.scrolled {
  background: rgba(3, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px 56px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo em {
  color: var(--green);
  font-style: normal;
}

.nav-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--sub);
  text-transform: uppercase;
  border: 1px solid var(--border2);
  padding: 8px 18px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 56px 100px;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(0, 255, 135, 0.035) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 10% 60%, rgba(107, 82, 255, 0.03) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(3, 3, 10, 0.15) 0%,
      rgba(3, 3, 10, 0.4) 50%,
      rgba(3, 3, 10, 0.92) 85%,
      var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

/* Tag line */
.hero-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--green);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: riseUp 0.8s ease forwards 0.2s;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
  animation: blinkDot 1.6s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Headline */
.hero-h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 0.93;
  letter-spacing: 2px;
  opacity: 0;
  animation: riseUp 0.9s ease forwards 0.4s;
}

.h1-top {
  font-size: clamp(56px, 9vw, 120px);
  color: var(--sub);
  font-family: var(--font-cond);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.h1-mid {
  font-size: clamp(80px, 14vw, 188px);
  color: var(--white);
  font-family: var(--font-display);
  line-height: 0.88;
}

.h1-bot {
  font-size: clamp(52px, 8.5vw, 114px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 255, 135, 0.5);
  font-family: var(--font-display);
  margin-top: 6px;
  line-height: 0.9;
}

/* Sub */
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--sub);
  max-width: 500px;
  line-height: 1.8;
  margin-top: 36px;
  font-weight: 300;
  opacity: 0;
  animation: riseUp 1s ease forwards 0.65s;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 400;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseUp 1s ease forwards 0.85s;
}

.btn-primary {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--green);
  color: #000;
  padding: 17px 40px;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.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.45s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0, 255, 135, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sub);
  border: 1px solid var(--border2);
  padding: 17px 32px;
  cursor: none;
  display: inline-block;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-ghost:hover {
  border-color: rgba(0, 255, 135, 0.4);
  color: var(--green);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 44px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}

.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--green), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%       { transform: scaleY(0.5); opacity: 0.2; }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.t-item {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sub);
  padding: 0 52px;
  white-space: nowrap;
}

.t-item em {
  color: var(--green);
  font-style: normal;
  margin-right: 8px;
}

@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}

.s-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 56px;
}

.s-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 64px;
}

.s-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}

/* ══════════════════════════════════════
   MISSION
══════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.mission-card:hover {
  border-color: var(--border2);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.mc-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 32px;
}

.mc-body {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.85;
}

.mc-body strong {
  color: var(--text);
  font-weight: 400;
}

.mission-quote {
  grid-column: 1 / -1;
  padding: 80px 52px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  text-align: center;
}

.mq-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: 2px;
  line-height: 1.25;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 135, 0.25);
}

.mq-text strong {
  color: var(--green);
  -webkit-text-stroke: 0;
}

/* ══════════════════════════════════════
   ROADMAP
══════════════════════════════════════ */
.roadmap-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.phases {
  display: flex;
  flex-direction: column;
}

.phase {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.phase:last-child {
  border-bottom: none;
}

.phase:hover {
  background: rgba(255, 255, 255, 0.01);
}

.phase.past {
  opacity: 0.38;
}

.phase.current {
  background: rgba(0, 255, 135, 0.025);
  border-left: 2px solid var(--green);
}

.phase-num {
  padding: 32px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.phase.current .phase-num {
  color: var(--green);
}

.phase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

.phase.past .phase-dot {
  background: var(--border2);
}

.phase.current .phase-dot {
  background: var(--green);
  box-shadow:
    0 0 0 3px rgba(0, 255, 135, 0.12),
    0 0 18px rgba(0, 255, 135, 0.35);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,255,135,0.12), 0 0 18px rgba(0,255,135,0.35); }
  50%       { box-shadow: 0 0 0 7px rgba(0,255,135,0.06), 0 0 30px rgba(0,255,135,0.5); }
}

.phase-content {
  padding: 32px 48px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.phase-title {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
}

.phase.current .phase-title {
  color: var(--green);
}

.phase.past .phase-title {
  color: var(--muted);
}

.current-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 5px 12px;
  animation: badgePulse 2.2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.phase-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.75;
  max-width: 580px;
}

.green-text {
  color: rgba(0, 255, 135, 0.7);
  font-weight: 400;
}

.phase-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.progress-bar {
  width: 180px;
  height: 1px;
  background: var(--border2);
}

.progress-fill {
  height: 100%;
  width: 12%;
  background: linear-gradient(90deg, var(--green), var(--green-dim));
  animation: progressGrow 3.5s ease-in-out infinite alternate;
}

@keyframes progressGrow {
  0%   { width: 8%; }
  100% { width: 18%; }
}

.progress-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

/* ══════════════════════════════════════
   FOUNDERS SIGNUP
══════════════════════════════════════ */
.founders-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.founders-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 255, 135, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

.founders-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 140px 56px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.founders-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.founders-num span {
  color: var(--green);
}

.founders-h {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.fh-solid {
  color: var(--white);
}

.fh-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green);
}

.founders-sub {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 52px;
}

.founders-sub strong {
  color: var(--text);
  font-weight: 400;
}

/* Scarcity */
.scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.scarcity-bar {
  width: 180px;
  height: 2px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
}

.scarcity-fill {
  height: 100%;
  width: 1%;
  background: linear-gradient(90deg, var(--green), var(--green-dim));
  transition: width 0.5s ease;
}

.scarcity-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sub);
}

.scarcity-text strong {
  color: var(--green);
}

/* Form */
.founder-form-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
}

.f-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 18px 22px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.f-input::placeholder {
  color: var(--muted);
}

.f-input:focus {
  border-color: rgba(0, 255, 135, 0.45);
  background: rgba(0, 255, 135, 0.03);
}

.f-input.error {
  border-color: var(--red) !important;
  animation: shake 0.32s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.f-btn {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  border: none;
  padding: 18px 28px;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.f-btn:hover {
  background: var(--green-dim);
  transform: translateX(3px);
}

.f-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Success state */
.form-success {
  display: none;
  background: rgba(0, 255, 135, 0.06);
  border: 1px solid rgba(0, 255, 135, 0.22);
  padding: 36px;
  text-align: center;
}

.fs-icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.fs-title {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.fs-sub {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

.form-fine {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(95, 94, 94);
  text-align: center;
  margin-top: 16px;
}



/* ═══════════════════════════════════════
   LIVE STATUS COUNTER BADGE
═══════════════════════════════════════ */
.live-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px; /* Creates the pill shape */
  padding: 12px 24px 12px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* The Pulsing Dot */
.pulse-ring {
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #00ff87; /* Neon green matching your particles */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

.pulse-ring::after {
  content: '';
  position: absolute;
  left: -4px;
  top: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #00ff87;
  animation: pulse-animation 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Typography for the Counter */
.counter-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.counter-number {
  font-family: 'DM Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3ff54f;
  line-height: 1;
  position: relative;
  top: 11px;
}

.counter-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c7c5c5;
}



/* ══════════════════════════════════════
   SOCIAL FOOTER
══════════════════════════════════════ */
.social-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.sf-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 56px 60px;
}

.sf-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 64px;
}

.sf-headline span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 135, 0.35);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.s-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: none;
}

.s-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.s-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 135, 0.25);
  background: rgba(0, 255, 135, 0.03);
}

.s-card:hover::after {
  transform: scaleX(1);
}

.s-icon {
  width: 28px;
  height: 28px;
  fill: var(--sub);
  display: block;
  margin: 0 auto 18px;
  transition: fill 0.25s ease, filter 0.25s ease;
}

.s-card:hover .s-icon {
  fill: var(--green);
  filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.4));
}

.s-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sub);
  transition: color 0.25s ease;
}

.s-card:hover .s-name {
  color: var(--green);
}

.s-handle {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 7px;
  transition: color 0.25s ease;
}

.s-card:hover .s-handle {
  color: rgba(0, 255, 135, 0.5);
}

/* Footer bottom */
.sf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.sf-logo {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sub);
}

.sf-logo em {
  color: var(--green);
  font-style: normal;
}

.sf-legal {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(95, 94, 94);
}

.sf-creed {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(95, 94, 94);
}

.sf-creed em {
  color: var(--green);
  font-style: normal;
  margin-right: 6px;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .hero { padding: 140px 28px 80px; }
  .s-inner { padding: 80px 28px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { padding: 48px 32px; }
  .mission-quote { padding: 60px 32px; }
  .phase { grid-template-columns: 64px 1fr; }
  .phase-content { padding: 28px 28px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .founders-inner { padding: 100px 28px; }
  .sf-inner { padding: 80px 28px 48px; }
  .scroll-hint { display: none; }
  body { cursor: auto; }
  #cur, #cur2 { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 72px; }
  .s-inner { padding: 72px 20px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { flex-direction: column; }
  .f-input { border-right: 1px solid var(--border2); border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .sf-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .founders-inner { padding: 80px 20px; }
  .sf-inner { padding: 64px 20px 40px; }
}