:root {
  /* Colors from Figma API */
  --bg:          #0A0C0A;   /* rgb(10,12,10) */
  --bg-2:        #121412;   /* sidebar/card bg */
  --bg-card:     #1A1C1A;   /* rgb(26,26,26) */
  --bg-card2:    #1E2024;   /* rgb(30,32,36) */
  --green:       #84CC16;   /* rgb(132,204,22) — primary lime */
  --green-light: #82E05A;   /* rgb(130,224,90) */
  --green-btn:   #7CFC00;   /* bright CTA */
  --orange:      #F97316;   /* orange accent */
  --border:      #262626;   /* rgb(38,38,38) */
  --border-2:    #D1D5DB;   /* light border */
  --text:        #FFFFFF;
  --text-2:      #F1F5F9;   /* rgb(241,245,249) */
  --text-muted:  #9CA3AF;   /* rgb(156,163,175) */
  --text-dim:    #6B7280;   /* rgb(107,114,128) */
  --text-slate:  #7E869E;   /* rgb(126,134,158) */
  --blue:        #3B82F6;   /* rgb(59,130,246) */
  --positive:    #22C55E;
  --negative:    #EF4444;

  /* Typography from Figma */
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing / Layout */
  --sidebar-w: 220px;
  --topbar-h: 60px;
  --radius: 9px;
  --radius-lg: 12px;
  --max-w: 1200px;
  --section-px: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; font-size: 14px; line-height: 1.5; }

/* ===========================
   LOGO SVG
=========================== */
.gero-logo {
  display: flex; align-items: center; gap: 7px; text-decoration: none; cursor: pointer;
  background: transparent !important;
}
.gero-logo-icon { width: 32px; height: 26px; flex-shrink: 0; }
.gero-logo-img { height: 28px; width: auto; display: block; background: transparent !important; mix-blend-mode: normal; }
.gero-logo-text { display: none; }

/* ===========================
   PUBLIC NAV
=========================== */
.pub-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--topbar-h);
  padding: 0 var(--section-px);
  background: rgba(10,12,10,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.pub-nav-inner { max-width: var(--max-w); margin: 0 auto; margin-top:20px; width: 100%; display: flex; align-items: center; gap: 32px; }
.pub-nav .nav-links { display: flex; gap: 24px; margin-left: 32px; }
.pub-nav .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.pub-nav .nav-links a.active, .pub-nav .nav-links a:hover { color: var(--green); }
.pub-nav .spacer { flex: 1; }

/* search in topbar */
.topbar-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 13px; width: 240px;
}
.topbar-search input { background: none; border: none; outline: none; color: var(--text); font-family: var(--font-body); font-size: 13px; width: 100%; }
.topbar-search input::placeholder { color: var(--text-dim); }


/* CTA Buttons */
.btn { font-family: var(--font-body); font-weight: 600; font-size: 14px; cursor: pointer; border: none; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 7px; transition: all .15s; }
.btn-green { background: var(--green); color: #000; padding: 10px 22px; }
.btn-green:hover { background: var(--green-light); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); padding: 10px 22px; }
.btn-ghost:hover { border-color: var(--text-muted); }
.btn-orange { background: var(--orange); color: #fff; padding: 9px 20px; }
.btn-outline-green { background: transparent; color: var(--green); border: 1px solid var(--green); padding: 10px 22px; }
.btn-outline-green:hover { background: rgba(132,204,22,.08); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   PAGE SYSTEM
=========================== */
.page { display: none; }
.page.active { display: block; }

/* ===========================
   APP SHELL
=========================== */


/* ===========================
   CARDS
=========================== */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.card-p { padding: 22px; }
.card-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }

/* ===========================
   PAGE HEADERS
=========================== */


/* ===========================
   FORM ELEMENTS
=========================== */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 13px;
  color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .15s;
}
.input:focus { border-color: var(--green); }
.input::placeholder { color: var(--text-dim); }
.input-icon { position: relative; }
.input-icon .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-dim); pointer-events: none; }
.input-icon .input { padding-left: 38px; }
.input-eye { position: relative; }
.input-eye .input { padding-right: 38px; }
.eye-toggle { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 2px; }
.select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 13px;
  color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.check-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.check-row input[type=checkbox] { margin-top: 2px; accent-color: var(--green); }
.check-row label { font-size: 13px; color: var(--text-muted); }
.check-row a { color: var(--green); text-decoration: none; }

/* ===========================
   BADGES / PILLS
=========================== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-green { background: rgba(34,197,94,.15); color: #22C55E; }
.badge-orange { background: rgba(249,115,22,.15); color: var(--orange); }
.badge-red { background: rgba(239,68,68,.15); color: var(--negative); }
.badge-blue { background: rgba(59,130,246,.15); color: var(--blue); }
.badge-lime { background: rgba(132,204,22,.12); color: var(--green); }


/* ===========================
   ASSET ICONS
=========================== */


/* ===========================
   SPARKLINES
=========================== */


/* ===========================
   POSITIVE / NEGATIVE
=========================== */
.pos { color: var(--positive); }
.neg { color: var(--negative); }

/* ===========================
   DIVIDER
=========================== */
.divider { height: 1px; background: var(--border); }
.or-divider { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 13px; margin: 14px 0; }
.or-divider::before, .or-divider::after { content:''; flex:1; height:1px; background:var(--border); }

/* ===========================
   LANDING PAGE
=========================== */
.lp-hero {
  background: linear-gradient(160deg, #0A0C0A 0%, #0F1A08 55%, #0A0C0A 100%);
  padding: 64px var(--section-px); position: relative; overflow: hidden;
}
.lp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 40px;
  min-height: 430px;
}
.lp-hero::after {
  content:''; position: absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(132,204,22,.06) 0%, transparent 70%);
}
.lp-hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(132,204,22,.12); color: var(--green); border: 1px solid rgba(132,204,22,.25); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.lp-hero h1 { font-family: var(--font-head); font-size: 52px; font-weight: 700; line-height: 1.07; margin-bottom: 14px; }
.lp-hero h1 em { color: var(--green); font-style: normal; }
.lp-hero p { color: var(--text-muted); font-size: 15px; line-height: 1.65; max-width: 420px; margin-bottom: 28px; }
.lp-hero-ctas { display: flex; gap: 12px; }
.lp-hero-img { position: relative; z-index: 1; }
.hero-coins { position: relative; width: 280px; height: 280px; }
.coin { position: absolute; border-radius: 50%; box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.hero-coins img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}


.hero-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(132,204,22,.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}


@keyframes floatB { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-12px)} }
@keyframes floatE { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatL { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.lp-stats {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}

.lp-stats-inner{
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.lp-stat{
    flex: 0 0 260px;
    padding: 18px 28px;
    border-right: 1px solid var(--border);
}

.lp-stat:first-child{
    padding-left: 0;
}

.lp-stat:last-child { border-right: none; }
.lp-stat .val { font-family: var(--font-head); font-size: 30px; font-weight: 700; }
.lp-stat .lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

.lp-section { padding: 56px var(--section-px); }
.lp-section-inner { max-width: var(--max-w); margin: 0 auto; }
.lp-section-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.lp-section-hdr h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.lp-section-hdr p { color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.lp-section-hdr a { color: var(--green); font-size: 13px; text-decoration: none; font-weight: 600; }


.lp-hero {
  background: linear-gradient(160deg, #0A0C0A 0%, #0F1A08 55%, #0A0C0A 100%);
  padding: 64px var(--section-px) 20px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.lp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 40px;
  min-height: 480px;
}

.lp-hero-img {
  position: relative;
  z-index: 3;
  align-self: end;
  transform: translateX(-20px);
}

.hero-coins{
    position:relative;
    width:400px;
    height:400px;

    transform:translate(0,-120px);
}

.hero-coins img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}

.hero-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(132,204,22,.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.lp-stats {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}
/* Market table */
.mkt-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.mkt-table th { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.mkt-table td { padding: 13px 16px; border-bottom: 1px solid rgba(38,38,38,.6); font-size: 13px; }
.mkt-table tr:last-child td { border-bottom: none; }
.mkt-table tr:hover td { background: rgba(255,255,255,.02); }
.mkt-table .trade-btn { background: none; border: 1px solid var(--border); color: var(--text); padding: 5px 14px; border-radius: 6px; font-size: 12px; cursor: pointer; font-family: var(--font-body); }
.mkt-table .trade-btn:hover { border-color: var(--green); color: var(--green); }

/* Dark bg sections */
.lp-dark-section { background: #080B08; padding: 56px var(--section-px); }
.lp-dark-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.lp-dark-section h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 6px; }
.lp-dark-section .sub { color: var(--text-muted); font-size: 14px; text-align: center; margin-bottom: 36px; }

.eco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.eco-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.eco-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 18px; }
.eco-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.eco-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.why-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.why-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(132,204,22,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 17px; }
.why-card h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.why-card p { color: var(--text-muted); font-size: 12px; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #000; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

.sec-section { padding: 56px var(--section-px); }
.sec-section-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sec-badge { background: rgba(132,204,22,.1); color: var(--green); border: 1px solid rgba(132,204,22,.2); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 14px; }
.sec-section h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.sec-section .desc { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
.sec-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.sec-feat { display: flex; gap: 10px; }
.sec-feat .feat-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sec-feat h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.sec-feat p { font-size: 12px; color: var(--text-muted); }
.sec-stats { display: flex; gap: 28px; }
.sec-stat .v { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--green); }
.sec-stat .l { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.sec-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sec-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sec-row:last-child { border-bottom: none; }

/* Footer */
.footer { background: #060806; border-top: 1px solid var(--border); padding: 48px var(--section-px) 24px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { color: var(--text-dim); font-size: 13px; line-height: 1.65; margin: 12px 0 16px; }
.social-row { display: flex; gap: 8px; }
.social-btn { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-muted); cursor: pointer; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 13px; margin-bottom: 9px; text-decoration: none; }
.footer-col a:hover { color: var(--text-muted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--text-dim); text-decoration: none; }

/* ===========================
   AUTH PAGES
=========================== */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--topbar-h)); }
.auth-left {
  background: linear-gradient(160deg, #060C06 0%, #030603 100%);
  padding: 56px 60px; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative; overflow: hidden;
}
.auth-left-img {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at center, #1a2a14 0%, #0a120a 60%, #030603 100%);
  border-radius: 16px; border: 1px solid #1a2a14;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; box-shadow: 0 0 80px rgba(0,0,0,.8), inset 0 0 40px rgba(0,0,0,.6);
}
.auth-left-content { position: relative; z-index: 2; }
.auth-left h2 { font-family: var(--font-head); font-size: 38px; font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.auth-left h2 em { color: var(--green); font-style: normal; }
.auth-left p { color: #888; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.auth-badges { display: flex; gap: 14px; }
.auth-badge { display: flex; align-items: center; gap: 6px; color: #888; font-size: 13px; }
.auth-right { background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-form { width: 100%; max-width: 390px; }
.auth-form h2 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.auth-form .sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.auth-link { color: var(--green); text-decoration: none; font-weight: 600; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.auth-footer { text-align: center; margin-top: 14px; display: flex; justify-content: center; gap: 16px; }
.auth-footer a { color: var(--text-dim); text-decoration: none; font-size: 12px; }
.forgot { font-size: 12px; color: var(--orange); text-decoration: none; }


.pwd-str { height: 3px; background: var(--border); border-radius: 2px; margin-top: 7px; overflow: hidden; }
.pwd-str-fill { height: 100%; width: 55%; background: linear-gradient(90deg, var(--orange), #FDE047, var(--green)); border-radius: 2px; }
.pwd-str-lbl { font-size: 11px; color: var(--orange); margin-top: 4px; }
.two-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-google { width: 100%; background: #fff; color: #333; border: none; padding: 11px; border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; }
.btn-google:hover { background: #f5f5f5; }

/* ===========================
   DASHBOARD
=========================== */


.chevron { color: var(--text-muted); }


/* ===========================
   WALLET
=========================== */


.w-btn { display: flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: var(--font-body); }
.w-btn.dep { background: var(--green); color: #000; }
.w-btn.wd, .w-btn.tr { background: var(--bg-card2); color: var(--text); border: 1px solid var(--border); }


/* ===========================
   BANK PAGE
=========================== */


.add-btn { color: var(--green); background: none; border: none; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); display: flex; align-items: center; gap: 4px; }


.sec-lbl { font-size: 10px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }


/* Referral card */
.ref-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.ref-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ref-hdr h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.ref-earn { color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-top: 3px; }
.ref-icon-card { width: 38px; height: 38px; background: rgba(249,115,22,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 19px; }
.ref-img { text-align: center; font-size: 52px; margin: 6px 0 14px; }
.ref-desc { color: var(--text-muted); font-size: 13px; text-align: center; margin-bottom: 14px; line-height: 1.55; }
.ref-link-box { display: flex; align-items: center; justify-content: space-between; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 9px 13px; margin-bottom: 11px; font-size: 13px; color: var(--text-muted); }

.invite-btn { width: 100%; background: var(--orange); color: #fff; border: none; padding: 11px; border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ===========================
   WITHDRAW
=========================== */


.hint { font-size: 12px; color: var(--text-dim); margin-bottom: 16px; margin-top: 3px; }


/* ===========================
   HISTORY
=========================== */


/* ===========================
   PROFILE
=========================== */


.upload-btn { background: var(--green); color: #000; border: none; padding: 7px 13px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
.remove-btn { background: none; border: none; color: var(--text-muted); font-size: 13px; cursor: pointer; font-family: var(--font-body); }


.shield-box { width: 34px; height: 34px; background: rgba(34,197,94,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }


.progress-bar { height: 5px; background: var(--border); border-radius: 3px; margin-bottom: 7px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 3px; }


/* ===========================
   FAQ / CONTACT / ABOUT
=========================== */
.pub-hero { padding: 64px var(--section-px); min-height: 260px; background: linear-gradient(160deg, #0A0C0A 0%, #0F1A08 60%, #0A0C0A 100%); }
.pub-hero-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.pub-hero h1 { font-family: var(--font-head); font-size: 44px; font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.pub-hero h1 em { color: var(--green); font-style: normal; }
.pub-hero p { color: var(--text-muted); font-size: 15px; line-height: 1.65; max-width: 440px; }
.pub-hero-ctas { margin-top: 22px; display: flex; gap: 12px; }

.faq-search-wrap { padding: 0 var(--section-px) 32px; }
.faq-search-box { display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 12px 18px; max-width: 520px; margin: 0 auto; }
.faq-search-box input { background: none; border: none; outline: none; color: var(--text); font-family: var(--font-body); font-size: 14px; flex: 1; }
.faq-cats { display: flex; justify-content: center; gap: 8px; padding: 0 var(--section-px) 28px; flex-wrap: wrap; }
.faq-cat { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); color: var(--text-muted); background: none; font-family: var(--font-body); }
.faq-cat.active { background: var(--green); color: #000; border-color: var(--green); }
.faq-list { max-width: 680px; margin: 0 auto; padding: 0 var(--section-px) 40px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 16px 18px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--green); }
.faq-plus { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--green); flex-shrink: 0; }
.faq-a { padding: 0 18px 14px; color: var(--text-muted); font-size: 13px; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.still-section { max-width: 680px; margin: 0 auto 56px; padding: 0 var(--section-px); }
.still-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 36px; text-align: center; }
.still-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 7px; }
.still-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.still-btns { display: flex; justify-content: center; gap: 11px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 var(--section-px) 56px; }
.contact-layout-inner { max-width: var(--max-w); margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.contact-card .cc-icon { width: 38px; height: 38px; background: rgba(132,204,22,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 12px; }
.contact-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.contact-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.contact-card a { color: var(--green); font-size: 13px; text-decoration: none; font-weight: 600; }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.cf-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.cf-hdr h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.c-input { width: 100%; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 7px; padding: 11px 13px; color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none; }
.c-input:focus { border-color: var(--green); }
.c-textarea { width: 100%; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 7px; padding: 11px 13px; color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none; resize: none; height: 90px; }

.about-content { padding: 56px var(--section-px); max-width: calc(var(--max-w) + var(--section-px) * 2); margin: 0 auto; }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 48px; }
.purpose-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.purpose-card .p-icon { font-size: 26px; margin-bottom: 12px; }
.purpose-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.purpose-card p { color: var(--text-muted); font-size: 13px; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-photo { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.team-info { padding: 13px 14px; }
.team-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.team-role { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ================================================
   MOBILE HAMBURGER MENU
================================================ */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--topbar-h); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 500; flex-direction: column;
  padding: 24px 20px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mob-nav-link {
  display: block; padding: 14px 0; font-size: 18px; font-weight: 600;
  color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
}
.mobile-menu .mob-nav-link:hover, .mobile-menu .mob-nav-link.active { color: var(--green); }
.mobile-menu .mob-auth { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* Sidebar mobile toggle */


/* Mobile bottom nav bar */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-2); border-top: 1px solid var(--border);
  z-index: 400; padding-top: 8px; padding-bottom: 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  -webkit-transform: translateZ(0); transform: translateZ(0);
}
.mobile-bottom-nav .mob-nav-items {
  display: flex; justify-content: space-around; align-items: center;
}
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 12px; cursor: pointer; color: var(--text-muted);
  font-size: 10px; font-weight: 600; font-family: var(--font-body);
  border: none; background: none; text-decoration: none;
}
.mob-nav-item.active { color: var(--green); }
.mob-nav-item svg { width: 20px; height: 20px; }

/* ================================================
   RESPONSIVE BREAKPOINTS
================================================ */

/* --- TABLET (max 1024px) --- */
@media (max-width: 1024px) {
  /* Public nav */
  .pub-nav { padding: 0 20px; gap: 16px; }
  .pub-nav .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  #pub-search-bar { display: none !important; }

  /* Landing hero */
  .lp-hero { padding: 40px 24px; }
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lp-hero h1 { font-size: 38px; }
  .lp-hero p { margin: 0 auto 24px; }
  .lp-hero-ctas { justify-content: center; }
  .lp-hero-img { display: none; }

  /* Stats */
  .lp-stats { padding: 0; }
  .lp-stat { padding: 20px 24px; }
  .lp-stat .val { font-size: 24px; }

  /* Sections */
  .lp-section { padding: 40px 24px; }
  .lp-dark-section { padding: 40px 24px; }
  .sec-section { padding: 40px 24px; }
  .sec-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Auth */
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { min-height: calc(100vh - 60px); }

  /* App sidebar — hide on tablet, use bottom nav */
  .sidebar { display: none; }
  .app-main { margin-left: 0; padding: 20px 20px 80px; }
  .mobile-bottom-nav { display: block; }

  /* App topbar */
  .app-topbar .topbar-search { display: none; }

  /* Dashboard grids */
  .dash-top { grid-template-columns: 1fr; }
  .dash-mid { grid-template-columns: 1fr; }
  .wallet-charts { grid-template-columns: 1fr; }
  .bank-grid { grid-template-columns: 1fr; }
  .wd-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }

  /* About/FAQ/Contact */
  .pub-hero { padding: 40px 24px; }
  .pub-hero-inner { flex-direction: column; gap: 20px; }
  .pub-hero h1 { font-size: 32px; }
  .contact-layout { padding: 0 32px 40px; grid-template-columns: 1fr; }
  .about-content { padding: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid { grid-template-columns: 1fr; }
  .faq-list { padding: 0 32px 32px; }
  .faq-cats { padding: 0 32px 20px; }
  .still-section { padding: 0 32px 40px; }
}

/* --- MOBILE (max 640px) --- */
@media (max-width: 640px) {
  :root { --topbar-h: 56px; }

  /* Nav */
  .pub-nav { padding: 0 16px; }
  #pub-auth-btns .btn-ghost { display: none; }
  
  #pub-auth-btns .btn-green { display: none; }

  /* Hero */
  .lp-hero { padding: 28px 16px; }
  .lp-hero h1 { font-size: 28px; }
  .lp-hero p { font-size: 14px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; }
  .lp-hero-ctas .btn { justify-content: center; }

  /* Stats — stack vertically */
	.lp-stats-inner {
		width: 100%;
		max-width: 100%;
		flex-direction: column;
	}
	
	.lp-stat {
		flex: none;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--border);
		padding: 20px;
	}
	
	.lp-stat:first-child {
		padding-left: 20px;
	}
	
	.lp-stat:last-child {
		border-bottom: none;
	}
	
	.lp-stat .val {
		font-size: 30px;
	}
	
	.lp-stat .lbl {
		font-size: 12px;
	}

  /* Sections */
  .lp-section { padding: 28px 16px; }
  .lp-dark-section { padding: 28px 16px; }
  .lp-section-hdr { flex-direction: column; gap: 4px; align-items: flex-start; }
  .eco-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .sec-section { padding: 32px 16px; }
  .sec-feat-grid { grid-template-columns: 1fr; }
  .sec-stats { flex-wrap: wrap; gap: 16px; }

  /* Markets table — hide some cols on mobile */
  .mkt-table th:nth-child(3),
  .mkt-table td:nth-child(3),
  .mkt-table th:nth-child(4),
  .mkt-table td:nth-child(4),
  .mkt-table th:nth-child(5),
  .mkt-table td:nth-child(5) { display: none; }

  /* Footer */
  .footer { padding: 28px 16px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Auth */
  .auth-right { padding: 24px 16px; }
  .auth-form { max-width: 100%; }
  .two-row { grid-template-columns: 1fr; }

  /* App topbar */
  .app-topbar { padding: 0 12px; gap: 10px; }
  .app-topbar .logo-area { flex: 1; }
  .balance-pill { font-size: 12px; padding: 6px 10px; }

  /* App main */
  .app-main { padding: 16px 16px 80px; }

  /* Earn banner */
  .earn-banner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .earn-banner-img { display: none; }

  /* Welcome card */
  .bal-val { font-size: 28px; }
  .dash-actions { flex-wrap: wrap; gap: 8px; }
  .dash-btn { flex: 1; justify-content: center; font-size: 12px; padding: 9px 12px; }

  /* Quick panel */
  .quick-panel { flex-direction: row; overflow-x: auto; border-radius: var(--radius); }
  .quick-row { flex-direction: column; min-width: 90px; padding: 12px 10px; text-align: center; }
  .quick-row + .quick-row { border-top: none; border-left: 1px solid var(--border); }
  .quick-row-left { flex-direction: column; gap: 6px; align-items: center; }
  .chevron { display: none; }

  /* Portfolio donut */
  .donut-wrap { flex-direction: column; align-items: center; }

  /* Market table mini */
  .mkt-mini th:nth-child(4), .mkt-mini td:nth-child(4) { display: none; }

  /* Wallet top */
  .wallet-top-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wallet-btns { flex-wrap: wrap; }
  .w-btn { flex: 1; justify-content: center; }
  .wallet-bal .val { font-size: 26px; flex-wrap: wrap; }
  .wallet-bal .sub { flex-direction: column; gap: 4px; }

  /* Assets table — 3 cols (Asset, Balance, Actions); keep all, tighten + stack actions */
  .assets-table th, .assets-table td { padding: 11px 6px; }
  .asset-acts { flex-direction: column; gap: 6px; align-items: stretch; }
  .asset-act { width: 100%; padding: 7px 10px; }
  .assets-hdr { flex-wrap: wrap; gap: 10px; }
  .assets-hdr > div { flex-wrap: wrap; }

  /* History table */
  .hist-table th:nth-child(4),
  .hist-table td:nth-child(4),
  .hist-table th:nth-child(5),
  .hist-table td:nth-child(5) { display: none; }
  .history-toolbar { flex-wrap: wrap; gap: 8px; }
  .history-toolbar > div { flex: 1; min-width: 120px; }
  .export-btn { width: 100%; justify-content: center; }

  /* Bank page */
  .banks-grid { grid-template-columns: repeat(2, 1fr); }
  .bank-grid { grid-template-columns: 1fr; }

  /* Withdraw */
  .wd-grid { grid-template-columns: 1fr; }
  .addr-row { flex-direction: row; }

  /* Profile */
  .profile-grid { grid-template-columns: 1fr; }
  .prof-top { flex-wrap: wrap; }
  .two-row { grid-template-columns: 1fr; }

  /* About */
  .pub-hero { padding: 28px 16px; }
  .pub-hero h1 { font-size: 26px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-content { padding: 20px 16px; }
  .purpose-grid { grid-template-columns: 1fr; }

  /* FAQ / Contact */
  .faq-list { padding: 0 16px 28px; }
  .faq-cats { padding: 0 16px 18px; flex-wrap: wrap; }
  .still-section { padding: 0 16px 32px; }
  .still-btns { flex-direction: column; }
  .contact-layout { padding: 0 16px 32px; }
  .cf-hdr { flex-direction: column; gap: 8px; align-items: flex-start; }
  .cf-row { grid-template-columns: 1fr; }

  /* Pagination */
  .pagination { flex-direction: column; gap: 10px; align-items: flex-start; }
}


/* ================================================
   LIGHT MODE THEME
================================================ */
:root.light {
  --bg:          #F5F6F5;
  --bg-2:        #FFFFFF;
  --bg-card:     #FFFFFF;
  --bg-card2:    #F0F1F0;
  --border:      #E2E4E2;
  --text:        #0A0C0A;
  --text-2:      #1A1C1A;
  --text-muted:  #5A6470;
  --text-dim:    #8A929C;
  --text-slate:  #6B7280;
}

/* Light mode surface overrides */
:root.light body { background: var(--bg); }
:root.light .pub-nav { background: rgba(245,246,245,.96); }
:root.light .app-topbar { background: var(--bg-2); }
:root.light .sidebar { background: var(--bg-2); }
:root.light .mobile-bottom-nav { background: var(--bg-2); }
:root.light .mobile-menu { background: var(--bg-2); }

/* Light mode hero & sections */
:root.light .lp-hero {
  background: linear-gradient(160deg, #F5F6F5 0%, #EAF2D8 55%, #F5F6F5 100%);
}
:root.light .lp-dark-section { background: #ECEEED; }
:root.light .auth-left {
  background: linear-gradient(160deg, #D8EDBE 0%, #C5E2A0 100%);
}
:root.light .auth-left h2 { color: #0A0C0A; }
:root.light .auth-left p { color: #3a4a2a; }
:root.light .auth-left-img { background: radial-gradient(ellipse at center, #b8d890 0%, #8ab860 60%, #6a9840 100%); }
:root.light .footer { background: #ECEEED; }
:root.light .sec-section { background: var(--bg); }

/* Light mode card inputs */
:root.light .input { background: #F0F1F0; }
:root.light .select { background: #F0F1F0; }
:root.light .topbar-search { background: #F0F1F0; }
:root.light .bank-search-box { background: #F0F1F0; }
:root.light .asset-search { background: #F0F1F0; }
:root.light .filter-pill { background: #F0F1F0; color: var(--text); }
:root.light .coin-sel { background: #F0F1F0; }
:root.light .amount-box { background: #F0F1F0; }
:root.light .fee-box { background: #F0F1F0; }
:root.light .linked-acc { background: #F0F1F0; }
:root.light .faq-item { background: #FFFFFF; }
:root.light .contact-card { background: #FFFFFF; }
:root.light .eco-card { background: #FFFFFF; }
:root.light .why-card { background: #F0F1F0; }
:root.light .step-card { background: #FFFFFF; }
:root.light .sec-panel { background: #FFFFFF; }
:root.light .still-card { background: #FFFFFF; }
:root.light .contact-form-card { background: #FFFFFF; }
:root.light .c-input { background: #F0F1F0; }
:root.light .c-textarea { background: #F0F1F0; }
:root.light .ref-link-box { background: #F0F1F0; }
:root.light .quick-panel { background: #FFFFFF; }
:root.light .quick-row:hover { background: rgba(0,0,0,.03); }
:root.light .pub-hero { background: linear-gradient(160deg, #F5F6F5 0%, #EAF2D8 60%, #F5F6F5 100%); }
:root.light .about-hero { background: linear-gradient(160deg, #F5F6F5 0%, #EAF2D8 60%, #F5F6F5 100%); }
:root.light .next-steps-box { background: rgba(0,0,0,.04); }
:root.light .earn-banner { background: linear-gradient(135deg, #EAF2D8 0%, #FFFFFF 100%); }
:root.light .kyc-level { background: #F0F1F0; }
:root.light .balance-pill { background: #F0F1F0; }

/* Light mode mkt table */
:root.light .mkt-table { background: #FFFFFF; }
:root.light .mkt-table td { color: var(--text); }
:root.light .mkt-table tr:hover td { background: #F5F6F5; }
:root.light .hist-table tr:hover td { background: #F5F6F5; }
:root.light .assets-table tr td { color: var(--text); }

/* Smooth transitions for all themeable elements */
body, .pub-nav, .app-topbar, .sidebar, .card, .mobile-bottom-nav,
.lp-hero, .lp-dark-section, .auth-left, .footer, .input, .select,
.topbar-search, .balance-pill, .mkt-table, .eco-card, .why-card,
.step-card, .sec-panel, .faq-item, .contact-card, .contact-form-card,
.ref-link-box, .quick-panel, .quick-row, .earn-banner, .kyc-level,
.linked-acc, .coin-sel, .amount-box, .fee-box, .asset-search,
.bank-search-box, .filter-pill, .still-card, .next-steps-box {
  transition: background .25s ease, border-color .25s ease, color .2s ease;
}

/* ================================================
   THEME TOGGLE BUTTON
================================================ */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--green); }


/* ================================================
   CUSTOM DROPDOWN (Withdraw page)
================================================ */


/* Light mode overrides */
:root.light .dd-trigger { background: #F0F1F0; }
:root.light .dd-menu { background: #FFFFFF; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
:root.light .dd-option:hover { background: rgba(132,204,22,.06); }
:root.light .dd-option.selected { background: rgba(132,204,22,.1); }

/* Mobile responsive */


/* ================================================
   USER PROFILE DROPDOWN (App topbar)
================================================ */


@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Header section */


/* Menu items */


/* Light mode */
:root.light .user-dropdown { box-shadow: 0 12px 32px rgba(0,0,0,.15); }
:root.light .user-avatar { background: linear-gradient(135deg, #D8EDBE, #C5E2A0); }
:root.light .ud-avatar-lg { background: linear-gradient(135deg, #D8EDBE, #C5E2A0); }
:root.light .ud-item:hover { background: rgba(0,0,0,.04); }

/* Mobile — full width dropdown */


/* Step icon */
.step-icon { margin-bottom: 14px; }

/* Security feat icon */
.sec-feat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(132,204,22,.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

/* lp-dark-section text-align fix */
.lp-dark-section h2, .lp-dark-section .sub { text-align: center; }
.lp-dark-inner { text-align: center; }
.lp-dark-inner .eco-grid, .lp-dark-inner .steps-grid { text-align: left; }

/* Responsive fixes for new containers */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .sec-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .pub-nav-inner { width: 100%; }
  .lp-stats-inner { flex-direction: row; }
}
@media (max-width: 640px) {
  .hero-coins { width: 200px; height: 200px; display: none; }
  .lp-stats-inner { flex-direction: column; }
}


/* ================================================
   ABOUT PAGE
================================================ */

/* Hero */
.about-hero {
  background: linear-gradient(160deg, #0A0C0A 0%, #0F1A08 55%, #0A0C0A 100%);
  padding: 64px var(--section-px);
  position: relative; overflow: hidden;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(132,204,22,.06) 0%, transparent 70%);
}
.about-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px; position: relative; z-index: 1;
}
.about-hero-content h1 {
  font-family: var(--font-head); font-size: 48px; font-weight: 700;
  line-height: 1.08; margin-bottom: 14px;
}
.about-hero-content h1 em { color: var(--green); font-style: normal; }
.about-hero-content p {
  color: var(--text-muted); font-size: 15px; line-height: 1.65;
  max-width: 420px; margin-bottom: 28px;
}

/* Hand + coins visual */
.about-hero-img { position: relative; z-index: 1; }
.hand-coins { position: relative; width: 260px; height: 280px; }
.hc-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(132,204,22,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hc-coins { position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.hc-coin { position: absolute; border-radius: 50%; filter: drop-shadow(0 6px 16px rgba(0,0,0,.5)); }
.hc-btc { top: 0; left: 50%; transform: translateX(-50%); animation: hcFloat1 3.5s ease-in-out infinite; }
.hc-eth { top: 55px; left: 10px; animation: hcFloat2 3.5s ease-in-out infinite .7s; }
.hc-ltc { top: 40px; right: 0; animation: hcFloat3 3.5s ease-in-out infinite 1.4s; }
.hc-hand { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); opacity: .7; }
@keyframes hcFloat1 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes hcFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes hcFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Purpose section */
.about-purpose {
  padding: 64px var(--section-px);
  background: var(--bg);
}
.about-inner { max-width: var(--max-w); margin: 0 auto; }
.about-section-hdr { text-align: center; margin-bottom: 40px; }
.about-section-hdr h2 {
  font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 8px;
}
.about-section-hdr p { color: var(--text-muted); font-size: 14px; }

.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.purpose-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.purpose-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.purpose-card h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px;
}
.purpose-card p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }

/* Team section */
.about-team {
  padding: 56px var(--section-px) 64px;
  background: var(--bg);
}
.team-hdr {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px;
}
.team-hdr h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.team-hdr p { color: var(--text-muted); font-size: 14px; }
.team-join-link { color: var(--green); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.team-join-link:hover { text-decoration: underline; }

.team-grid-about {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.team-card-about {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.team-card-about:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.team-photo-about {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.team-photo-about svg { position: absolute; bottom: 0; }
.team-info-about { padding: 14px 16px; }
.team-name-about {
  font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 3px;
}
.team-role-about { font-size: 12px; color: var(--text-muted); }
.team-role-about.green-role { color: var(--green); }

/* Light mode */
:root.light .about-hero { background: linear-gradient(160deg, #F0F5EE 0%, #E0EDD5 55%, #F0F5EE 100%); }
:root.light .about-hero-content h1 { color: #0A0C0A; }
:root.light .about-hero-content p { color: #5A6470; }
:root.light .purpose-card { background: #fff; }
:root.light .team-card-about { background: #fff; }
:root.light .team-photo-about { filter: brightness(1.1); }

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { display: flex; justify-content: center; }
  .about-hero-content h1 { font-size: 36px; }
  .team-grid-about { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-hero { padding: 32px 16px; }
  .about-hero-content h1 { font-size: 28px; }
  .hand-coins { width: 200px; height: 220px; }
  .hc-btc svg { width: 70px; }
  .hc-eth svg { width: 60px; }
  .hc-ltc svg { width: 50px; }
  .about-purpose { padding: 40px 16px; }
  .about-team { padding: 36px 16px 48px; }
  .team-hdr { flex-direction: column; align-items: flex-start; gap: 8px; }
  .team-grid-about { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-name-about { font-size: 13px; }
  .team-role-about { font-size: 11px; }
  .purpose-grid { grid-template-columns: 1fr; gap: 12px; }
}


/* ================================================
   FAQ PAGE — REDESIGNED
================================================ */

/* Hero */
.faq-hero-section {
  padding: 64px var(--section-px) 40px;
  background: var(--bg); text-align: center;
}
.faq-hero-inner { max-width: 640px; margin: 0 auto; }
.faq-hero-inner h1 {
  font-family: var(--font-head); font-size: 40px; font-weight: 700;
  margin-bottom: 10px;
}
.faq-hero-inner p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
.faq-search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 13px 20px;
  max-width: 560px; margin: 0 auto;
  transition: border-color .2s;
}
.faq-search-box:focus-within { border-color: var(--green); }
.faq-search-box input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 14px; flex: 1;
}
.faq-search-box input::placeholder { color: var(--text-dim); }

/* Tabs */
.faq-tabs-wrap { padding: 0 var(--section-px) 32px; }
.faq-tabs-inner { max-width: 640px; margin: 0 auto; }
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.faq-tab {
  padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); color: var(--text-muted);
  background: none; font-family: var(--font-body); transition: all .15s;
}
.faq-tab:hover { border-color: var(--text-muted); color: var(--text); }
.faq-tab.active { background: var(--green); color: #000; border-color: var(--green); }

/* FAQ Body */
.faq-body { padding: 0 var(--section-px); }
.faq-body-inner { max-width: 640px; margin: 0 auto; }

/* FAQ Panel (one per tab) */
.faq-panel { display: none; }
.faq-panel.active { display: block; }

/* FAQ Items */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  cursor: pointer; transition: border-color .15s;
}
.faq-item:hover { border-color: rgba(132,204,22,.3); }
.faq-item.open { border-color: rgba(132,204,22,.25); }

.faq-q {
  padding: 18px 20px; font-size: 14px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.faq-q span { flex: 1; }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--green); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all .2s;
}
.faq-plus-icon {
  color: var(--green); font-size: 18px; font-weight: 400; line-height: 1;
  transition: transform .25s ease;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.faq-item.open .faq-plus-icon { transform: rotate(45deg); }
.faq-item.open .faq-icon { background: rgba(132,204,22,.1); border-color: var(--green); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px; color: var(--text-muted); font-size: 13px; line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* Still have questions */
.faq-still-wrap { padding: 36px var(--section-px) 56px; }
.faq-still-inner { max-width: 640px; margin: 0 auto; }
.still-card-new {
  padding: 44px 40px; border-radius: 16px; text-align: center;
  /* Glassmorphism / shiny transparent background from Figma */
  background: linear-gradient(135deg, rgba(30,35,28,.9) 0%, rgba(20,26,18,.95) 100%);
  border: 1px solid rgba(132,204,22,.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 20px 60px rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.06) inset;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.still-card-new::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,.4), transparent);
}
.still-card-new::after {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse at center, rgba(132,204,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.still-card-new h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.still-card-new p {
  color: var(--text-muted); font-size: 14px; line-height: 1.65;
  margin-bottom: 26px; position: relative; z-index: 1;
}
.still-btns-new {
  display: flex; justify-content: center; gap: 12px; position: relative; z-index: 1;
}

/* Light mode */
:root.light .faq-hero-section { background: var(--bg); }
:root.light .faq-search-box { background: #fff; }
:root.light .faq-tab { background: #fff; }
:root.light .faq-item { background: #fff; }
:root.light .still-card-new {
  background: linear-gradient(135deg, rgba(235,245,225,.95) 0%, rgba(220,238,205,.98) 100%);
  border-color: rgba(132,204,22,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.08), 0 1px 0 rgba(255,255,255,.8) inset;
}
:root.light .still-card-new::before {
  background: linear-gradient(90deg, transparent, rgba(132,204,22,.5), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-hero-section { padding: 48px 24px 32px; }
  .faq-tabs-wrap { padding: 0 24px 24px; }
  .faq-body { padding: 0 24px; }
  .faq-still-wrap { padding: 28px 24px 48px; }
}
@media (max-width: 640px) {
  .faq-hero-section { padding: 36px 16px 28px; }
  .faq-hero-inner h1 { font-size: 28px; }
  .faq-tabs-wrap { padding: 0 16px 20px; }
  .faq-tabs { gap: 6px; }
  .faq-tab { font-size: 13px; padding: 7px 14px; }
  .faq-body { padding: 0 16px; }
  .faq-still-wrap { padding: 24px 16px 40px; }
  .still-card-new { padding: 32px 24px; }
  .still-btns-new { flex-direction: column; align-items: stretch; }
  .still-btns-new .btn { justify-content: center; }
}


/* ================================================
   CONTACT PAGE — REDESIGNED
================================================ */
.contact-hero-section {
  padding: 64px var(--section-px) 48px;
  text-align: center; background: var(--bg);
}
.contact-hero-section h1 {
  font-family: var(--font-head); font-size: 42px; font-weight: 700; margin-bottom: 10px;
}
.contact-hero-section p { color: var(--text-muted); font-size: 15px; }

.contact-page-layout { padding: 0 var(--section-px) 64px; background: var(--bg); }
.contact-page-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 24px; align-items: start;
}

/* Info cards */
.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}

.contact-info-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.contact-info-card a { color: var(--green); font-size: 13px; text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { text-decoration: underline; }

/* Form card */
.contact-form-col {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.contact-form-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.contact-form-hdr h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; }

.cf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field { margin-bottom: 14px; }
.cf-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.cf-input {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px;
  color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .15s;
}
.cf-input:focus { border-color: var(--green); }
.cf-input::placeholder { color: var(--text-dim); }
.cf-select-wrap { position: relative; }
.cf-select { appearance: none; padding-right: 36px; cursor: pointer; }
.cf-select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.cf-textarea { resize: none; height: 110px; }

/* Light mode */
:root.light .contact-info-card { background: #fff; }
:root.light .contact-form-col { background: #fff; }
:root.light .cf-input { background: #F0F1F0; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-page-inner { grid-template-columns: 1fr; }
  .contact-hero-section { padding: 48px 24px 36px; }
  .contact-page-layout { padding: 0 24px 48px; }
}
@media (max-width: 640px) {
  .contact-hero-section { padding: 36px 16px 28px; }
  .contact-hero-section h1 { font-size: 30px; }
  .contact-page-layout { padding: 0 16px 36px; }
  .cf-two-col { grid-template-columns: 1fr; }
  .contact-form-hdr { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ================================================
   AUTH PAGES — LOGIN & SIGNUP (REDESIGNED)
================================================ */

/* Outer wrap */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--topbar-h));
}

/* LEFT SIDE — vault + text */
.auth-left {
  background: linear-gradient(175deg, #060C06 0%, #030603 100%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.vault-img-area {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px 50px 20px;
}
.vault-box { width: 100%; max-width: 300px; }
.auth-left-content {
  padding: 20px 48px 48px; position: relative; z-index: 2;
}
.auth-left-content h2 {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  line-height: 1.15; margin-bottom: 12px; color: #fff;
}
.auth-left-content h2 em { color: var(--green); font-style: normal; }
.auth-left-content p { color: #888; font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.auth-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.auth-badge { display: flex; align-items: center; gap: 6px; color: #888; font-size: 12px; }

/* RIGHT SIDE — form */
.auth-right {
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 40px;
}
.auth-right-scroll { align-items: flex-start; overflow-y: auto; padding-top: 40px; }

/* Form card — the dark floating card from Figma */
.auth-form-card {
  width: 100%; max-width: 360px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
}
.auth-form-card-lg { max-width: 400px; padding: 28px 26px; }
.auth-form-card h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 5px; }
.auth-form-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }

/* Auth fields */
.af-field { margin-bottom: 14px; }
.af-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.af-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.af-label-row label { font-size: 13px; font-weight: 500; }
.af-forgot { font-size: 12px; color: var(--orange); text-decoration: none; }

.af-input-icon { position: relative; }
.af-input-icon svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.af-input-icon input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 13px 11px 38px;
  color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none;
}
.af-input-icon input:focus { border-color: var(--green); }
.af-input-icon input::placeholder { color: var(--text-dim); }

.af-input-eye { position: relative; }
.af-input-eye input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 40px 11px 13px;
  color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none;
}
.af-input-eye input:focus { border-color: var(--green); }
.af-eye-btn {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 2px; color: var(--text-dim);
}

.af-plain-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 13px;
  color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none;
}
.af-plain-input:focus { border-color: var(--green); }
.af-plain-input::placeholder { color: var(--text-dim); }

.af-select { appearance: none; cursor: pointer; padding-right: 32px; }
.af-select-wrap { position: relative; }
.af-sel-arrow { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); pointer-events: none; }

/* Phone prefix */
.af-phone-wrap { display: flex; gap: 8px; }
.af-phone-pre {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 12px;
  font-size: 13px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.af-flag-box { width: 18px; height: 14px; background: #555; border-radius: 2px; }
.af-phone-wrap .af-plain-input { flex: 1; }

/* Password strength */
/* pwd bar replaced by segmented version */

/* Checkboxes */
.af-check-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; }
.af-check-row input { margin-top: 2px; accent-color: var(--green); }
.af-check-row label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.af-check-row a { color: var(--green); text-decoration: none; }

/* Submit button */
.af-submit { padding: 12px; font-size: 15px; font-weight: 700; justify-content: center; border-radius: var(--radius); }

/* Divider */
.af-divider {
  text-align: center; color: var(--text-muted); font-size: 13px;
  margin: 16px 0; position: relative;
}
.af-divider::before, .af-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 38%; height: 1px; background: var(--border);
}
.af-divider::before { left: 0; }
.af-divider::after { right: 0; }

/* Google button */
.af-google-btn {
  width: 100%; background: #fff; color: #333; border: none;
  padding: 12px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-bottom: 14px;
}
.af-google-btn:hover { background: #f5f5f5; }

/* Two column row in signup */
.af-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Switch line */
.af-switch { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.af-switch a { color: var(--green); text-decoration: none; font-weight: 600; }

/* Sub footer links inside form */
.af-sub-links { display: flex; justify-content: center; gap: 16px; }
.af-sub-links a { color: var(--text-dim); font-size: 12px; text-decoration: none; }
.af-sub-links a:hover { color: var(--text-muted); }

/* Auth page bottom footer */
.auth-page-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 14px var(--section-px);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-dim);
}
.auth-footer-links-row { display: flex; gap: 16px; }
.auth-footer-links-row a { color: var(--text-dim); text-decoration: none; }
.auth-footer-links-row a:hover { color: var(--text-muted); }

/* Light mode */
:root.light .auth-left { background: linear-gradient(175deg, #E8F5D8 0%, #D8EDBE 100%); }
:root.light .auth-left-content h2 { color: #0A0C0A; }
:root.light .auth-left-content p { color: #4a5a3a; }
:root.light .auth-right { background: var(--bg); }
:root.light .auth-form-card { background: #fff; }
:root.light .af-input-icon input { background: #F0F1F0; }
:root.light .af-input-eye input { background: #F0F1F0; }
:root.light .af-plain-input { background: #F0F1F0; }
:root.light .af-phone-pre { background: #F0F1F0; }

/* Responsive */
@media (max-width: 1024px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { min-height: calc(100vh - var(--topbar-h)); padding: 32px 20px; align-items: center; }
  .auth-right-scroll { align-items: center; }
  .auth-form-card { max-width: 420px; }
  .auth-page-footer { padding: 14px 20px; }
}
@media (max-width: 640px) {
  .auth-right { padding: 24px 16px; }
  .auth-form-card { padding: 24px 18px; }
  .af-two-col { grid-template-columns: 1fr; }
  .auth-page-footer { flex-direction: column; gap: 8px; text-align: center; }
  .auth-footer-links-row { flex-wrap: wrap; justify-content: center; }
}


/* ================================================
   PASSWORD STRENGTH METER
================================================ */
.pwd-strength-wrap {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.pwd-seg-bar {
  display: flex; gap: 4px; flex: 1;
}
.pwd-seg {
  flex: 1; height: 4px; border-radius: 3px;
  background: var(--border); transition: background .3s ease;
}
.pwd-strength-lbl {
  font-size: 12px; font-weight: 700; white-space: nowrap;
  min-width: 64px; text-align: right; transition: color .3s;
}

/* Requirements list — hidden until typing */
.pwd-reqs {
  display: none; flex-direction: column; gap: 5px;
  margin-top: 10px; padding: 12px 14px;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pwd-req {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); transition: color .2s;
}
.req-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--text-dim); flex-shrink: 0;
  transition: all .2s;
}
.pwd-req.req-met { color: var(--green); }
.pwd-req.req-met .req-dot {
  background: var(--green); border-color: var(--green);
}
.pwd-req.req-unmet { color: var(--text-muted); }
.pwd-req.req-unmet .req-dot {
  background: none; border-color: var(--text-dim);
}

/* Light mode */
:root.light .pwd-reqs { background: #F0F1F0; }


/* ================================================
   SWAP PAGE
================================================ */


/* Main card */


/* FROM / TO blocks */


/* Amount input */


/* hide number spinners */


/* To amount display */


/* Coin selector pill */


/* Balance footer */


/* Toggle direction button */


/* Fee row */


/* You receive box */


/* Proceed button */


/* Coin dropdown overlay */


/* Coin dropdown panel — centered modal */


/* modalIn replaced by CSS transition */


/* Light mode */
/* LIGHT MODE — use site card style, no purple */
:root.light .swap-card {
  background: #FFFFFF;
  border: 1px solid #E2E4E2;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
:root.light .swap-block {
  background: #F5F6F5;
  border: 1px solid #E2E4E2;
}
:root.light .swap-block-label { color: #6B7280; }
:root.light .swap-amount-input { color: #9CA3AF; }
:root.light .swap-amount-input:focus { color: #0A0C0A; }
:root.light .swap-amount-input::placeholder { color: #C4C9C4; }
:root.light .swap-to-amount { color: #9CA3AF; }
:root.light .swap-coin-sel {
  background: #FFFFFF; border: 1px solid #E2E4E2; color: #0A0C0A;
}
:root.light .swap-coin-sel:hover { background: #F5F6F5; }
:root.light .swap-coin-ticker { color: #0A0C0A; }
:root.light .swap-coin-sel svg { color: #6B7280; }
:root.light .swap-balance { color: #6B7280; }
:root.light .swap-balance strong { color: #0A0C0A; }
:root.light .swap-toggle-btn {
  background: #F5F6F5; border: 1px solid #E2E4E2; color: #374151;
}
:root.light .swap-toggle-btn:hover {
  background: #84CC16; border-color: #84CC16; color: #000;
}
:root.light .swap-fee-row { color: #6B7280; }
:root.light .swap-fee-row strong { color: #0A0C0A; }
:root.light .swap-receive-box { background: #F5F6F5; border: 1px solid #E2E4E2; }
:root.light .swap-receive-label { color: #6B7280; }
:root.light .swap-receive-val { color: #0A0C0A; }

/* Light mode dropdown — dark modal looks good on any bg */
:root.light .swap-dd { background: #1E1A2E; border-color: rgba(130,90,200,.35); }
:root.light .swap-dd-search { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }

/* Responsive */


/* ================================================
   SWAP SUMMARY MODAL
================================================ */


/* Header */


/* Body */


/* Coin flow visual */


/* Details rows */


/* Notice */


/* Buttons */


/* Light mode */
:root.light .swap-summary-modal { background: #fff; }
:root.light .ssm-flow { background: linear-gradient(135deg, rgba(132,204,22,.07), rgba(132,204,22,.03)); }
:root.light .ssm-row { border-bottom-color: rgba(0,0,0,.05); }

/* Mobile */


/* ================================================
   SIDEBAR TRADE DROPDOWN
================================================ */


/* Sub-menu */


/* Light mode */
:root.light .nav-trade-wrap.trade-open .nav-trade-toggle { background: rgba(132,204,22,.08); }
:root.light .nav-sub-item:hover { background: rgba(0,0,0,.04); }
:root.light .nav-sub-item.active { background: rgba(132,204,22,.1); }


/* ================================================
   SELL PAGE
================================================ */

/* Header */


.ss-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); }
.ss-lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* Coin Grid */


/* Sell form header */


/* Form layout */


/* Main form card */


/* Info row */


/* Amount section */


/* Naira section */


/* Bank notice */


/* Footer */


/* Side card */


/* Light mode */
:root.light .sell-coin-card { background: #fff; }
:root.light .sell-coin-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
:root.light .sell-form-card { background: #fff; }
:root.light .sell-side-card { background: #fff; }
:root.light .sf-input { background: #F5F6F5; }
:root.light .sf-ngn-box { background: #F5F6F5; border-color: #E2E4E2; }
:root.light .sf-amount-left input, :root.light .sf-amount-right input { background: #F5F6F5; }
:root.light .sf-coin-pill { background: #F5F6F5; }
:root.light .sf-swap-icon { background: #F5F6F5; }

/* Responsive */


/* Sell input with Max + coin pill inside */


/* Sell summary hero */


/* Light mode */
:root.light .sf-input-wrap { background: #F5F6F5; }
:root.light .sf-input-wrap .sf-coin-pill { background: #fff; }


/* ================================================
   PAY BILLS PAGE
================================================ */


/* Light mode */
:root.light .bill-card { background: #fff; }
:root.light .bill-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
:root.light .bills-balance-pill { background: #fff; }

/* Responsive */


/* ================================================
   WITHDRAWAL PAGE (Naira + Crypto progressive form)
================================================ */


/* Side card stretches to match the form height and pushes balance box to bottom */


/* Select */
.wd2-select-wrap { position: relative; }
.wd2-select {
  width: 100%; appearance: none; cursor: pointer;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 40px 12px 14px;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .15s;
}
.wd2-select:focus { border-color: var(--green); }
.wd2-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }


/* Text input */


/* Money box (₦/ticker prefix + input + optional Max) */


/* Proceed button */


/* Warning notice */


/* Light mode */
:root.light .wd-card { background: #fff; }
:root.light .wd2-select, :root.light .wd2-input, :root.light .wd2-money-box { background: #F5F6F5; }
:root.light .wd2-money-pre { background: #ECEEEC; }

/* Responsive */


/* ================================================
   WITHDRAWAL SECURITY VERIFICATION STEP
================================================ */


/* Resend row */


/* Light mode */
:root.light .wd-verify-input { background: #F5F6F5; }


/* ================================================
   WALLET PAGE REWORK
================================================ */


/* Asset sort button */


/* Asset action buttons */


/* ===== DEPOSIT MODAL ===== */


/* Generate address box */


/* Light mode */
:root.light .asset-sort-btn, :root.light .asset-act.wd { background: #F5F6F5; }
:root.light .dep-balance, :root.light .dep-addr-box, :root.light .dep-gen-box, :root.light .dep-net-pill { background: #F5F6F5; }

/* Responsive */


/* ================================================
   DEPOSIT NGN PAGE
================================================ */


/* Bank details card */


/* Light mode */
:root.light .wd2-back-btn { background: #F5F6F5; }
:root.light .dngn-bank-card { background: #fff; }


/* ===== BUY PAGE extras ===== */


/* Buy: Naira equiv box with Max inside */


/* ================================================
   BANK ACCOUNTS PAGE
================================================ */


@keyframes bankspin { to { transform: rotate(360deg); } }

/* Toggle switch */


/* Saved accounts */


/* Light mode */
:root.light .bank-toggle, :root.light .bank-count-pill, :root.light .bank-mini-btn { background: #F5F6F5; }
:root.light .bank-acct-row, :root.light .bank-empty { background: #fff; }

/* Responsive */


/* ================================================
   2FA SETUP PAGE + PROFILE SECURITY
================================================ */


/* Light mode */
:root.light .sec2fa-row { background: #F5F6F5; }


/* ================================================
   IDENTITY VERIFICATION (Profile fields + badges)
================================================ */


/* Validate Mobile — phone input with flag */


:root.light .vphone-flag { background: #F5F6F5; }


/* BVN verified success box */


/* ================================================
   KYC PAGE
================================================ */


:root.light .kyc-bvn-banner, :root.light .kyc-drop { background: #F5F6F5; }


/* ================================================
   DASHBOARD ENHANCEMENTS
================================================ */
.badge-red { background: rgba(239,68,68,.15); color: var(--negative); }

/* Stat strip under balance */


/* Right column wrapper */


/* Setup checklist card */


/* Live badge with pulse */


@keyframes livepulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }

:root.light .setup-card { background: #fff; }
:root.light .setup-bar { background: #F0F1F0; }

/* Responsive */


/* ================================================
   MOBILE "MORE" SHEET
================================================ */
.mob-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 998;
}
.mob-sheet-overlay.open { opacity: 1; pointer-events: auto; }
.mob-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-radius: 20px 20px 0 0; padding: 10px 18px calc(18px + env(safe-area-inset-bottom));
  transform: translateY(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  max-height: 80vh; overflow-y: auto;
}
.mob-sheet.open { transform: translateY(0); }
.mob-sheet-handle { width: 40px; height: 4px; border-radius: 50px; background: var(--text-dim); margin: 6px auto 14px; }
.mob-sheet-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.mob-sheet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mob-sheet-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 8px; font-size: 12px; font-weight: 600; color: var(--text);
  cursor: pointer; text-decoration: none; transition: all .15s; text-align: center;
}
.mob-sheet-item:hover, .mob-sheet-item:active { border-color: var(--green); color: var(--green); }
.mob-sheet-item.danger:hover, .mob-sheet-item.danger:active { border-color: var(--negative); color: var(--negative); }
.msi-ic { font-size: 20px; line-height: 1; }
/* Only show the sheet machinery on mobile widths */
@media (min-width: 1025px) {
  .mob-sheet, .mob-sheet-overlay { display: none !important; }
}
:root.light .mob-sheet { background: #fff; }
:root.light .mob-sheet-item { background: #F5F6F5; }


/* ================================================
   LANDING BUY/SELL CALCULATOR
================================================ */
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calc-left { min-width: 0; }
.calc-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--green); margin-bottom: 12px; }
.calc-left-title { font-family: var(--font-head); font-size: 32px; font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.calc-left-sub { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 26px; max-width: 440px; }
.calc-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.calc-benefit { display: flex; align-items: flex-start; gap: 13px; }
.calc-benefit-ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.calc-benefit-t { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.calc-benefit-d { font-size: 13px; color: var(--text-muted); }
.calc-trust { display: flex; align-items: center; gap: 0; padding-top: 22px; border-top: 1px solid var(--border); }
.calc-trust-item { flex: 1; }
.calc-trust-val { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text); }
.calc-trust-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.calc-trust-div { width: 1px; height: 34px; background: var(--border); }
.calc-card {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 16px; padding: 26px;
}
.calc-toggle {
  display: flex; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; margin-bottom: 20px;
}
.calc-tab {
  flex: 1; padding: 11px; border: none; background: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  color: var(--text-muted); border-radius: 7px; transition: all .15s;
}
.calc-tab.active { background: var(--green); color: #000; }
.calc-field { margin-bottom: 18px; }
.calc-lbl { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.calc-rate-line { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.calc-rate-line strong { color: var(--text); }
.calc-io-row { display: flex; align-items: center; gap: 10px; }
.calc-io {
  flex: 1; display: flex; align-items: center; background: var(--bg-card2);
  border: 1px solid var(--border); border-radius: 9px; overflow: hidden; min-width: 0;
}
.calc-input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  padding: 12px 12px; color: var(--text); font-size: 15px; font-family: var(--font-body);
}
.calc-pill {
  padding: 0 12px; font-size: 13px; font-weight: 700; color: var(--text-muted);
  border-left: 1px solid var(--border); align-self: stretch; display: flex; align-items: center;
}
.calc-swap-ic { flex-shrink: 0; }
.calc-result {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; text-align: center; margin-bottom: 18px;
}
.calc-result-lbl { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.calc-result-val { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--green); }
.calc-result-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.calc-disclaimer { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 10px; }

:root.light .calc-card, :root.light .calc-toggle, :root.light .calc-io, :root.light .calc-result { background: #fff; }
:root.light .calc-toggle { background: #F5F6F5; }

@media (max-width: 880px) {
  .calc-layout { grid-template-columns: 1fr; gap: 30px; }
  .calc-left-title { font-size: 26px; }
  .calc-left-sub { max-width: none; }
}
@media (max-width: 560px) {
  .calc-io-row { flex-direction: column; gap: 8px; }
  .calc-io { width: 100%; }
  .calc-swap-ic { transform: rotate(90deg); }
}

/* ===========================
   LOGIN PAGE FIX
=========================== */

#page-login {
  min-height: calc(100vh - var(--topbar-h));
  background: var(--bg);
}

.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--topbar-h));
}

.auth-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #050805 0%, #071007 55%, #030503 100%);
  padding: 40px 60px;
  overflow: hidden;
  padding-top:0px;
}

.vault-img-area {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.vault-box {
  width: 430px;
  max-width: 100%;
}

.vault-box img {
  width: 100%;
  display: block;
}

.auth-left-content {
    max-width: 520px;
    text-align: center;
    position: relative;
    z-index: 2;

    margin-top: -140px;
}

.auth-left-content-reg{
	 margin-top: -340px;
	
}

.auth-left-content h2 {
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
}

.auth-left-content h2 em {
  color: var(--green);
  font-style: normal;
}

.auth-left-content p {
  max-width: 480px;
  margin: 0 auto 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.auth-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #080A08;
}

.auth-form-card {
  width: 100%;
  max-width: 390px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px;
}

.auth-form-card h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.auth-form-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 26px;
}

.af-field {
  margin-bottom: 18px;
}

.af-field label,
.af-label-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.af-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.af-forgot {
  color: var(--green);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
}

.af-input-icon,
.af-input-eye {
  position: relative;
}

.af-input-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.af-input-icon input,
.af-input-eye input {
  width: 100%;
  height: 46px;
  background: #0B0D0B;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
}

.af-input-icon input {
  padding: 0 14px 0 42px;
}

.af-input-eye input {
  padding: 0 42px 0 14px;
}

.af-input-icon input:focus,
.af-input-eye input:focus {
  border-color: var(--green);
}

.af-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.af-submit {
  height: 48px;
  margin-top: 8px;
}

.af-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  margin: 24px 0 18px;
}

.af-divider::before,
.af-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.af-google-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.af-switch {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.af-switch a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.af-sub-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

.af-sub-links a {
  color: var(--text-dim);
  font-size: 12px;
  text-decoration: none;
}

.auth-page-footer {
  display: none;
}

/* ===========================
   LOGIN RESPONSIVE FIX
=========================== */

@media (max-width: 1024px) {
  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }

  .auth-right {
    min-height: calc(100vh - var(--topbar-h));
    padding: 40px 24px;
  }

  .auth-form-card {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .auth-right {
    padding: 28px 16px;
    align-items: flex-start;
    padding-top: 48px;
  }

  .auth-form-card {
    max-width: 100%;
    padding: 26px 20px;
  }

  .auth-form-card h2 {
    font-size: 22px;
  }

  .af-sub-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}

/* ===========================
   ABOUT HERO FIX
=========================== */

.about-hero {
  padding: 34px var(--section-px) 0;
  min-height: 560px;
  overflow: hidden;
}

.about-hero-inner {
  max-width: var(--max-w);
  min-height: 520px;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 40px;
}

.about-hero-content h1 {
  font-size: 70px;
  line-height: 1.03;
  margin-bottom: 28px;
}

.about-hero-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 44px;
}

.about-hero-img {
  align-self: end;
  display: flex;
  justify-content: center;
}

.hand-coins {
  width: 500px;
  height: 560px;
  position: relative;
}

.hc-hand {
  position: absolute;
  bottom: -40px;
  left: 56%;
  transform: translateX(-50%);
  opacity: 1;
}

.hc-hand img {
  width: 520px;
  max-width: none;
  display: block;
}

.hc-glow {
  inset: -80px;
  background: radial-gradient(ellipse at center, rgba(132,204,22,.14) 0%, transparent 68%);
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 56px 24px;
    min-height: auto;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .about-hero-content h1 {
    font-size: 46px;
  }

  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-img {
    display: none;
  }

  .pub-hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 36px 16px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-hero-content p {
    font-size: 14px;
  }

  .pub-hero-ctas {
    flex-direction: column;
  }

  .pub-hero-ctas .btn {
    justify-content: center;
  }
}
