@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root{
  --bg:#0a1014;
  --panel:#0d1419aa;
  --panel-solid:#0f171c;
  --stroke:rgba(255,255,255,.08);
  --text:#e6f6ff;
  --muted:#9cb6c6;
  --accent:#36e7ff;
  --accent-2:#6af3d6;
  --shadow:0 10px 40px rgba(0,0,0,.35);
  --radius:18px;
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  /* smoother, deeper fade */
  background:
    radial-gradient(120% 120% at 50% -6%,
      #13222c 0%,
      #0b1318 55%,
      #091217 78%,
      #071015 100%);
  color:var(--text);
  font: 400 16px/1.5 'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* Star accent that follows the heading size */
h2 span.star { position: relative; display: inline-block; }
h2 span.star::before {
  content: "";
  background: url("../assets/text-star-icon.svg") no-repeat center / cover;
  width: 0.6em;        /* scales with font size */
  height: 0.6em;
  position: absolute;
  right: -0.35em;      /* tucks near the last letter */
  top: -0.25em;
  filter: drop-shadow(0 0 6px rgba(54,231,255,.45));
}

@media (max-width: 480px){
  h2 span.star::before{
    width: 0.5em;
    height: 0.5em;
    right: -0.30em;
    top: -0.05em;
  }
}


.scene-glow{
  position:fixed;
  inset:-30% -20% auto -20%;
  height:60vh;
  background:
    radial-gradient(40% 60% at 20% 20%, rgba(54,231,255,.15), transparent 60%),
    radial-gradient(40% 60% at 80% 20%, rgba(106,243,214,.15), transparent 60%);
  filter: blur(40px);
  pointer-events:none;
  z-index:0;
}

.brand-mark{ width:28px; height:28px; opacity:.9 }

.wrap{ max-width:1100px; margin:48px auto 120px; padding:0 20px; position:relative; z-index:1 }

.eyebrow{
  letter-spacing:.2em;
  color:var(--muted);
  text-align:center;
  font-weight:600;
  font-size:12px;
  margin:0 0 10px;
  text-transform:uppercase;
}

.page-title{
  font-size:44px; font-weight:800;
  text-align:center; margin:0 0 8px;
}
.page-title .accent{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}

.lead{
  text-align:center;
  color:var(--muted);
  margin:0 auto 24px;
  max-width:760px;
}

.cta-row{
  display:flex; gap:16px; justify-content:center; align-items:center;
  margin: 10px 0 28px;
}

.btn{
  appearance:none; border:0; outline:none; cursor:pointer;
  padding:14px 20px; border-radius:999px;
  font-weight:700; letter-spacing:.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow);
}
.btn:active{ transform: translateY(1px) }

.btn-primary{
  color:#0b1216;
  background: linear-gradient(180deg,#7cf0ff,#1de4ff);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.15), 0 8px 30px rgba(53,226,255,.25);
}
.btn-primary:hover{ filter:brightness(1.05) }

.btn-ghost{
  color:var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  backdrop-filter: blur(12px) saturate(130%);
}
.btn-ghost:hover{ background: rgba(255,255,255,.12) }

.cards{
  display:grid; gap:24px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 920px){
  .cards{ grid-template-columns: 1fr }
}

.card{
  background: linear-gradient(180deg, rgba(10,18,23,.7), rgba(6,12,16,.7));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  position:relative;
}
.card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 40%, rgba(255,255,255,.06) 100%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding:1px;
  pointer-events:none;
}

.card-tag{
  display:inline-block;
  padding:6px 10px;
  font-size:12px; font-weight:700; letter-spacing:.03em;
  color:#0b1216;
  background: linear-gradient(180deg, #6af3d6, #37e8ff);
  border-radius: 999px;
  margin-bottom:10px;
}

.card-title{ margin: 6px 0 18px; font-size:22px }

.kv{ display:flex; justify-content:space-between; align-items:center; margin:10px 0 }
.kv span{ color:var(--muted) }
.kv strong{ font-weight:700 }

.field{ display:block; margin:18px 0 14px }
.field > span{ display:block; color:var(--muted); font-size:14px; margin-bottom:6px }
.field-input{
  display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  border-radius: 12px;
  padding:10px 12px;
}
.field-input input{
  flex:1; background:transparent; border:0; outline:none; color:var(--text);
  font-size:16px;
}

.chip{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  color:var(--text);
  padding:6px 10px; border-radius:999px; font-weight:700;
}

.btn-row{ display:flex; gap:10px; margin:10px 0 14px; flex-wrap:wrap }

.contract-box{
  margin-top:12px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px 14px;
}
.contract-label{ color:var(--muted); font-size:13px }
.contract-hash{ font-weight:700; letter-spacing:.02em; margin-top:4px }

.table{ width:100% }
.t-head, .t-row{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap:14px; align-items:center;
}
.t-head{
  color:var(--muted); font-size:14px;
  padding:8px 2px 10px; border-bottom:1px solid var(--stroke);
}
.t-row{
  padding:12px 2px; border-bottom:1px dashed rgba(255,255,255,.06)
}
.t-row:last-child{ border-bottom:0 }

.pool-actions{
  display:flex; gap:8px; align-items:center; justify-content:flex-end;
}

.help{ color:var(--muted); font-size:13px; margin-top:10px }
.muted{ opacity:.7 }

.positions{ margin-top:26px }

/* -------- NAV (glass pill) -------- */
.alpha-nav{
  position: sticky; top: 16px; z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
}
.alpha-nav .container{ width:100%; max-width: 1180px; padding: 0 20px; }

.nav-shell{
  pointer-events: auto;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 14px 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
}

.logo img{ height:28px; width:auto; display:block; opacity:.95 }

.navbar-menu .menu{
  margin:0; padding:0; list-style:none;
  display:flex; gap:32px; align-items:center;
    transition: all .3s ease-in-out;
    font-family: 'Poppins', sans-serif;
  
}
.menu li a{
  position:relative;
  display:block; padding:10px 8px;
  font-weight:700; letter-spacing:.01em;
  text-decoration:none;
  color:#E6F6FF; opacity:.9;
  transition:opacity .2s ease;
}
.menu li a.gray  { color:#A9C0CF; }
.menu li a.white { color:#FFFFFF; }
.menu li a::after{
  content:""; position:absolute; left:12px; right:12px; bottom:4px; height:2px;
  background: linear-gradient(90deg, #37e8ff, #6af3d6);
  transform:scaleX(0); transform-origin:left center;
  transition: transform .22s ease;
  border-radius:2px;
}
.menu li:hover a{ opacity:1 }
.menu li:hover a::after{ transform:scaleX(1) }
.menu li.active a{ opacity:1 }
.menu li.active a::after{ transform:scaleX(1) }

/* Utility */
.container { max-width:1180px; margin:0 auto; padding:0 20px; }
.text-center { text-align:center }
.position-relative { position:relative }
.d-none{ display:none }
@media (min-width:768px){ .d-md-block{ display:block } }

.wrap{ margin-top: 34px; }

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-radius: 9999px;
  width: auto;
  min-width: fit-content;
}

/* ===================== FOOTER (CLEAN) ===================== */

/* Top border above footer */
.acm-foot{
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Grid: Logo | About | Ecosystem | Socials | CTA */
.acm-foot__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 150px 1fr 1fr auto 220px;
  column-gap: 24px;   /* tighter space between the two link columns */
  row-gap: 32px;
  align-items: start;
}

/* Logo block: slightly more air before the first list */
.acm-foot__logo{
  justify-self: start;
  margin-left: -8px;     /* subtle nudge left to match main site */
  margin-right: 36px;    /* space between logo and first list */
}
.acm-foot__logo img{
  width: 124px;
  height: auto;
  display:block;
  opacity:.95;
}

/* Link columns */
.acm-foot__links ul{ list-style:none; margin:0; padding:0; }
.acm-foot__links li{
  margin: 8px 0;        /* tighter vertical rhythm */
  padding-left: 16px;
  position: relative;
}
.acm-foot__links li::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3ed3e6;  /* cyan bullets */
  position: absolute;
  left: 0; top: 0.72em;
  opacity: .9;
}
.acm-foot__links a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.acm-foot__links a:hover{ color:#fff; }

/* Socials — desktop 4/4 split, vertically centered with lists */
.acm-foot__socials{
  align-self: center;   /* centers the block within the grid row */
}
.acm-foot__socials .social{ list-style:none; margin:0; padding:0; }

/* Desktop socials grid (8 icons => 4 columns x 2 rows) */
.acm-foot__socials .social.desktop{
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: 18px;
  row-gap: 16px;
  justify-content: center;   /* center the two rows */
  align-items: center;
}

/* Hide mobile list on desktop by default */
.acm-foot__socials .social.mobile{ display:none; }

.acm-foot__socials li{ line-height:1; }
.acm-foot__socials svg{
  width: 26px; height: 26px; opacity:.82;
  transition: transform .2s ease, opacity .2s ease;
}
.acm-foot__socials a:hover svg{ opacity:1; transform: translateY(-1px); }

/* CTA aligned with socials block */
.acm-foot__cta{
  align-self: center;
  display:flex; justify-content:flex-end;
}
.acm-foot__cta .btn-style{
  padding: 12px 26px;
  border-radius: 999px;
  background: #3ed3e6;
  color: #0c141a;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(62,211,230,.25);
}
.acm-foot__cta .btn-style:hover{ filter: brightness(1.05); }

/* Bottom row (copyright) */
.acm-foot__bottom{
  margin-top: 26px;
  padding-top: 12px;
  border-top: none;
  text-align: center;
}
.acm-foot__bottom ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  color: rgba(255,255,255,.65);
}
.acm-foot__bottom a{
  color: rgba(255,255,255,.85);
  text-decoration: underline;
}
.acm-foot__bottom a:hover{ color:#fff; }

/* ===================== Responsive ===================== */

@media (max-width: 1200px){
  .acm-foot__container{
    grid-template-columns: 150px 1fr 1fr auto; /* CTA may wrap below on narrower screens */
    column-gap: 22px;
  }
}

@media (max-width: 768px){
  .acm-foot__container{
    grid-template-columns: 1fr;
    row-gap: 18px;
    text-align: center;
  }

  .acm-foot__logo{
    margin: 0;
  }
  .acm-foot__logo img{
    width: 96px;
    margin: 0 auto 6px;
  }

  /* Hide desktop grid, show mobile list on phones */
  .acm-foot__socials .social.desktop{ display:none; }
  .acm-foot__socials .social.mobile{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .acm-foot__cta{
    justify-content: center;
    margin-top: 8px;
  }
}
/* === Mobile footer: center logo, hide link lists === */
@media (max-width: 768px) {
  /* override earlier "left" rule in your CSS */
  .acm-foot__container,
  .acm-foot__container * {
    text-align: center !important;
  }

  /* one column layout */
  .acm-foot__container {
    grid-template-columns: 1fr !important;
    justify-items: center;
    row-gap: 16px;
  }

  /* hide both link columns */
  .acm-foot__links {
    display: none !important;
  }

  /* center the logo and size it for mobile */
  .acm-foot__logo {
     display: none !important;
    justify-content: center;
  }
  .acm-foot__logo .logo img {
    width: 96px !important;   /* tweak as you like */
    height: auto;
  }

  /* keep socials + whitepaper centered */
  .acm-foot__socials ul {
    justify-content: center !important;
    gap: 14px;
    flex-wrap: wrap;
  }
  .acm-foot__cta {
    justify-content: center !important;
  }
  .acm-foot__bottom {
    margin-top: 12px;
  }
}
/* 0) Make sure nothing else is drawing a glow on the footer */
.acm-foot::before,
.acm-foot::after,
.acm-foot__socials::after {
  display: none !important;
  content: none !important;
}

/* 1) Base footer background – match the page's darkest tone to avoid seams */
.acm-foot{
  position: relative;
  overflow: hidden;              /* clips the internal glow neatly */
  background-color: #071015;     /* matches the tail of body gradient */
}

/* 2) Desktop/tablet: continue the glow from ABOVE the footer so there’s no break */
@media (min-width: 1024px){
  .acm-foot{
    background-image:
      radial-gradient(70% 95% at 50% -120px,
        rgba(54,231,255,0.16) 0%,
        rgba(54,231,255,0.10) 35%,
        rgba(54,231,255,0.00) 75%),
      linear-gradient(0deg, rgba(255,255,255,.03), transparent);
    background-repeat: no-repeat, no-repeat;
    background-size: 120% 520px, 100% 100%;
    background-position: 50% 0, 0 0; /* glow origin is above the top border */
  }
}

/* 3) Mobile: start the glow right at the footer's top so it looks intentional */
@media (max-width: 1023px){
  .acm-foot{
    background-image:
      radial-gradient(80% 120% at 50% 0,
        rgba(54,231,255,0.18) 0%,
        rgba(54,231,255,0.10) 40%,
        rgba(54,231,255,0.00) 80%),
      linear-gradient(0deg, rgba(255,255,255,.03), transparent);
    background-repeat: no-repeat, no-repeat;
    background-size: 140% 420px, 100% 100%;
    background-position: 50% 0, 0 0; /* starts exactly at the top border */
  }
}

/* 4) Ensure content sits above the background */
.acm-foot__container,
.acm-foot__bottom{
  position: relative;
  z-index: 1;
}
/* base color behind everything */
html { background: #071015; }

/* kill body background so we don't fight it */
body { background: transparent; }

/* one fixed gradient layer for the whole app */
body::before{
  content:"";
  position: fixed;
  inset: 0;                 /* full viewport */
  z-index: -1;              /* behind all content */
  pointer-events: none;
  background:
    radial-gradient(110% 90% at 50% 0%,
      #13222c 0%,
      #0b1318 50%,
      #071015 100%);
  /* soft fade near the very bottom to avoid any seam on ultra-tall screens */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 85%, rgba(0,0,0,0) 100%);
}
/* ==== NAV: compact pill like main site ==== */
.alpha-nav .container{
  /* center the pill; the container itself no longer controls the width */
  display:flex;
  justify-content:center;
}

.nav-shell{
  /* keep the pill narrow and centered */
  width: min(920px, calc(100% - 28px)); /* <— adjust 920px if you want even shorter */
  margin: 0 auto;
  padding: 10px 14px;                 /* slightly slimmer pill */
  gap: 14px;
}

/* logo size inside the pill */
.nav-shell .logo img{
  height: 22px;
}

/* menu compaction (desktop/tablet) */
.navbar-menu .menu{
  gap: 22px;
  white-space: nowrap; /* stops wrapping that pushes items outside */
}
.navbar-menu .menu li a{
  padding: 8px 6px;
}

/* ==== MOBILE FIX: keep Stake inside the pill ==== */
@media (max-width: 640px){
 .nav-shell {
  width: min(580px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 14px;
  gap: 8px; /* reduce from 14px */
}

.nav-shell img {
  margin-right: 0px; /* shrink spacing between logo and links */
}
  .navbar-menu .menu{
    gap: 14px;         /* tighter spacing so all items fit */
    flex-wrap: nowrap; /* absolutely no wrapping */
  }

  .navbar-menu .menu li a{
    padding: 6px 4px;
  }

  /* tiny logo on mobile for extra room */
  .nav-shell .logo img{
    height: 18px;
  }
}
.nav-shell {
  width: min(640px, calc(100% - 28px)); /* try 640px or even 580px */
  margin: 0 auto;
  padding: 10px 14px;
  gap: 14px;
}
/* Make nav use Poppins and tighten spacing like the main site */
.alpha-nav .nav-shell .navbar-menu .menu li a,
header .header-wrapper .navbar-menu ul.menu li a {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

/* Pull items closer to the logo */
.alpha-nav .nav-shell { gap: 16px; padding: 14px 22px; }
.alpha-nav .logo { margin-right: 12px; }
.alpha-nav .navbar-menu .menu { gap: 22px; }

/* ==== NAV — final clean overrides ==== */

/* Compact pill + tighter spacing */
.alpha-nav .container{ display:flex; justify-content:center; }
.nav-shell{
  width: min(640px, calc(100% - 28px));   /* shorter, like main site */
  margin: 0 auto;
  padding: 12px 18px;
  gap: 14px;
}

/* Logo a bit larger + closer to the menu */
.nav-shell .logo img{ height: 24px; }
.alpha-nav .logo{ margin-right: 8px; }

/* Menu typography + spacing (match main site Poppins) */
.alpha-nav .navbar-menu .menu{
  gap: 22px;
  white-space: nowrap;       /* prevents wrapping on small screens */
}
.alpha-nav .navbar-menu .menu li a{
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  padding: 8px 6px;
}

/* Use the gradient-line-icon image for the underline (hover + active) */
.alpha-nav .navbar-menu .menu li a::after{
  content:"";
  position:absolute;
  left: 10px; right: 10px; bottom: 4px; height: 2px;
  background: url("./assets/gradient-line-icon.png") center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
  border-radius: 2px;        /* soft edges if your PNG has transparency */
}
.alpha-nav .navbar-menu .menu li:hover a::after,
.alpha-nav .navbar-menu .menu li.active a::after{
  transform: scaleX(1);
}

/* Mobile: keep everything inside the pill */
@media (max-width: 640px){
  .nav-shell{
    width: min(560px, calc(100% - 24px));
    padding: 10px 14px;
    gap: 10px;
  }
  .nav-shell .logo img{ height: 20px; }
  .alpha-nav .navbar-menu .menu{ gap: 16px; }
  .alpha-nav .navbar-menu .menu li a{ padding: 6px 4px; }
}
/* Base pill */
.pool-pill {
  appearance: none;
  border: 1px solid #2a3b4a;         /* subtle grey border */
  background: #0f1821;               /* your grey pill bg */
  color: #cfd6dc;
  border-radius: 999px;
  padding: 10px 18px;
  font: 600 14px/1.1 'Poppins', sans-serif;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

/* Hover/focus (optional) */
.pool-pill:hover,
.pool-pill:focus-visible {
  border-color: #3fc1d7;
  box-shadow: 0 0 0 2px rgba(63,193,215,.15);
  outline: none;
}

/* Selected state: cyan outline glow while staying grey */
.pool-pill.is-selected {
  border-color: #3fc1d7;
  box-shadow:
    0 0 0 2px rgba(63,193,215,.35),   /* outer ring */
    0 6px 22px rgba(63,193,215,.20),  /* soft outer glow */
    inset 0 0 24px rgba(63,193,215,.12); /* faint inner glow */
  background: #0f1821;               /* keep the grey */
  color: #ffffff;
}

/* Selected pool glow */
.btn-ghost.is-selected {
  border-color: #37e8ff;                 /* cyan theme */
  box-shadow:
    0 0 0 2px rgba(55, 232, 255, 0.25),  /* soft outer ring */
    0 0 18px rgba(55, 232, 255, 0.35);   /* glow */
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06)); /* keep grey-ish */
  color: var(--text);
}

/* Make it pop a bit more on hover, still selected */
.btn-ghost.is-selected:hover {
  box-shadow:
    0 0 0 3px rgba(55, 232, 255, 0.3),
    0 0 22px rgba(55, 232, 255, 0.45);
}
/* === Footer glow: extend to real bottom without adding a new overlay === */
html, body { min-height: 100%; }

body {
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }             /* your main content wrapper */
footer.acm-foot { position: relative; flex-shrink: 0; }

/* Extend the existing glow from the footer downward */
footer.acm-foot::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40vh;                      /* pushes the glow center lower */
  width: 1600px;                      /* wide oval glow */
  height: 120vh;                      /* long enough to reach bottom */
  background: radial-gradient(ellipse at center,
    rgba(63,193,215,.25) 0%,
    rgba(63,193,215,.12) 35%,
    rgba(63,193,215,0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Keep footer content above the glow */
footer.acm-foot > * { position: relative; z-index: 1; }
/* === Navbar spacing & font (scoped) === */
.alpha-nav .nav-shell {
  display: inline-flex;
  align-items: center;
  gap: 8px;               /* tighter gap between logo and links */
  padding: 10px 22px;      /* slim pill padding */
}

.alpha-nav .logo img,
.alpha-nav .logo svg {
  height: 34px;            /* slightly larger logo, like main site */
  width: auto;
}

/* menu spacing */
.alpha-nav .navbar-menu .menu {
  display: inline-flex;
  gap: 32px;               /* space between link items */
}

/* match font */
.alpha-nav .navbar-menu .menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
/* Underline: use the gradient-line image, anchored to the pill’s bottom edge */
.alpha-nav .navbar-menu .menu li a::after{
  content:"";
  position:absolute;
  left: 10px; right: 10px;
  bottom: -25px;                   /* sits on the pill bottom edge */
  height: 2px;
  background: url("./assets/gradient-line-icon.png") center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
  pointer-events: none;
}
/* Navbar pill wrapper */
.alpha-nav {
  height: 120px;             /* increases thickness of pill */
  padding: 0 20px;          /* reduce horizontal width */
  display: flex;
  align-items: center;      /* vertically center logo + items */
  justify-content: center;  /* keeps it balanced */
  border-radius: 50px;      /* maintain pill shape */
}

/* Navbar links inside pill */
.alpha-nav .navbar-menu .menu li a {
  line-height: 70px;        /* matches pill height */
  padding: 0 14px;          /* controls spacing between items */
  font-size: 16px;          /* adjust text size if needed */
}

/* Navbar logo inside pill */
.alpha-nav .navbar-menu .logo img {
  height: 32px;             /* slightly larger logo */
  width: auto;
  margin-right: 12px;       /* small gap between logo and menu items */
}
/* === NAVBAR: final overrides === */

/* Desktop/tablet keep the thicker pill */
@media (min-width: 768px){
  .alpha-nav{ height: 96px; }                          /* was 120px */
  .alpha-nav .navbar-menu .menu li a{ line-height: 64px; }
}

/* Mobile: compact pill, no wrapping, safe underline position */
@media (max-width: 767.98px){
  .alpha-nav{
    height: auto;                                      /* remove fixed height */
    padding: 0 10px;
  }
  .nav-shell{
    width: calc(100% - 20px);
    padding: 8px 12px;
    gap: 10px;
  }
  .alpha-nav .logo img{ height: 20px; }

  .alpha-nav .navbar-menu .menu{
    gap: 12px;
    flex-wrap: nowrap;                                 /* prevent wrap */
    white-space: nowrap;
  }
  .alpha-nav .navbar-menu .menu li a{
    font-size: 15px;
    line-height: 1.2;                                  /* no tall line box */
    padding: 6px 4px;
  }
  .alpha-nav .navbar-menu .menu li a::after{
    bottom: 2px;                                       /* keep underline inside pill */
  }
}
/* Mobile fix: move gradient underline to pill edge */
@media (max-width: 767.98px) {
  .alpha-nav .navbar-menu .menu li a::after {
    bottom: -20px;                /* push underline to pill’s bottom edge */
    height: 3px;                 /* keep thickness consistent */
    border-radius: 3px;          /* rounded like desktop */
    left: 0;
    right: 0;
    margin: auto;                /* keep centered under link */
  }
}

/* === FOOTER: push logo farther left and add space to the lists (desktop/tablet) === */
@media (min-width: 768px){
  footer.acm-foot .acm-foot__container{
    /* widen the first (logo) column and add column gap */
    grid-template-columns: 190px 1fr 1fr auto 220px;
    column-gap: 48px;
  }

  footer.acm-foot .acm-foot__logo{
    justify-self: start;
    margin-left: -12px !important;   /* nudge logo toward the left edge */
    margin-right: 64px !important;   /* more space before the first list */
  }

  /* optional: slightly larger logo for balance */
  footer.acm-foot .acm-foot__logo img{
    width: 136px;
    height: auto;
    display: block;
  }
}

/* Mobile stays stacked/centered; no extra spacing needed */

/* === NAVBAR pill thickness === */
.alpha-nav .nav-shell {
  height: 72px;                  /* was ~56–60px, bump for thicker pill */
  padding: 0 24px;               /* keep horizontal breathing room */
  border-radius: 999px;          /* maintain pill shape */
}

.alpha-nav .logo img {
  height: 28px;                  /* scale logo proportionally */
}

.alpha-nav .navbar-menu .menu li a {
  line-height: 72px;             /* center text vertically in the pill */
}

/* === MOBILE NAV PILL WIDTH FIX === */
@media (max-width: 767.98px) {
  .alpha-nav .nav-shell {
    width: calc(100% - 0px);   /* stretch pill across screen with side padding */
    max-width: 100%;            /* prevent clipping */
    justify-content: space-between;
  }

  .alpha-nav .navbar-menu .menu {
    flex: 1;
    justify-content: center;    /* keep links centered in pill */
  }
}
.hero,
.wrap {
  position: relative;
  padding-top: 180px;   /* moves text lower */
  padding-bottom: 100px;
  text-align: center;
  z-index: 2;           /* keep above video */
}
/* HERO: brand links under CTAs */
.wrap .brands{
  display:flex;
  justify-content:center;      /* center the whole row */
  align-items:center;
  gap:28px;                    /* space between items */
  list-style:none;             /* remove bullets */
  padding:0;
  margin:18px 0 0;
  flex-wrap:wrap;              /* wrap nicely on mobile */
  row-gap:12px;
}

.wrap .brands li{
  display:flex;
  align-items:center;
}

.wrap .brands li a{
  display:flex;
  align-items:center;
  gap:10px;                    /* space icon ↔ label */
  text-decoration:none;
  color:#AEB7C2;               /* adjust to your muted text color */
  font-weight:500;
  font-size:15px;
  line-height:1;
  opacity:.9;
}

.wrap .brands li img{
  height:20px;                 /* keep icons uniform */
  width:auto;
  display:block;
  opacity:.9;
}
.cta-row .btn {
  text-decoration: none !important;
}
/* Hover magnification for brand links */
.wrap .brands li a {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wrap .brands li a:hover {
  transform: scale(1.08);   /* slight magnification */
  opacity: 1;               /* optional: make them fully visible */
}

/* === PARTNERS CAROUSEL === */
.carousel-r__wrapper {
  overflow: hidden;                /* hide scrollbars/clipping */
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.carousel-r {
  display: flex;
  flex-wrap: nowrap;
  gap: 170px;                       /* space between logos */
  animation: scroll-left 10s linear infinite;
}

.carousel-r__wrapper:hover .carousel-r {
  animation-play-state: paused;
}

.carousel-r a {
  flex: 0 0 auto;                  /* keep items from shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0.9;
}

.carousel-r a:hover {
  transform: scale(1.08);
  opacity: 1;
}

.carousel-r img {
  max-height: 100px;    /* was 60px */
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1) contrast(1); /* keeps clarity */
}

/* Keyframes for continuous left scroll */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Float the pill over the hero * final pill positioning */
.alpha-nav{
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
}

/* Desktop/tablet: make the pill a little longer */
@media (min-width: 768px){
  .alpha-nav .nav-shell{
    /* add more glass to the right side of the pill */
    padding-right: 56px;   /* was 24px */
    padding-left: 32px;    /* small balance so pill still looks centered */
  }
}

/* BREAK OUT of the centered page container */
.hero.full-bleed{
  /* classic full-bleed trick: span full viewport width regardless of parents */
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}

/* Fullscreen hero with video behind */
.hero.has-video{
  min-height: 100vh;          /* cover the whole screen */
  padding: 0; margin: 0;      /* no gaps around the video */
  overflow: hidden;
  text-align: center;
  z-index: 0;
}

.hero-media{ position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;          /* fills sides & top */
  opacity: .35;               /* faded look */
  pointer-events: none;
}

/* Optional: blue vignette tint */
.hero-media::before{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:
    radial-gradient(70% 55% at 50% 38%,
      rgba(0,206,255,.28) 0%,
      rgba(0,206,255,.16) 40%,
      rgba(6,18,28,.55) 70%,
      rgba(4,10,16,.85) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
}

/* Text sits below the pill, above video */
.hero-content{ position: relative; z-index: 2; padding-top: 150px; }
.hero-content > :first-child{ margin-top: 0; }   /* avoid margin-collapsing */

/* Kill any stray top margins that might create a gap */
body, main, section{ margin-top: 0; }

/* Hero section stays centered; no weird left/right hacks */
.hero.has-video{
  position: relative;
  min-height: 100vh;
  padding: 0;                 /* no gap above the video */
  display: block;
  overflow: hidden;
  text-align: center;
  z-index: 0;
}

/* Centered content */
.hero-content{
  position: relative;
  z-index: 2;                 /* above video */
  padding-top: 150px;         /* push text below pill; tweak 120–180 */
  max-width: 1100px;          /* or your .wrap width */
  margin-inline: auto;        /* keep perfectly centered */
}

/* Only the MEDIA is full-bleed: span viewport, centered */
.hero-media{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* keep video centered */
  width: 100vw;                 /* full viewport width */
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Video fills hero */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;               /* faded */
  pointer-events: none;
}

/* Blue vignette/tint */
.hero-media::before{
  content:"";
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(70% 55% at 50% 38%,
      rgba(0,206,255,.28) 0%,
      rgba(0,206,255,.16) 40%,
      rgba(6,18,28,.55) 70%,
      rgba(4,10,16,.85) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
}

/* Safety: kill stray top margins that create gaps */
body, main, section { margin-top: 0; }
.hero-content > :first-child { margin-top: 0; }
/* === HERO: make it truly full-bleed and stop clipping === */
.hero.has-video{
  /* break out of .wrap’s max-width */
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  /* no section padding; no clipping */
  padding: 0 !important;
  overflow: visible !important;
}

/* center the media and stretch it edge-to-edge behind the pill */
.hero-media{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  overflow: hidden;           /* keep overlays tidy */
  z-index: 0;
}

.hero-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* keep the text perfectly centered and below the pill */
.hero-content{
  position: relative; z-index: 2;
  max-width: 1100px;
}

/* ===== CONFIG: how far below the pill the hero text should begin ===== */
:root { --nav-offset: 150px; }   /* tweak 130–180 to taste */

/* ===== HERO: full-bleed, centered content ===== */
.hero.has-video{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;                 /* centers content */
  place-items: center;           /* horizontal + vertical centering */
  padding-top: var(--nav-offset);/* push content down below pill */
  text-align: center;
  margin: 0;
}

/* Only the MEDIA is full-bleed; center it to the viewport */
.hero-media{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);   /* keep video centered */
  width: 100vw;                  /* span the viewport width */
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fill without distortion */
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* Blue vignette tint (optional, keep if you like) */
.hero-media::before{
  content:"";
  position:absolute;
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .scroll-down {
        bottom: 0;
    }
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 4px solid white;
    border-right: 4px solid white;
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

/* reverse the delay order */
.scroll-down span:nth-child(1) {
    animation-delay: 0.4s; /* top arrow = last */
}
.scroll-down span:nth-child(2) {
    animation-delay: 0.2s; /* middle arrow = second */
}
.scroll-down span:nth-child(3) {
    animation-delay: 0s;   /* bottom arrow = first */
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}
.spotlight-slider {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  color: var(--text);
  scroll-snap-align: start;
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: -1;
}

.content {
  max-width: 500px;
  z-index: 2;
}

.content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 600;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}
/* ===== EXPRESS YOURSELF (full-bleed hero like Decentraland) ===== */
.express-hero {
  position: relative;
  min-height: 88vh;              /* near-full screen but not jarring */
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;            /* keeps overlays above video */
}

/* Background video */
.express-hero .express-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;                  /* faded video */
  z-index: -2;
}

/* Alpha City spot gradient (over the video) */
.express-hero .express-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 600px at 12% 20%, rgba(54,231,255,.28), transparent 60%),
    radial-gradient(500px 500px at 0% 80%, rgba(106,243,214,.18), transparent 60%);
  z-index: -1;
}

/* Subtle vignette for readability */
.express-hero .express-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,16,21,.78) 0%, rgba(7,16,21,.35) 45%, rgba(7,16,21,.25) 70%, rgba(7,16,21,.20) 100%);
  z-index: -1;
}

.express-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: 36px 0;
}

.express-copy {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  max-width: 620px;
}

.express-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  margin: 4px 0 10px;
  letter-spacing: -0.01em;
}

.express-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--muted, #b9c9d7);
  margin-bottom: 16px;
}

/* Right-side figure (optional) */
.express-hero-figure {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.45));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }

@media (max-width: 980px){
  .express-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .express-hero-figure {
    justify-self: start; max-width: 420px; opacity: .95;
  }
}

/* Tighten vertical rhythm to match your updated spacing */
section.wrap + .express-hero { margin-top: 28px; }
.express-hero + section.wrap { margin-top: 28px; }
/* Remove underline from button links */
.btn, 
.btn-primary, 
.btn-ghost {
  text-decoration: none !important;
}
/* ====== Trending News (Alpha glass style) ====== */
.news-stage {
  position: relative;
  overflow: hidden;
  padding: 24px 58px;                    /* space for arrows */
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32vw, 420px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 6px 18px;
}

.news-card {
  scroll-snap-align: center;
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(7,16,21,0.75);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transform: perspective(1200px) rotateY(-10deg) scale(.86);
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  opacity: .9;
}

.news-card.is-active {
  transform: perspective(1200px) rotateY(0deg) scale(1);
  box-shadow: 0 18px 70px rgba(28,213,251,.10);
  opacity: 1;
}

.news-media { position: relative; height: 190px; }
.news-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.news-media-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.00) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.55) 100%),
    radial-gradient(700px 300px at 10% 0%, rgba(54,231,255,.18), transparent);
}

.news-body { padding: 16px; display: grid; gap: 8px; }
.chip {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #051116;
  background: linear-gradient(90deg, #6af3d6, #36e7ff);
}

.news-title { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.2; font-weight: 800; }
.news-cta { text-decoration: none !important; margin-top: 8px; }

/* Prev/Next arrows */
.news-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  cursor: pointer;
}
.news-nav:hover { background: rgba(255,255,255,0.12); }
.news-nav.prev { left: 12px; }
.news-nav.next { right: 12px; }

/* Ticker / mini carousel */
.news-ticker {
  margin-top: 16px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--stroke);
  overflow: hidden;
  background: linear-gradient(90deg, #ff7a7a, #ffab5e, #ffd748, #6af3d6, #36e7ff, #b98fff);
  --speed: 28s;
}
.ticker-track {
  display: flex; gap: 30px;
  padding: 10px 18px;
  white-space: nowrap;
  animation: ticker var(--speed) linear infinite;
}
.ticker-track span {
  color: #0a1014; font-weight: 800; letter-spacing: .02em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* duplicated by JS so -50% loops */
}

/* Smaller screens */
@media (max-width: 760px){
  .news-stage { padding: 18px 40px; }
  .news-media { height: 160px; }
}
/* Full-width ticker under news */
.news-ticker {
  margin-top: 16px;
  width: 100vw;                 /* force full viewport width */
  margin-left: calc(-50vw + 50%); /* break out of centered container */
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(90deg, #ff7a7a, #ffab5e, #ffd748, #6af3d6, #36e7ff, #b98fff);
  --speed: 28s;
  overflow: hidden;
}

.news-ticker .ticker-track {
  display: flex;
  gap: 30px;
  padding: 12px 24px;
  white-space: nowrap;
  animation: ticker var(--speed) linear infinite;
}

.news-ticker span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #0a1014; /* dark text over gradient */
}
/* ---------- Stage (no heavy frame) ---------- */
.news-stage{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 64px;                  /* room for arrows */
}

/* Edge fade like the reference */
.news-track{
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 18px;
  -webkit-overflow-scrolling: touch;

  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

/* Card sizing & 3D effect */
.news-card{
  flex: 0 0 clamp(280px, 36vw, 420px);
  scroll-snap-align: center;

  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  overflow: hidden;

  /* depth + angled sides */
  transform: perspective(1200px) rotateY(-12deg) scale(.88);
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  opacity: .85;
}
.news-card.is-active{
  transform: perspective(1200px) rotateY(0deg) scale(1);
  box-shadow: 0 24px 90px rgba(54,231,255,.15);
  opacity: 1;
}

/* Media */
.news-media{ position: relative; height: 190px; }
.news-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.news-media-gradient{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.55) 100%),
    radial-gradient(700px 300px at 10% 0%, rgba(54,231,255,.18), transparent);
}

/* Body */
.news-body{ padding: 16px; display: grid; gap: 8px; }
.chip{
  display:inline-block; font-size:12px; padding:6px 10px; border-radius:999px;
  color:#051116; background: linear-gradient(90deg, #6af3d6, #36e7ff);
}
.news-title{ font-weight:800; font-size: clamp(18px, 2.2vw, 24px); line-height:1.2; }
.news-cta{ text-decoration:none !important; margin-top:8px; }

/* Arrows */
.news-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  display:grid; place-items:center; cursor:pointer; z-index:2;
}
.news-nav:hover{ background: rgba(255,255,255,0.12); }
.news-nav.prev{ left: 14px; }
.news-nav.next{ right: 14px; }

/* Full-bleed ticker */
.news-ticker{
  margin-top:16px;
  width:100vw; margin-left: calc(-50vw + 50%); /* escape container */
  border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke);
  background: linear-gradient(90deg, #ff7a7a, #ffab5e, #ffd748, #6af3d6, #36e7ff, #b98fff);
  --speed: 28s; overflow:hidden;
}
.ticker-track{ display:flex; gap:30px; padding:12px 24px; white-space:nowrap; animation: ticker var(--speed) linear infinite; }
.ticker-track span{ color:#0a1014; font-weight:800; letter-spacing:.02em; }
@keyframes ticker{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Responsive tweaks */
@media (max-width:760px){
  .news-stage{ padding-inline: 40px; }
  .news-media{ height: 160px; }
}
/* ---------- Tokenomics ---------- */
#tokenomics{
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.tokenomics-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 32px;
  position: relative;
}
/* Confine the glow to this section */
#tokenomics{
  margin-top: 80px;
  position: relative;
  isolation: isolate;      /* keep pseudo-elements contained */
  overflow: hidden;        /* clip the glow inside the section */
  z-index: 1;
}


/* Keep content above the glow */
#tokenomics .page-title,
#tokenomics .tokenomics-grid{
  position: relative;
  z-index: 1;
}


/* Cards */
.tokenomics-card{
  padding: 24px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(15,23,28,.70), rgba(15,23,28,.55));
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tokenomics-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(54,231,255,.2);
}

.tokenomics-icon img{
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(106,243,214,.6));
}

.tokenomics-stat{
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #36e7ff, #6af3d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tokenomics-card p{
  font-size: 14px;
  color: var(--muted);
}

/* Alpha icon styling */
.alpha-icon {
  width: 40px;
  height: 40px;
  filter: url(#alphaGlow);
  display: inline-block;
}
.tokenomics-icon { margin-bottom: 14px; }
/* Tokenomics halo - clean, no bleed, no top bar */
#tokenomics{
  margin-top: 80px;
  position: relative;
  isolation: isolate;   /* keep pseudo-elements local */
  overflow: hidden;     /* clip inside section */
  z-index: 1;
}

/* 1) Kill extra space after Express Yourself */
.express-hero{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;              /* clip any video/gradient bleed */
}
.express-wrap{ padding-bottom: 0 !important; }

/* If you added any bottom spacer on Express, neutralize it */
.express-hero::after{ display: none !important; }

/* 2) Remove the default top gap on Tokenomics when it follows Express */
.express-hero + #tokenomics{
  margin-top: 0 !important;
}
#tokenomics.wrap{
  padding-top: 12px !important;  /* was ~44px; make it tight */
}

/* If you had a global rule like: section.wrap { padding-top: 44px } */
section.wrap#tokenomics{ padding-top: 12px !important; }

/* 3) Lower & soften the Tokenomics halo so it doesn’t look like a bar */
#tokenomics{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Contain the glow and tighten spacing with the section above */
.express-hero + #tokenomics { margin-top: 0 !important; }
section.wrap#tokenomics { padding-top: 20px !important; }

#tokenomics {
  position: relative;
  isolation: isolate;   /* keeps the background element local */
  overflow: clip;       /* clip inside the section (fallback to hidden if needed) */
  /* overflow: hidden;  <-- use this if your browser doesn't support 'clip' */
}

/* Centered, feathered Alpha glow that cannot bleed out or form a bar */
#tokenomics .tok-spot{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 84px;                           /* start below the heading line */
  width: min(1120px, 92vw);
  height: 320px;
  pointer-events: none;
  z-index: 0;

  /* layered spot with soft edges */
  background:
    radial-gradient(60% 55% at 50% 12%,
      rgba(54,231,255,.20) 0%,
      rgba(106,243,214,.09) 38%,
      rgba(54,231,255,0.05) 60%,
      transparent 70%);

  filter: blur(30px);

  /* feather top/bottom so it never looks like a rectangle */
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0,
      #000 26px,
      #000 calc(100% - 26px),
      transparent 100%);
          mask-image: linear-gradient(to bottom,
      transparent 0,
      #000 26px,
      #000 calc(100% - 26px),
      transparent 100%);
}

/* keep content above the glow */
#tokenomics .page-title,
#tokenomics .tokenomics-grid { position: relative; z-index: 1; }
