
:root {
  --bg: #050816;
  --bg2: #0a1025;
  --card: rgba(255, 255, 255, .08);
  --card2: rgba(255, 255, 255, .12);
  --text: #f8fafc;
  --muted: #aab4c8;
  --gold: #f6c453;
  --gold2: #ffdf8a;
  --blue: #5eead4;
  --border: rgba(255, 255, 255, .14);
  --shadow: 0 25px 80px rgba(0, 0, 0, .35);
}

body.light-theme {
  --bg: #f5f7fb;
  --bg2: #ffffff;
  --card: rgba(255, 255, 255, .85);
  --card2: rgba(255, 255, 255, .95);
  --text: #101827;
  --muted: #526071;
  --gold: #c98a12;
  --gold2: #f5bd45;
  --blue: #0891b2;
  --border: rgba(15, 23, 42, .12);
  --shadow: 0 25px 70px rgba(15, 23, 42, .12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(246,196,83,.18), transparent 35%),
    radial-gradient(circle at top right, rgba(94,234,212,.15), transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, .8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.1rem;
}

.logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff1b8);
  color: #141414;
  box-shadow: 0 0 35px rgba(246,196,83,.45);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: .95rem;
    padding: 4px;
    color: var(--muted);
    border-radius: 0.4rem;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  color: #111 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
}

.hero {
  max-width: 1200px;
  margin: auto;
  padding: 90px 22px 70px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--gold2);
  border: 1px solid rgba(246,196,83,.35);
  background: rgba(246,196,83,.08);
  margin-bottom: 22px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.hero p,
.section-title p,
.premium-card p,
.future-box p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 900;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 15px 40px rgba(246,196,83,.25);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
}

.stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}

.stats strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.stats span {
  color: var(--muted);
  font-size: .86rem;
}

.coin-card {
  position: relative;
  min-height: 470px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding: 30px;
}

.coin-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(246,196,83,.3);
  filter: blur(50px);
}

.coin {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3b0, var(--gold), #b47b18);
  display: grid;
  place-items: center;
  color: #111;
  font-size: 4rem;
  font-weight: 1000;
  box-shadow: inset 0 0 30px rgba(255,255,255,.45), 0 0 70px rgba(246,196,83,.45);
  animation: floatCoin 4s ease-in-out infinite;
}

.coin-card h3 {
  margin-top: 30px;
  font-size: 2rem;
}

@keyframes floatCoin {
  0%,100% { transform: translateY(0) rotateY(0); }
  50% { transform: translateY(-16px) rotateY(15deg); }
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 22px;
}

.section.alt {
  max-width: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.04), transparent);
}

.section.alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.center {
  text-align: center;
}

.section-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 10px;
}

.premium-card,
.content-form,
.future-box > div {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.premium-card p + p {
  margin-top: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.icon {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: inline-block;
}

.premium-card h3,
.future-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.future-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.subscription {
  padding-bottom: 100px;
}

.content-form {
  max-width: 950px;
  margin: 35px auto 0;
}

.content-form h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}

.content-sub-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.content-input {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.content-input span {
  color: var(--muted);
  font-weight: 700;
}

.input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(5,8,22,.75);
  color: var(--text);
  outline: none;
  font-size: 1rem;
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246,196,83,.12);
}

.cuentas,
.cuenta-descrip,
.content-btn,
.cf-turnstile {
  grid-column: 1 / -1;
}

.cuentas {
  display: grid;
  gap: 18px;
  margin-top: 15px;
}

.span-title {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 900;
}

.span-banco {
  font-weight: 900;
}

.cuenta {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  display: grid;
  gap: 8px;
}

.span-clabe-text {
  color: var(--muted);
  font-size: .9rem;
}

.span-clabe {
  font-size: 1.2rem;
  color: var(--gold2);
  font-weight: 900;
  word-break: break-all;
}

.cuenta button,
.content-btn button {
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 900;
}

.cuenta button {
  margin-top: 8px;
  background: rgba(255,255,255,.1);
  color: var(--text);
  border: 1px solid var(--border);
}

.cuenta button:hover {
  background: rgba(246,196,83,.16);
}

.cuenta-descrip {
  padding: 24px;
  border-radius: 24px;
  background: rgba(94,234,212,.07);
  border: 1px solid rgba(94,234,212,.2);
  display: grid;
  gap: 10px;
}

.cuenta-descrip > span:first-child {
  color: var(--blue);
  font-weight: 900;
  font-size: 1.2rem;
}

.span-txt-descrip {
  color: var(--muted);
  line-height: 1.6;
}

.content-btn {
  text-align: center;
}

.content-btn button {
  width: min(100%, 360px);
  padding: 17px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-size: 1.05rem;
  box-shadow: 0 18px 45px rgba(246,196,83,.25);
}

.footer {
  text-align: center;
  padding: 40px 22px;
  border-top: 1px solid var(--border);
  background: rgb(0 0 0 / 1%);
}

.footer strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: #111827;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 79px;
    left: 16px;
    right: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(5,8,22,.96);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .coin-card {
    min-height: 380px;
  }

  .grid-2,
  .future-box,
  .content-sub-form,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 14px 16px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .premium-card,
  .content-form,
  .future-box > div {
    padding: 24px;
    border-radius: 24px;
  }

  .coin {
    width: 165px;
    height: 165px;
    font-size: 3rem;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}
.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: 12px;
}

body.light-theme {
  background:
    radial-gradient(circle at top left, rgba(245,189,69,.20), transparent 35%),
    radial-gradient(circle at top right, rgba(8,145,178,.12), transparent 30%),
    var(--bg);
}

body.light-theme .header {
  background: rgba(255, 255, 255, .82);
}

body.light-theme .input {
  background: rgba(255,255,255,.9);
}

body.light-theme .nav-links {
  background: rgba(255,255,255,.96);
}

body.light-theme .btn-secondary,
body.light-theme .cuenta button {
  background: rgba(15,23,42,.04);
}

body.light-theme .toast {
  background: #ffffff;
  color: #101827;
}


.logo-container {
    position: relative;
    width: 290px;
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(246, 196, 83, .35);
    background: radial-gradient(circle, rgba(246,196,83,.18), transparent 70%);
    animation: ringRotate 14s linear infinite;
}

.logo-coin {
    position: relative;
    z-index: 3;
    width: 260px;
    height: 260px;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: newCoin3D 7s ease-in-out infinite;
    filter:
        drop-shadow(0 0 25px rgba(246,196,83,.45))
        drop-shadow(0 0 60px rgba(246,196,83,.22));
}

.logo-coin::after {
    content: "";
}

@keyframes newCoin3D {
    0% {
        transform: translateY(0) rotateY(0deg) scaleX(1);
    }

    20% {
        transform: translateY(-10px) rotateY(0deg) scaleX(1);
    }

    35% {
        transform: translateY(-10px) rotateY(90deg) scaleX(.08);
    }

    50% {
        transform: translateY(-10px) rotateY(180deg) scaleX(1);
    }

    65% {
        transform: translateY(-10px) rotateY(270deg) scaleX(.08);
    }

    80% {
        transform: translateY(-10px) rotateY(360deg) scaleX(1);
    }

    100% {
        transform: translateY(0) rotateY(360deg) scaleX(1);
    }
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .logo-container {
        width: 220px;
        height: 220px;
    }

    .logo-coin {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        width: 210px;
        height: 210px;
    }

    .logo-coin {
        width: 200px;
        height: 200px;
    }
}.logo-coin-nav{
      width: 40px;
    height: 40px;
    object-fit: contain;
}
.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

@media(max-width:900px){
    .grid-3{
        grid-template-columns:1fr;
    }
}




.timeline-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 55px;
  bottom: 55px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--gold),
    rgba(246,196,83,.15),
    var(--blue)
  );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 22px 0;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: 0 0 35px rgba(246,196,83,.35);
  z-index: 2;
}

.timeline-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text);
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.75;
}

.timeline-item strong {
  color: var(--gold2);
}

body.light-theme .timeline-item strong {
  color: var(--gold);
}

@media (max-width: 600px) {
  .timeline-card {
    padding: 24px;
    border-radius: 26px;
  }

  .timeline-card::before {
    left: 43px;
    top: 45px;
    bottom: 45px;
  }

  .timeline-item {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }

  .timeline-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .timeline-item h3 {
    font-size: 1.15rem;
  }
}
.future-premium{
    background:linear-gradient(160deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid var(--border);
    border-radius:35px;
    padding:45px;
    box-shadow:var(--shadow);
}

.future-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:45px;
}

.future-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2.6rem;
    color:#111;
    flex-shrink:0;
    box-shadow:0 0 45px rgba(246,196,83,.35);
}

.future-header h3{
    font-size:2rem;
    margin-bottom:12px;
}

.future-header p{
    color:var(--muted);
    line-height:1.8;
}

.future-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.future-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    padding:30px;
    background:rgba(255,255,255,.05);
    border:1px solid var(--border);
    transition:.35s;
}

.future-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),var(--blue));
}

.future-card:hover{
    transform:translateY(-8px);
    border-color:rgba(246,196,83,.45);
}

.future-card i{
    font-size:2.3rem;
    color:var(--gold);
    margin-bottom:18px;
    display:block;
}

.future-card h4{
    margin-bottom:15px;
    font-size:1.35rem;
}

.future-card p{
    color:var(--muted);
    line-height:1.75;
}

@media(max-width:900px){

    .future-header{
        flex-direction:column;
        text-align:center;
    }

    .future-grid{
        grid-template-columns:1fr;
    }

    .future-premium{
        padding:28px;
    }

}

/*=============================
        NUESTRA VISIÓN
=============================*/

.vision-section{

    padding:120px 20px;

    background:
    radial-gradient(circle at top,
    rgba(246,196,83,.10),
    transparent 45%);
}

.vision-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:70px 50px;

    border-radius:35px;

    border:1px solid var(--border);

    background:linear-gradient(
    160deg,
    rgba(255,255,255,.09),
    rgba(255,255,255,.04));

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.vision-box::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(246,196,83,.08);

    border-radius:50%;

    top:-170px;
    right:-170px;

    filter:blur(10px);

}

.vision-icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold2));

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2.8rem;

    color:#111;

    box-shadow:
    0 0 50px rgba(246,196,83,.35);

    margin-bottom:30px;

}

.vision-subtitle{

    display:inline-block;

    padding:8px 18px;

    border-radius:100px;

    background:rgba(246,196,83,.12);

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:20px;

}

.vision-box h2{

    font-size:clamp(2rem,5vw,3.5rem);

    margin-bottom:30px;

    line-height:1.1;

}

.vision-box p{

    color:var(--muted);

    line-height:1.9;

    font-size:1.08rem;

    margin-bottom:25px;

}

.vision-box strong{

    color:var(--gold);

}

.vision-quote{

    margin-top:45px;

    padding:30px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

}

.vision-quote i{

    font-size:2rem;

    color:var(--gold);

    display:block;

    margin-bottom:15px;

}

.vision-quote span{

    font-size:1.25rem;

    font-weight:600;

    line-height:1.7;

}

.vision-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:768px){

    .vision-box{

        padding:45px 25px;

    }

    .vision-quote span{

        font-size:1.05rem;

    }

}


@media (max-width: 900px) {

    .nav {
        position: relative;
    }

    .menu-btn {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: var(--card);
        color: var(--text);
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 200;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;
        gap: 10px;

        padding: 18px;
        border-radius: 22px;

        background: rgba(5, 8, 22, .98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;

        z-index: 999;
        transition: .25s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        padding: 13px 15px;
        border-radius: 14px;
   }

    .nav-links a:hover {
        background: rgba(246,196,83,.12);
    }

    body.light-theme .nav-links {
        background: rgba(255,255,255,.98);
    }
}
/* =============================
   SECCIÓN PROPÓSITO NEW COIN
============================= */

.newcoin-purpose {
    position: relative;
}

.purpose-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 25px;
    margin-top: 40px;
}

.purpose-question,
.purpose-alert,
.investment-card,
.purpose-closing {
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.purpose-question {
    padding: 38px;
}

.purpose-question i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.purpose-question h3 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.purpose-question p {
    color: var(--muted);
    line-height: 1.85;
}

.purpose-question strong {
    color: var(--gold);
}

.purpose-alert {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(160deg, rgba(94,234,212,.10), rgba(255,255,255,.04));
}

.purpose-alert i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(94,234,212,.14);
    color: var(--blue);
    font-size: 1.8rem;
}

.purpose-alert h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.purpose-alert p {
    color: var(--muted);
    line-height: 1.75;
}

.investment-title {
    margin: 70px 0 28px;
    text-align: center;
}

.investment-title span {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.investment-title h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-top: 10px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.investment-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    transition: .35s ease;
}

.investment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(246,196,83,.13), transparent 40%);
    pointer-events: none;
}

.investment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246,196,83,.45);
}

.investment-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 22px;
    box-shadow: 0 0 35px rgba(246,196,83,.28);
}

.investment-card h4 {
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.investment-card p {
    color: var(--muted);
    line-height: 1.75;
}

.mini-example {
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    display: grid;
    gap: 8px;
}

.mini-example strong {
    color: var(--gold);
}

.mini-example span {
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
}

.purpose-closing {
    margin-top: 35px;
    padding: 42px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(246,196,83,.15), transparent 45%),
        linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}

.purpose-closing i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.purpose-closing h3 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin-bottom: 15px;
}

.purpose-closing p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 30px;
}

@media (max-width: 900px) {
    .purpose-hero,
    .investment-grid {
        grid-template-columns: 1fr;
    }

    .purpose-question,
    .purpose-alert,
    .investment-card,
    .purpose-closing {
        padding: 26px;
        border-radius: 24px;
    }

    .purpose-alert {
        flex-direction: column;
    }
}















/* =============================
   ANIMACIÓN PROFESIONAL SCROLL
============================= */

.reveal-section {
    opacity: 0;
    transform: translateY(70px) scale(.98);
    filter: blur(10px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.16, 1, .3, 1),
        filter .9s ease;
    will-change: opacity, transform, filter;
}

.reveal-section.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-section .premium-card,
.reveal-section .timeline-item,
.reveal-section .future-card,
.reveal-section .investment-card,
.reveal-section .content-input,
.reveal-section .cuenta,
.reveal-section .vision-box {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-section.show .premium-card,
.reveal-section.show .timeline-item,
.reveal-section.show .future-card,
.reveal-section.show .investment-card,
.reveal-section.show .content-input,
.reveal-section.show .cuenta,
.reveal-section.show .vision-box {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto escalonado */
.reveal-section.show .premium-card:nth-child(1),
.reveal-section.show .timeline-item:nth-child(1),
.reveal-section.show .future-card:nth-child(1),
.reveal-section.show .investment-card:nth-child(1),
.reveal-section.show .content-input:nth-child(1) {
    transition-delay: .08s;
}

.reveal-section.show .premium-card:nth-child(2),
.reveal-section.show .timeline-item:nth-child(2),
.reveal-section.show .future-card:nth-child(2),
.reveal-section.show .investment-card:nth-child(2),
.reveal-section.show .content-input:nth-child(2) {
    transition-delay: .16s;
}

.reveal-section.show .premium-card:nth-child(3),
.reveal-section.show .timeline-item:nth-child(3),
.reveal-section.show .future-card:nth-child(3),
.reveal-section.show .investment-card:nth-child(3),
.reveal-section.show .content-input:nth-child(3) {
    transition-delay: .24s;
}

.reveal-section.show .timeline-item:nth-child(4),
.reveal-section.show .future-card:nth-child(4),
.reveal-section.show .investment-card:nth-child(4),
.reveal-section.show .content-input:nth-child(4) {
    transition-delay: .32s;
}

.reveal-section.show .timeline-item:nth-child(5),
.reveal-section.show .content-input:nth-child(5) {
    transition-delay: .40s;
}

.reveal-section.show .timeline-item:nth-child(6),
.reveal-section.show .content-input:nth-child(6) {
    transition-delay: .48s;
}

/* Respeta usuarios que desactivan animaciones */
@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-section .premium-card,
    .reveal-section .timeline-item,
    .reveal-section .future-card,
    .reveal-section .investment-card,
    .reveal-section .content-input,
    .reveal-section .cuenta,
    .reveal-section .vision-box {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}







/* =============================
   PROYECTOS DETRÁS DE NEW COIN
============================= */

.ecosystem-section {
    position: relative;
}

.projects-backed {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 45px;
}

.backed-main-card,
.backed-project-card {
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    box-shadow: var(--shadow);
}

.backed-main-card {
    border-radius: 34px;
    padding: 38px;
    position: sticky;
    top: 105px;
    height: fit-content;
    overflow: hidden;
}

.backed-main-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(246,196,83,.15);
    filter: blur(18px);
}

.backed-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 25px rgba(246,196,83,.35));
}

.backed-main-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.backed-main-card p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.backed-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.backed-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-weight: 800;
    font-size: .9rem;
}

.backed-badges i {
    color: var(--gold);
    margin-right: 6px;
}

.backed-projects {
    display: grid;
    gap: 22px;
}

.backed-project-card {
    border-radius: 28px;
    padding: 28px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.backed-project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(94,234,212,.10), transparent 45%);
    pointer-events: none;
}

.backed-project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(246,196,83,.45);
}

.project-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    display: grid;
    place-items: center;
    font-size: 2rem;
    box-shadow: 0 0 35px rgba(246,196,83,.28);
}

.backed-project-card span {
    display: inline-block;
    color: var(--gold);
    font-weight: 900;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.backed-project-card h4 {
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.backed-project-card p {
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 950px) {
    .projects-backed {
        grid-template-columns: 1fr;
    }

    .backed-main-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .backed-main-card,
    .backed-project-card {
        padding: 24px;
        border-radius: 24px;
    }

    .backed-project-card {
        grid-template-columns: 1fr;
    }

    .project-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.6rem;
    }
}







.trust-grid,
.progress-grid,
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-card,
.number-card,
.progress-card,
.difference-side,
.roadmap-item,
.early-box,
.faq-item {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.trust-card,
.progress-card,
.number-card {
  padding: 28px;
  transition: .35s ease;
}

.trust-card:hover,
.progress-card:hover,
.number-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246,196,83,.45);
}

.trust-card i,
.progress-card i {
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.trust-card h3,
.progress-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.trust-card p,
.progress-card p,
.roadmap-item p,
.early-box p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.difference-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.difference-side {
  padding: 34px;
}

.difference-side h3 {
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.difference-side ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.difference-side li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.difference-side i {
  font-size: 1.4rem;
}

.difference-side.wrong i {
  color: #fb7185;
}

.difference-side.good i {
  color: var(--blue);
}

.number-card {
  text-align: center;
}

.number-card strong {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}

.number-card span {
  color: var(--muted);
  font-weight: 800;
}

.roadmap {
  position: relative;
  max-width: 900px;
  margin: 45px auto 0;
  display: grid;
  gap: 22px;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--blue));
}

.roadmap-item {
  position: relative;
  margin-left: 60px;
  padding: 28px;
}

.roadmap-item::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 25px rgba(246,196,83,.65);
}

.roadmap-item.done::before {
  background: var(--blue);
}

.roadmap-item span {
  color: var(--gold);
  font-weight: 900;
}

.roadmap-item h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.progress-bar {
  height: 12px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--border);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  animation: progressGlow 2.2s ease infinite alternate;
}

@keyframes progressGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.35); }
}

.early-box {
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.early-box h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 15px 0 20px;
}

.early-list {
  display: grid;
  gap: 16px;
}

.early-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.early-list i {
  color: var(--gold);
  font-size: 1.6rem;
}

.faq-list {
  max-width: 900px;
  margin: 35px auto 0;
  display: grid;
  gap: 15px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-item p {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.active p {
  display: block;
}

.faq-item.active button i {
  transform: rotate(45deg);
}

.faq-item button i {
  transition: .25s ease;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .trust-grid,
  .progress-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .early-box,
  .difference-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .trust-grid,
  .progress-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .progress-card,
  .number-card,
  .difference-side,
  .roadmap-item,
  .early-box {
    padding: 24px;
    border-radius: 24px;
  }

  .roadmap::before {
    left: 17px;
  }

  .roadmap-item {
    margin-left: 42px;
  }

  .roadmap-item::before {
    left: -34px;
  }
}



/* FIX DEFINITIVO COMO COMPRAR NEW COIN */

#comprar .nc-buy-layout{
    max-width:1200px;
    margin:45px auto 0;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:30px;
    align-items:flex-start;
}

#comprar .nc-buy-info{
    position:sticky;
    top:110px;
    padding:38px;
    border-radius:34px;
    border:1px solid var(--border);
    background:linear-gradient(160deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
    box-shadow:var(--shadow);
}

#comprar .nc-buy-icon{
    width:88px;
    height:88px;
    border-radius:28px;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#111;
    display:grid;
    place-items:center;
    font-size:2.7rem;
    margin-bottom:26px;
}

#comprar .nc-buy-info h3{
    font-size:2.4rem;
    line-height:1.1;
    margin-bottom:18px;
}

#comprar .nc-buy-info p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:30px;
}

#comprar .nc-buy-list{
    display:grid;
    gap:22px;
}

#comprar .nc-buy-step{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:22px;
    padding:28px;
    border-radius:28px;
    border:1px solid var(--border);
    background:linear-gradient(160deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
    box-shadow:var(--shadow);
    align-items:flex-start;
}

#comprar .nc-step-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#111;
    display:grid;
    place-items:center;
    font-size:2rem;
}

#comprar .nc-step-text span{
    display:block;
    color:var(--gold);
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:8px;
}

#comprar .nc-step-text h4{
    font-size:1.35rem;
    margin-bottom:10px;
    color:var(--text);
}

#comprar .nc-step-text p{
    color:var(--muted);
    line-height:1.75;
    margin:0;
}

@media(max-width:950px){
    #comprar .nc-buy-layout{
        grid-template-columns:1fr;
    }

    #comprar .nc-buy-info{
        position:relative;
        top:0;
    }
}

@media(max-width:600px){
    #comprar .nc-buy-layout{
        margin-top:30px;
    }

    #comprar .nc-buy-info,
    #comprar .nc-buy-step{
        padding:24px;
        border-radius:24px;
    }

    #comprar .nc-buy-step{
        grid-template-columns:55px 1fr;
        gap:16px;
    }

    #comprar .nc-step-icon{
        width:55px;
        height:55px;
        border-radius:18px;
        font-size:1.5rem;
    }

    #comprar .nc-buy-info h3{
        font-size:2rem;
    }
}

.resume-card h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.resume-card strong {
  color: var(--gold);
}

.actualidad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.actualidad-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  transition: .35s ease;
}

.actualidad-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246,196,83,.45);
}

.actualidad-card i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.actualidad-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.actualidad-card p {
  color: var(--muted);
  line-height: 1.7;
}

.nc-message-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.nc-message-box {
  max-width: 980px;
  margin: auto;
  text-align: center;
  padding: 55px 35px;
  border-radius: 35px;
  border: 1px solid rgba(246,196,83,.35);
  background:
    radial-gradient(circle at top, rgba(246,196,83,.18), transparent 45%),
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}

.nc-message-box span {
  display: block;
  height: 2px;
  max-width: 520px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nc-message-box span:last-child {
  margin: 28px auto 0;
}

.nc-message-box h2 {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.nc-message-box h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.nc-message-box p {
  max-width: 680px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.15rem;
}

.nc-message-box strong {
  color: var(--gold);
}

.ecosystem-premium {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: center;
}

.ecosystem-core {
  text-align: center;
  padding: 40px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.ecosystem-core img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(246,196,83,.45));
  animation: ecoFloat 3s ease-in-out infinite;
}

@keyframes ecoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.ecosystem-core h3 {
  font-size: 2rem;
  margin-top: 20px;
}

.ecosystem-core p {
  color: var(--muted);
  margin-top: 8px;
}

.ecosystem-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ecosystem-project {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  transition: .35s ease;
}

.ecosystem-project:hover {
  transform: translateY(-8px);
  border-color: rgba(246,196,83,.45);
}

.ecosystem-project i {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.ecosystem-project h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.ecosystem-project p {
  color: var(--muted);
  line-height: 1.7;
}

.how-buy-line {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.how-buy-step {
  position: relative;
  padding: 28px 22px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  transition: .35s ease;
}

.how-buy-step:hover {
  transform: translateY(-10px);
  border-color: rgba(246,196,83,.45);
}

.how-buy-step div {
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.how-buy-step i {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-size: 2rem;
  box-shadow: 0 0 35px rgba(246,196,83,.3);
}

.how-buy-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.how-buy-step p {
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}

@media (max-width: 1000px) {
  .actualidad-grid,
  .how-buy-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .actualidad-grid,
  .ecosystem-projects,
  .how-buy-line {
    grid-template-columns: 1fr;
  }

  .nc-message-box {
    padding: 40px 24px;
    border-radius: 28px;
  }

  .ecosystem-core,
  .ecosystem-project,
  .actualidad-card,
  .how-buy-step {
    padding: 24px;
    border-radius: 24px;
  }
}














/* =============================
   EFECTO 3D PREMIUM
============================= */

.coin,
.ecosystem-core img,
.backed-logo,
.logo-coin-nav {
    transform-style: preserve-3d;
}

.coin {
    animation: coin3dSpin 7s linear infinite;
}

@keyframes coin3dSpin {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(8deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

.premium-card,
.actualidad-card,
.ecosystem-project,
.how-buy-step,
.trust-card,
.progress-card,
.investment-card,
.future-card,
.vision-box,
.content-form {
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-3d-active {
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
    box-shadow: 0 35px 90px rgba(0,0,0,.45);
    border-color: rgba(246,196,83,.45);
}

.premium-card::after,
.actualidad-card::after,
.ecosystem-project::after,
.how-buy-step::after,
.trust-card::after,
.progress-card::after,
.investment-card::after,
.future-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.22), transparent 35%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.card-3d-active::after {
    opacity: 1;
}
.premium-card,
.actualidad-card,
.ecosystem-project,
.how-buy-step,
.trust-card,
.progress-card,
.investment-card,
.future-card {
    position: relative;
    overflow: hidden;
}







/* =============================
   FONDO BLOCKCHAIN PREMIUM
============================= */

.blockchain-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(246,196,83,.10), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(94,234,212,.08), transparent 25%),
        radial-gradient(circle at 50% 90%, rgba(246,196,83,.06), transparent 30%);
}

.blockchain-bg span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow:
        0 0 18px var(--gold),
        0 0 35px rgba(246,196,83,.35);
    animation: nodeFloat 9s ease-in-out infinite;
}

.blockchain-bg span::before,
.blockchain-bg span::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 160px;
    background: linear-gradient(90deg, rgba(246,196,83,.45), transparent);
    top: 50%;
    left: 100%;
    transform-origin: left center;
}

.blockchain-bg span::after {
    width: 110px;
    background: linear-gradient(90deg, rgba(94,234,212,.35), transparent);
    transform: rotate(58deg);
}

.blockchain-bg span:nth-child(1) { top: 14%; left: 8%; animation-delay: 0s; }
.blockchain-bg span:nth-child(2) { top: 22%; left: 32%; animation-delay: .7s; }
.blockchain-bg span:nth-child(3) { top: 12%; left: 68%; animation-delay: 1.1s; }
.blockchain-bg span:nth-child(4) { top: 38%; left: 18%; animation-delay: 1.8s; }
.blockchain-bg span:nth-child(5) { top: 46%; left: 52%; animation-delay: 2.5s; }
.blockchain-bg span:nth-child(6) { top: 34%; left: 84%; animation-delay: 3.1s; }
.blockchain-bg span:nth-child(7) { top: 68%; left: 12%; animation-delay: 3.8s; }
.blockchain-bg span:nth-child(8) { top: 76%; left: 38%; animation-delay: 4.4s; }
.blockchain-bg span:nth-child(9) { top: 66%; left: 72%; animation-delay: 5s; }
.blockchain-bg span:nth-child(10) { top: 84%; left: 88%; animation-delay: 5.6s; }

@keyframes nodeFloat {
    0%, 100% {
        transform: translate3d(0,0,0) scale(1);
        opacity: .35;
    }

    50% {
        transform: translate3d(0,-22px,0) scale(1.25);
        opacity: .85;
    }
}

body.light-theme .blockchain-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(201,138,18,.12), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(8,145,178,.10), transparent 25%),
        radial-gradient(circle at 50% 90%, rgba(201,138,18,.08), transparent 30%);
}

body.light-theme .blockchain-bg span {
    opacity: .45;
}

@media (max-width: 768px) {
    .blockchain-bg span::before,
    .blockchain-bg span::after {
        width: 90px;
    }

    .blockchain-bg span {
        opacity: .45;
    }
}
/*=========================================
      PREMIUM ALERT NEW COIN / CITMEDIC
=========================================*/

.alert-modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:flex-start;
    padding-top:35px;
    z-index:999999;
    pointer-events:none;
}

.alert{

    width:min(92%,470px);

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px;

    border-radius:22px;

    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    background:
    linear-gradient(145deg,
    rgba(24,29,42,.96),
    rgba(13,18,29,.92));

    box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04);

    animation:alertShow .45s cubic-bezier(.18,.89,.32,1.28);

    pointer-events:auto;

}


/* brillo */

.alert::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:70%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform:skewX(-25deg);

    animation:alertGlow 3.2s linear infinite;

}


/* linea superior */

.alert::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        #1DA1F2,
        #FFD15C,
        #2CEAA3
    );

}



.alert-i{

    width:70px;

    min-width:70px;

    height:70px;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
    145deg,
    rgba(255,209,92,.20),
    rgba(255,209,92,.06));

    border:1px solid rgba(255,209,92,.18);

    box-shadow:0 0 35px rgba(255,209,92,.18);

}

.alert-i img{

    width:40px;
    height:40px;
    object-fit:contain;

    animation:iconPulse 2s infinite;

}


.alert-text{

    display:flex;
    flex-direction:column;
    gap:6px;

}

#txt1{

    font-size:1.08rem;

    color:#fff;

    font-weight:800;

}

#txt2{

    color:#c7d2e4;

    line-height:1.6;

    font-size:.94rem;

}


/*=====================
        LIGHT
=====================*/

body.light-theme .alert{

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.92),
    rgba(246,248,252,.96));

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

body.light-theme #txt1{

    color:#111827;

}

body.light-theme #txt2{

    color:#4b5563;

}

body.light-theme .alert-i{

    background:linear-gradient(
    145deg,
    rgba(255,209,92,.25),
    rgba(255,209,92,.12));

}


/*=====================
      ANIMACIONES
=====================*/

@keyframes alertShow{

0%{

opacity:0;

transform:
translateY(-45px)
scale(.85);

}

100%{

opacity:1;

transform:
translateY(0)
scale(1);

}

}

@keyframes iconPulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.12);

}

}

@keyframes alertGlow{

0%{

left:-120%;

}

100%{

left:150%;

}

}


/*=====================
     RESPONSIVE
=====================*/

@media(max-width:600px){

.alert{

width:94%;

padding:16px;

gap:15px;

}

.alert-i{

width:58px;
height:58px;
min-width:58px;

border-radius:16px;

}

.alert-i img{

width:32px;
height:32px;

}

#txt1{

font-size:1rem;

}

#txt2{

font-size:.88rem;

}

}
.alert-hide{

    animation:alertHide .35s forwards;

}

@keyframes alertHide{

to{

opacity:0;

transform:
translateY(-35px)
scale(.92);

}

}/* Barra inferior */

.alert-progress{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:3px;

    background:rgba(255,255,255,.08);

}

.alert-progress span{

    display:block;

    width:100%;
    height:100%;

    background:linear-gradient(
    90deg,
    #1DA1F2,
    #FFD15C,
    #2CEAA3);

}