/* ═══════════════════════════════════════════════════════════════
   GOLD & BLACK LUXURY THEME — style2.css
   Premium Fintech / High-End Corporate Aesthetic
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ── Core Palette ───────────────────────────────────── */
  --bg:             #080808;
  --bg-surface:     #0f0f0f;
  --bg-card:        #111111;
  --bg-elevated:    #161616;

  /* Gold spectrum */
  --gold:           #c9a84c;
  --gold-light:     #e8c96a;
  --gold-bright:    #f5d87e;
  --gold-pale:      #f9edd4;
  --gold-dark:      #8a6e2f;
  --gold-muted:     rgba(201,168,76,.55);

  /* Glow / translucent */
  --gold-glow:      rgba(201,168,76,.22);
  --gold-glow-lg:   rgba(201,168,76,.12);
  --gold-soft:      rgba(201,168,76,.07);
  --gold-border:    rgba(201,168,76,.30);
  --gold-border-lg: rgba(201,168,76,.18);

  /* Text */
  --white:          #ffffff;
  --off-white:      #f5f0e8;
  --muted:          #9e9589;
  --dim:            #5c5650;
  --border:         rgba(255,255,255,.06);

  /* UI */
  --nav-h:          80px;
  --radius:         16px;
  --radius-lg:      24px;
  --shadow-gold:    0 8px 40px rgba(201,168,76,.18);
  --shadow-dark:    0 20px 60px rgba(0,0,0,.6);
  --glass-bg:       rgba(255,255,255,.028);
  --glass-hover:    rgba(255,255,255,.045);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #d1b56f 0%, #f7df95 50%, #644f14 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(201,168,76,.12), rgba(245,216,126,.05));
  --grad-text:      linear-gradient(135deg, #e8c96a 0%, #f9edd4 40%, #c9a84c 100%);
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* ── Ambient Background ───────────────────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -15%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(ellipse, rgba(201,168,76,.10) 0%, transparent 68%);
  animation: drift1 30s ease-in-out infinite alternate;
  filter: blur(80px);
}
.ambient::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 68%);
  animation: drift2 38s ease-in-out infinite alternate;
  filter: blur(90px);
}
@keyframes drift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(6%,5%) scale(1.12); }
}
@keyframes drift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-7%,-7%) scale(1.1); }
}

/* ── Grid Overlay ─────────────────────────────────────── */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 100%);
}

/* ── Particles ────────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.p-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  10%  { opacity: .35; }
  90%  { opacity: .06; }
  100% { opacity: 0;   transform: translateY(-120vh) scale(.4); }
}

/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: all 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(8,8,8,.97);
  box-shadow: 0 10px 40px rgba(0,0,0,.6), 0 1px 0 rgba(201,168,76,.2);
}
.navbar > .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 16px var(--gold-glow);
}
.brand-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Nav Links */
.navbar-nav { gap: 15px; }
.navbar-nav .nav-link {
  font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;


    color: var(--muted);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1.5px;
  background: var(--grad-gold);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold-light); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Nav Buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-login {
  background: transparent;
  border: 1px solid rgba(201,168,76,.25);
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
 
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
   
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-nav-login:hover {
  color: var(--gold-light);
  border-color: var(--gold-border);
  background: var(--gold-soft);
}
.btn-nav-cta {
  background: var(--grad-gold);
  color: #0a0600;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
  
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .5s;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.4); color: #0a0600; }
.btn-nav-cta:hover::before { left: 100%; }

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--gold-border);
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--gold-soft);
  transition: background 0.3s;
}
.navbar-toggler:hover { background: rgba(201,168,76,.12); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(201,168,76,.18); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Nav */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10,8,4,.97);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 16px;
    margin-top: 12px;
    padding: 20px 16px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.08);
  }
  .navbar-nav { gap: 4px; margin-bottom: 20px; }
  .navbar-nav .nav-link { font-size: 0.95rem; padding: 12px 16px; border-radius: 8px; transition: background .2s, color .2s; }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active { background: rgba(201,168,76,.08); color: var(--gold-light); }
  .navbar-nav .nav-link::after { display: none; }
  .nav-actions { flex-direction: row; border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; width: 100%; gap: 10px; }
  .btn-nav-login { flex: 1; text-align: center; font-size: 0.9rem; }
  .btn-nav-cta { flex: 1; justify-content: center; font-size: 0.9rem; padding: 11px 16px; }
}

/* ════════════════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; padding: 30px 0; }

.s-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
      font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  
  color: var(--gold);
  margin-bottom: 16px;
}
.s-label::before, .s-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted));
}
.s-label::after { background: linear-gradient(90deg, var(--gold-muted), transparent); }

.s-title {
 font-family: 'Bebas Neue', sans-serif;
    font-size: clamp
↳
clamp(35.2px, 54.64px, 51.2px)
↳
51.2px
(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(249,237,212,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(201,168,76,.12));
}
.s-sub {
  color: var(--muted);
 font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════ */
#home {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 100px;
  padding: 8px 22px;
     font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 6px 14px;
  color: var(--gold-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.65); }
}

/* Hero Title */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
   
  color: var(--off-white);
  margin-bottom: 26px;
}
.hero-title .g {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 0 30px rgba(201,168,76,.25));
}

.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 460px;
  margin-top: 22px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Hero Buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-primary-cta {
  background: var(--grad-gold);
  color: #0a0600;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
 
  padding: 16px 38px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 26px rgba(201,168,76,.28);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .55s;
}
.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,168,76,.44); color: #0a0600; }
.btn-primary-cta:hover::before { left: 100%; }

.btn-ghost-cta {
  background: transparent;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  padding: 15px 34px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.btn-ghost-cta:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,.14);
}

/* Stats */
.hero-stats { margin-top: 60px; display: flex; flex-wrap: wrap; gap: 40px; }
.stat-num {
     font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
 
  color: var(--dim);
  margin-top: 7px;
}
.stat-divider {
  width: 1px;
  background: rgba(201,168,76,.15);
  align-self: stretch;
  margin: 4px 0;
}

/* ── Income Card ─────────────────────────────────────── */
.income-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15,12,4,.75);
  border: 1px solid rgba(201,168,76,.2);
  backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    0 30px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,76,.06),
    inset 0 1px 0 rgba(201,168,76,.15);
  position: relative;
}
.income-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.income-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,.07), transparent 60%);
  pointer-events: none;
}

.income-card-header {
  background: rgba(255,255,255,.018);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.wdot { width: 11px; height: 11px; border-radius: 50%; }
.wd-r { background: #ff5f57; }
.wd-y { background: #ffbd2e; }
.wd-g { background: #28ca41; }
.income-card-title {
     font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
     color: var(--muted);
}

.income-card-body { padding: 28px 30px; position: relative; z-index: 1; }
.income-card-body > p {
  text-align: center;
  color: var(--muted);
 font-size: 0.88rem;
    margin-bottom: 12px;
   
}
.income-card-body h6 {
      font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 14px;
 
  color: white;
}

.level-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 10px;
  margin-bottom: 9px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(201,168,76,.1);
  transition: all 0.35s ease;
}
.level-row:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.3);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(201,168,76,.1);
}
.level-row:last-child { margin-bottom: 0; }

.level-name {
  font-weight: 600;
    font-size: 0.9rem;
  color: white;
}
.level-dashes { color: var(--dim); letter-spacing: 2px; font-size: 0.7rem; opacity: .35; }
.level-amount {
 font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 0.05em;
    min-width: 42px;
    text-align: right;
  

  background-clip: text;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS (Video)
════════════════════════════════════════════════════════ */
#how-it-works { padding: 120px 0; }

.video-container {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(14,11,3,.8);
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 30px 60px rgba(0,0,0,.55), var(--shadow-gold);
  position: relative;
  backdrop-filter: blur(20px);
  width: 100%;
}
.video-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
  z-index: 2;
}
.video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,.04) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
.video-inner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.custom-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

/* ════════════════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════════════════ */
#process {
  padding: 30px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,.018) 100%);
}

.process-card {
  padding: 40px 32px;
  height: 100%;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  border: 1px solid rgba(201,168,76,.12);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: var(--radius);
}
.process-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
}
.process-card:hover { border-color: var(--gold-border); transform: translateY(-10px); box-shadow: var(--shadow-gold); }
.process-card:hover::before { opacity: 1; }
.process-card:hover::after { transform: scaleX(1); }

.process-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(201,168,76,.06), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}
.process-icon { font-size: 2.4rem; margin-bottom: 22px; display: inline-block; filter: drop-shadow(0 0 12px rgba(201,168,76,.25)); }
.process-title {
     font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}
.process-desc { color: var(--muted);     font-size: 0.95rem;
    line-height: 1.7; }

.btn-outline-glow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.28);
  color: var(--gold-light);
      font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 28px;
    border-radius: 8px;
 

  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline-glow:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-bright);
  box-shadow: 0 0 28px rgba(201,168,76,.2);
}

/* ════════════════════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════════════════════ */
#features { padding: 30px 0; }

.feature-card {
  padding: 34px 28px;
  height: 100%;
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,168,76,.05), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  background: rgba(255,255,255,.03);
  border-color: rgba(201,168,76,.22);
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), var(--shadow-gold);
}

.feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.03));
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
}
.feature-card:hover .feat-icon {
  background: var(--grad-gold);
  color: #0a0600;
  box-shadow: 0 0 24px rgba(201,168,76,.45);
  transform: rotate(-6deg) scale(1.08);
}
.feat-title {
  font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.feat-desc { color: var(--muted); font-size: 0.92rem;
    line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
#testimonials {
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(201,168,76,.015) 0%, transparent 100%);
}

.testi-card {
  padding: 36px 30px;
  height: 100%;
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.4s;
}
.testi-card::after {
  content: '"';
  position: absolute;
  top: 14px; right: 20px;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201,168,76,.06);
  font-family: 'Barlow', sans-serif;
  pointer-events: none;
}
.testi-card:hover::before { opacity: 1; }
.testi-card:hover {
  border-color: rgba(201,168,76,.24);
  background: rgba(255,255,255,.028);
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4), var(--shadow-gold);
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text { color: var(--muted);font-size: 0.93rem;
    line-height: 1.8;
    flex: 1;
    font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0a0600;
  flex-shrink: 0;
  box-shadow: 0 5px 18px rgba(0,0,0,.3);
}
.av-g { background: var(--grad-gold); }
.av-b { background: linear-gradient(135deg, #b8a06a, #d4bc8a); }
.av-p { background: linear-gradient(135deg, #a07840, #c9a84c); }
.t-name { font-size: 0.92rem;}
.t-role { font-size: 0.8rem; color: var(--dim); margin-top: 3px; }

/* ════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════ */
#cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: #060504;
}
#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, rgba(201,168,76,.04) 40%, transparent 70%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.18), transparent);
}

.cta-inner {
  border-radius: 24px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(201,168,76,.18);
  backdrop-filter: blur(32px);
  padding: 90px 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,.06), transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  line-height: 1.1;
 
  background: linear-gradient(135deg, #fff 30%, rgba(249,237,212,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.cta-sub {
  color: var(--muted);
 font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.cta-email {
  flex: 1;
  min-width: 230px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 5px;
  padding: 16px 26px;
  color: var(--off-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color .3s, background .3s;
  backdrop-filter: blur(10px);
  font-family: 'Barlow', sans-serif;
}
.cta-email:focus { border-color: var(--gold); background: rgba(201,168,76,.04); box-shadow: 0 0 0 4px rgba(201,168,76,.07); }
.cta-email::placeholder { color: var(--dim); }

.btn-subscribe {
  background: var(--grad-gold);
  color: #0a0600;
 font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
   
  padding: 16px 36px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.btn-subscribe:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.45); }
.cta-note { font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5) }

/* ════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════ */
#contact { padding: 30px 0; }

.contact-label {
  color: var(--gold);
 font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-h {
     font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    
  margin-bottom: 16px;

  background: linear-gradient(135deg, #fff 40%, rgba(249,237,212,.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-sub { color: var(--muted); font-size: 1.05rem;
    margin: 20px 0 32px;
    line-height: 1.8;  }

.cinfo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 13px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.cinfo-card:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.05);
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(201,168,76,.1);
}
.cinfo-card:last-child { margin-bottom: 0; }
.cinfo-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.18);
}
.ci-green { color: var(--gold); }
.ci-red   { color: var(--gold-light); }
.cinfo-label { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--off-white); }
.cinfo-val   { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }

/* Contact Form */
.contact-form-wrap {
  padding: 42px 38px;
  border-radius: 22px;
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(201,168,76,.14);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cf-title {
      font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 6px;
}
.cf-sub { font-size: 0.94rem; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }

.cf-input {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--off-white);
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 14px;
  font-family: 'Barlow', sans-serif;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.cf-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 4px rgba(201,168,76,.07);
}
.cf-input::placeholder { color: var(--dim); }
textarea.cf-input { resize: vertical; min-height: 130px; }

.btn-send {
  width: 100%;
  background: var(--grad-gold);
  color: #0a0600;
  font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;

  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.btn-send::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .55s;
}
.btn-send:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,.35); }
.btn-send:hover::before { left: 100%; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.modern-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(201,168,76,.09), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201,168,76,.06), transparent 30%),
    #050400;
  padding: 90px 0 0;
  border-top: 1px solid rgba(201,168,76,.15);
}

.footer-glow { position: absolute; border-radius: 50%; filter: blur(110px); z-index: 0; pointer-events: none; }
.footer-glow-1 { width: 340px; height: 340px; background: rgba(201,168,76,.14); top: -130px; left: -130px; }
.footer-glow-2 { width: 280px; height: 280px; background: rgba(201,168,76,.1);  right: -110px; bottom: -110px; }

.modern-footer .container { position: relative; z-index: 2; }

.footer-brand-wrap { max-width: 370px; }
.footer-logo-box { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

.brand-orb {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(201,168,76,.18), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(201,168,76,.12), inset 0 0 30px rgba(255,255,255,.03);
  flex-shrink: 0;
}

.footer-brand-text {
  color: var(--off-white);
  font-family: 'Bebas Neue';
    font-weight: 400;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
 
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-sub { color: var(--gold-light);   font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 2.5px; text-transform: uppercase; }
.footer-description { color: rgba(255,255,255,.58);     font-size: 0.9rem;
    line-height: 1.7; margin-bottom: 30px; }

.footer-socials { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 1rem;
  transition: all .35s ease;
}
.footer-socials a:hover {
  transform: translateY(-5px);
  color: var(--gold-bright);
  border-color: rgba(201,168,76,.35);
  background: linear-gradient(145deg, rgba(201,168,76,.16), rgba(201,168,76,.06));
  box-shadow: 0 12px 30px rgba(201,168,76,.18);
}

/* Footer Links */
.footer-title {
  position: relative;
  font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;

}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -10px;
  width: 30px; height: 1.5px;
  border-radius: 20px;
  background: var(--grad-gold);
}

.footer-links { list-style: none; padding: 0; margin-top:20px; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  position: relative;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
}
.footer-links a::before {
  content: "";
  width: 0; height: 1.5px;
  background: var(--gold);
  border-radius: 30px;
  margin-right: 0;
  transition: all .3s ease;
}
.footer-links a:hover { color: var(--gold-light); transform: translateX(7px); }
.footer-links a:hover::before { width: 10px; margin-right: 8px; }

/* Footer Divider & Bottom */
.footer-divider { height: 1px; margin-top: 70px; background: linear-gradient(to right, transparent, rgba(201,168,76,.18), transparent); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { color: rgba(255,255,255,.48); font-size: 0.82rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 0.86rem; transition: .3s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s cubic-bezier(0.25,0.8,0.25,1), transform 0.85s cubic-bezier(0.25,0.8,0.25,1); }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.85s cubic-bezier(0.25,0.8,0.25,1), transform 0.85s cubic-bezier(0.25,0.8,0.25,1); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.85s cubic-bezier(0.25,0.8,0.25,1), transform 0.85s cubic-bezier(0.25,0.8,0.25,1); }
.reveal-left.show, .reveal-right.show { opacity: 1; transform: translateX(0); }
.count-up { display: inline-block;    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  #home { padding-top: 40px; padding-bottom: 80px; }
  .income-card { margin-top: 56px; }
  .hero-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modern-footer { padding-top: 70px; }
  .footer-brand-wrap { max-width: 100%; }
  .footer-top { row-gap: 50px; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.2rem); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .cta-inner { padding: 50px 24px; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-divider { margin-top: 50px; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: clamp(2.3rem, 13vw, 3.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary-cta, .btn-ghost-cta { justify-content: center; }
  .cta-row { flex-direction: column; }
  .cta-email, .btn-subscribe { width: 100%; }
  .video-inner { padding: 0; }
}
@media (max-width: 425px) {
  .modern-footer { padding-top: 50px; }
  .footer-brand-text { font-size: 1.2rem; }
  .footer-socials a { width: 40px; height: 40px; border-radius: 12px; }
}


 body.form-login {
            font-family: 'Barlow', sans-serif;
            background: var(--bg);
            color: var(--off-white);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 20px;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Ambient Background (from style2.css) ────────────────── */
        .ambient {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .ambient::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -15%;
            width: 65vw;
            height: 65vw;
            background: radial-gradient(ellipse, rgba(201,168,76,.10) 0%, transparent 68%);
            animation: drift1 30s ease-in-out infinite alternate;
            filter: blur(80px);
        }
        .ambient::after {
            content: '';
            position: absolute;
            bottom: -15%;
            right: -15%;
            width: 55vw;
            height: 55vw;
            background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 68%);
            animation: drift2 38s ease-in-out infinite alternate;
            filter: blur(90px);
        }
        @keyframes drift1 {
            from { transform: translate(0,0) scale(1); }
            to   { transform: translate(6%,5%) scale(1.12); }
        }
        @keyframes drift2 {
            from { transform: translate(0,0) scale(1); }
            to   { transform: translate(-7%,-7%) scale(1.1); }
        }

        /* ── Grid Overlay ────────────────────────────────────────── */
        .grid-overlay {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(201,168,76,.022) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201,168,76,.022) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(to bottom, black 35%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 100%);
        }

        /* ── Particles ───────────────────────────────────────────── */
        .particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .p-dot {
            position: absolute;
            border-radius: 50%;
            background: var(--gold);
            opacity: 0;
            animation: float-up linear infinite;
        }
        @keyframes float-up {
            0%   { opacity: 0;    transform: translateY(0) scale(1); }
            10%  { opacity: .35; }
            90%  { opacity: .06; }
            100% { opacity: 0;    transform: translateY(-120vh) scale(.4); }
        }

        /* ── Login Wrapper ───────────────────────────────────────── */
        .login-wrapper {
            width: 100%;
            max-width: 540px;
            position: relative;
            z-index: 2;
        }

        /* ── Card — mirrors income-card style ────────────────────── */
        .login-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: rgba(15,12,4,.82);
            border: 1px solid rgba(201,168,76,.22);
            backdrop-filter: blur(32px) saturate(180%);
            -webkit-backdrop-filter: blur(32px) saturate(180%);
            box-shadow:
                0 30px 70px rgba(0,0,0,.65),
                0 0 0 1px rgba(201,168,76,.06),
                inset 0 1px 0 rgba(201,168,76,.18);
            position: relative;
            padding: 0;
        }

        /* Gold top line */
        .login-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: .85;
            z-index: 3;
        }

        /* Subtle inner glow */
        .login-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top right, rgba(201,168,76,.07), transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        /* ── Card Header (window dots bar) ───────────────────────── */
        .card-header-bar {
            background: rgba(255,255,255,.018);
            padding: 14px 22px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(201,168,76,.1);
            position: relative;
            z-index: 2;
        }
        .wdot { width: 11px; height: 11px; border-radius: 50%; }
        .wd-r { background: #ff5f57; }
        .wd-y { background: #ffbd2e; }
        .wd-g { background: #28ca41; }
        .card-header-label {
            font-size: 0.78rem;
            font-family: 'Space Mono', monospace;
            color: var(--muted);
            margin-left: auto;
            letter-spacing: 0.08em;
        }

        /* ── Card Body ───────────────────────────────────────────── */
        .card-body-inner {
            padding: 36px 38px 42px;
            position: relative;
            z-index: 2;
        }

        /* ── Logo Area ───────────────────────────────────────────── */
        .logo-area {
            display: flex;
            justify-content: center;
            margin-bottom: 12px;
        }
        .logo-area img {
            width: 80px;
            border-radius: 14px;
            border: 1px solid var(--gold-border);
            box-shadow: 0 0 20px var(--gold-glow);
        }

        /* ── Title ───────────────────────────────────────────────── */
        .login-title {
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.6rem;
            letter-spacing: 0.06em;
            margin-bottom: 6px;
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 18px rgba(201,168,76,.2));
        }

        .login-subtitle {
            text-align: center;
            font-family: 'Space Mono', monospace;
            font-size: 1.2rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 28px;
        }

        /* ── Divider line ────────────────────────────────────────── */
        .gold-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
            margin-bottom: 26px;
        }

        /* ── Form Group ──────────────────────────────────────────── */
        .form-group {
            margin-bottom: 16px;
        }

        .label-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .form-group label {
            font-size: 1.5rem;
            font-family: 'Space Mono', monospace;
            font-weight: 400;
            letter-spacing: 0.1em;
           
            color: var(--gold-light);
            display: block;
            margin-bottom: 5px;
        }

        .forgot-link {
            font-family: 'Barlow', sans-serif;
            font-size: 1.3rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .forgot-link:hover {
            color: var(--gold-light);
            text-decoration: none;
        }

        /* ── Input Box ───────────────────────────────────────────── */
        .input-box {
            position: relative;
        }

        .input-box input,
        .input-box select {
            width: 100%;
            height: 50px;
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(201,168,76,.18);
            border-radius: 10px;
            padding: 0 46px 0 16px;
            font-size: 1.5rem;
            font-family: 'Barlow', sans-serif;
            color: var(--off-white);
            outline: none;
            transition: border-color .3s, background .3s, box-shadow .3s;
            backdrop-filter: blur(8px);
        }
        .input-box input::placeholder {
            color: var(--dim);
        }
        .input-box input:focus,
        .input-box select:focus {
            border-color: var(--gold);
            background: rgba(201,168,76,.04);
            box-shadow: 0 0 0 4px rgba(201,168,76,.07);
        }

        /* Password eye toggle */
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--dim);
            font-size: 15px;
            transition: color 0.3s;
        }
        .password-toggle:hover { color: var(--gold); }

        /* ── Captcha Row ─────────────────────────────────────────── */
        .captcha-line {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .captcha-input {
            flex: 1;
            margin-top:5px;
        }

        .captcha-input input {
            width: 100%;
            height: 50px;
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(201,168,76,.18);
            border-radius: 10px;
            padding: 0 16px;
            font-size: 1.5rem;
            font-family: 'Barlow', sans-serif;
            color: var(--off-white);
            outline: none;
            transition: border-color .3s, background .3s, box-shadow .3s;
        }
        .captcha-input input::placeholder { color: var(--dim); }
        .captcha-input input:focus {
            border-color: var(--gold);
            background: rgba(201,168,76,.04);
            box-shadow: 0 0 0 4px rgba(201,168,76,.07);
        }

        #captcha {
            width: 130px;
            min-width: 130px;
            height: 50px;
            border: 1px solid rgba(201,168,76,.22);
            border-radius: 10px;
            object-fit: cover;
            background: rgba(255,255,255,.04);
        }

        .refresh-btn {
            width: 50px;
            min-width: 50px;
            height: 50px;
            border: 1px solid var(--gold-border);
            border-radius: 10px;
            background: var(--gold-soft);
            color: var(--gold-light);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .refresh-btn:hover {
            background: var(--grad-gold);
            color: #0a0600;
            border-color: transparent;
            box-shadow: var(--shadow-gold);
        }

        /* ── Login Button (mirrors btn-primary-cta) ───────────────── */
        .btn-wrap {
            text-align: center;
            margin-top: 22px;
        }

        .login-btn {
            width: 100%;
            height: 52px;
            border: none;
            border-radius: 10px;
            background: var(--grad-gold);
            color: #0a0600;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 6px 26px rgba(201,168,76,.28);
        }
        .login-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
            transition: left .55s;
        }
        .login-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,168,76,.44); }
        .login-btn:hover::before { left: 100%; }

        /* ── Bottom Links ────────────────────────────────────────── */
        .bottom-links {
            text-align: center;
            margin-top: 20px;
            color: var(--muted);
            font-size: 1.3rem;
            line-height: 1.9;
            font-family: 'Barlow', sans-serif;
        }
        .bottom-links a {
            color: var(--gold-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .bottom-links a:hover {
            color: var(--gold-bright);
            text-decoration: none;
        }

        /* ── Errors ──────────────────────────────────────────────── */
        .err {
            color: #ff6b6b;
            font-size: 0.78rem;
            font-family: 'Space Mono', monospace;
            margin-top: 6px;
            letter-spacing: 0.04em;
        }

        /* ── Alerts ──────────────────────────────────────────────── */
        .alert-box {
            padding: 12px 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 0.88rem;
            font-family: 'Barlow', sans-serif;
            border: 1px solid;
        }
        .alert-success {
            background: rgba(40,202,65,.08);
            border-color: rgba(40,202,65,.25);
            color: #6ddb80;
        }
        .alert-danger {
            background: rgba(255,80,80,.07);
            border-color: rgba(255,80,80,.25);
            color: #ff8080;
        }

        /* ══════════════════════════════════════════════════════════
           MODAL — Modern & Luxury
        ══════════════════════════════════════════════════════════ */
        .forget-modal .modal-dialog {
            max-width: 440px;
            margin: auto;
        }

        .forget-modal .modal-content {
            border: none;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: rgba(13,10,3,.95);
            backdrop-filter: blur(32px) saturate(180%);
            -webkit-backdrop-filter: blur(32px) saturate(180%);
            box-shadow:
                0 30px 80px rgba(0,0,0,.8),
                0 0 0 1px rgba(201,168,76,.14),
                inset 0 1px 0 rgba(201,168,76,.2);
            position: relative;
        }

        /* Gold shimmer top */
        .forget-modal .modal-content::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            z-index: 5;
        }

        /* Inner ambient glow */
        .forget-modal .modal-content::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top center, rgba(201,168,76,.07), transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        /* ── Modal Header ────────────────────────────────────────── */
        .forget-modal .modal-header {
            background: rgba(255,255,255,.018);
            border-bottom: 1px solid rgba(201,168,76,.12);
            padding: 18px 24px 16px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .modal-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.04));
            border: 1px solid rgba(201,168,76,.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 1rem;
        }

        .forget-modal .modal-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.35rem;
            letter-spacing: 0.06em;
            color: var(--off-white);
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .forget-modal .close {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(201,168,76,.14);
            border-radius: 8px;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            opacity: 1;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
            line-height: 1;
        }
        .forget-modal .close:hover {
            border-color: rgba(201,168,76,.35);
            background: var(--gold-soft);
            color: var(--gold-light);
        }

        /* ── Modal Body ──────────────────────────────────────────── */
        .forget-modal .modal-body {
            padding: 28px 28px 20px;
            position: relative;
            z-index: 2;
        }

        .modal-body-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .modal-body-desc {
            font-family: 'Barlow', sans-serif;
            font-size: 0.92rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .forget-modal .form-control {
            width: 100%;
            height: 50px;
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(201,168,76,.18);
            border-radius: 10px;
            padding: 0 16px;
            font-size: 0.94rem;
            font-family: 'Barlow', sans-serif;
            color: var(--off-white);
            outline: none;
            transition: border-color .3s, background .3s, box-shadow .3s;
        }
        .forget-modal .form-control::placeholder { color: var(--dim); }
        .forget-modal .form-control:focus {
            border-color: var(--gold);
            background: rgba(201,168,76,.04);
            box-shadow: 0 0 0 4px rgba(201,168,76,.07);
        }

        /* ── Modal Footer ────────────────────────────────────────── */
        .forget-modal .modal-footer {
            border: none;
            border-top: 1px solid rgba(201,168,76,.08);
            padding: 18px 28px 24px;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            position: relative;
            z-index: 2;
        }

        .forget-modal .btn-default {
            background: transparent;
            border: 1px solid rgba(201,168,76,.22);
            color: var(--muted);
            font-family: 'Barlow', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 10px 22px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .forget-modal .btn-default:hover {
            color: var(--gold-light);
            border-color: var(--gold-border);
            background: var(--gold-soft);
        }

        .forget-modal .btn-primary {
            background: var(--grad-gold);
            border: none;
            color: #0a0600;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 11px 28px;
            border-radius: 8px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: var(--shadow-gold);
        }
        .forget-modal .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
            transition: left .5s;
        }
        .forget-modal .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }
        .forget-modal .btn-primary:hover::before { left: 100%; }

        /* Modal alert styling */
        .forget-modal .alert {
            border-radius: 8px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.88rem;
            margin-bottom: 14px;
            border: 1px solid;
            padding: 10px 14px;
        }
        .forget-modal .alert-info {
            background: rgba(201,168,76,.07);
            border-color: rgba(201,168,76,.22);
            color: var(--gold-light);
        }
        .forget-modal .alert-success {
            background: rgba(40,202,65,.08);
            border-color: rgba(40,202,65,.25);
            color: #6ddb80;
        }
        .forget-modal .alert-danger {
            background: rgba(255,80,80,.07);
            border-color: rgba(255,80,80,.22);
            color: #ff8080;
        }

        /* ── Responsive ──────────────────────────────────────────── */
        @media (max-width: 576px) {
            .card-body-inner { padding: 28px 24px 34px; }
            .captcha-line { flex-direction: column; align-items: stretch; }
            #captcha { width: 100%; min-width: unset; }
            .refresh-btn { width: 100%; min-width: unset; }
            .forget-modal .modal-dialog { max-width: calc(100% - 32px); }
        }

        /* ════════════════════════════════════════════════════════════
   AUTH COMMON EXTENSIONS — register-extra.css
   Appended after style2.css login block.
   Reuses all login class names; adds only register-specific
   layout overrides and field variants.
════════════════════════════════════════════════════════════ */

/* ── Wider card wrapper for register ─────────────────────── */
.login-wrapper.reg-wide {
    max-width: 680px;
}

/* ── Page body scroll support (register is tall) ─────────── */
body.form-register {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--off-white);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 40px 20px 60px;
    -webkit-font-smoothing: antialiased;
}

/* ── Two-column field row ─────────────────────────────────── */
.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Individual field block ──────────────────────────────── */
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}

/* ── Field hint text ─────────────────────────────────────── */
.field-hint {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    color: var(--dim);
    margin-bottom: 8px;
    line-height: 1.55;
}

/* ── Section label (gold tag with lines) ─────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
    content: '';
    height: 1px;
    width: 24px;
    background: linear-gradient(90deg, transparent, var(--gold-muted));
}
.section-label::after {
    background: linear-gradient(90deg, var(--gold-muted), transparent);
}

/* ── Thin section separator ──────────────────────────────── */
.section-sep {
    height: 1px;
    background: rgba(201,168,76,.08);
    margin: 22px 0;
}

/* ── Standalone input (outside .input-box) ───────────────── */
.cf-input {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 0.94rem;
    font-family: 'Barlow', sans-serif;
    color: var(--off-white);
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    backdrop-filter: blur(8px);
}
.cf-input::placeholder { color: var(--dim); }
.cf-input:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,.04);
    box-shadow: 0 0 0 4px rgba(201,168,76,.07);
}

/* Password cf-input needs right padding for eye icon */
.input-box .cf-input {
    padding-right: 46px;
}

/* ── Custom select ───────────────────────────────────────── */
.cf-select {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 10px;
    padding: 0 40px 0 16px;
    font-size: 1.3rem;
    font-family: 'Barlow', sans-serif;
    color: var(--off-white);
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(201,168,76,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.cf-select option {
    background: #111;
    color: var(--off-white);
}
.cf-select:focus {
    border-color: var(--gold);
    background-color: rgba(201,168,76,.04);
    box-shadow: 0 0 0 4px rgba(201,168,76,.07);
}

/* ── Warning notice box ──────────────────────────────────── */
.warning-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,80,80,.05);
    border: 1px solid rgba(255,80,80,.18);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.warning-notice i {
    color: #ff7070;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.warning-notice p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}
.warning-notice strong { color: #ff7070; }

/* ── Terms checkbox row ──────────────────────────────────── */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.018);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
    transition: border-color .3s;
    cursor: pointer;
}
.terms-row:hover { border-color: rgba(201,168,76,.28); }
.terms-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
}
.terms-text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
.terms-text a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}
.terms-text a:hover { color: var(--gold-bright); }

/* ── Responsive: register ─────────────────────────────────── */
@media (max-width: 640px) {
    .login-wrapper.reg-wide { max-width: 100%; }
    .form-row-pair { grid-template-columns: 1fr; }
    .captcha-line { flex-direction: column; align-items: stretch; }
    #captcha { width: 100%; min-width: unset; }
    .refresh-btn { width: 100%; min-width: unset; }
}

/* ════════════════════════════════════════════════════════════
   AUTH COMMON EXTENSIONS — register-extra.css
   Appended after style2.css login block.
   Reuses all login class names; adds only register-specific
   layout overrides and field variants.
════════════════════════════════════════════════════════════ */

/* ── Wider card wrapper for register ─────────────────────── */
.login-wrapper.reg-wide {
    max-width: 680px;
}

/* ── Page body scroll support (register is tall) ─────────── */
body.form-register {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--off-white);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 40px 20px 60px;
    -webkit-font-smoothing: antialiased;
}

/* ── Two-column field row ─────────────────────────────────── */
.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Individual field block ──────────────────────────────── */
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

/* ── Field hint text ─────────────────────────────────────── */
.field-hint {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    color: var(--dim);
    margin-bottom: 8px;
    line-height: 1.55;
}

/* ── Section label (gold tag with lines) ─────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
    content: '';
    height: 1px;
    width: 24px;
    background: linear-gradient(90deg, transparent, var(--gold-muted));
}
.section-label::after {
    background: linear-gradient(90deg, var(--gold-muted), transparent);
}

/* ── Thin section separator ──────────────────────────────── */
.section-sep {
    height: 1px;
    background: rgba(201,168,76,.08);
    margin: 22px 0;
}

/* ── Standalone input (outside .input-box) ───────────────── */
.cf-input {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 0.94rem;
    font-family: 'Barlow', sans-serif;
    color: var(--off-white);
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    backdrop-filter: blur(8px);
}
.cf-input::placeholder { color: var(--dim); }
.cf-input:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,.04);
    box-shadow: 0 0 0 4px rgba(201,168,76,.07);
}

/* Password cf-input needs right padding for eye icon */
.input-box .cf-input {
    padding-right: 46px;
}

/* ── Custom select ───────────────────────────────────────── */
.cf-select {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 10px;
    padding: 0 40px 0 16px;
    font-size: 1.3rem;
    font-family: 'Barlow', sans-serif;
    color: var(--off-white);
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(201,168,76,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.cf-select option {
    background: #111;
    color: var(--off-white);
}
.cf-select:focus {
    border-color: var(--gold);
    background-color: rgba(201,168,76,.04);
    box-shadow: 0 0 0 4px rgba(201,168,76,.07);
}

/* ── Warning notice box ──────────────────────────────────── */
.warning-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,80,80,.05);
    border: 1px solid rgba(255,80,80,.18);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.warning-notice i {
    color: #ff7070;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.warning-notice p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}
.warning-notice strong { color: #ff7070; }

/* ── Terms checkbox row ──────────────────────────────────── */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.018);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
    transition: border-color .3s;
    cursor: pointer;
}
.terms-row:hover { border-color: rgba(201,168,76,.28); }
.terms-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
}
.terms-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
.terms-text a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}
.terms-text a:hover { color: var(--gold-bright); }

/* ── Responsive: register ─────────────────────────────────── */
@media (max-width: 640px) {
    .login-wrapper.reg-wide { max-width: 100%; }
    .form-row-pair { grid-template-columns: 1fr; }
    .captcha-line { flex-direction: column; align-items: stretch; }
    #captcha { width: 100%; min-width: unset; }
    .refresh-btn { width: 100%; min-width: unset; }
}
/* ════════════════════════════════════════════════════════
   INCOME PLAN SECTION
════════════════════════════════════════════════════════ */
#income-plan {
  padding: 30px 0 80px;
  background: linear-gradient(180deg, rgba(201,168,76,.015) 0%, transparent 60%);
}

/* ── Main Income Cards ─────────────────────────────────── */
.ip-card {
  height: 100%;
  padding: 34px 28px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.19,1,0.22,1);
}
.ip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,168,76,.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.ip-card:hover {
  background: rgba(255,255,255,.03);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), var(--shadow-gold);
}
.ip-card:hover::before { transform: scaleX(1); }
.ip-card:hover::after  { opacity: 1; }

/* Featured card variant */
.ip-card--featured {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.28);
  box-shadow: 0 0 0 1px rgba(201,168,76,.06), var(--shadow-gold);
}
.ip-card--featured::after {
  background: radial-gradient(circle at top right, rgba(201,168,76,.1), transparent 60%);
  opacity: 1;
}
.ip-card--featured::before { transform: scaleX(1); }

/* ── Tag pill ───────────────────────────────────────────── */
.ip-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.ip-tag--gold {
  color: var(--gold-light);
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.35);
}

/* ── Icon ───────────────────────────────────────────────── */
.ip-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.03));
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.ip-card:hover .ip-icon-wrap {
  background: var(--grad-gold);
  color: #0a0600;
  box-shadow: 0 0 22px rgba(201,168,76,.45);
  transform: rotate(-6deg) scale(1.08);
}

/* ── Title & Desc ───────────────────────────────────────── */
.ip-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.ip-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Earn row (single stat) ─────────────────────────────── */
.ip-earn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.18);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.ip-earn-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.ip-earn-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── Mini level rows (featured card) ───────────────────── */
.ip-level-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.ip-lm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,168,76,.12);
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.3s;
}
.ip-lm-row:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.28);
  transform: translateX(4px);
  color: var(--off-white);
}
.ip-lm-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

/* ── Rank list (leadership card) ───────────────────────── */
.ip-rank-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.ip-rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(201,168,76,.1);
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.3s;
}
.ip-rank-item:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.07);
  color: var(--off-white);
  transform: translateX(4px);
}
.ip-rank-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
  flex-shrink: 0;
}
.ip-rank-dot--gold   { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,.5); }
.ip-rank-dot--bright { background: var(--gold-bright); box-shadow: 0 0 10px rgba(245,216,126,.6); }
.ip-rank-val {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

/* ── Level Breakdown Table Card ─────────────────────────── */
.ip-table-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(14,11,3,.8);
  border: 1px solid rgba(201,168,76,.2);
  backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    0 30px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,76,.06),
    inset 0 1px 0 rgba(201,168,76,.15);
  position: relative;
}
.ip-table-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}
.ip-table-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,.07), transparent 60%);
  pointer-events: none;
}

.ip-table-header {
  background: rgba(255,255,255,.018);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201,168,76,.1);
  flex-wrap: wrap;
}
.ip-table-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ip-table-sub {
  font-size: 0.72rem;
  color: var(--dim);
  margin-left: auto;
  font-family: 'Barlow', sans-serif;
}

.ip-table-body {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}

/* ── Level blocks inside table card ─────────────────────── */
.ip-level-block {
  padding: 28px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(201,168,76,.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.ip-level-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.4s;
}
.ip-level-block:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.4), var(--shadow-gold);
}
.ip-level-block:hover::before { opacity: 1; }

/* Accent stripe per block */
.ip-level-block--1 { border-top-color: rgba(201,168,76,.5); }
.ip-level-block--2 { border-top-color: rgba(201,168,76,.35); }
.ip-level-block--3 { border-top-color: rgba(201,168,76,.22); }
.ip-level-block--4 { border-top-color: rgba(201,168,76,.14); }

.ip-lb-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201,168,76,.08);
  position: absolute;
  top: 8px;
  right: 12px;
  pointer-events: none;
}
.ip-lb-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.ip-lb-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(201,168,76,.2));
  margin-bottom: 10px;
}
.ip-lb-note {
  font-size: 0.8rem;
  color: var(--dim);
  font-family: 'Barlow', sans-serif;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .ip-table-sub { display: none; }
  .ip-lb-amount { font-size: 2.2rem; }
}
@media (max-width: 575.98px) {
  .ip-card { padding: 26px 20px 22px; }
  .ip-table-body { padding: 20px 16px; }
}

/* ════════════════════════════════════════════════════════
   ROADMAP SECTION
════════════════════════════════════════════════════════ */
#roadmap {
  padding: 30px 0 100px;
  overflow: hidden;
}

/* ── Year strip ─────────────────────────────────────────── */
.rm-year-strip {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}
.rm-year-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 14px;
}
.rm-year-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.15), rgba(201,168,76,.35), rgba(201,168,76,.15));
}

/* ── Track wrapper ──────────────────────────────────────── */
.rm-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

/* ── Central spine ──────────────────────────────────────── */
.rm-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,168,76,.35) 8%,
    rgba(201,168,76,.35) 92%,
    transparent 100%
  );
  z-index: 0;
}

/* ── Each timeline item ─────────────────────────────────── */
.rm-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.rm-item:last-child { margin-bottom: 0; }

/* LEFT items: content | connector | empty */
.rm-item--left {
  flex-direction: row;
}
.rm-item--left .rm-content {
  text-align: right;
  padding-right: 48px;
  flex: 1;
}
.rm-item--left .rm-connector {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: 0;
}
.rm-item--left::after {
  content: '';
  flex: 1;
}

/* RIGHT items: empty | connector | content */
.rm-item--right {
  flex-direction: row;
}
.rm-item--right::before {
  content: '';
  flex: 1;
}
.rm-item--right .rm-connector {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: 0;
}
.rm-item--right .rm-content {
  text-align: left;
  padding-left: 48px;
  flex: 1;
}

/* ── Dot ────────────────────────────────────────────────── */
.rm-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Done state */
.rm-dot--done {
  background: var(--grad-gold);
  color: #0a0600;
  box-shadow: 0 0 0 4px rgba(201,168,76,.15), 0 0 20px rgba(201,168,76,.3);
}

/* Active / in-progress state */
.rm-dot--active {
  background: rgba(201,168,76,.12);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.08);
}
.rm-dot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  animation: rm-pulse 2s ease-in-out infinite;
}
@keyframes rm-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  50%       { transform: scale(1.15); opacity: .85; box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

/* Upcoming state */
.rm-dot--upcoming {
  width: 20px;
  height: 20px;
  background: var(--bg-elevated);
  border: 1.5px solid rgba(201,168,76,.22);
  margin-top: 8px;
}

/* ── Content area ───────────────────────────────────────── */
.rm-content { max-width: 340px; }

.rm-quarter-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rm-qt--done     { color: var(--gold); }
.rm-qt--active   { color: var(--gold-light); }
.rm-qt--upcoming { color: var(--dim); }

.rm-phase {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 30%, rgba(249,237,212,.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rm-detail {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── Status pill ────────────────────────────────────────── */
.rm-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
}
.rm-status-pill .rm-sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.rm-sp--done {
  color: var(--gold-light);
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.07);
}
.rm-sp--done .rm-sp-dot {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201,168,76,.6);
}

.rm-sp--active {
  color: #6ddb80;
  border-color: rgba(40,202,65,.25);
  background: rgba(40,202,65,.06);
}
.rm-sp--active .rm-sp-dot {
  background: #28ca41;
  box-shadow: 0 0 6px rgba(40,202,65,.5);
  animation: rm-pulse 1.6s ease-in-out infinite;
}

.rm-sp--upcoming {
  color: var(--dim);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.rm-sp--upcoming .rm-sp-dot { background: var(--dim); }

/* ── Footer disclaimer strip ────────────────────────────── */
.rm-footer-strip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
  padding: 18px 22px;
  border-top: 1px solid rgba(201,168,76,.08);
}
.rm-fs-icon {
  color: var(--dim);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.rm-footer-strip p {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.65;
  margin: 0;
  font-family: 'Barlow', sans-serif;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .rm-spine { left: 20px; }

  .rm-item--left,
  .rm-item--right {
    flex-direction: row;
  }
  .rm-item--left::after,
  .rm-item--right::before { display: none; }

  .rm-item--left .rm-content,
  .rm-item--right .rm-content {
    text-align: left;
    padding-left: 36px;
    padding-right: 0;
    max-width: 100%;
  }

  .rm-item--left .rm-connector,
  .rm-item--right .rm-connector {
    order: -1;
    width: 40px;
    flex-shrink: 0;
  }

  .rm-dot { transform: none; margin-left: -6px; }
  .rm-dot--upcoming { margin-left: -3px; }
  .rm-phase { font-size: 1.5rem; }
  .rm-year-strip { display: none; }
}

/* ════════════════════════════════════════════════════════
   TRUST BADGES STRIP
════════════════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 36px;
  padding: 18px 24px;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  max-width: auto;
  margin:0 120px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 140px;
  padding: 0 10px;
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  cursor: default;
  white-space: nowrap;
}

.trust-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-icon-wrap i {
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
  display: flex;
}

.trust-badge:hover { color: var(--gold-light); }
.trust-badge:hover .trust-icon-wrap {
  background: rgba(201,168,76,.18);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 14px rgba(201,168,76,.2);
}
.trust-badge:hover .trust-icon-wrap i {
  transform: scale(1.15);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,.15);
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .trust-strip {
    max-width: 100%;
    padding: 16px 18px;
    gap: 14px 0;
  }
  .trust-divider { display: none; }
  .trust-badge {
    min-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    font-size: 0.84rem;
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .trust-badge {
    min-width: 100%;
    flex: 0 0 100%;
  }
}

.simple-footer{
    background: #0b0b0b;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-center{
    text-align: center;
}

.footer-copy{
    color: #9e9589;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a{
    color: #c9a84c;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #f5d87e;
}

.divider{
    color: rgba(255,255,255,0.3);
}