:root{
  --bg0:#060B17;
  --bg1:#0B1220;
  --ink:#EAF0FF;
  --muted:#A9B6CE;
  --muted2:#7C8AA5;
  --line:rgba(255,255,255,.12);

  --teal:#2DE2E6;
  --blue:#60A5FA;
  --violet:#7C3AED;
  --violet2:#A78BFA;

  --shadow: 0 28px 80px rgba(0,0,0,.45);
}

/* Placeholder (fake) rows */
.walletTable tr.placeholder td{
  color: rgba(233,240,255,.35);
  font-style: italic;
  background: rgba(255,255,255,.015);
}

.walletTable tr.placeholder:hover td{
  background: rgba(255,255,255,.015); /* no hover effect */
}

/* Make both columns equal height and center right-side content */
/* stack the two tables (always) */
.grid2{
  display:grid;
  grid-template-columns: 1fr;  /* <-- was 1fr 1fr */
  gap: 18px;
  align-items:start;
}
    /* logo row */
    .brandRow{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .brandMark{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, #2DE2E6, #7C3AED);
      display:inline-block;
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }
/* right card = center content */
.sideCardEqual{
  display:flex;
  min-height: 100%;
}

.sideCenter{
  margin:auto;                 /* centers vertically + horizontally */
  width: 100%;
  max-width: 560px;            /* keeps it from going too wide */
  text-align: center;          /* center all text */
}

/* Center bullets in a nice way */
.sideCenter .bullets{
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto;
  max-width: 520px;
  text-align: left;            /* keeps bullets readable */
}

/* callouts centered, consistent width */
.sideCenter .callout{
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
  text-align: left;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit}
.container{max-width:1180px; margin:0 auto; padding:0 22px;}

.bg{
  position:fixed; inset:0; z-index:-3;
  background:url('images/bg.svg') center/cover no-repeat;
  filter:saturate(1.15) contrast(1.05);
}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(6,11,23,.55);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.navRow{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px;}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
.brand img{height:65px; width:auto}
.navLinks{display:flex; gap:18px; align-items:center; color:rgba(233,240,255,.82); font-weight:800; font-size:13px;}
.navLinks a{opacity:.85; text-decoration:none}
.navLinks a:hover{opacity:1}
.navBtns{display:flex; gap:10px; align-items:center;}

.btn{
  border:none; border-radius:999px;
  padding:10px 14px; font-weight:900; cursor:pointer;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.btn.primary{
  background:linear-gradient(90deg, rgba(45,226,230,.95), rgba(96,165,250,.95));
  color:#071021; border:0;
}
.btn:active{transform:translateY(1px)}

.hero{padding: 15px 0 34px;}

.heroGrid{
  display:grid;
  grid-template-columns: 470px 1fr;
  gap:46px;
  align-items:start;
}
@media (max-width: 1020px){ .heroGrid{grid-template-columns:1fr; gap:26px} }

.hTitle{
  font-size:64px; line-height:1.02;
  letter-spacing:-1.2px;
  margin:0 0 14px 0;
  text-shadow: 0 12px 60px rgba(0,0,0,.55);
}
.hTitle .accent{color:var(--teal)}
.hSub{margin:0 0 18px 0; color:rgba(233,240,255,.82); font-size:16px; line-height:1.5;}

.glass{
  background:rgba(15,23,42,.62);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  border-radius:22px;
}

.formCard{padding:18px 18px 16px;}
.fTabs{display:flex; gap:10px; margin-bottom:14px;}
.tab{
  flex:1; text-align:center; padding:10px 10px;
  border-radius:999px; font-weight:900; cursor:pointer;
  color:rgba(233,240,255,.76);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.tab.active{
  color:#071021;
  background:linear-gradient(90deg, rgba(45,226,230,.95), rgba(96,165,250,.95));
  border:0;
}
.panel{display:none}
.panel.active{display:block}

.label{color:rgba(233,240,255,.78); font-weight:800; font-size:13px; margin:10px 0 6px}
.inp{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(6,11,23,.35);
  color:#fff;
  outline:none;
}
.inp::placeholder{color:rgba(169,182,206,.75)}
.inp:focus{border-color:rgba(45,226,230,.65); box-shadow:0 0 0 4px rgba(45,226,230,.14)}

.row2{display:grid; grid-template-columns: 1fr 1fr; gap:10px;}
@media (max-width: 520px){ .row2{grid-template-columns:1fr} }

/* Wallet longer, Asset shorter */
.row2.rowWallet{
  display: grid;
  grid-template-columns: 1.7fr 0.6fr; /* wallet wide, asset tight */
  gap: 14px;
}

@media (max-width: 520px){
  .row2.rowWallet{
    grid-template-columns: 1fr; /* stack on mobile */
  }
}


.bigCta{
  width:100%;
  padding:13px 14px;
  border-radius:999px;
  font-weight:950;
  font-size:16px;
  margin-top:12px;
  border:0;
  cursor:pointer;
  color:#071021;
  background:linear-gradient(90deg, rgba(45,226,230,.95), rgba(96,165,250,.95));
  box-shadow: 0 18px 55px rgba(45,226,230,.20);
}
.fine{margin-top:10px; color:rgba(233,240,255,.70); font-size:12px; line-height:1.4;}
.fine b{color:#fff}

.heroArtWrap{padding:26px;
  margin-top: 110px;   /* THIS moves it down initially */
    margin-bottom:120px;   /* <-- add this (tune) */

}
.heroArt{
  position: sticky;
  width:100%;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(45,226,230,.12));
}
.heroArt img{width:100%; height:auto; display:block}

.sectionTitle{
  text-align:center;
  font-size:36px;
  margin:28px 0 18px;
  letter-spacing:-.6px;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.howGrid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; padding-bottom:42px;
}

@media (max-width: 1020px){ .howGrid{grid-template-columns:1fr} }
.howCard{padding:14px;}
.howCard img{width:100%; height:auto; border-radius:14px; border:1px solid rgba(255,255,255,.10)}
.howCard h3{margin:12px 4px 6px; font-size:18px}
.howCard p{margin:0 4px 0; color:rgba(233,240,255,.78); font-size:13px; line-height:1.45}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:22px 0 34px;
  color:rgba(233,240,255,.65);
  font-size:12px;
  text-align:center;
}