/* ==============================
   RISEONBRIDGE — GLOBAL STYLES
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&family=Syne:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #070710;
  --bg2:       #0d0d1a;
  --bg3:       #11111f;
  --green:     #22c55e;
  --green2:    #15803d;
  --gold:      #f0c850;
  --gold2:     #b8941f;
  --pink:      #ec4899;
  --blue:      #3b82f6;
  --text:      #f1f5f9;
  --muted:     rgba(255,255,255,0.5);
  --border:    rgba(255,255,255,0.08);
  --card:      rgba(17,17,30,0.92);
  --radius:    14px;
  --shadow:    0 8px 32px rgba(0,0,0,0.5);
  --promo-h:   38px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 900; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 800; }
p  { font-size: 1rem; line-height: 1.75; }

/* Section labels / badges */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 18px;
  border-radius: 50px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), #fff 60%, var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.glass-card-solid {
  background: rgba(17,17,30,0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ---- BUTTONS ---- */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff; padding: 13px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(34,197,94,0.25);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.4); filter: brightness(1.1); }
.btn-green:active { transform: translateY(0); }
.btn-green:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), #d4a520);
  color: #000; padding: 13px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(240,200,80,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,200,80,0.4); filter: brightness(1.1); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,0.07); color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(240,200,80,0.07); color: var(--gold);
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(240,200,80,0.3); cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-outline-gold:hover { background: rgba(240,200,80,0.14); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(240,200,80,0.2); }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: #fff; color: #000;
  padding: 13px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); }

/* ---- INPUTS ---- */
.input-field {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; color: #fff; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s ease;
  font-family: inherit;
}
.input-field:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
.input-field::placeholder { color: rgba(255,255,255,0.35); }

textarea.input-field { resize: vertical; min-height: 110px; }

/* ---- STAT CARD ---- */
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.stat-card:hover { border-color: rgba(240,200,80,0.25); transform: translateY(-2px); }

/* ---- STEP INDICATOR ---- */
.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 12px; }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--muted);
  transition: all 0.3s ease;
}
.step-dot.active { background: var(--green2); border-color: var(--green); color: #fff; box-shadow: 0 0 14px rgba(34,197,94,0.5); }
.step-dot.done { background: var(--green); border-color: var(--green); color: #fff; }
.step-line { width: 60px; height: 2px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.step-line.done { background: var(--green); }

/* ---- NETWORK CARD ---- */
.network-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px; cursor: pointer; text-align: center;
  transition: all 0.25s ease;
}
.network-card:hover { border-color: rgba(240,200,80,0.4); background: rgba(240,200,80,0.05); transform: translateY(-2px); }
.network-card.selected { border-color: var(--gold); background: rgba(240,200,80,0.08); box-shadow: 0 0 18px rgba(240,200,80,0.15); }
.network-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ---- TOAST NOTIFICATION ---- */
.notification-toast {
  position: fixed; top: 90px; right: 20px; z-index: 9999;
  padding: 14px 22px; border-radius: 12px; font-weight: 600; font-size: 0.9rem;
  animation: slideIn 0.35s ease; max-width: 360px; box-shadow: var(--shadow);
}
.notification-toast.success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35); color: #22c55e; }
.notification-toast.error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.35); color: #ef4444; }

/* ---- LOADING SCREEN — Neon Green Equalizer ---- */
#loading-screen {
  position: fixed; inset: 0;
  background: #000;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
#loading-screen.hide {
  animation: lsFadeOut 0.5s ease forwards;
}
@keyframes lsFadeOut {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

.ls-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
  user-select: none;
}

/* Equalizer bars */
.eq-wrap {
  display: flex; align-items: flex-end;
  gap: 8px; height: 72px;
}
.eq-bar {
  width: 7px;
  border-radius: 4px 4px 2px 2px;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e, 0 0 28px rgba(34,197,94,0.5);
  animation: eqBounce 0.9s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transform-origin: bottom;
}
@keyframes eqBounce {
  0%   { height: var(--h1, 40%); }
  33%  { height: var(--h2, 90%); }
  66%  { height: var(--h3, 60%); }
  100% { height: var(--h1, 40%); }
}

.ls-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  color: #fff; letter-spacing: 1px;
}
.ls-logo span { color: #22c55e; }
.ls-label {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(34,197,94,0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
}
/* ---- END LOADING SCREEN ---- */

/* ---- PROCESSING OVERLAY (payment) ---- */
#processing-overlay {
  position: fixed; inset: 0; background: rgba(7,7,16,0.92); z-index: 9000;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  backdrop-filter: blur(8px);
}
#processing-overlay.active { display: flex; }
.processing-spinner {
  width: 70px; height: 70px; border: 4px solid rgba(240,200,80,0.15);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.processing-label { font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }
.processing-sub { color: var(--muted); font-size: 0.85rem; }

/* ---- NAVBAR ---- */
#promo-bar {
  background: linear-gradient(90deg, #0a3d20, #14532d, #0a3d20);
  color: #fff; padding: 9px 0;
  text-align: center; font-size: 0.8rem; font-weight: 700;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
#promo-bar.expired { background: #1e293b; border-color: rgba(255,255,255,0.05); }

/* Digital clock in promo bar */
.promo-clock {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px; padding: 3px 12px;
  font-family: 'Space Grotesk', monospace; font-weight: 900;
  font-size: 0.85rem; letter-spacing: 2px; color: #4ade80;
  box-shadow: 0 0 10px rgba(34,197,94,0.15);
}
.promo-clock .clock-sep {
  animation: clockBlink 1s step-end infinite;
  color: rgba(74,222,128,0.7);
}
@keyframes clockBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.promo-label { color: #a7f3c8; font-size: 0.78rem; letter-spacing: 1px; }
.promo-rate { color: #fde68a; font-weight: 900; font-size: 0.85rem; }

/* Countdown digit units */
.cd-unit {
  display: inline-flex; flex-direction: row; align-items: baseline; gap: 1px;
  font-family: 'Space Grotesk', monospace; font-weight: 900;
}
.cd-label {
  font-size: 0.6rem; font-weight: 700; color: rgba(74,222,128,0.7);
  text-transform: lowercase; margin-left: 1px;
}

nav#main-nav {
  background: rgba(7,7,16,0.97); height: 66px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--promo-h, 38px); left: 0; right: 0; z-index: 190;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, top 0.2s ease;
}
nav#main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(34,197,94,0.15);
}
nav#main-nav .nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
nav#main-nav .nav-inner { position: relative; }
.nav-logo { color: var(--green); font-family: 'Syne', sans-serif; font-weight: 900; font-size: clamp(1rem, 1.8vw, 1.4rem); text-decoration: none; letter-spacing: -0.5px; white-space: nowrap; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); flex-shrink: 0; }
.nav-link { color: rgba(255,255,255,0.75); font-size: clamp(0.72rem, 1vw, 0.88rem); font-weight: 700; text-decoration: none; transition: color 0.2s; letter-spacing: 0.3px; white-space: nowrap; }
.nav-link:hover { color: #fff; }
.nav-link.buy { color: var(--green); }
.nav-link.buy:hover { color: #4ade80; }
.nav-btn-login { background: #fff; color: #000; padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.nav-btn-login:hover { background: #e2e8f0; transform: translateY(-1px); }
.nav-btn-logout { background: transparent; color: #fff; border: 1px solid #444; padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.nav-btn-logout:hover { border-color: #ef4444; color: #ef4444; }
.hamburger { background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; display: none; line-height: 1; padding: 4px; }
.mobile-menu { display: none; background: rgba(7,7,16,0.99); padding: 14px 24px 18px; border-bottom: 1px solid var(--border); position: sticky; top: calc(var(--promo-h, 38px) + 66px); left: 0; right: 0; z-index: 180; backdrop-filter: blur(16px); transition: top 0.2s ease; }
.mobile-menu.promo-active { top: calc(var(--promo-h, 38px) + 66px); }
.mobile-menu a { display: block; padding: 10px 0; color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.mobile-menu a:last-child { border-bottom: none; }

/* ---- FOOTER ---- */
footer { background: rgba(7,7,16,0.98); border-top: 1px solid rgba(240,200,80,0.08); padding: 50px 20px 24px; margin-top: 60px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-brand-name { color: var(--gold); font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.1rem; }
.footer-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-top: 10px; }
.footer-col h3 { color: var(--gold); font-weight: 700; margin-bottom: 14px; font-size: 0.95rem; }
.footer-link { color: var(--muted); text-decoration: none; font-size: 0.85rem; display: block; padding: 4px 0; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none; transition: all 0.25s ease; cursor: pointer;
}
.social-btn:hover { background: rgba(240,200,80,0.1); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(240,200,80,0.2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ---- ANIMATIONS ---- */
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
@keyframes fadeOut { from { opacity:1; pointer-events:all; } to { opacity:0; pointer-events:none; visibility:hidden; } }
@keyframes loadBar { from { width:0; } to { width:100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity:0; transform: scale(0.94); } to { opacity:1; transform: scale(1); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.animate-fade-in { animation: fadeIn 0.45s ease forwards; }
.animate-scale-in { animation: scaleIn 0.4s cubic-bezier(.175,.885,.32,1.275) forwards; }

/* ---- PARTICLES ---- */
#particles-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35; }

/* ---- CHATBOT ---- */
#chatbot-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border: none; cursor: pointer; font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(34,197,94,0.4);
  transition: all 0.25s ease; display: flex; align-items: center; justify-content: center;
}
#chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(34,197,94,0.55); }
#chatbot-box {
  position: fixed; bottom: 92px; right: 24px; z-index: 400;
  width: 340px; background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden;
  max-height: 460px;
}
#chatbot-box.open { display: flex; animation: scaleIn 0.3s ease; }
.chatbot-header { background: linear-gradient(135deg, var(--green2), #064e3b); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.chatbot-title { font-weight: 700; font-size: 0.95rem; }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; transition: color 0.2s; }
.chatbot-close:hover { color: #fff; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.chatbot-msg { padding: 10px 14px; border-radius: 10px; font-size: 0.85rem; line-height: 1.5; max-width: 88%; }
.chatbot-msg.bot { background: rgba(255,255,255,0.06); align-self: flex-start; }
.chatbot-msg.user { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.25); align-self: flex-end; color: #d1fae5; }
.chatbot-quick { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 14px 10px; }
.chatbot-quick button { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: rgba(255,255,255,0.7); padding: 5px 10px; border-radius: 20px; font-size: 0.75rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.chatbot-quick button:hover { background: rgba(34,197,94,0.12); border-color: var(--green); color: var(--green); }
.chatbot-input-row { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); }
.chatbot-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; padding: 8px 12px; font-size: 0.85rem; outline: none; font-family: inherit; }
.chatbot-input:focus { border-color: var(--green); }
.chatbot-send { background: var(--green2); border: none; color: #fff; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 0.95rem; transition: background 0.2s; }
.chatbot-send:hover { background: var(--green); }

/* WhatsApp-style typing dots */
.chatbot-typing {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 12px 16px !important;
  min-width: 58px;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Chatbot online status badge */
.chatbot-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  margin-top: 1px;
}
.chatbot-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Message timestamp */
.chatbot-msg { padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; line-height: 1.5; max-width: 85%; position: relative; }
.chatbot-msg.bot {
  background: rgba(255,255,255,0.07);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.chatbot-msg.user {
  background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(21,128,61,0.2));
  border: 1px solid rgba(34,197,94,0.3);
  align-self: flex-end;
  color: #d1fae5;
  border-bottom-right-radius: 3px;
}

/* Scroll customization for chatbot */
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* ---- WALLET DISPLAY HORIZONTAL ---- */
.wallet-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 12px;
  transition: border-color 0.2s;
}
.wallet-copy-row:hover { border-color: rgba(240,200,80,0.3); }
.wallet-addr-text {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  word-break: break-all;
  font-family: 'Space Grotesk', monospace;
  background: transparent;
  border: none;
  outline: none;
  cursor: text;
  user-select: all;
}

/* ---- ENHANCED HOVER STATES (all interactive elements) ---- */
.roadmap-card {
  background: rgba(15,15,26,0.9); padding: 22px;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.175,.885,.32,1.1);
  cursor: default;
}
.roadmap-card:hover {
  border-color: rgba(240,200,80,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(240,200,80,0.08);
  background: rgba(20,20,35,0.98);
}

.feature-row {
  background: rgba(15,15,26,0.95); padding: 18px 22px;
  border-radius: var(--radius); display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border); transition: all 0.3s ease;
  cursor: default;
}
.feature-row:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.07);
  background: rgba(20,20,35,0.98);
}

.feature-list-item {
  background: rgba(25,25,38,0.85); padding: 12px 20px;
  border-radius: 40px; font-size: 0.92rem;
  border: 1px solid var(--border); transition: all 0.3s ease;
  cursor: default;
}
.feature-list-item:hover {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.05);
  transform: translateX(4px);
  padding-left: 26px;
}

/* network-card hover already exists, enhanced: */
.network-card:hover {
  border-color: rgba(240,200,80,0.5);
  background: rgba(240,200,80,0.07);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(240,200,80,0.1);
}

/* Social buttons */
.social-btn:hover {
  background: rgba(240,200,80,0.12) !important;
  border-color: var(--gold) !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(240,200,80,0.22) !important;
}

/* ---- SCROLL ANIMATION ENHANCEMENTS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94), transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered children delay via nth-child */
.reveal-group > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.35s; }

/* ---- PROFESSIONAL SECTION DIVIDERS ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(240,200,80,0.1) 50%, rgba(255,255,255,0.06) 70%, transparent);
  margin: 0 40px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}
/* On desktop ensure full logo is always visible */
@media (min-width: 901px) {
  .nav-logo { font-size: clamp(1.05rem, 1.4vw, 1.4rem); }
  .hamburger { display: none; }
}
@media (max-width: 600px) {
  .step-line { width: 30px; }
  footer { padding: 36px 16px 18px; }
  #chatbot-box { width: calc(100vw - 32px); right: 16px; }
  .notification-toast { right: 12px; left: 12px; max-width: unset; }
  #network-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ---- ADMIN SPECIFIC ---- */
.admin-sidebar {
  width: 220px; min-height: 100vh; padding: 80px 14px 20px;
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 10;
  background: rgba(7,7,16,0.97); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px; transition: transform 0.3s ease;
}
.admin-main { margin-left: 220px; padding: 30px 28px 48px; min-height: 100vh; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 8px; border: none; background: transparent;
  color: var(--muted); cursor: pointer; font-size: 0.85rem; font-weight: 500;
  transition: all 0.2s; text-align: left; width: 100%; font-family: inherit;
}
.sidebar-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.sidebar-item.active { background: rgba(240,200,80,0.1); color: var(--gold); font-weight: 600; }
.admin-hamburger {
  position: fixed; top: 14px; left: 14px; z-index: 200;
  background: rgba(10,10,20,0.95); border: 1px solid rgba(240,200,80,0.25);
  color: var(--gold); width: 40px; height: 40px; border-radius: 8px;
  cursor: pointer; font-size: 1.2rem; display: none; align-items: center; justify-content: center;
}
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 9; display: none; }
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 72px 16px 40px; }
  .admin-hamburger { display: flex; }
  .sidebar-overlay.visible { display: block; }
}

/* ---- PAGE CONTENT (landing hero) ---- */
#hero-section {
  padding-top: 60px; padding-bottom: 80px;
  position: relative;
  overflow: visible;
  min-height: 88vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,0.07) 0%, transparent 70%);
}

/* Two-column grid with safe sizing */
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}
.hero-left {
  min-width: 0;
  overflow: hidden;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
  width: 300px; flex-shrink: 0;
  overflow: visible;
  padding-top: 20px;
  box-sizing: border-box;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-welcome {
  font-size: 1em;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  line-height: 0.98;
  display: block;
  margin-bottom: 0;
}
.hero-title-brand {
  color: var(--green);
  display: block;
  font-size: 1em;
  line-height: 0.98;
  margin-top: 0;
  margin-bottom: 6px;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-break: keep-all;
  max-width: 100%;
}
.hero-sub {
  font-size: 0.34em;
  font-weight: 800;
  display: inline-block;
  margin-top: 14px;
  padding: 7px 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #84ff00 0%, #c8ff00 30%, #f0c850 65%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: heroSubShimmer 3s linear infinite;
  border: 1px solid rgba(132,255,0,0.25);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(132,255,0,0.12), inset 0 0 12px rgba(240,200,80,0.05);
  white-space: normal;
  word-break: keep-all;
  -webkit-text-fill-color: transparent;
}
@keyframes heroSubShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-desc {
  color: var(--muted); font-size: 1.12rem; margin-bottom: 32px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num { font-size: 1.85rem; font-weight: 900; letter-spacing: -0.02em; }
.hero-stat-label { color: var(--muted); font-size: 0.82rem; margin-top: 3px; font-weight: 500; }

/* Coin outer container — fixed square, no overflow */
.hero-coin-outer {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  isolation: isolate;
  max-width: 100%;
}

.hero-coin {
  width: 210px; height: 210px;
  background: linear-gradient(145deg, #22c55e, #15803d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(34,197,94,0.5), 0 0 0 16px rgba(20,83,45,0.35);
  border: 12px solid #14532d;
  position: relative; z-index: 2;
  animation: coinFloat 4s ease-in-out infinite;
}
.coin-letter {
  font-size: 5.5rem;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; text-align: center;
  font-family: 'Syne', sans-serif;
  animation: coinPulse 2s ease-in-out infinite;
}

/* Orbit rings */
.coin-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(34,197,94,0.2);
  animation: orbitSpin 8s linear infinite;
  pointer-events: none;
}
.coin-orbit-ring:nth-child(1) {
  width: 256px; height: 256px;
  border-color: rgba(34,197,94,0.18);
  animation-duration: 8s;
}
.coin-orbit-ring.coin-orbit-ring-2 {
  width: 290px; height: 290px;
  border-color: rgba(240,200,80,0.12);
  animation-duration: 12s;
  animation-direction: reverse;
}
.coin-orbit-ring:nth-child(1)::after {
  content: '';
  position: absolute;
  top: 50%; left: -4px;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  transform: translateY(-50%);
}
.coin-orbit-ring.coin-orbit-ring-2::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  transform: translateX(-50%);
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes coinPulse {
  0%, 100% { text-shadow: 0 6px 20px rgba(0,0,0,0.55), 0 0 0px rgba(255,255,255,0); }
  50% { text-shadow: 0 6px 20px rgba(0,0,0,0.55), 0 0 20px rgba(255,255,255,0.25); }
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile: stack vertically */
@media (max-width: 860px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }
  .hero-right {
    order: -1; width: 100%;
    overflow: hidden;
    display: flex; justify-content: center; align-items: center;
    padding: 16px;
  }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-title { align-items: center; }
  .hero-coin-outer { width: 220px; height: 220px; }
  .hero-coin { width: 165px; height: 165px; }
  .coin-letter { font-size: 4.2rem; }
  .coin-orbit-ring:nth-child(1) { width: 202px; height: 202px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 232px; height: 232px; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-title-brand { white-space: normal; text-align: center; word-break: keep-all; }
  .hero-sub { white-space: normal; text-align: center; font-size: 0.3em; padding: 6px 14px; }
  .hero-badge { align-self: center; }
  .hero-desc { text-align: center; }
}

/* ---- PARTNERS MARQUEE ---- */
.partner-bar {
  background: rgba(0,0,0,0.35);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  padding: 0 48px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  cursor: default;
}
.marquee-item:hover { color: rgba(255,255,255,0.9); }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 16px; border-radius: 50px; font-size: 0.82rem;
  color: var(--green); margin-bottom: 20px; letter-spacing: 0.5px;
}
.partner-bar { background: rgba(0,0,0,0.35); padding: 22px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roadmap-card { background: rgba(15,15,26,0.9); padding: 22px; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.25s; }
.roadmap-card:hover { border-color: rgba(240,200,80,0.25); transform: translateY(-3px); }
.feature-row { background: rgba(15,15,26,0.95); padding: 18px 22px; border-radius: var(--radius); display: flex; align-items: center; gap: 16px; border: 1px solid var(--border); transition: all 0.25s; }
.feature-row:hover { border-color: rgba(34,197,94,0.2); transform: translateX(4px); }
.feature-icon { width: 46px; height: 46px; background: var(--pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-list-item { background: rgba(25,25,38,0.85); padding: 12px 20px; border-radius: 40px; font-size: 0.92rem; border: 1px solid var(--border); transition: all 0.2s; }
.feature-list-item:hover { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }

/* ---- CONTACT INFO CARDS ---- */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.04);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.38);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.98rem; font-weight: 700; color: #fff;
  text-decoration: none; display: block; transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--green); }
.contact-info-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 3px;
}
@media (max-width:780px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-name-email { grid-template-columns: 1fr !important; }
}

/* ---- CHATBOT — AI Powered badge ---- */
#chatbot-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(34,197,94,0.45), 0 0 0 0 rgba(34,197,94,0.3);
  transition: all 0.3s ease;
  animation: chatPulse 3s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
#chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(34,197,94,0.55); }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(34,197,94,0.45), 0 0 0 0 rgba(34,197,94,0.3); }
  50% { box-shadow: 0 8px 32px rgba(34,197,94,0.45), 0 0 0 10px rgba(34,197,94,0); }
}
.chatbot-ai-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg,rgba(240,200,80,0.15),rgba(184,148,31,0.1));
  border: 1px solid rgba(240,200,80,0.3); border-radius: 20px;
  padding: 2px 8px; font-size: 0.65rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.5px; margin-left: 6px;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94) var(--delay, 0s),
              transform 0.65s cubic-bezier(.25,.46,.45,.94) var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- POLICY PAGES ---- */
.policy-section { padding: 8px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.policy-section:last-child { border-bottom: none; }
.policy-section h3 { color: var(--green); font-size: 1.1rem; margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.policy-section p, .policy-section ul { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.8; }
.policy-section ul { padding-left: 20px; }
.policy-section ul li { margin-bottom: 6px; }

/* ================================================================
   RISEONBRIDGE — COMPLETE RESPONSIVE FIXES
   Issues fixed:
   1. 1024px breakpoint nav content overlap / T logo collision
   2. Content left margins / spacing from logo
   3. Footer RISEONBRIDGE text overflow / unequal columns
   4. General 768–1200px range consistency
   ================================================================ */

/* ---- GLOBAL OVERFLOW GUARD ---- */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
img, video, svg { max-width: 100%; }
#particles-canvas { max-width: unset !important; position: fixed; }

/* ================================================================
   NAV — Fixed for ALL breakpoints including 1024px
   ================================================================ */
nav#main-nav {
  background: rgba(7,7,16,0.97);
  height: 66px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  left: 0; right: 0;
  z-index: 190;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease;
  width: 100%;
}
nav#main-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

/* Nav logo — flex-shrink:0 prevents compression */
.nav-logo {
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(0.9rem, 1.5vw, 1.4rem);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 0;
  margin-right: auto; /* push links to right with gap */
}

/* Nav links — keep together, prevent wrapping into logo */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 22px);
  flex-shrink: 0;
  flex-wrap: nowrap;
  height: 100%;
}
#nav-user-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.68rem, 0.85vw, 0.88rem);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover { color: #fff; }
.nav-link.buy { color: var(--green); }
.nav-link.buy:hover { color: #4ade80; }

/* Login/logout nav buttons */
.nav-btn-login {
  background: #fff; color: #000;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn-login:hover { background: #e2e8f0; transform: translateY(-1px); }
.nav-btn-logout {
  background: transparent; color: #fff;
  border: 1px solid #444; padding: 5px 12px;
  border-radius: 20px; font-size: 0.73rem;
  cursor: pointer; transition: all 0.2s;
  font-family: inherit; white-space: nowrap;
}
.nav-btn-logout:hover { border-color: #ef4444; color: #ef4444; }

/* Hamburger — hidden on desktop */
.hamburger {
  background: none; border: none; color: #fff;
  font-size: 1.6rem; cursor: pointer;
  display: none; line-height: 1; padding: 4px;
  flex-shrink: 0;
}

/* ================================================================
   1024px — KEY FIX: nav links collapse before hitting logo
   ================================================================ */
@media (max-width: 1100px) {
  nav#main-nav .nav-inner { padding: 0 16px; gap: 8px; }
  .nav-link { font-size: 0.72rem; }
  .nav-links { gap: clamp(6px, 0.8vw, 14px); }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  nav#main-nav { top: 38px; }
}

@media (min-width: 961px) {
  .hamburger { display: none !important; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(7,7,16,0.99);
  padding: 14px 24px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 104px;
  left: 0; right: 0;
  z-index: 180;
  backdrop-filter: blur(16px);
  width: 100%;
}
.mobile-menu a {
  display: block; padding: 10px 0;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ================================================================
   HERO — 1024px fix: prevent T logo from overlapping text
   (The primary hero CSS is defined earlier — these are overrides only)
   ================================================================ */

/* 1024px specific — tighter grid, smaller coin */
@media (max-width: 1099px) and (min-width: 961px) {
  .hero-container {
    grid-template-columns: 1fr 240px;
    gap: 36px;
    padding: 0 32px;
  }
  .hero-right { width: 240px; padding-top: 16px; }
  .hero-title { font-size: clamp(1.9rem, 3.3vw, 2.8rem); }
  .hero-coin-outer { width: 200px; height: 200px; }
  .hero-coin { width: 150px; height: 150px; }
  .coin-letter { font-size: 3.8rem; }
  .coin-orbit-ring:nth-child(1) { width: 184px; height: 184px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 210px; height: 210px; }
}

/* 960px–861px tablet */
@media (max-width: 960px) and (min-width: 861px) {
  .hero-container {
    grid-template-columns: 1fr 210px;
    gap: 28px;
    padding: 0 28px;
  }
  .hero-right { width: 210px; padding-top: 16px; }
  .hero-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
  .hero-coin-outer { width: 185px; height: 185px; }
  .hero-coin { width: 138px; height: 138px; }
  .coin-letter { font-size: 3.4rem; }
  .coin-orbit-ring:nth-child(1) { width: 170px; height: 170px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 196px; height: 196px; }
}

/* ================================================================
   FOOTER — Complete fix: equal columns, no overflow, proper wrap
   ================================================================ */
footer {
  background: rgba(7,7,16,0.98);
  border-top: 1px solid rgba(240,200,80,0.08);
  padding: 50px 0 24px;
  margin-top: 60px;
  width: 100%;
  box-sizing: border-box;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

/* 4-column footer grid — equal columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Footer brand column */
.footer-brand-name {
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.footer-desc {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 10px;
  word-break: break-word;
}
.footer-col h3 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-link:hover { color: var(--gold); }
.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: all 0.25s ease; cursor: pointer;
}
.social-btn:hover {
  background: rgba(240,200,80,0.1) !important;
  border-color: var(--gold) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(240,200,80,0.2) !important;
}

/* Footer bottom bar — flex with proper wrapping */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  white-space: nowrap;
}
.footer-legal { display: flex; gap: 16px; flex-shrink: 0; }
.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-legal a:hover { color: var(--gold); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-inner { padding: 0 16px; }
  footer { padding: 36px 0 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-copy { white-space: normal; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand-name { font-size: 0.95rem; }
}

/* ================================================================
   CONTENT SECTIONS — left margin / padding consistency
   ================================================================ */
/* All content wrappers get safe horizontal padding */
section, .section-wrapper {
  box-sizing: border-box;
  width: 100%;
}

/* Inline-styled max-width containers — ensure side padding */
@media (max-width: 1280px) {
  [style*="max-width:1200px"],
  [style*="max-width:1100px"],
  [style*="max-width:1000px"],
  [style*="max-width:900px"],
  [style*="max-width:860px"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 768px) {
  [style*="max-width:1200px"],
  [style*="max-width:1100px"],
  [style*="max-width:1000px"],
  [style*="max-width:900px"],
  [style*="max-width:860px"],
  [style*="max-width:660px"],
  [style*="max-width:640px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 425px) {
  [style*="max-width:1200px"],
  [style*="max-width:1100px"],
  [style*="max-width:1000px"],
  [style*="max-width:900px"],
  [style*="max-width:860px"],
  [style*="max-width:660px"],
  [style*="max-width:640px"],
  [style*="max-width:440px"] {
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }
}

/* ================================================================
   TABLET / MOBILE GENERAL FIXES (768px and below)
   ================================================================ */
@media (max-width: 768px) {
  /* Promo bar */
  #promo-bar { font-size: 0.7rem; gap: 6px; padding: 7px 10px; flex-wrap: wrap; }
  .promo-clock { font-size: 0.72rem; padding: 2px 8px; letter-spacing: 1px; }
  .promo-rate { font-size: 0.75rem; }
  #promo-timer-label { font-size: 0.63rem !important; }
  nav#main-nav .nav-inner { padding: 0 16px; }

  /* Glass card */
  .glass-card { padding: 24px 20px !important; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-name-email { grid-template-columns: 1fr !important; }

  /* Admin */
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0 !important; padding: 72px 16px 40px !important; }
  .admin-hamburger { display: flex; }
  .sidebar-overlay.visible { display: block; }

  /* Step indicator */
  .step-line { width: 30px; }
  .step-dot { width: 30px; height: 30px; font-size: 0.78rem; }

  /* Chatbot */
  #chatbot-box { width: calc(100vw - 32px) !important; right: 16px !important; }

  /* Toast */
  .notification-toast { right: 12px; left: 12px; max-width: unset; }

  /* Network grid */
  #network-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ================================================================
   LARGE MOBILE 425px
   ================================================================ */
@media (max-width: 425px) {
  #promo-bar { font-size: 0.65rem; gap: 4px; padding: 6px 8px; }
  .promo-label { display: none; }
  .promo-clock { font-size: 0.68rem; padding: 2px 6px; }
  .promo-rate { font-size: 0.7rem; }

  nav#main-nav { height: 56px; }
  nav#main-nav .nav-inner { height: 56px; padding: 0 12px; }
  .nav-logo { font-size: 1rem; }
  .hamburger { font-size: 1.3rem; }
  .mobile-menu { top: 56px; }

  .hero-container { padding: 0 16px; gap: 28px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-coin-outer { width: 190px; height: 190px; }
  .hero-coin { width: 145px; height: 145px; }
  .coin-letter { font-size: 3.8rem; }
  .coin-orbit-ring:nth-child(1) { width: 176px; height: 176px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 200px; height: 200px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a, .hero-btns button { width: 100%; max-width: 260px; justify-content: center; }
  #hero-section { padding-top: 30px; padding-bottom: 40px; }

  .btn-green, .btn-gold, .btn-outline, .btn-white, .btn-outline-gold { padding: 11px 22px; font-size: 0.9rem; }
  .glass-card { padding: 18px 14px !important; border-radius: 10px; }

  #chatbot-box { width: calc(100vw - 24px) !important; right: 12px !important; bottom: 86px; max-height: 72vh; }
  #chatbot-toggle { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 1.4rem; }
  .notification-toast { font-size: 0.82rem; padding: 10px 14px; top: 72px; }

  .step-line { width: 20px; }
  .step-dot { width: 28px; height: 28px; font-size: 0.72rem; }

  [style*="padding:36px 40px"] { padding: 18px 14px !important; }
  .policy-section h3 { font-size: 0.95rem; }
  .policy-section p, .policy-section ul { font-size: 0.85rem; }

  #login-card { padding: 22px 16px !important; max-width: 100% !important; }
  .admin-main { padding: 60px 10px 28px !important; }
  h2 { font-size: clamp(1.25rem, 5.5vw, 1.9rem) !important; }
  h3 { font-size: clamp(1rem, 4.5vw, 1.35rem) !important; }
}

/* ================================================================
   MEDIUM MOBILE 375px
   ================================================================ */
@media (max-width: 375px) {
  nav#main-nav { height: 52px; }
  nav#main-nav .nav-inner { height: 52px; }
  .mobile-menu { top: 52px; }
  .nav-logo { font-size: 0.9rem; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-sub { white-space: normal; font-size: 0.28em; padding: 5px 12px; }
  .hero-coin-outer { width: 170px; height: 170px; }
  .hero-coin { width: 128px; height: 128px; }
  .coin-letter { font-size: 3.3rem; }
  .coin-orbit-ring:nth-child(1) { width: 158px; height: 158px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 178px; height: 178px; }
  .hero-stats { gap: 14px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .glass-card { padding: 14px 12px !important; }
  .btn-green, .btn-gold, .btn-outline { padding: 10px 18px; font-size: 0.85rem; }
  #chatbot-toggle { width: 50px; height: 50px; font-size: 1.3rem; bottom: 14px; right: 14px; }
  #chatbot-box { width: calc(100vw - 20px) !important; right: 10px !important; }
  h1 { font-size: clamp(1.5rem, 8vw, 2rem) !important; }
  h2 { font-size: clamp(1.1rem, 6vw, 1.7rem) !important; }
}

/* ================================================================
   SMALL MOBILE 320px
   ================================================================ */
@media (max-width: 320px) {
  nav#main-nav { height: 48px; }
  nav#main-nav .nav-inner { height: 48px; padding: 0 8px; }
  .mobile-menu { top: 48px; }
  .nav-logo { font-size: 0.8rem; }
  .hamburger { font-size: 1.2rem; padding: 2px; }
  #promo-bar { font-size: 0.6rem; padding: 5px 6px; gap: 3px; }
  .promo-clock { font-size: 0.62rem; padding: 1px 5px; }
  .promo-rate { display: none; }
  .hero-container { padding: 0 12px; gap: 22px; }
  .hero-title { font-size: clamp(1.4rem, 9vw, 1.85rem); }
  .hero-sub { white-space: normal; font-size: 0.26em; padding: 4px 10px; letter-spacing: 0.05em; }
  .hero-coin-outer { width: 148px; height: 148px; }
  .hero-coin { width: 110px; height: 110px; }
  .coin-letter { font-size: 2.8rem; }
  .coin-orbit-ring:nth-child(1) { width: 138px; height: 138px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 156px; height: 156px; }
  .glass-card { padding: 12px 10px !important; border-radius: 8px; }
  .btn-green, .btn-gold, .btn-outline { padding: 9px 14px; font-size: 0.8rem; }
  #chatbot-toggle { width: 46px; height: 46px; font-size: 1.2rem; bottom: 10px; right: 10px; }
  #chatbot-box { width: calc(100vw - 16px) !important; right: 8px !important; bottom: 70px; }
  .step-line { width: 14px; }
  .step-dot { width: 24px; height: 24px; font-size: 0.65rem; }
  h1 { font-size: clamp(1.3rem, 9vw, 1.7rem) !important; }
  h2 { font-size: clamp(1rem, 7vw, 1.4rem) !important; }
  h3 { font-size: clamp(0.9rem, 5vw, 1.1rem) !important; }
  .network-card { padding: 10px 6px; }
  .network-icon { font-size: 1.3rem; }
  [style*="padding:36px 40px"] { padding: 12px 10px !important; }
  #login-card { padding: 16px 10px !important; }
}

/* ================================================================
   LARGE DESKTOP 1440px+
   ================================================================ */
@media (min-width: 1440px) {
  nav#main-nav .nav-inner { max-width: 1380px; padding: 0 48px; }
  .hero-container { max-width: 1320px; padding: 0 60px; gap: 80px; }
  .hero-coin-outer { width: 340px; height: 340px; }
  .hero-coin { width: 255px; height: 255px; }
  .coin-letter { font-size: 6.8rem; }
  .coin-orbit-ring:nth-child(1) { width: 310px; height: 310px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 350px; height: 350px; }
  .footer-inner { max-width: 1380px; padding: 0 48px; }
}

/* ================================================================
   2K / 1920px
   ================================================================ */
@media (min-width: 1920px) {
  body { font-size: 18px; }
  nav#main-nav .nav-inner { max-width: 1760px; padding: 0 60px; }
  nav#main-nav { height: 72px !important; top: 40px !important; }
  #promo-bar { font-size: 0.95rem; padding: 11px 0; }
  .hero-container { max-width: 1680px; padding: 0 80px; gap: 100px;
    grid-template-columns: 1fr 400px; }
  .hero-title { font-size: 5.8rem; }
  .hero-coin-outer { width: 380px; height: 380px; }
  .hero-coin { width: 285px; height: 285px; }
  .coin-letter { font-size: 7.5rem; }
  .coin-orbit-ring:nth-child(1) { width: 348px; height: 348px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 392px; height: 392px; }
  .footer-inner { max-width: 1760px; padding: 0 60px; }
  .mobile-menu { top: 112px !important; }
}

/* ================================================================
   4K / 2560px+
   ================================================================ */
@media (min-width: 2560px) {
  body { font-size: 22px; }
  nav#main-nav { height: 80px !important; top: 46px !important; }
  nav#main-nav .nav-inner { max-width: 2400px; padding: 0 80px; height: 80px !important; }
  #promo-bar { font-size: 1.05rem; padding: 14px 0; }
  .nav-logo { font-size: 1.8rem !important; }
  .nav-link { font-size: 1rem !important; }
  .nav-btn-login, .nav-btn-logout { font-size: 0.9rem; padding: 8px 22px; }
  .hamburger { font-size: 2rem; }
  .hero-container { max-width: 2200px; padding: 0 100px; gap: 120px;
    grid-template-columns: 1fr 480px; }
  .hero-title { font-size: 7.5rem; }
  .hero-coin-outer { width: 460px; height: 460px; }
  .hero-coin { width: 345px; height: 345px; border-width: 16px; }
  .coin-letter { font-size: 9rem; }
  .coin-orbit-ring:nth-child(1) { width: 420px; height: 420px; }
  .coin-orbit-ring.coin-orbit-ring-2 { width: 474px; height: 474px; }
  .footer-inner { max-width: 2400px; padding: 0 80px; }
  .mobile-menu { top: 126px !important; }
  #chatbot-toggle { width: 74px; height: 74px; font-size: 2rem; bottom: 40px; right: 40px; }
  #chatbot-box { width: 420px; max-height: 580px; bottom: 130px; right: 40px; }
  .notification-toast { font-size: 1rem; padding: 18px 28px; }
  h1 { font-size: clamp(3rem, 4vw, 8rem) !important; }
  h2 { font-size: clamp(2.2rem, 3vw, 5rem) !important; }
  h3 { font-size: clamp(1.6rem, 2vw, 3.2rem) !important; }
  p, .feature-list-item, .roadmap-card p { font-size: 1.1rem; }
  .btn-green, .btn-gold, .btn-outline, .btn-white { padding: 18px 44px; font-size: 1.1rem; }
  .glass-card { border-radius: 20px; }
  .input-field { padding: 16px 22px; font-size: 1.1rem; }
}

/* ================================================================
   CHATBOT AI BADGE HIDE + STATUS FIX
   ================================================================ */
.chatbot-ai-badge { display: none !important; }
.chatbot-status { font-size: 0.75rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 5px; }



/* ================================================================
   TARGETED 1024px FIXES — Contact form, How grid, sections
   ================================================================ */
@media (max-width: 1080px) and (min-width: 769px) {
  .contact-grid [style*="padding:38px"] { padding: 24px !important; }
  .how-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; }
  section[id="features"] > div { padding-left: 24px !important; padding-right: 24px !important; }
  section[id="roadmap"] { padding-left: 24px !important; padding-right: 24px !important; }
  [style*="max-width:660px"] { max-width: 100% !important; padding-left: 24px !important; padding-right: 24px !important; }
}

/* ================================================================
   STICKY PROMO + NAV — DEFINITIVE RULES (overrides everything above)
   Strategy: promo-bar sticky at top:0; nav sticky at top = promo height
   We use a CSS variable --promo-h set by JS, fallback 38px
   ================================================================ */
html { scroll-behavior: smooth; }
:root { --promo-h: 38px; }

#promo-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1001 !important;
  width: 100%;
}

nav#main-nav {
  position: sticky !important;
  top: var(--promo-h, 38px) !important;
  z-index: 1000 !important;
  width: 100%;
  height: 66px !important;
  background: rgba(7,7,16,0.97) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid var(--border) !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

nav#main-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.65) !important;
  border-bottom-color: rgba(34,197,94,0.18) !important;
}

.mobile-menu {
  position: sticky !important;
  top: calc(var(--promo-h, 38px) + 66px) !important;
  z-index: 999 !important;
  width: 100%;
  background: rgba(7,7,16,0.99) !important;
  backdrop-filter: blur(18px) !important;
}

/* Mobile: nav height shrinks */
@media (max-width: 768px) {
  nav#main-nav { height: 60px !important; }
  nav#main-nav .nav-inner { height: 60px !important; }
  .mobile-menu { top: calc(var(--promo-h, 38px) + 60px) !important; }
}
@media (max-width: 425px) {
  nav#main-nav { height: 56px !important; }
  nav#main-nav .nav-inner { height: 56px !important; }
  .mobile-menu { top: calc(var(--promo-h, 36px) + 56px) !important; }
}
@media (max-width: 375px) {
  nav#main-nav { height: 52px !important; }
  nav#main-nav .nav-inner { height: 52px !important; }
  .mobile-menu { top: calc(var(--promo-h, 34px) + 52px) !important; }
}
@media (max-width: 320px) {
  nav#main-nav { height: 48px !important; }
  nav#main-nav .nav-inner { height: 48px !important; padding: 0 8px !important; }
  .mobile-menu { top: calc(var(--promo-h, 32px) + 48px) !important; }
}
/* 4K nav height */
@media (min-width: 2560px) {
  nav#main-nav { height: 80px !important; }
  nav#main-nav .nav-inner { height: 80px !important; }
  .mobile-menu { top: calc(var(--promo-h, 46px) + 80px) !important; }
}
/* ===================== v2.0 NEW STYLES ===================== */

/* ---- GLASSMORPHISM STICKY NAV UPGRADE ---- */
#main-nav {
  position: fixed;
  top: var(--promo-h, 38px);
  left: 0; right: 0;
  z-index: 900;
  background: rgba(7, 7, 16, 0.55);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#main-nav.scrolled {
  background: rgba(7, 7, 16, 0.82);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ---- NAV AVATAR ---- */
.nav-avatar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: #fff;
  padding: 4px 12px 4px 4px;
  border-radius: 50px;
  border: 1px solid rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.07);
  transition: all 0.25s ease;
  cursor: pointer;
  height: 38px; /* lock height to match nav row */
  vertical-align: middle;
}
.nav-avatar-btn:hover {
  border-color: var(--green);
  background: rgba(34,197,94,0.15);
  transform: translateY(-1px);
}
.nav-avatar-ring {
  width: 28px; height: 28px; border-radius: 50%; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--green);
  flex-shrink: 0;
}
.nav-avatar-ring svg { width: 100%; height: 100%; display: block; }
.nav-avatar-name {
  font-size: 0.82rem; font-weight: 700;
  color: var(--green); max-width: 80px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1;
}

/* ---- FAB STACK (Invite + Share stacked above chatbot toggle) ---- */
#fab-stack {
  position: fixed;
  bottom: 98px; /* sits above chatbot-toggle (58px + 24px bottom + 16px gap) */
  right: 24px;
  z-index: 399; /* just under chatbot at 400 */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab-action-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.35);
  background: rgba(7,7,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,197,94,0.08);
  transition: all 0.25s cubic-bezier(.175,.885,.32,1.275);
  overflow: visible;
}
.fab-action-btn:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(34,197,94,0.3), 0 0 0 1px rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.12);
}
.fab-action-btn:active { transform: translateY(0) scale(0.97); }
.fab-icon { font-size: 1.15rem; line-height: 1; display: block; }
.fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: rgba(7,7,16,0.95);
  border: 1px solid rgba(34,197,94,0.3);
  color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateY(-50%) translateX(4px);
  font-family: 'Space Grotesk', sans-serif;
}
.fab-action-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
#fab-invite { border-color: rgba(240,200,80,0.35); }
#fab-invite:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(240,200,80,0.25), 0 0 0 1px rgba(240,200,80,0.15);
  background: rgba(240,200,80,0.1);
}

/* ---- AVATAR SELECTOR (Profile Page) ---- */
.avatar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 20px 0;
}
.avatar-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px; border-radius: 14px; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.25s ease;
}
.avatar-option:hover { border-color: rgba(240,200,80,0.4); background: rgba(240,200,80,0.05); }
.avatar-option.selected { border-color: var(--green); background: rgba(34,197,94,0.1); box-shadow: 0 0 20px rgba(34,197,94,0.15); }
.avatar-option svg { width: 56px; height: 56px; border-radius: 50%; }
.avatar-gender-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1px;
  padding: 2px 8px; border-radius: 20px;
}
.avatar-gender-badge.male { background: rgba(59,130,246,0.15); color: #3b82f6; border: 1px solid rgba(59,130,246,0.25); }
.avatar-gender-badge.female { background: rgba(236,72,153,0.15); color: #ec4899; border: 1px solid rgba(236,72,153,0.25); }
.avatar-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ---- ORDER LEDGER (My Orders section) ---- */
.order-ledger { display: flex; flex-direction: column; gap: 10px; }
.order-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.2s ease;
  flex-wrap: wrap; gap: 8px;
}
.order-row:hover { border-color: rgba(255,255,255,0.15); }
.order-status-badge {
  padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
}
.order-status-badge.pending { background: rgba(240,200,80,0.12); color: var(--gold); border: 1px solid rgba(240,200,80,0.25); }
.order-status-badge.approved { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.order-status-badge.rejected { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }

/* ---- TEAM / MEMBER PANEL ---- */
.team-member-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}
.team-member-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid rgba(34,197,94,0.3); }
.team-member-avatar svg { width: 100%; height: 100%; display: block; }
.team-active-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); flex-shrink: 0; }
.team-inactive-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ---- NETWORK SVG LOGOS (official) ---- */
.net-logo-bsc { color: #f0b90b; }
.net-logo-eth { color: #627eea; }
.net-logo-trx { color: #ff0013; }
.net-logo-sol { color: #9945ff; }

/* ---- PROFILE PAGE SECTIONS ---- */
.profile-section {
  margin-bottom: 28px; padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.profile-section h3 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ---- INVITE LINK COPY ---- */
.invite-link-box {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px; padding: 10px 14px;
}
.invite-link-box input {
  flex: 1; background: transparent; border: none;
  color: rgba(255,255,255,0.6); font-size: 0.82rem; font-family: monospace;
  outline: none; min-width: 0;
}

/* ---- REFERRAL INPUT (login/register page) ---- */
.referral-field-wrap {
  position: relative;
}
.referral-field-wrap input { padding-right: 44px; }
.referral-check-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; pointer-events: none;
}

/* ---- FLASH BALANCE DISPLAY ---- */
.flash-balance-card {
  background: linear-gradient(135deg, rgba(240,200,80,0.1), rgba(34,197,94,0.07));
  border: 1px solid rgba(240,200,80,0.2);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.flash-balance-num {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- POLICY SECTIONS ---- */
.policy-section { margin-bottom: 28px; }
.policy-section h3 { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.policy-section p, .policy-section ul { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.9; }
.policy-section ul { padding-left: 20px; }
.policy-section ul li { margin-bottom: 6px; }

/* ---- NAV LOGOUT BTN ---- */
.nav-btn-logout {
  background: transparent; border: 1px solid rgba(239,68,68,0.35); color: #ef4444;
  padding: 7px 16px; border-radius: 50px; cursor: pointer; font-family: inherit;
  font-size: 0.8rem; font-weight: 700; transition: all 0.2s ease; letter-spacing: 0.5px;
}
.nav-btn-logout:hover { background: rgba(239,68,68,0.1); border-color: #ef4444; }
.nav-btn-login { color: var(--gold); font-weight: 700; text-decoration: none; font-size: 0.9rem; }

/* ---- PROFILE WALLET ADDRESS ---- */
.wallet-readonly {
  font-family: 'Courier New', monospace; font-size: 0.8rem; word-break: break-all;
  background: rgba(255,255,255,0.04); padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  cursor: default; user-select: all;
}

/* ---- LOADING NAV SPACER ---- */
body { padding-top: calc(var(--promo-h, 38px) + 60px); }

@media (max-width: 600px) {
  .avatar-grid { grid-template-columns: repeat(2, 1fr); }
  #fab-stack { bottom: 86px; right: 16px; }
  .fab-action-btn { width: 42px; height: 42px; }
  .fab-tooltip { display: none; }
}
/* ================================================================
   RISEONBRIDGE v2.1 — COMPREHENSIVE FIXES
   ================================================================ */

/* ---- 1. NAV: Fixed to top, gold border, blur, premium look ---- */
#promo-bar {
  position: fixed !important;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
}
nav#main-nav, #main-nav {
  position: fixed !important;
  top: var(--promo-h, 38px) !important;
  left: 0; right: 0;
  z-index: 900;
  background: rgba(7, 7, 16, 0.75) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(240, 200, 80, 0.18) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35) !important;
  height: 66px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
nav#main-nav.scrolled, #main-nav.scrolled {
  background: rgba(7, 7, 16, 0.95) !important;
  border-bottom-color: rgba(240,200,80,0.35) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.55) !important;
}

/* Body padding so content isn't hidden under fixed nav */
body {
  padding-top: calc(var(--promo-h, 38px) + 66px) !important;
}

/* Mobile menu: fixed, appears below nav */
.mobile-menu {
  position: fixed !important;
  top: calc(var(--promo-h, 38px) + 66px) !important;
  left: 0; right: 0;
  z-index: 880 !important;
}

/* ---- 2. FAB STACK mobile adjustments ---- */
@media (max-width: 600px) {
  #fab-stack { right: 16px; bottom: 84px; }
}

/* ---- 3. CHATBOT QUICK ACTIONS — symmetrical flex grid ---- */
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px 10px;
  justify-content: flex-start;
}
.chatbot-quick button {
  flex: 1 1 calc(50% - 3px);
  min-width: 0;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  padding: 6px 8px;
}

/* ---- 5. PROFILE "Invite Friends" header button ---- */
.profile-invite-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, rgba(240,200,80,0.15), rgba(184,148,31,0.1));
  border: 1px solid rgba(240,200,80,0.35);
  color: var(--gold);
  font-size: 0.8rem; font-weight: 700;
  padding: 9px 18px; border-radius: 50px;
  cursor: pointer; transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.3px;
}
.profile-invite-btn:hover {
  background: rgba(240,200,80,0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,200,80,0.2);
}

/* ---- 6. REFERRAL OPTIONAL styling ---- */
.referral-optional-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 1px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---- 7. RESPONSIVE GENERAL FIXES ---- */
@media (max-width: 480px) {
  .step-line { width: 20px !important; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stats { gap: 20px; }
  .flash-balance-num { font-size: 1.6rem; }
  .profile-section { padding: 18px 14px; }
  .flash-balance-card { flex-wrap: wrap; gap: 10px; }
  .glass-card[style*="padding:38px"] { padding: 22px !important; }
  nav#main-nav .nav-inner { padding: 0 14px !important; }
}
@media (max-width: 360px) {
  .promo-rate, .promo-clock { font-size: 0.7rem; }
  .hero-title { font-size: 1.9rem; }
}

/* ---- 8. AVATAR GRID responsive ---- */
@media (max-width: 420px) {
  .avatar-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
}

/* ---- 9. ORDER LEDGER mobile ---- */
@media (max-width: 500px) {
  .order-row { padding: 12px 12px; }
  .order-row > div:first-child { min-width: 0; flex: 1; }
}

/* ---- 10. LOGIN CARD ---- */
@media (max-width: 500px) {
  #login-card { padding: 24px 18px !important; }
}