

/* =========================================================
   VARIABLES
========================================================= */

:root{
  --yellow:#ffd21c;
  --yellow-dark:#b18d00;
  --black:#080808;
  --black-2:#0d0d0d;
  --black-3:#131313;
  --white:#fff;
  --muted:#a7a7a7;
  --border:#252525;
  --green:#46e38c;
  --red:#ff5757;
}

/* =========================================================
   RESET
========================================================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--black);
  color:var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x:hidden;
}

body::selection{
  background:var(--yellow);
  color:#111;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
}

button{
  font:inherit;
}

/* =========================================================
   GLOBAL
========================================================= */

.container{
  width:min(1180px,92%);
  margin:auto;
}

section{
  padding:110px 0;
  position:relative;
}

.kicker{
  color:var(--yellow);
  font-size:13px;
  font-weight:1000;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.title{
  font-size:clamp(40px,6vw,68px);
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:20px;
}

.yellow{
  color:var(--yellow);
}

.muted{
  color:var(--muted);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:14px;
  padding:14px 22px;
  font-size:14px;
  font-weight:1000;
  border:2px solid var(--yellow);
  background:var(--yellow);
  color:#111;
  box-shadow:0 7px 0 var(--yellow-dark);
  transition:.18s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(3px);
  box-shadow:0 4px 0 var(--yellow-dark);
}

.btn.dark{
  background:#111;
  color:#fff;
  box-shadow:none;
}

.btn.dark:hover{
  background:#1a1a1a;
  transform:translateY(-2px);
}

.btn.full{
  width:100%;
}

/* =========================================================
   NAVBAR
========================================================= */

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:17px 4%;
  background:rgba(8,8,8,.76);
  backdrop-filter:blur(15px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  font-size:25px;
  font-weight:1000;
  letter-spacing:-1.5px;
}

.logo span{
  color:var(--yellow);
}

.navlinks{
  display:flex;
  gap:28px;
  align-items:center;
  color:#ddd;
  font-size:13px;
  font-weight:900;
}

.navlinks a{
  transition:.2s ease;
}

.navlinks a:hover{
  color:var(--yellow);
}

.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* =========================================================
   HERO
========================================================= */

.hero{
  min-height:100vh;
  padding:145px 0 80px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(255,210,28,.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 100%,
      rgba(255,210,28,.05),
      transparent 35%
    ),
    var(--black);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:clamp(80px,13vw,160px);
  line-height:.76;
  letter-spacing:-9px;
  margin:18px 0 25px;
  font-weight:1000;
}

.hero-tag{
  font-size:clamp(22px,3vw,34px);
  line-height:1.1;
  font-weight:900;
  margin-bottom:20px;
}

.hero-description{
  max-width:610px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:32px;
}

.hero-meta{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:28px;
  color:#888;
  font-size:12px;
}

.hero-meta strong{
  color:#ddd;
}

.hero-art{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-glow{
  position:absolute;
  width:470px;
  height:470px;
  border-radius:50%;
  background:rgba(255,210,28,.08);
  filter:blur(50px);
}

.heroimg{
  width:min(600px,100%);
  position:relative;
  z-index:2;
  filter:
    drop-shadow(0 30px 60px rgba(255,210,28,.13))
    drop-shadow(0 0 35px rgba(255,255,255,.04));
  animation:float 5s ease-in-out infinite;
}

@keyframes float{
  0%,100%{
    transform:translateY(0) rotate(-1deg);
  }
  50%{
    transform:translateY(-16px) rotate(1deg);
  }
}

/* =========================================================
   FLOATING BANANAS
========================================================= */

.floating{
  position:absolute;
  font-size:38px;
  opacity:.13;
  pointer-events:none;
  animation:bananaFloat linear infinite;
}

.floating.one{
  top:25%;
  left:5%;
  animation-duration:9s;
}

.floating.two{
  top:60%;
  right:7%;
  animation-duration:12s;
}

.floating.three{
  top:15%;
  right:35%;
  animation-duration:11s;
}

@keyframes bananaFloat{
  0%{
    transform:translateY(0) rotate(0);
  }
  50%{
    transform:translateY(-25px) rotate(15deg);
  }
  100%{
    transform:translateY(0) rotate(0);
  }
}

/* =========================================================
   TICKER
========================================================= */

.ticker{
  overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--yellow);
  color:#111;
}

.ticker-track{
  display:flex;
  width:max-content;
  animation:ticker 22s linear infinite;
  padding:13px 0;
}

.ticker-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding-right:36px;
  font-size:13px;
  font-weight:1000;
  text-transform:uppercase;
}

@keyframes ticker{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* =========================================================
   ABOUT
========================================================= */

.about-intro{
  max-width:760px;
}

.about-intro p{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:45px;
}

.card{
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.01)
    );
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px;
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-7px);
  border-color:#3c3c3c;
}

.card-icon{
  width:55px;
  height:55px;
  display:grid;
  place-items:center;
  background:#191919;
  border:1px solid #2b2b2b;
  border-radius:16px;
  font-size:26px;
  margin-bottom:22px;
}

.card h3{
  font-size:23px;
  margin-bottom:10px;
}

.card p{
  color:#999;
  line-height:1.7;
  font-size:15px;
}

/* =========================================================
   STATS
========================================================= */

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  margin-top:50px;
}

.stat{
  padding:28px 24px;
  background:#101010;
  border-right:1px solid var(--border);
}

.stat:last-child{
  border-right:none;
}

.stat-number{
  font-size:32px;
  font-weight:1000;
  color:var(--yellow);
}

.stat-label{
  color:#888;
  font-size:13px;
  margin-top:5px;
}

/* =========================================================
   TOKEN SECTION
========================================================= */

.token-section{
  background:
    linear-gradient(
      rgba(255,210,28,.025),
      rgba(255,210,28,0)
    );
}

.token-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:45px;
}

.token-card{
  background:#101010;
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px;
}

.token-card h3{
  font-size:23px;
  margin-bottom:20px;
}

.token-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}

.token-row:last-child{
  border-bottom:none;
}

.token-row span:first-child{
  color:#888;
}

.token-row strong{
  color:var(--yellow);
  text-align:right;
}

.contract-box{
  background:#181818;
  border:1px solid #2c2c2c;
  border-radius:14px;
  padding:14px;
  margin-top:18px;
}

.contract-label{
  font-size:11px;
  color:#777;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:8px;
}

.contract-address{
  font-size:13px;
  color:#bbb;
  word-break:break-all;
  line-height:1.5;
}

/* =========================================================
   TOKENOMICS
========================================================= */

.tokenomics{
  margin-top:22px;
}

.progress{
  height:14px;
  background:#202020;
  border-radius:50px;
  overflow:hidden;
  margin:20px 0 12px;
}

.progress-fill{
  height:100%;
  width:70%;
  background:var(--yellow);
  border-radius:50px;
}

.tokenomics-list{
  display:grid;
  gap:12px;
  margin-top:25px;
}

.tokenomics-item{
  display:flex;
  justify-content:space-between;
  padding:12px 14px;
  background:#171717;
  border-radius:12px;
}

.tokenomics-item span:first-child{
  color:#aaa;
}

/* =========================================================
   BUY SECTION
========================================================= */

.buy-box{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:25px;
  margin-top:45px;
}

.buy-main{
  padding:45px;
  border-radius:28px;
  border:1px solid var(--border);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(255,210,28,.12),
      transparent 40%
    ),
    #101010;
}

.buy-main h3{
  font-size:35px;
  margin-bottom:12px;
}

.buy-main p{
  color:#999;
  line-height:1.7;
}

.buy-steps{
  display:grid;
  gap:13px;
  margin-top:28px;
}

.buy-step{
  display:flex;
  gap:15px;
  align-items:flex-start;
  padding:15px;
  background:#161616;
  border:1px solid #222;
  border-radius:15px;
}

.step-number{
  min-width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:var(--yellow);
  color:#111;
  font-weight:1000;
}

.buy-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.social-card{
  flex:1;
  padding:28px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#101010;
}

.social-card h4{
  font-size:21px;
  margin-bottom:7px;
}

.social-card p{
  color:#888;
  line-height:1.6;
  font-size:14px;
  margin-bottom:18px;
}

/* =========================================================
   ROADMAP
========================================================= */

.roadmap{
  margin-top:50px;
  position:relative;
}

.roadmap-line{
  position:absolute;
  left:28px;
  top:0;
  bottom:0;
  width:2px;
  background:#282828;
}

.roadmap-item{
  position:relative;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:24px;
  margin-bottom:28px;
}

.roadmap-dot{
  position:relative;
  z-index:2;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:2px solid var(--yellow);
  background:#101010;
  font-weight:1000;
  color:var(--yellow);
}

.roadmap-card{
  background:#101010;
  border:1px solid var(--border);
  border-radius:22px;
  padding:27px;
}

.roadmap-card h3{
  font-size:22px;
  margin-bottom:9px;
}

.roadmap-card p{
  color:#929292;
  line-height:1.65;
}

/* =========================================================
   COMMUNITY
========================================================= */

.community{
  text-align:center;
}

.community-content{
  max-width:760px;
  margin:auto;
}

.community-content p{
  color:#999;
  line-height:1.75;
  font-size:18px;
}

.community-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-top:30px;
}

.community-panel{
  margin-top:50px;
  padding:35px;
  border:1px solid var(--border);
  border-radius:25px;
  background:#101010;
  text-align:left;
}

.community-panel h3{
  font-size:26px;
  margin-bottom:18px;
}

.community-panel-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.community-box{
  padding:20px;
  background:#161616;
  border-radius:15px;
}

.community-box strong{
  color:var(--yellow);
  display:block;
  font-size:23px;
  margin-bottom:6px;
}

.community-box span{
  color:#888;
  font-size:13px;
}

/* =========================================================
   FAQ
========================================================= */

.faq{
  max-width:850px;
  margin:45px auto 0;
}

.faq-item{
  border-bottom:1px solid var(--border);
}

.faq-question{
  width:100%;
  background:none;
  border:0;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  padding:22px 0;
  cursor:pointer;
  font-weight:900;
  font-size:17px;
}

.faq-icon{
  color:var(--yellow);
  font-size:25px;
  transition:.25s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:.35s ease;
}

.faq-answer p{
  color:#888;
  line-height:1.7;
  padding:0 0 22px;
}

.faq-item.active .faq-answer{
  max-height:250px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta{
  padding:80px 0;
}

.cta-box{
  text-align:center;
  padding:75px 30px;
  border-radius:30px;
  border:1px solid #383838;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(255,210,28,.15),
      transparent 45%
    ),
    #101010;
}

.cta-box h2{
  font-size:clamp(40px,7vw,72px);
  letter-spacing:-4px;
  margin-bottom:18px;
}

.cta-box p{
  color:#969696;
  max-width:600px;
  margin:auto;
  line-height:1.7;
}

/* =========================================================
   FOOTER
========================================================= */

footer{
  border-top:1px solid var(--border);
  padding:55px 0;
  color:#777;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:25px;
  flex-wrap:wrap;
  align-items:center;
}

.footer-brand{
  color:#fff;
  font-size:20px;
  font-weight:1000;
}

.footer-brand span{
  color:var(--yellow);
}

.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-size:13px;
}

.footer-links a:hover{
  color:var(--yellow);
}

.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:30px;
  padding-top:25px;
  font-size:12px;
  line-height:1.6;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:var(--yellow);
  color:#111;
  font-weight:1000;
  z-index:80;
  box-shadow:0 5px 0 var(--yellow-dark);
  transition:.2s;
}

.top:hover{
  transform:translateY(3px);
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px){

  .navlinks{
    display:none;
  }

  .nav{
    padding:15px 5%;
  }

  .hero{
    padding-top:125px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-copy{
    text-align:center;
  }

  .hero-description{
    margin:auto;
  }

  .actions{
    justify-content:center;
  }

  .hero-meta{
    justify-content:center;
  }

  .hero-art{
    order:-1;
  }

  .heroimg{
    max-width:420px;
  }

  .cards,
  .token-grid,
  .buy-box{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:1fr 1fr;
  }

  .stat:nth-child(2){
    border-right:none;
  }

  .stat:nth-child(-n+2){
    border-bottom:1px solid var(--border);
  }

  .community-panel-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  section{
    padding:80px 0;
  }

  .hero h1{
    font-size:78px;
    letter-spacing:-6px;
  }

  .hero-tag{
    font-size:24px;
  }

  .hero-description{
    font-size:16px;
  }

  .title{
    letter-spacing:-2px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .stat{
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .stat:last-child{
    border-bottom:none;
  }

  .buy-main{
    padding:28px;
  }

  .community-panel{
    padding:25px;
  }

  .cta-box{
    padding:55px 20px;
  }

  .nav-actions .btn{
    padding:10px 14px;
  }

}

/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal{
  opacity:0;
  transform:translateY(25px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}


/* MONKY live chart */
#chart { background:var(--black-2); scroll-margin-top:90px; }
.monky-chart-description { color:var(--muted); margin:16px 0 28px; }
.monky-chart-panel { overflow:hidden; border:1px solid var(--border); border-radius:20px; background:var(--black-3); }
.monky-chart-frame { display:block; width:100%; height:600px; border:0; color-scheme:dark; }
.monky-chart-footer { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:20px; }
.monky-chart-footer p { max-width:650px; color:var(--muted); font-size:14px; line-height:1.6; }
.monky-chart-footer .btn { flex-shrink:0; }
.monky-chart-contract { margin-top:20px; color:var(--muted); font-size:12px; overflow-wrap:anywhere; }
@media(max-width:600px) {
  .monky-chart-frame { height:480px; }
  .monky-chart-footer { align-items:flex-start; flex-direction:column; }
}
.monky-chart-frame[hidden] { display:none; }

/* Market dashboard */
:root { --jupiter-plugin-primary:255,210,28; --jupiter-plugin-background:13,13,13; --jupiter-plugin-primaryText:255,255,255; --jupiter-plugin-warning:255,210,28; --jupiter-plugin-interactive:37,37,37; --jupiter-plugin-module:23,23,23; }
.market { border-top:1px solid var(--border); }
.market-heading,.market-card-head,.market-update { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.market-heading { margin-bottom:26px; }
.market-heading .title { font-size:clamp(34px,4.5vw,60px); letter-spacing:-2px; margin:12px 0; }
.market-muted,.market-note,.market-update { color:var(--muted); font-size:14px; line-height:1.6; }
.market-badge { font-size:10px; letter-spacing:1.5px; color:var(--yellow); border:1px solid #5d4e16; border-radius:30px; padding:8px 12px; white-space:nowrap; }
.market-contract { display:flex; flex-wrap:wrap; align-items:center; gap:14px; padding:16px 20px; border:1px solid var(--border); border-radius:14px; margin-bottom:22px; background:#111; }
.market-contract code { font-size:12px; overflow-wrap:anywhere; min-width:0; }
.market-contract button,.market-update button { cursor:pointer; background:var(--yellow); color:#080808; border:0; border-radius:8px; padding:10px 14px; font-family:inherit; font-size:11px; font-weight:700; }
.market button:disabled { opacity:.5; cursor:wait; }
.market a:focus-visible,.market button:focus-visible { outline:2px solid var(--yellow); outline-offset:5px; }
#market-copy-status { font-size:12px; color:var(--yellow); }
.market-metrics { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:12px; }
.market-metric { padding:22px 18px; background:linear-gradient(145deg,#1a1a15,#111); border:1px solid var(--border); border-radius:14px; }
.market-metric span { display:block; font-size:12px; color:var(--muted); margin-bottom:12px; }
.market-metric strong { font-size:clamp(19px,2vw,27px); overflow-wrap:anywhere; }
[data-direction="up"],#market-buys { color:var(--green); }
[data-direction="down"],#market-sells { color:var(--red); }
.market-update { margin:16px 0 22px; font-size:12px; }
.market-update button { background:#222; color:#ddd; }
.market-grid { display:grid; grid-template-columns:minmax(0,1.6fr) minmax(340px,1fr); gap:20px; align-items:start; }
.market-card { min-width:0; padding:22px; border:1px solid var(--border); border-radius:18px; background:#111; overflow:hidden; }
.market-card-head { margin-bottom:18px; flex-wrap:wrap; }
.market-card-head h3 { font-size:19px; }
.market-card-head a,.market-external { color:var(--yellow); font-size:12px; }
.market-external { display:inline-block; margin-top:18px; }
.market .monky-chart-frame { height:550px; margin-top:18px; border-radius:12px; }
.market-note { font-size:12px; margin-top:15px; }
#jupiter-plugin { width:100%; min-height:520px; margin-top:16px; }
.market-bottom { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:20px; }
.market-activity { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.market-activity span { display:block; color:var(--muted); font-size:12px; margin-bottom:10px; }
.market-activity strong { font-size:30px; }
@media(max-width:1000px) { .market-grid { grid-template-columns:1fr; } .market-metrics { grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media(max-width:600px) { .market-heading { align-items:flex-start; flex-direction:column; } .market-metrics,.market-bottom { grid-template-columns:1fr 1fr; } .market-bottom { grid-template-columns:1fr; } .market-metric { padding:16px 12px; } .market-card { padding:16px 12px; } .market .monky-chart-frame { height:430px; } .market-contract { padding:14px; } }


#jupiter-plugin[hidden] { display:none; }
.monky-calculator label { display:block; margin:30px 0 12px; color:var(--muted); font-size:13px; }
.calc-inputs { display:grid; grid-template-columns:minmax(0,1fr) 95px; gap:12px; }
.calc-inputs input,.calc-inputs select { min-width:0; width:100%; background:#1b1b1b; border:1px solid #444; border-radius:12px; color:white; padding:16px 12px; font-size:20px; }
.calc-inputs :focus-visible { outline:2px solid var(--yellow); }
.calc-result { margin:24px 0; padding:28px 20px; background:#211e0d; border:1px solid #5d4e16; border-radius:16px; }
.calc-result span { font-size:11px; letter-spacing:2px; color:var(--muted); }
.calc-result output { display:block; font-size:clamp(28px,4vw,46px); font-weight:800; color:var(--yellow); margin:16px 0 8px; overflow-wrap:anywhere; }
.calc-result strong { font-size:14px; }
.mini-price-chart { margin-top:28px; padding-top:24px; border-top:1px solid var(--border); }
#mini-price-current { color:var(--yellow); font-size:18px; }
#mini-price-svg { display:block; width:100%; height:auto; margin:16px 0 8px; }
.mini-price-meta { display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; color:var(--muted); font-size:11px; }
#history-frame { display:block; width:100%; height:380px; margin-top:14px; border:0; border-radius:12px; background:#111; }
#history-frame[hidden] { display:none; }
#history-retry { margin-top:12px; font-size:12px; padding:10px 14px; }
@media(max-width:600px) { #history-frame { height:340px; } }
