/* Font Faces */
@font-face {
  font-family: 'Manrope-Regular';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400
}

@font-face {
  font-family: 'Manrope-Medium';
  src: url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500
}

@font-face {
  font-family: 'Manrope-SemiBold';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600
}

@font-face {
  font-family: 'Manrope-Bold';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700
}

@font-face {
  font-family: 'Manrope-ExtraBold';
  src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800
}

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

.hidden {
  display: none !important
}

/* Toast */
.toast-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.toast-msg {
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Manrope-Medium', sans-serif;
  font-size: 14px;
  color: #fff;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: all .3s ease;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(0)
}

.toast-msg.success {
  background: rgba(0, 213, 194, .15);
  border-color: rgba(0, 213, 194, .3);
  color: #00d5c2
}

.toast-msg.error {
  background: rgba(255, 107, 107, .15);
  border-color: rgba(255, 107, 107, .3);
  color: #ff6b6b
}

.toast-msg.warning {
  background: rgba(243, 156, 18, .15);
  border-color: rgba(243, 156, 18, .3);
  color: #f39c12
}

.toast-msg.info {
  background: rgba(100, 150, 255, .15);
  border-color: rgba(100, 150, 255, .3);
  color: #6496ff
}

.btl {
  min-height: 100vh;
  background: linear-gradient(135deg, #04120e 0%, #000000 100%);
  background-attachment: fixed;
  color: #fff;
  position: relative;
  font-family: 'Manrope-Regular', sans-serif
}

.btl * {
  box-sizing: border-box
}

/* Custom Header */
.bth {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid #00d5c34d;
  padding: 13px 10px
}

.bth-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.bth-logo {
  width: 150px;
  height: auto;
  display: block
}

.bth-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.bth-btn {
  background: #00d5c2;
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Manrope-Bold';
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s
}

.bth-btn:hover {
  background: #00f5e0;
  box-shadow: 0 0 15px rgba(0, 213, 194, 0.4);
  transform: translateY(-1px)
}

.bth-user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 213, 194, 0.05);
  padding: 6px 6px 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(0, 213, 194, 0.2)
}

.bth-wallet {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Manrope-SemiBold';
  font-size: 14px;
  letter-spacing: 0.5px
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d5c2;
  box-shadow: 0 0 8px rgba(0, 213, 194, 0.6);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite
}

.bth-profile-wrap {
  position: relative
}

.bth-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 213, 194, 0.1);
  border: 1px solid rgba(0, 213, 194, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d5c2;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0
}

.bth-icon-btn:hover {
  background: rgba(0, 213, 194, 0.2)
}

.bth-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #081a17;
  border: 1px solid rgba(0, 213, 194, 0.2);
  border-radius: 12px;
  padding: 8px;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.bth-profile-wrap:hover .bth-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.bth-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Manrope-Medium';
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.2s
}

.bth-drop-item:hover {
  background: rgba(0, 213, 194, 0.1);
  color: #00d5c2
}

.bth-drop-item.text-red:hover {
  background: rgba(255, 50, 50, 0.1);
  color: #ff4d4d
}

/* Overlay */
.purchase__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px)
}

.purchase__overlay__content {
  text-align: center
}

.purchase__overlay__content h3 {
  color: #00d5c2;
  font-size: 20px;
  font-family: 'Manrope-Bold';
  margin: 20px 0 8px
}

.overlay__sub {
  color: #6E6E6E;
  font-size: 14px;
  font-family: 'Manrope-Regular';
  margin: 0
}

.purchase__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 213, 194, .2);
  border-top: 4px solid #00d5c2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* Section common */
.sec {
  padding: 60px 30px;
  position: relative
}

.sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 194, .25), transparent)
}

.sec__inner {
  max-width: 1200px;
  margin: 0 auto
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 213, 194, .08);
  border: 1px solid rgba(0, 213, 194, .22);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  color: #00d5c2;
  font-family: 'Manrope-SemiBold';
  margin-bottom: 16px;
  letter-spacing: .5px
}

.sec-title {
  font-size: 36px;
  font-family: 'Manrope-Bold';
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2
}

.sec-headline {
  font-size: 26px;
  font-family: 'Manrope-Bold';
  color: #fff;
  margin: 0 0 8px
}

.sec-sub {
  font-size: 15px;
  color: #6E6E6E;
  font-family: 'Manrope-Regular';
  margin: 0 0 30px;
  max-width: 600px;
  line-height: 1.6
}

/* Hero */
.hero {
  padding: 50px 30px 0px;
  position: relative;
  overflow: hidden
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 213, 194, .15) 0%, transparent 60%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-50px, 50px) scale(1.1)
  }
}

.hero__grid {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.hero__left {
  padding-top: 20px
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 213, 194, .1);
  border: 1px solid rgba(0, 213, 194, .28);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  color: #00d5c2;
  font-family: 'Manrope-SemiBold';
  margin-bottom: 24px;
  letter-spacing: .5px;
  animation: fadeUp .8s ease-out
}

.badge__pulse {
  width: 8px;
  height: 8px;
  background: #00d5c2;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.hero__title {
  font-size: 42px;
  font-family: 'Manrope-Bold';
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  animation: fadeUp .8s ease-out .1s both
}

.hero__title-massive {
  font-size: 72px;
  font-family: 'Manrope-ExtraBold';
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
  text-transform: uppercase;
  animation: fadeUp .8s ease-out .1s both;
  letter-spacing: -1px
}

@media(max-width:768px) {
  .hero__title-massive {
    font-size: 48px;
  }
}

.grad-text {
  background: linear-gradient(135deg, #00d5c2, #00f5e0, #00b4a6, #00d5c2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 3s linear infinite
}

@keyframes gradShift {
  to {
    background-position: 200% center
  }
}

.hero__desc {
  font-size: 15px;
  color: #8a9a95;
  font-family: 'Manrope-Regular';
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 480px;
  animation: fadeUp .8s ease-out .2s both
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp .8s ease-out .3s both
}

.hero__stat {
  text-align: center;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 12px
}

.hero__stat:hover {
  transform: translateY(-3px);
  background: rgba(0, 213, 194, .05);
  box-shadow: 0 8px 20px rgba(0, 213, 194, .1)
}

.stat-n {
  display: block;
  font-size: 20px;
  font-family: 'Manrope-Bold';
  color: #00d5c2;
  margin-bottom: 4px;
  transition: text-shadow 0.3s ease
}

.hero__stat:hover .stat-n {
  text-shadow: 0 0 10px rgba(0, 213, 194, .5)
}

.stat-l {
  display: block;
  font-size: 11px;
  color: #6E6E6E;
  font-family: 'Manrope-Medium';
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease
}

.hero__stat:hover .stat-l {
  color: #fff
}

.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(0, 213, 194, .2)
}

/* Countdown */
.hero__countdown {
  margin-bottom: 20px;
  margin-top: 40px;
  animation: fadeUp .8s ease-out .4s both
}

.cd-title {
  color: #fff;
  font-size: 16px;
  font-family: 'Manrope-SemiBold';
  margin: 0 0 16px;
  letter-spacing: .5px
}

.cd-boxes {
  display: flex;
  gap: 16px;
  max-width: 480px
}

.cd-box {
  flex: 1;
  background-color: rgba(0, 213, 194, .02);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border: 1px solid rgba(0, 213, 194, .3);
  border-bottom: 3px solid #00D5C2;
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 5px rgba(0, 213, 194, .1);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden
}

.cd-box::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 10px rgba(0, 213, 194, 0);
  transition: box-shadow .4s ease
}

.cd-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #00D5C2;
  box-shadow: 0 12px 24px rgba(0, 213, 194, .25), 0 0 20px rgba(0, 213, 194, .15) inset
}

.cd-box:hover::before {
  box-shadow: inset 0 0 15px rgba(0, 213, 194, .15)
}

.cd-val {
  display: block;
  font-size: 32px;
  font-family: 'Manrope-Bold';
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 213, 194, .5);
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums
}

.cd-lbl {
  display: block;
  font-size: 11px;
  color: #8a9a95;
  font-family: 'Manrope-Medium';
  text-transform: uppercase;
  letter-spacing: 1px
}

.cd-live {
  display: inline-block;
  padding: 16px 24px;
  background: rgba(0, 213, 194, .1);
  border: 1px solid #00d5c2;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 213, 194, .2)
}

.live-badge {
  color: #00d5c2;
  font-size: 18px;
  font-family: 'Manrope-Bold';
  display: flex;
  align-items: center;
  gap: 12px
}

.live-pulse {
  width: 12px;
  height: 12px;
  background: #00d5c2;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite
}

/* Purchase Card */
.hero__right {
  animation: slideInRight 1s cubic-bezier(0.175, 0.885, 0.32, 1) .2s both
}

.dc-limits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  background: rgba(0, 213, 194, 0.05);
  border: 1px solid rgba(0, 213, 194, 0.15);
  border-radius: 12px;
  padding: 10px 24px
}

.dc-limit-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.dcl-label {
  color: #8a9a95;
  font-size: 12px;
  font-family: 'Manrope-Medium';
  text-transform: uppercase;
  letter-spacing: 1px
}

.dcl-val {
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope-Bold'
}

.dc-limit-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 213, 194, 0.2)
}

.pcard {
  background-color: rgba(0, 213, 194, .02);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border: 1px solid #00D5C2;
  border-right: 3px solid #00D5C2;
  border-bottom: 3px solid #00D5C2;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 5px rgba(0, 213, 194, .36)
}

.pcard__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 213, 194, .1);
  background: rgba(0, 213, 194, .04)
}

.pcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 213, 194, .1);
  border: 1px solid rgba(0, 213, 194, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pcard__head h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
  font-family: 'Manrope-Bold'
}

.pcard__head p {
  color: #6E6E6E;
  font-size: 13px;
  font-family: 'Manrope-Regular';
  margin: 2px 0 0
}

.pcard__body {
  padding: 24px
}

.cw-block {
  text-align: center;
  padding: 15px 0px
}

.cw-text {
  color: #6E6E6E;
  font-size: 15px;
  font-family: 'Manrope-Regular';
  margin: 0 0 20px
}

/* Wallet badge */
.wb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 213, 194, .06);
  border: 1px solid rgba(0, 213, 194, .15);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #00d5c2;
  font-family: 'Manrope-SemiBold'
}

.wb-dot {
  width: 8px;
  height: 8px;
  background: #00d5c2;
  border-radius: 50%;
  flex-shrink: 0
}

.wb-dc {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 107, 107, .3);
  color: #ff6b6b;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s
}

.wb-dc:hover {
  background: rgba(255, 107, 107, .1)
}

/* Limit bar */
.limit-bar {
  background: rgba(0, 213, 194, .04);
  border: 1px solid rgba(0, 213, 194, .12);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px
}

.limit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.limit-label {
  color: #fff;
  font-size: 13px;
  font-family: 'Manrope-SemiBold'
}

.limit-vals {
  font-size: 12px;
  font-family: 'Manrope-Medium'
}

.limit-spent {
  color: #00d5c2
}

.limit-sep {
  color: #6E6E6E;
  margin: 0 4px
}

.limit-max {
  color: #6E6E6E
}

.lp-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px
}

.lp-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d5c2, #00a896);
  border-radius: 3px;
  transition: width .4s
}

.limit-hint {
  text-align: right;
  color: #6E6E6E;
  font-size: 11px;
  font-family: 'Manrope-Regular'
}

.limit-hint strong {
  color: #00d5c2;
  font-family: 'Manrope-SemiBold'
}

/* Form */
.pform-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px
}

.fg {
  flex: 1
}

.fg label {
  display: block;
  color: #8a9a95;
  font-size: 12px;
  font-family: 'Manrope-SemiBold';
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.fg input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 213, 194, .04);
  border: 1px solid rgba(0, 213, 194, .15);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope-Regular';
  transition: all .3s
}

.fg input:focus {
  outline: none;
  border-color: #00d5c2;
  box-shadow: 0 0 0 3px rgba(0, 213, 194, .08)
}

.fg input:disabled {
  opacity: .4;
  cursor: not-allowed
}

.fg input::placeholder {
  color: #4a5a55
}

.calc-box {
  background: rgba(0, 213, 194, .05);
  border: 1px solid rgba(0, 213, 194, .12);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px
}

.calc-row:last-child {
  margin-bottom: 0
}

.calc-l {
  color: #6E6E6E;
  font-size: 13px;
  font-family: 'Manrope-Medium'
}

.calc-v {
  color: #00d5c2;
  font-size: 15px;
  font-family: 'Manrope-SemiBold'
}

.err-msg {
  background: rgba(255, 107, 107, .08);
  border: 1px solid rgba(255, 107, 107, .2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  color: #ff6b6b;
  font-size: 13px;
  font-family: 'Manrope-Medium';
  text-align: center
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #00d5c2;
  border: none;
  border-radius: 12px;
  color: #050a08;
  font-size: 15px;
  font-family: 'Manrope-Bold';
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0, 213, 194, .25)
}

.btn-primary:hover:not(:disabled) {
  background: #00e8d4;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(0, 213, 194, .35)
}

.btn-primary:disabled {
  opacity: .4;
  cursor: not-allowed;
  box-shadow: none
}

.pcard__avail {
  padding: 0 0 16px 0;
  text-align: left
}

.avail-block {
  padding: 20px;
  background: rgba(0, 213, 194, .04);
  border-radius: 12px;
  border-left: 3px solid rgba(0, 213, 194, .3)
}

.avail-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.avail-ct {
  color: #00d5c2;
  font-size: 13px;
  font-family: 'Manrope-SemiBold'
}

.avail-ct.sold-out {
  color: #ff6b6b;
  background: rgba(255, 107, 107, .1);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px
}

.prog-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d5c2, #00a896);
  border-radius: 3px;
  transition: width .4s
}

.prog-labels {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: 'Manrope-Regular'
}

.pl-sold {
  color: #00d5c2
}

.pl-sep {
  color: #6E6E6E
}

.pl-total {
  color: #6E6E6E
}

.pl-pct {
  margin-left: auto;
  color: #6E6E6E
}

.fi-l {
  color: #fff;
  font-size: 13px;
  font-family: 'Manrope-Medium'
}

/* Roadmap */
.rm-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px
}

.rm-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 213, 194, .15);
  transform: translateY(-50%);
  z-index: 1
}

.rm-item {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  row-gap: 30px;
  position: relative;
  z-index: 2
}

.rm-card-wrap {
  width: 100%
}

.rm-label-wrap {
  display: flex;
  justify-content: center;
  width: 100%
}

.rm-label-wrap .rm-badge {
  margin: 0
}

.rm-label-wrap.top-wrap {
  margin-bottom: -20px
}

.rm-label-wrap.bottom-wrap {
  margin-top: -20px
}

.top-wrap {
  align-self: end
}

.bottom-wrap {
  align-self: start
}

.rm-dot-wrap {
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center
}

.rm-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #050a08;
  border: 3px solid rgba(0, 213, 194, .4);
  position: relative;
  z-index: 2
}

.rm-item.completed .rm-dot {
  border-color: #00d5c2;
  background: #00d5c2
}

.rm-item.current .rm-dot {
  border-color: #00c853;
  background: #00c853;
  box-shadow: 0 0 15px rgba(0, 200, 83, .5)
}

.rm-dot.pulse {
  animation: pulse 2s ease-in-out infinite
}

.rm-item.upcoming .rm-dot {
  border-color: rgba(200, 170, 80, .5);
  background: transparent
}

.rm-connector {
  position: absolute;
  left: 50%;
  width: 2px;
  background: rgba(0, 213, 194, .3);
  transform: translateX(-50%);
  z-index: 1
}

.rm-connector.up {
  bottom: 50%;
  height: 40px
}

.rm-connector.down {
  top: 50%;
  height: 40px
}

.rm-item.completed .rm-connector {
  background: rgba(0, 213, 194, .8)
}

.rm-item.current .rm-connector {
  background: rgba(0, 200, 83, .8);
  box-shadow: 0 0 8px rgba(0, 200, 83, .4)
}

.rm-item.upcoming .rm-connector {
  background: rgba(200, 170, 80, .3)
}

.rm-card {
  background-color: rgba(0, 213, 194, .02);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border: 1px solid #00D5C2;
  border-right: 3px solid #00D5C2;
  border-bottom: 3px solid #00D5C2;
  border-radius: 15px;
  padding: 20px;
  min-height: 200px;
  transition: all .3s;
  box-shadow: 0 0 5px rgba(0, 213, 194, .36)
}

.rm-card:hover {
  box-shadow: 0 4px 30px rgba(0, 213, 194, .2);
  transform: translateY(-3px)
}

.rm-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-family: 'Manrope-SemiBold';
  margin-bottom: 12px;
  letter-spacing: .5px
}

.rm-badge.completed {
  background: rgba(0, 213, 194, .12);
  color: #00d5c2;
  border: 1px solid rgba(0, 213, 194, .2)
}

.rm-badge.current {
  background: rgba(0, 200, 83, .15);
  color: #00c853;
  border: 1px solid rgba(0, 200, 83, .4)
}

.rm-badge.upcoming {
  background: rgba(200, 170, 80, .1);
  color: #c8aa50;
  border: 1px solid rgba(200, 170, 80, .2)
}

.rm-card h4 {
  color: #fff;
  font-size: 16px;
  font-family: 'Manrope-Bold';
  margin: 0 0 12px
}

.rm-card ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.rm-card li {
  color: #8a9a95;
  font-size: 13px;
  font-family: 'Manrope-Regular';
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5
}

.rm-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 213, 194, .4)
}

/* Whitepaper Section */
.wp-sec {
  padding: 60px 30px;
}

.wp-card {
  background: rgba(0, 213, 194, .04);
  border: 1px solid #00d5c37a;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.wp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at left center, rgba(162, 89, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.wp-bg-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

@keyframes bgGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.wp-content {
  padding: 60px;
  position: relative;
  z-index: 2;
}

.wp-subtitle {
  color: #8a9a95;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: 'Manrope-SemiBold';
}

.wp-title {
  color: #fff;
  font-size: 54px;
  font-family: 'Manrope-ExtraBold';
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.wp-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Manrope-Medium';
  margin-bottom: 40px;
  max-width: 90%;
}

.wp-buttons {
  display: flex;
  gap: 16px;
}

.wp-btn-primary {
  background: #00d5c2;
  color: #000;
  font-size: 15px;
  font-family: 'Manrope-Bold';
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 213, 194, 0.3);
}

.wp-btn-secondary {
  background: rgba(0, 213, 194, 0.1);
  color: #00d5c2;
  border: 1px solid rgba(0, 213, 194, 0.3);
  font-size: 15px;
  font-family: 'Manrope-Bold';
  padding: 13px 27px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.wp-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(0, 213, 194, 0.2);
  box-shadow: 0 10px 20px rgba(0, 213, 194, 0.15);
}

.wp-btn-secondary svg {
  color: #00d5c2;
}

.wp-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: 340px; height: 340px;
  border: 2px dashed rgba(0, 213, 194, 0.4);
  border-top-color: #00d5c2;
  border-bottom-color: #a259ff;
  box-shadow: inset 0 0 15px rgba(0, 213, 194, 0.2), 0 0 15px rgba(0, 213, 194, 0.2);
  animation: orbitClockwise 25s linear infinite;
}

.ring-2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-left: 3px solid #a259ff;
  border-right: 3px solid #a259ff;
  box-shadow: inset 0 0 20px rgba(162, 89, 255, 0.2), 0 0 20px rgba(162, 89, 255, 0.2);
  animation: orbitCounterClockwise 35s linear infinite;
}

.ring-3 {
  width: 440px; height: 440px;
  border: 1px solid rgba(0, 213, 194, 0.1);
  border-top: 4px solid #00d5c2;
  box-shadow: 0 0 20px #00d5c2, inset 0 0 10px #00d5c2;
  animation: orbitTilted 15s linear infinite;
}

@keyframes orbitClockwise {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitCounterClockwise {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes orbitTilted {
  0% { transform: translate(-50%, -50%) rotateX(60deg) rotateY(20deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(60deg) rotateY(20deg) rotateZ(360deg); }
}


.wp-video {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
}

.wp-video-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 213, 194, 0.4) 12%, rgba(162, 89, 255, 0.2) 2%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@media(max-width:992px) {
  .wp-card {
    grid-template-columns: 1fr;
  }
  .wp-content {
    padding: 40px 30px;
    text-align: center;
  }
  .wp-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .wp-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .wp-title {
    font-size: 42px;
  }
}

/* Tokenomics */
.tknm-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(0, 213, 194, 0.2) 10%, rgba(162, 89, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.tknm-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tknm-content {
  padding-right: 20px
}

.tknm-desc p {
  color: #8a9a95;
  font-size: 15px;
  font-family: 'Manrope-Regular';
  line-height: 1.7;
  margin-bottom: 30px
}

.tknm-features {
  list-style: none;
  padding: 0;
  margin: 0
}

.tknm-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tknm-features li:hover {
  background: rgba(0, 213, 194, 0.05);
  border-color: rgba(0, 213, 194, 0.15);
  transform: translateX(5px);
}

.tknm-features li:hover .tk-icon {
  background: rgba(0, 213, 194, 0.15);
  box-shadow: 0 0 15px rgba(0, 213, 194, 0.3);
  transform: scale(1.1);
}

.tknm-features li:last-child {
  margin-bottom: 0
}

.tk-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 213, 194, .06);
  border: 1px solid rgba(0, 213, 194, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 213, 194, .05);
  transition: all 0.3s ease;
}

.tk-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope-SemiBold';
  margin-bottom: 6px
}

.tk-text p {
  color: #6E6E6E;
  font-size: 13px;
  font-family: 'Manrope-Regular';
  line-height: 1.6;
  margin: 0
}

.tknm-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: visible
}

.tknm-canvas {
  max-width: 100%;
  height: auto
}

/* --- HOW TO BUY SECTION --- */
.how-to-buy-sec {
  /* padding-top: 120px; */
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
}

.how-to-buy-sec .sec-title {
  text-align: center;
  width: 100%;
  margin-bottom: 16px !important;
}

.how-to-buy-sec .sec-sub {
  text-align: center !important;
  margin: 0 auto 50px auto !important;
  max-width: 600px;
  display: block;
}

.htb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.htb-card {
  background: rgba(0, 213, 194, 0.04);
  border: 1px solid rgba(0, 213, 194, .15);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.htb-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(0, 213, 194, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 213, 194, 0.1);
}

.htb-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.htb-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.htb-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 213, 194, 0.6) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.htb-card:hover .htb-icon-glow {
  opacity: 0.9;
}

.htb-icon-wrap svg {
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}

.htb-card:hover .htb-icon-wrap svg {
  transform: scale(1.15);
}

.htb-step-bg-num {
  position: absolute;
  top: -10px;
  left: -9px;
  font-size: 150px;
  font-family: 'Manrope-Bold', sans-serif;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.63) 0%, rgba(255, 255, 255, 0) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.htb-card-title {
  font-family: 'Manrope-Bold', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.htb-card-desc {
  font-family: 'Manrope-Medium', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Live Transactions */
.tx-sec {
  padding: 40px 30px;
}

.tx-card {
  background-color: rgba(0, 213, 194, 0.02);
  border: 1px solid #00D5C2;
  border-right: 1px solid #00D5C2;
  border-bottom: 1px solid #00D5C2;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 213, 194, 0.36);
  backdrop-filter: blur(10px);
}

.tx-table-wrap {
  overflow-x: auto;
}

.tx-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.tx-table th {
  text-align: left;
  padding: 16px;
  color: #8a9a95;
  font-size: 13px;
  font-family: 'Manrope-SemiBold';
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 213, 194, 0.2);
  white-space: nowrap;
}

.tx-table td {
  padding: 16px;
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope-Medium';
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
  white-space: nowrap;
}

.tx-table tbody tr:hover td {
  background-color: rgba(0, 213, 194, 0.05);
}

.tx-table tbody tr:last-child td {
  border-bottom: none;
}

.tx-table .tx-wallet {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00d5c2;
  font-family: 'Manrope-SemiBold';
  font-size: 14px;
}

.tx-table .tx-wallet-dot {
  width: 6px;
  height: 6px;
  background: #00d5c2;
  border-radius: 50%;
  display: inline-block;
}

.tx-table .tx-price {
  color: #8a9a95;
  font-size: 15px;
}

.tx-table .tx-time {
  color: #6E6E6E;
  font-size: 15px;
}

.tx-loading {
  text-align: center;
  color: #6E6E6E;
  font-size: 14px;
  padding: 40px !important;
}

.tx-loading .purchase__spinner {
  margin: 0 auto 10px;
}

/* Footer */
.btl-footer {
  padding: 12px 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 213, 194, .1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.btl-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.btl-socials {
  display: flex;
  align-items: center;
  gap: 20px
}

.btl-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 213, 194, .05);
  border: 1px solid rgba(0, 213, 194, .15);
  color: #00d5c2;
  transition: all 0.3s ease
}

.btl-social:hover {
  background: #00d5c2;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 213, 194, 0.4);
  transform: translateY(-3px)
}

.btl-copyright {
  color: #4a5a55;
  font-size: 14px;
  font-family: 'Manrope-Medium';
  margin: 0;
  letter-spacing: 0.5px
}

/* Responsive */
@media(max-width:1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero__title {
    font-size: 34px
  }

  .rm-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px
  }

  .rm-line {
    display: none
  }

  .rm-item {
    grid-template-rows: auto auto auto;
    row-gap: 12px
  }

  .rm-label-wrap {
    grid-row: 1 !important;
    justify-content: flex-start;
    margin: 0 !important
  }

  .rm-dot-wrap {
    grid-row: 2 !important;
    justify-self: start;
    align-self: center
  }

  .rm-connector {
    display: none
  }

  .rm-card-wrap {
    grid-row: 3 !important
  }

  .top-wrap,
  .bottom-wrap {
    align-self: start
  }

  .tknm-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:768px) {
  .hero {
    padding: 30px 16px 20px
  }

  .hero__title {
    font-size: 28px
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px
  }

  .fcard-grid {
    grid-template-columns: 1fr
  }

  .rm-timeline {
    grid-template-columns: 1fr
  }

  .pform-row {
    flex-direction: column;
    gap: 0
  }

  .pform-row .fg {
    margin-bottom: 14px
  }

  .sec {
    padding: 50px 16px
  }
}

@media(max-width:480px) {
  .hero__title {
    font-size: 24px
  }

  .sec-title {
    font-size: 26px
  }

  .pcard__body {
    padding: 16px
  }

  .cd-boxes {
    gap: 10px
  }

  .cd-box {
    padding: 12px 6px
  }

  .cd-val {
    font-size: 24px
  }

  .cd-lbl {
    font-size: 10px
  }
}

/* Password Gate */
.pw-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #04120e 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Manrope-Regular', sans-serif;
  padding: 20px
}

.pw-gate__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 213, 194, .06) 0%, transparent 70%);
  pointer-events: none
}

.pw-gate__card {
  position: relative;
  z-index: 1;
  background: rgba(0, 213, 194, .02);
  border: 1px solid rgba(0, 213, 194, .25);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(0, 213, 194, .06), 0 0 1px rgba(0, 213, 194, .3);
  animation: fadeUp .6s ease-out
}

.pw-gate__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 213, 194, .08);
  border: 1px solid rgba(0, 213, 194, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(0, 213, 194, .08)
}

.pw-gate__title {
  color: #fff;
  font-size: 26px;
  font-family: 'Manrope-Bold';
  margin: 0 0 10px;
  letter-spacing: .5px
}

.pw-gate__desc {
  color: #6E6E6E;
  font-size: 14px;
  font-family: 'Manrope-Regular';
  line-height: 1.6;
  margin: 0 0 32px
}

.pw-gate__form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.pw-gate__input-wrap {
  position: relative
}

.pw-gate__input {
  width: 100%;
  padding: 16px 50px 16px 18px;
  background: rgba(0, 213, 194, .04);
  border: 2px solid rgba(0, 213, 194, .2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope-Regular';
  transition: all .3s;
  outline: none;
  box-sizing: border-box
}

.pw-gate__input::placeholder {
  color: #4a5a55
}

.pw-gate__input:focus {
  border-color: #00d5c2;
  box-shadow: 0 0 0 4px rgba(0, 213, 194, .08)
}

.pw-gate__input--error {
  border-color: rgba(255, 107, 107, .5) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, .08) !important
}

.pw-gate__input:disabled {
  opacity: .5;
  cursor: not-allowed
}

.pw-gate__eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6E6E6E;
  cursor: pointer;
  padding: 4px;
  transition: color .2s
}

.pw-gate__eye:hover {
  color: #00d5c2
}

.pw-gate__error {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  color: #ff6b6b;
  font-size: 13px;
  font-family: 'Manrope-Medium';
  background: rgba(255, 107, 107, .06);
  border: 1px solid rgba(255, 107, 107, .15);
  border-radius: 8px;
  padding: 8px 14px;
  animation: shake .4s ease-in-out
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-6px)
  }

  50% {
    transform: translateX(6px)
  }

  75% {
    transform: translateX(-4px)
  }
}

.pw-gate__btn {
  width: 100%;
  padding: 16px;
  background: #00d5c2;
  border: none;
  border-radius: 12px;
  color: #050a08;
  font-size: 15px;
  font-family: 'Manrope-Bold';
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0, 213, 194, .25);
  margin-top: 4px
}

.pw-gate__btn:hover:not(:disabled) {
  background: #00e8d4;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(0, 213, 194, .35)
}

.pw-gate__btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  box-shadow: none
}

.pw-gate__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  color: #4a5a55;
  font-size: 12px;
  font-family: 'Manrope-Medium';
  letter-spacing: .5px
}

/* Modern Progress Bar */
@keyframes moveStripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 28px 0;
  }

  /* 28px matches the diagonal pattern size */
}

.prog-track-modern {
  position: relative;
  height: 12px;
  background: #111b24;
  /* dark background */
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 10px, transparent 10px, transparent 20px);
  border-radius: 20px;
  margin: 12px 0 12px;
  cursor: pointer;
  /* box-shadow: inset 0 2px 4px rgba(0,0,0,0.5); */
  animation: moveStripes 2s linear infinite;
}

@keyframes shimmerGradient {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.prog-fill-modern {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, #008f7a 0%, #00e8d4 50%, #008571 100%);
  background-size: 200% 100%;
  border-radius: 20px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 15px rgba(0, 213, 194, 0.4);
  animation: shimmerGradient 3s linear infinite;
}

.prog-thumb {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 213, 194, 0.5);
}

.prog-tooltip {
  position: absolute;
  top: -38px;
  left: 100%;
  transform: translateX(-50%);
  background: #00d5c2;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Manrope-Bold';
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 213, 194, 0.3);
}

/* Tooltip arrow */
.prog-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: #00d5c2 transparent transparent transparent;
}

.prog-track-modern:hover .prog-tooltip {
  opacity: 1;
  visibility: visible;
  top: -42px;
  /* slight float up */
}

/* Connect Wallet Button Animation */
.connect-wallet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.connect-wallet-btn:hover {
  transform: translateY(-2px);
}

.connect-wallet-btn .wallet-icon {
  animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes pulseBtnGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 213, 194, 0.4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 213, 194, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 213, 194, 0);
  }
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Purchase Tokens Button */
.purchase-tokens-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.purchase-tokens-btn .purchase-icon {
  animation: flipIcon 3s linear infinite;
}

@keyframes flipIcon {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION - Home Page Style
   ════════════════════════════════════════════════════════════ */

:root {
  --primary-color: #000000;
  --accent-color: #00D5C2;
  --accent-glow: rgba(0, 213, 194, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --gradient-primary: linear-gradient(135deg, #00D5C2 0%, #00A693 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(0, 213, 194, 0.2) 0%, rgba(0, 166, 147, 0.1) 100%);
  --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 213, 194, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 213, 194, 0.4);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--text-primary);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

/* Navbar Coin Animation */
.navbar-coin {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 25px;
  background-image: url('../img/fonq_coin_img.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.3s ease;
  pointer-events: none;
}

.navbar.scrolled .navbar-coin {
  opacity: 0.3;
  transform: translateY(-50%) scale(1) rotate(180deg);
  animation: navbarCoinSpin 4s linear infinite;
}

@keyframes navbarCoinSpin {
  0% {
    transform: translateY(-50%) rotateY(0deg);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 44px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #00D5C2;
}

.nav-link.active {
  color: #00D5C2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00D5C2 0%, #00A693 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* User Dropdown in Navigation */
.nav-user-dropdown {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 213, 194, 0.1);
  border: 1px solid rgba(0, 213, 194, 0.3);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: monospace;
}

.nav-user-btn:hover {
  background: rgba(0, 213, 194, 0.15);
  border-color: #00D5C2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 213, 194, 0.2);
}

.nav-wallet-indicator {
  width: 8px;
  height: 8px;
  background: #00D5C2;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nav-wallet-text {
  font-family: monospace;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-user-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #00D5C2;
}

.nav-dropdown-item.nav-disconnect:hover {
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
}

.nav-dropdown-item svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00D5C2;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-20px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-menu {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-actions {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-actions {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #00D5C2;
  transform: scale(1.1);
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00D5C2 0%, #00A693 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
  width: 100%;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Close button for mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close:hover {
  color: #00D5C2;
  background: rgba(255, 255, 255, 0.1);
  border-color: #00D5C2;
  transform: rotate(90deg);
}

/* Responsive Navigation */
@media (max-width: 900px) {
  .navbar.scrolled {
    padding: 12px 0;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-logo img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .nav-logo img {
    height: 30px;
  }

  .mobile-menu-toggle {
    padding: 6px;
  }

  .hamburger-line {
    width: 20px;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
  }

  .mobile-menu-close {
    top: 20px;
    right: 20px;
  }
}

/* Add top padding to main content to account for fixed navbar */
.btl {
  padding-top: 80px;
}
