/* ===== UTILITY ===== */
.btn-mt         { margin-top: 12px; }
.btn-step       { margin-top: 12px; font-size: 0.85rem; padding: 10px 20px; }
.btn-copy-footer{ font-size: 0.8rem; padding: 8px 16px; margin-top: 10px; }
.footer-social  { margin-top: 16px; }
.ref-or         { margin-top: 16px; }
.text-center    { text-align: center; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #8b5cf6;
  --primary-dk: #7c3aed;
  --primary-lt: #a78bfa;
  --accent:     #c084fc;
  --bg-dark:    #0d0b1a;
  --bg-card:    #130f24;
  --bg-card2:   #1c1535;
  --text:       #ede9fe;
  --text-muted: #9d8ec4;
  --border:     rgba(139,92,246,0.12);
  --radius:     12px;
  --shadow:     0 4px 30px rgba(0,0,0,0.5);
  --section-pad: clamp(60px, 8vw, 100px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246,.45);
}
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 40px; font-size: clamp(1rem, 2.5vw, 1.1rem); }

/* ===== SECTION SHARED ===== */
.section { padding: var(--section-pad) 0; }

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-desc {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,11,26,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }

.nav-container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-img--footer { height: 30px; }
.logo-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
}
.logo-text em {
  font-style: normal;
  color: var(--primary);
}

#nav { flex: 1; min-width: 0; }
#nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
#nav ul li a {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
#nav ul li a:hover,
#nav ul li a.active-link { color: var(--primary); background: rgba(139,92,246,.1); }
#nav ul li a.btn-outline { padding: 6px 14px; }

.social-icons { display: flex; gap: 12px; flex-shrink: 0; }
.social-icons a {
  color: var(--text-muted);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.social-icons a:hover { color: var(--primary); border-color: var(--primary); }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px 10px;
  margin-left: auto;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--primary); color: var(--primary); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(139,92,246,.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(240,180,41,.08) 0%, transparent 60%),
    var(--bg-dark);
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b5cf6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(139,92,246,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 24px clamp(80px, 10vw, 120px);
}
.hero-sub {
  color: var(--primary);
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TICKER ===== */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(139,92,246,.08);
  border-top: 1px solid rgba(139,92,246,.25);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  will-change: transform;
}
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.tick-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.tick-item strong { color: var(--primary); font-weight: 700; }
.tick-item em     { font-style: normal; font-size: 0.76rem; }
em.up      { color: #22c55e; }
em.neutral { color: var(--text-muted); }
@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ===== STAT CARDS (shared) ===== */
.col-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-card i   { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; display: block; }
.stat-card h3  { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; color: #fff; }
.stat-card p   { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); }
.check-list li i { color: var(--primary); flex-shrink: 0; margin-top: 4px; }

/* ===== WELCOME SECTION ===== */
.welcome-section { background: var(--bg-card); }
.welcome-header  { max-width: 800px; }
.welcome-header h2 { margin-bottom: 20px; }
.welcome-header p  { color: var(--text-muted); margin-bottom: 14px; }

/* ===== GATEWAY SECTION ===== */
.gateway-section { background: var(--bg-dark); }

/* ===== COMMUNITY SECTION ===== */
.community-section { background: var(--bg-card); }
.movement-banner   { margin-bottom: 48px; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.community-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  transition: transform .25s, border-color .25s;
}
.community-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.community-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139,92,246,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.community-card-icon i { font-size: 1.5rem; color: var(--primary); }
.community-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.community-card p  { color: var(--text-muted); font-size: 0.92rem; }

.join-benefits {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.join-benefits h3 { font-size: 1.1rem; margin-bottom: 20px; }
.join-benefits ul { display: flex; flex-direction: column; gap: 12px; }
.join-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}
.join-benefits li i { color: var(--primary); flex-shrink: 0; margin-top: 4px; }

/* ===== INTRO SECTION ===== */
.intro-section { background: var(--bg-dark); }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.intro-text { display: flex; flex-direction: column; gap: 16px; }
.intro-text p { color: var(--text-muted); }
.future-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.future-box h4  { font-size: 1.1rem; margin-bottom: 16px; color: var(--primary); }
.future-box p   { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 12px; }
.future-box em  { color: var(--text); font-style: italic; }

/* ===== OPPORTUNITY SECTION ===== */
.opportunity-section { background: var(--bg-card); }
.two-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.checklist-box {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.checklist-box h3 { font-size: 1rem; margin-bottom: 20px; line-height: 1.4; }
.highlight-box    { border-color: rgba(139,92,246,.3); }
.tick-list { display: flex; flex-direction: column; gap: 12px; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.tick-list li i { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.tick-list li strong { color: var(--text); }

.invest-quote {
  background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(240,180,41,.05));
  border: 1px solid rgba(139,92,246,.25);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.invest-quote blockquote {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* ===== HOW TO JOIN ===== */
.how-section { background: var(--bg-dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px) 20px;
  position: relative;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.step:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(139,92,246,.1);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.step i  { font-size: 2rem; color: var(--primary); }
.step h3 { font-size: 1rem; font-weight: 700; }
.step p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; flex: 1; }

.ref-code {
  background: rgba(139,92,246,.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 1em;
}

/* Referral CTA block */
.referral-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}
.referral-cta > p { color: var(--text-muted); margin-bottom: 24px; }
.ref-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.ref-big {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--primary);
  font-family: monospace;
  background: rgba(139,92,246,.1);
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px dashed rgba(139,92,246,.45);
}
.ref-big.small {
  font-size: 1.4rem;
  padding: 8px 20px;
  letter-spacing: 4px;
}
.copy-msg  { color: var(--primary); font-size: 0.88rem; min-height: 20px; }
.reg-link  {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  word-break: break-all;
  border-bottom: 1px dashed var(--primary);
  transition: opacity .2s;
}
.reg-link:hover { opacity: .7; }

/* ===== BUSINESS PLAN SECTION ===== */
.bizplan-section {
  background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(240,180,41,.07)), var(--bg-card);
  text-align: center;
}
.bizplan-section h2     { margin: 0 auto 16px; }
.bizplan-section .section-desc { margin: 0 auto 40px; }

/* ===== UPDATES SECTION ===== */
.updates-section { background: var(--bg-dark); }
.updates-list { display: flex; flex-direction: column; gap: 20px; }
.update-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 32px);
  transition: transform .2s;
}
.update-item:hover { transform: translateX(4px); }
.update-date  { font-size: 0.78rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.update-item h4 { margin: 8px 0 6px; font-size: 1rem; }
.update-item p  { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg-card); }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.contact-info li i { color: var(--primary); font-size: 1.1rem; width: 20px; flex-shrink: 0; }
.contact-info a       { color: var(--text); }
.contact-info a:hover { color: var(--primary); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .2s;
  resize: vertical;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--primary); }
.form-msg { font-size: 0.88rem; color: var(--primary); min-height: 20px; }

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section { background: var(--bg-dark); }
.disclaimer-section h2 { margin-bottom: 16px; }
.disclaimer-section p  {
  color: var(--text-muted);
  max-width: 900px;
  font-size: 0.88rem;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.footer { background: #070b14; border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
}
.footer-brand .logo-link { margin-bottom: 12px; }
.footer-brand > p   { color: var(--text-muted); font-size: 0.88rem; }
.footer-links h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color .2s; }
.footer-links ul li a:hover { color: var(--primary); }
.footer-ref { display: flex; flex-direction: column; align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(16px, 4vw, 32px);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */

/* Large tablets: nav starts to squeeze */
@media (max-width: 1100px) {
  #nav ul li a { padding: 6px 7px; font-size: 0.8rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Tablets / small laptops */
@media (max-width: 900px) {
  .hamburger  { display: flex; }
  .social-icons,
  #nav        { display: none; }

  #nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  #nav.open   { display: block; }
  #nav ul     { flex-direction: column; gap: 2px; }
  #nav ul li a {
    display: block;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  #nav ul li a.btn-outline {
    margin-top: 8px;
    text-align: center;
  }

  .col-visual { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-tagline { font-size: 0.95rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 280px; }

  /* Hide ticker on very small screens to avoid layout overflow */
  .hero-ticker { display: none; }
  .hero-content { padding-bottom: 60px; }

  .col-visual { grid-template-columns: 1fr 1fr; }

  .two-lists { grid-template-columns: 1fr; }

  .ref-big { font-size: 1.8rem; letter-spacing: 4px; padding: 10px 20px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .col-visual  { grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .ref-block   { flex-direction: column; }
}
