:root {
  --orange: #ff4500;
  --bright: #ff6a00;
  --yellow: #ffb347;
  --bg: black;
  --card: #110800;
  --border: #3a1a00;
  --text: #e8d5b0;
  --muted: #8a6a50;
  --dim: #4a3020;
  --fd: "Cinzel Decorative", serif;
  --fu: "Orbitron", monospace;
  --fb: "Rajdhani", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    text-shadow:
      0 0 10px #ff4500,
      0 0 20px #ff6a00,
      0 0 40px #ffb347;
  }
  25% {
    opacity: 0.76;
    text-shadow:
      0 0 10px #ff4500,
      0 0 20px #ff6a00;
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 15px #ff4500,
      0 0 30px #ff6a00,
      0 0 90px #ffb347;
  }
  75% {
    opacity: 0.76;
    text-shadow:
      0 0 10px #ff4500,
      0 0 20px #ff6a00;
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(255, 69, 0, 0.4),
      0 0 20px rgba(255, 69, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 20px rgba(255, 69, 0, 0.7),
      0 0 30px rgba(255, 69, 0, 0.35),
      0 0 60px rgba(255, 69, 0, 0.12);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes burnIn {
  0% {
    opacity: 0;
    filter: brightness(3) saturate(0);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
}
@keyframes ember {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-130px) translateX(var(--drift, 0px)) scale(0);
    opacity: 0;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TICKER ── */
.ticker {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1a0500, #2a0800, #1a0500);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker-item {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
.ticker-item::after {
  content: "|";
  margin-left: 40px;
  opacity: 0.3;
}
/* --navs --*/
/* ── Nav Header ── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: rgba(10, 5, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #3A1A00;
}

/* ── Logo ── */
.logo h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  color: #FF4500;
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
  white-space: nowrap;
}

/* ── Nav Links ── */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-links ul li {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a6a50;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

/* underline hover effect */
.nav-links ul li::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF4500;
  transition: width 0.25s ease;
}

.nav-links ul li:hover {
  color: #FF4500;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* audio button styling */
.audio-btn {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FF6A00;
}
/* ── Stake Button ── */
.stake-button button {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #FF4500, #FF6A00);
  border: none;
  border-radius: 4px;
  padding: 11px 24px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  animation: pulseGlow 2s ease-in-out infinite;
  white-space: nowrap;
}

.stake-button button:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* ── Mobile (hamburger menu) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px
}
/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 85%,
      rgba(58, 13, 0, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 50% 105%,
      rgba(255, 69, 0, 0.13) 0%,
      transparent 50%
    ),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF4500' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.logo-wrap {
  position: relative;
  /* margin-bottom: 28px; */
  animation:
    float 4s ease-in-out infinite,
    burnIn 1s ease-out both;
}
.logo-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: radial-gradient(circle, #1a0500 60%, #3a0d00 100%);
  position: relative;
  animation: pulseGlow 2s ease-in-out infinite;
}
.logo-ring img{
    width: 95%;
    clip-path: circle();
}
/* .logo-ring::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 69, 0, 0.2);
} */

.hero-title {
  font-family: var(--fd);
  font-size: clamp(40px, 9vw, 88px);
  color: var(--orange);
  line-height: 1.05;
  margin-top: 5%;
  animation: flicker 3s ease-in-out infinite;
}
.hero-sub {
  font-family: var(--fu);
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  opacity: 0.85;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2a0800;
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 7px 18px;
  font-family: var(--fu);
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: pulseGlow 2s ease-in-out infinite;
}
.hero-tagline {
  font-size: 17px;
  color: #c4a882;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 500;
}
.hero-tagline em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 400px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 26px;
  width: 160px;
  text-align: center;
}
.stat-lbl {
  font-family: var(--fu);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.stat-val {
  font-family: var(--fu);
  font-size: 22px;
  color: var(--yellow);
  font-weight: 700;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  font-family: var(--fu);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--orange), var(--bright));
  color: #fff;
  transition:
    transform 0.15s,
    filter 0.15s;
  animation: pulseGlow 2s ease-in-out infinite;
}
.btn-primary:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  font-family: var(--fu);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  transition: all 0.15s;
}
.btn-secondary:hover {
  background: rgba(255, 69, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  background: #1a0500;
  color: var(--yellow);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.btn-ghost:hover {
  background: #2a0800;
  border-color: var(--orange);
}

/* embers */
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347, #ff4500);
  box-shadow: 0 0 6px #ff4500;
  animation: ember var(--dur, 3s) ease-out var(--delay, 0s) infinite;
}

/* ── SECTIONS ── */
.sw{
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
.sec-title, .mv-title {
  font-family: var(--fd);
 font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.sec-title span, .mv-title span {
  color: var(--orange);
}
.sec-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.5px;
}
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 1.4rem auto;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
/* ── MISSION AND VISION ── */
.mv{
     border-top: 1px solid var(--border);
}
.mv-image, .mv-image2{
    max-width: 100%;
    margin-top: 4rem;
    /* perspective: 1000px; */
}
.mv-image img, .mv-image2 img{
    width:100%;
    /* transform: rotateX(10deg) rotateY(-15deg); */
transform: rotate(-5deg);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    
}
.mv-container{
  padding: 4rem 2rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-left: 15%;
}
.mission, .vision{
    align-items: center;
    align-content: center;
    gap: 3rem;
    background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2rem;
}
.mission h2, .vision h2{
     color: var(--orange);
 text-align: center;
     padding: 1rem 0;
}
/* ── HOW IT WORKS ── */
.hiw-section {
  background: linear-gradient(
    180deg,
    #0d0600,
    #110800 40%,
    #110800 60%,
    #0d0600
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.hiw-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease-out both;
}
.hiw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 110%,
    rgba(255, 69, 0, 0.07),
    transparent 70%
  );
  pointer-events: none;
}
.hiw-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(255, 69, 0, 0.15);
}
.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #8b0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
}
.hiw-step {
  font-family: var(--fu);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hiw-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.hiw-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TOKENOMICS ── */
.tok-section {
  background: linear-gradient(180deg, transparent, #110800 20%, #110800 80%, transparent);
  border-top: 1px solid #3a1a00;
}

.tok-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.tok-card {
  background: #110800;
  border: 1px solid #3a1a00;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.3s, transform 0.2s;
}

.tok-card:hover {
  border-color: #FF4500;
  transform: translateX(4px);
}

.tok-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.tok-emoji {
  font-size: 24px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.tok-card-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #e8d5b0;
  margin-bottom: 3px;
}

.tok-card-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #8a6a50;
}

.tok-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 120px;
}

.tok-card-pct {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.tok-bar-track {
  width: 100%;
  height: 5px;
  background: #3a1a00;
  border-radius: 3px;
  overflow: hidden;
}

.tok-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.tok-note {
  text-align: center;
  margin-top: 36px;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4a3020;
}
/*Tokenomics styling*/
.tokenomics-container{
     display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
}
.tokenomics .tok-cards {
    width: 50%;
    margin: 0;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-top: 0;
    flex: 1 1 380px;
    max-width: 480px;
}

.tokenomics-chart canvas {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}


/*Token-info styling*/
#token-info {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--bg);
    color: white;
    animation: fadeIn 2s ease;
  
}

#token-info h2{
    font-size: 2.5em;
    margin-bottom: 30px;
}
.token-info{
    padding: 2rem;
}
#token-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
  .tok-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .tok-card-right {
    width: 100%;
    align-items: flex-start;
  }
  .tok-bar-track {
    width: 100%;
  }
  .tok-card-pct {
    font-size: 22px;
  }
}

/* ── STAKING ── */
.stk-section {
  border-top: 1px solid var(--border);
}
.stk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.stk-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.stk-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(255, 69, 0, 0.15);
}
.stk-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #1c0600, var(--card));
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.2);
}
.stk-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--bright));
  color: #fff;
  font-size: 9px;
  font-family: var(--fu);
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 9999px;
  font-weight: 700;
  white-space: nowrap;
}
.stk-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.stk-dur {
  font-family: var(--fu);
  font-size: 12px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.stk-apy {
  font-family: var(--fd);
  font-size: 32px;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 4px;
  animation: flicker 3s ease-in-out infinite;
}
.stk-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reg-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 540px;
  margin: 0 auto;
}
.reg-title {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 8px;
  text-align: center;
}
.reg-desc {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}
.reg-row {
  display: flex;
  gap: 10px;
}
.reg-input {
  flex: 1;
  background: #0e0600;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.reg-input:focus {
  border-color: var(--orange);
}
.reg-input::placeholder {
  color: var(--dim);
}

/* ── ROADMAP ── */
.rm-section {
  background: linear-gradient(
    180deg,
    transparent,
    var(--card) 20%,
    var(--card) 80%,
    transparent
  );
  border-top: 1px solid var(--border);
}
.rm-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.rm-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--orange),
    rgba(255, 69, 0, 0.2),
    transparent
  );
}
.rm-item {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}
.rm-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.rm-dot.active {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
  background: linear-gradient(135deg, #1c0500, var(--card));
}
.rm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 28px;
  flex: 1;
  transition: border-color 0.3s;
}
.rm-card:hover {
  border-color: var(--orange);
}
.rm-card.active {
  border-color: rgba(255, 69, 0, 0.4);
}
.rm-phase {
  font-family: var(--fu);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.rm-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.rm-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rm-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.rm-dot-sym {
  color: var(--orange);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

/* ── WALL OF FAME ── */
.wof-section {
  border-top: 1px solid var(--border);
}
.wof-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.wof-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(255, 69, 0, 0.06),
    transparent 70%
  );
  pointer-events: none;
}
.wof-icon {
  font-size: 72px;
  margin-bottom: 18px;
  opacity: 0.35;
}
.wof-title {
  font-size: 22px;
  font-weight: 700;
  color: #5a4030;
  margin-bottom: 10px;
}
.wof-desc {
  font-size: 15px;
  color: var(--dim);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section {
  background: linear-gradient(
    180deg,
    transparent,
    var(--card) 20%,
    var(--card) 80%,
    transparent
  );
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--orange);
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  color: var(--text);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
  transition: color 0.3s;
  gap: 12px;
}
.faq-item.open .faq-q {
  color: var(--orange);
}
.faq-chev {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #0e0600;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a-inner {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}

/* ── FOOTER ── */
.footer {
  background: #060200;
  border-top: 1px solid var(--border);
  padding: 56px 20px 32px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.f-logo {
  font-family: var(--fd);
  font-size: 26px;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
  animation: flicker 4s ease-in-out infinite;
  text-align: center;
}
.f-tag {
  font-size: 14px;
  color: var(--dim);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
}
.f-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.f-social {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.f-social:hover {
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.3);
  transform: scale(1.1);
}
.f-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.f-link {
  font-family: var(--fu);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.f-link:hover {
  color: var(--orange);
}
.f-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.f-copy {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
 
  /* Nav: hide links, keep logo + button */
  .nav-links {
    display: none;
  }
 
  .nav-header {
    padding: 0 24px;
  }
 
  /* Tokenomics: stack chart above list */
  .tok-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
 
  /* Mission & Vision */
  .main-mv {
    flex-direction: column;
  }
 
  .mv-image {
    display: none;
  }
 
  .mv-image2 {
    display: block !important;
    max-width: 100%;
    text-align: center;
  }
 
  .mv-image2 img {
    width: 60%;
    margin: 0 auto;
  }
 
  .mv-container {
    padding: 2rem 1rem;
    margin: 0 auto;
  }

}
 
 
/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  
 
  /* ── NAV ── */
  .nav-header {
    padding: 0 16px;
    height: 60px;
    position: sticky;
    top: 38px; /* sits just below the ticker */
  }
 
  .logo h3 {
    font-size: 14px;
  }
 
  .nav-links {
    display: none; /* hidden until hamburger toggled */
    position: fixed;
    top: 98px; /* ticker (38px) + nav (60px) */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 3, 0, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 32px 24px;
    z-index: 199;
    overflow-y: auto;
  }
 
  .nav-links.open {
    display: block;
  }
 
  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
 
  .nav-links ul li {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
 
  .nav-links ul li:last-child {
    border-bottom: none;
  }
 
  .nav-links ul li::after {
    display: none; /* remove desktop underline */
  }
 
  /* Hamburger toggle */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 201;
  }
 
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
 
  /* Animate hamburger → X when open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
 
  .stake-button button {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 1px;
  }
 
  /* ── TICKER ── */
  .ticker {
    position: sticky;
    top: 0;
    z-index: 200;
  }
 
  /* ── HERO ── */
  .hero {
    padding: 40px 16px 60px;
    min-height: auto;
  }
 
  .logo-ring {
    width: 200px;
    height: 200px;
    font-size: 60px;
  }
 
  .hero-title {
    font-size: clamp(28px, 10vw, 48px);
    margin-top: 20px;
  }
 
  .hero-sub {
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }
 
  .hero-badge {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 16px;
  }
 
  .hero-tagline {
    font-size: 15px;
    margin-bottom: 24px;
    padding: 0 8px;
  }
 
  .stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
  }
 
  .stat-box {
    width: calc(50% - 10px);
    min-width: 130px;
    padding: 12px 10px;
  }
 
  .stat-lbl {
    font-size: 8px;
    letter-spacing: 1px;
  }
 
  .stat-val {
    font-size: 18px;
  }
 
  .btn-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
 
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 12px;
  }
 
  /* ── SECTION WRAPPER ── */
  .sw {
    padding: 56px 16px;
  }
 
  .mv-title {
   font-size: 2rem;
  }

  .sec-sub {
    font-size: 13px;
    padding: 0 8px;
  }
 
  /* ── MISSION & VISION ── */
  .main-mv {
    flex-direction: column;
    gap: 0;
  }
 
  .mv-image {
    display: none !important;
  }
 
  .mv-image2 {
    display: block !important;
    max-width: 100%;
    margin: 0 auto 0;
    text-align: center;
  }
 
  .mv-image2 img {
    width: 70%;
    margin: 0 auto;
    transform: rotate(-3deg);
  }
 
  .mv-container {
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
 
  .mission,
  .vision {
    width: 100%;
    margin: 0;
    padding: 1.5rem;
  }
 
  .mission h2,
  .vision h2 {
    font-size: 18px;
    padding: 0.5rem 0 0.75rem;
  }
 
  .mission p,
  .vision p {
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    color: var(--muted);
  }
 
  /* ── HOW IT WORKS ── */
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
 
  .hiw-card {
    padding: 28px 20px;
  }
 
  .hiw-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
    margin-bottom: 14px;
  }
 
  .hiw-title {
    font-size: 17px;
  }
 
  .hiw-desc {
    font-size: 13px;
  }
 
  /* ── TOKENOMICS ── */
  .tok-section {
    flex-direction: column;
    align-items: center;
    padding: 48px 16px;
    gap: 24px;
  }
  .tok-section .tok-cards {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
.tokenomics-chart {
    flex: none;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0;
}
  .tok-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .tok-card-right {
    width: 100%;
    align-items: flex-start;
  }
  .tok-bar-track {
    width: 100%;
  }
  .tok-card-pct {
    font-size: 22px;
  }
  .tokenomics-container {
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    gap: 20px;
  }
  .tok-cards {
    width: 100% !important;
  }
}
 
  /* ── STAKING ── */
  .stk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
 
  .stk-card {
    padding: 28px 12px 20px;
  }
 
  .stk-card.featured {
    margin-top: 14px; /* extra room for the badge */
  }
 
  .stk-apy {
    font-size: 26px;
  }
 
  .stk-dur {
    font-size: 11px;
  }
 
  .reg-box {
    padding: 24px 16px;
    border-radius: 12px;
  }
 
  .reg-title {
    font-size: 16px;
  }
 
  .reg-row {
    flex-direction: column;
    gap: 10px;
  }
 
  .reg-input {
    width: 100%;
  }
 
  .reg-row .btn-primary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
 
  /* ── ROADMAP ── */
  .rm-timeline {
    padding-left: 0;
  }
 
  .rm-line {
    left: 20px;
  }
 
  .rm-item {
    gap: 16px;
  }
 
  .rm-dot {
    width: 42px;
    height: 42px;
    font-size: 16px;
    flex-shrink: 0;
  }
 
  .rm-card {
    padding: 16px 16px;
  }
 
  .rm-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
 
  .rm-bullet {
    font-size: 13px;
  }
 
  /* ── WALL OF FAME ── */
  .wof-box {
    padding: 40px 20px;
  }
 
  .wof-icon {
    font-size: 52px;
  }
 
  .wof-title {
    font-size: 18px;
  }
 
  .wof-desc {
    font-size: 13px;
  }
 
  /* ── FAQ ── */
  .faq-q {
    font-size: 13px;
    padding: 16px 14px;
  }
 
  .faq-a-inner {
    font-size: 13px;
    padding: 14px;
  }
 
  /* ── FOOTER ── */
  .footer {
    padding: 40px 16px 24px;
  }
 
  .f-logo {
    font-size: 20px;
  }
 
  .f-tag {
    font-size: 13px;
  }
 
  .f-nav {
    gap: 6px 16px;
  }
 
  .f-link {
    font-size: 10px;
  }
 
  .f-copy {
    font-size: 11px;
    padding: 0 8px;
  }

 
/* ── Extra small (≤ 380px) ── */
@media (max-width: 380px) {
 
  .logo h3 {
    font-size: 12px;
  }
 
  .logo-ring {
    width: 160px;
    height: 160px;
  }
 
  .hero-title {
    font-size: 26px;
  }
 
  .stat-box {
    width: calc(50% - 8px);
    padding: 10px 8px;
  }
 
  .stat-val {
    font-size: 16px;
  }
 
  .stk-grid {
    grid-template-columns: 1fr;
  }
 
  .stk-apy {
    font-size: 30px;
  }
  .tokenomics-container{
    flex-direction: column;
    align-items: center;
    padding: 48px 16px;
    gap: 24px;
  }
}
 

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}