body {
  background-color: #127d65;
  font-family: 'Exo 2', sans-serif;
  margin: 0;
  padding-top: 10px;
  transition: background 0.3s, color 0.3s;
}
body.dark {
  background-color: var(--background-dark);
  color: var(--text-dark);
}
header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1500;
  background-color: var(--background-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}
body.light header {
  background-color: var(--background-light);
  color: var(--text-light);
}
nav {
  display: flex;
  gap: 1rem;
}
nav a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: var(--accent-dark);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.nav-left {
  font-size: large;
}
.site-name {
  font-weight: bold;
  font-size: 1.4rem;
  cursor: pointer;
}
.header-right {
  display: flex;
  gap: 1rem;
}
.header-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 25%;
  border: 2px solid var(--text-dark);
  background-color: transparent;
  transition: all 0.3s ease;
}
body.light .header-right a {
  border-color: var(--text-light);
}
.header-right a:hover {
  background-color: var(--accent-dark);
  border-color: var(--text-dark);
  transform: scale(1.05);
  color: white;
}
body.light .header-right a:hover {
  border: 2px solid var(--text-dark);
  background-color: var(--accent-light);
  border-color: var(--accent-light);
}
.social-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.buy-button:hover {
  background-color: #00b893;
  transform: scale(1.05);
}
.dropdown-menu div {
  cursor: pointer;
  white-space: nowrap;
}
.dropdown-menu div:hover {
  background-color: #1cf0c625;
  color: #7da89d;
}
.dropdown.open .dropdown-menu {
  display: flex;
}
.page {
  display: block;
  padding: 0 60px;
}
.page-home {
  display: block;
  padding: 0 60px;
}
.page-integrations {
  display: block;
  padding: 20px 60px 60px 60px;
}
.page-social {
  display: block;
  padding: 60px 60px;
}
.page.active {
  display: block;
}
.project-card:hover {
  transform: translateY(-5px);
}
body.light .project-card {
  background-color: #d9fef4;
  color: #000;
}
body.light .mobile-menu {
  background-color: var(--background-light);
  color: var(--text-light);
}
.mobile-menu.open {
  display: flex;
}
.mobile-controls {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}
.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.icon-button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}
.stat-card h3 {
  margin-top: 0;
  color: var(--accent-dark);
}
body.light .stat-card {
  background-color: #d9fef4;
  color: #00332f;
}
body.light .stats-table thead {
  background-color: rgba(0, 0, 0, 0.05);
}
body.light .stats-table td, body.light .stats-table th {
  border-color: rgba(0, 0, 0, 0.1);
}
.hyperliquid-card:hover {
  transform: translateY(-6px);
}
.hl-button:hover {
  background-color: #00b893;
}
body.light .hyperliquid-card {
  background-color: #d9fef4;
  color: var(--text-light);
}
.top-banner a {
  color: #00332f;
  font-weight: bold;
}
.top-banner.hidden {
  display: none !important;
}
.top-banner-custom {
  background-color: #1cf0c4;
  color: #00332f;
  padding: 0.50rem 0rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.banner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.icon-circle img {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
}
.banner-link {
  font-weight: 600;
  text-decoration: underline;
  color: #00332f;
}
.banner-subtext {
  font-size: 0.75rem;
  color: #00332f;
}
body.light .top-banner-custom {
  background-color: #00332f;
  color: #d0f0ec;
}
body.light .top-banner a {
  color: #d0f0ec;
  font-weight: bold;
  padding-right: 1.1rem;
}
body.light .banner-link {
  font-weight: 600;
  text-decoration: underline;
  color: #d0f0ec;
}
body.light .banner-subtext {
  font-size: 0.75rem;
  color: #d0f0ec;
}
body.dark .dark-only {
  display: inline;
}
body.dark .light-only {
  display: none;
}
body.light .dark-only {
  display: none;
}
body.light .light-only {
  display: inline;
}
.banner-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.site-footer a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.site-footer a:hover {
  opacity: 0.7;
}
.site-logo {
  height: 80px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
#logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
#logo-link .logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #051b16;;
}
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding-block:  clamp(0.625rem, 0.4rem + 0.8vw, 0.875rem);
  padding-inline: clamp(1.125rem, 0.8rem + 1.6vw, 1.75rem);
  border-radius: 5px;
  border: 3px solid #0d2b27;
  background: #132018;
  color: #d9fef4;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.buy-btn:hover {
  background: #132018;
  border-color: #0d2b27;
  color: #d9fef4;
  transform: scale(1.02);
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 3px solid #0d2b27;
  background: #132018;
  color: #d9fef4;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.menu-btn:hover {
  background: #132018;
  border-color: #0d2b27;
  color: #d9fef4;
  transform: scale(1.02);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 5px;
  border: 3px solid #0d2b27;
  background: #132018;
  color: #c7d4d0;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: #132018;
  border-color: #0d2b27;
  color: #c7d4d0;
  transform: scale(1.02);
}

.social-btn img {
  width: clamp(18px, 2vw, 26px);
  height: auto;
}


.chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.chart-terminal {
  background-color: #0d2b27;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(115, 115, 115, 0.18);
}
.left-header, .right-header {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dropdown-selector:hover, .settings-button:hover {
  background-color: #1cf0c625;
  color: #fff;
}
.main-value {
  font-size: 2rem;
  font-weight: bold;
  color: #1cf0c4;
  margin-bottom: 15px;
}
.subtext {
  font-size: 0.9rem;
  color: #d0f0ec;
  margin-left: 10px;
}
canvas {
  width: 100% !important;
  aspect-ratio: 2 / 1;
  max-height: 500px;
  display: block;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dropdown-container {
  position: relative;
}
.dropdown-selector {
  border: none;
  border-radius: 8px;
  background-color: transparent;
  color: inherit;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 0.9rem;
  transition: background-color 0.2s;
}
.dropdown-selector:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.dropdown-selector i {
  transition: transform 0.3s;
}
.dropdown-selector.active i {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #03251f;
  border-radius: 8px;
  border: 1px solid rgba(208, 240, 236, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 10px;
  z-index: 1000;
}
.hidden {
  display: none;
}
.dropdown-option:hover {
  background-color: #1c1c1c;
  color: #fff;
}
.search-input {
  background-color: #0d2b27;
  color: var(--text-dark);
  border: none;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.category {
  font-size: 0.8rem;
  color: #7da89d;
  margin: 5px 0;
}
.right-header .dropdown-menu {
  right: 0;
  left: auto;
}
.stats-section {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 30px auto;
}
.large-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.small-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stat-card {
  background-color: #0d2b27;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.2s;
  color: var(--text-dark);
  border: 1px solid rgba(115, 115, 115, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card .stat-value {
  font-weight: bold;
  margin-bottom: 2px;
}
.stat-card.large .stat-value {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.stat-card.small .stat-value {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.stat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.dropdown-option {
  padding: 8px;
  border-radius: 5px;
  color: #7da89d;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  padding-top: 12px;
  text-align: left;
}
.dropdown-option.active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 11px;
  border-right: 2px solid #7da89d;
  border-bottom: 2px solid #7da89d;
}
.burn-breakdown {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  text-align: center;
  line-height: 1.4;
}
.stat-price {
  font-size: 12px;
  color: #fff;
  margin-bottom: 5px;
  font-style: italic;
}
.formula {
  font-size: 13px;
  color: #fff;
  margin-top: 2px;
}
.formula .italic {
  font-style: italic;
}
.formula sub {
  font-size: 10px;
  vertical-align: sub;
}
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}
.tooltip-wrapper i {
  margin-left: 2px;
  cursor: pointer;
  font-size: 14px;
}
.tooltip-content {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #d0f0ec;
  color: var(--text-dark);
  padding: 8px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(115, 115, 115, 0.18);
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
.tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}
.tooltip-wrapper i::after {
  content: none;
}
#myChart {
  width: 100%;
  height: 400px;
}
.price-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: super;
  background-color: #999;
}
.price-dot.green {
  background-color: #2dde98;
}
.price-dot.red {
  background-color: #f44336;
}
.price-dot.neutral {
  background-color: #999999;
}
#mainChart {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
#mainChart,
#mainChart canvas {
  cursor: default !important;
}
.btn-wallet {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  background: #115E59;
  color: #d0f0ec;
  cursor: pointer;
  text-decoration: none;
}
.btn-wallet:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.wallet-menu {
  min-width: 240px;
  background: #0d0f12;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 6px;
}
.wallet-menu-item {
  width: 100%;
  display: flex;
  gap: .6rem;
  align-items: center;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: #e7eef7;
  text-align: left;
  border-radius: 10px;
  cursor: pointer;
}
.wallet-menu-item:hover {
  background: rgba(255,255,255,.06);
}
.wallet-menu-item[data-id="addr"] {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  opacity: .9;
  cursor: default;
}
.wm.is-hidden {
  display: none;
}
.wm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: saturate(120%) blur(2px);
}
.wm__panel {
  position: relative;
  margin: 0;
  max-width: 900px;
  width: min(92vw, 900px);
  min-height: 420px;
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #0d0f12;
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.wm__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #9aa4af;
  font-size: 18px;
  cursor: pointer;
}
.wm__left {
  padding: 18px 14px;
}
.wm__right {
  padding: 22px 22px 28px;
}
.wm__title {
  margin: 4px 0 16px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}
.wm-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.wm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
}
.wm-item:hover {
  background: rgba(255,255,255,.07);
}
.wm-item__icon {
  width: 28px;
  height: 28px;
}
.wm-item__icon .wm-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.wm-item__label {
  font-weight: 600;
  color: var(--text-dark);
}
.wm-item__hint {
  margin-left: auto;
  color: #8ea2b1;
  font-size: 12px;
}
.wm-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: #8ea2b1;
  font-size: 12px;
  letter-spacing: .08em;
}
.wm-sep::before, .wm-sep::after {
  content: "";
  height: 1px;
  background: rgba(255,255,255,.08);
  flex: 1;
}
.wm__cta, .wm-btn.primary {
  background: var(--accent-dark);
  color: #051b16;
}
.wm-btn, .wm-item, .wm__close, .wallet-menu-item, .btn-wallet, a {
  cursor: pointer;
}
.wm--simple .wm__right, .wm--simple .wm__grid {
  display: none;
}
.wm--simple .wm__panel {
  max-width: 520px;
  width: min(92vw, 520px);
}
.wm--simple .wm__left {
  padding: 22px;
}
.wm-list--large .wm-item {
  padding: 16px 18px;
  min-height: 60px;
  font-size: 16px;
}
.wm-list--large .wm-item + .wm-item {
  margin-top: 12px;
}
.lb {
  --panel: #0d2b27;
  --panel-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text: var(--text-dark);
  --muted: #a8c3bf;
  --accent: var(--accent-dark);
  color: var(--text);
  padding: 4px 24px;
}
.lb-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .2px;
}
.lb-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lb-tabs {
  display: flex;
  gap: .5rem;
}
.lb-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: .45rem .8rem;
  border-radius: .7rem;
  cursor: pointer;
  font-weight: 700;
}
.lb-tab.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.lb-notice {
  margin: .9rem 0 1rem;
  padding: .6rem .8rem;
  border-radius: .6rem;
  background: linear-gradient(0deg, rgba(0,245,212,.10), rgba(0,245,212,.10));
  color: var(--text);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lb-notice .lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.lb-cards {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: .8rem;
  margin: 1rem 0 1.2rem;
}
.lb-card,.lb-btn {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: .9rem;
  padding: .9rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-height: 76px;
}
.lb-card-title {
  font-weight: 800;
}
.lb-card-sub {
  font-size: .9rem;
  color: var(--muted);
}
.lb-btn {
  cursor: pointer;
  align-items: flex-start;
}
.lb-btn:hover {
  border-color: var(--accent);
}
.lb-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: .2rem 0 .8rem;
}
.lb-search {
  width: 260px;
  max-width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: .6rem;
  padding: .55rem .7rem;
  color: var(--text);
}
.lb-search::placeholder {
  color: var(--muted);
}
.lb-table {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--panel);
}
.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 180px 180px;
  align-items: center;
  gap: .6rem;
}
.lb-head {
  background: var(--panel-2);
  border-bottom: 1px solid var(--border);
  padding: .7rem .9rem;
}
.lb-body .lb-row {
  padding: .65rem .9rem;
  border-top: 1px solid var(--border);
}
.lb-col {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
}
.lb-col .muted {
  color: var(--muted);
}
.lb-rank {
  width: 36px;
  height: 36px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1b2f2c;
  background: linear-gradient(90deg,#bfa76a,#f5d485);
  border: 1px solid rgba(0,0,0,.2);
}
.lb-rank.silver {
  background: linear-gradient(90deg,#b9bfc7,#e2e6eb);
}
.lb-rank.bronze {
  background: linear-gradient(90deg,#d59a6a,#f2c39b);
}
.lb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.lb-handle {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-val {
  text-align: right;
  font-weight: 700;
}
.lb-val small {
  color: var(--muted);
  font-weight: 600;
  margin-left: .3rem;
}
.lb-pag {
  display: flex;
  justify-content: flex-end;
  gap: .4rem;
  padding: .7rem .2rem;
}
.lb-page {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: .35rem .65rem;
  border-radius: .5rem;
  cursor: pointer;
  font-weight: 700;
}
.lb-page.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.lb-page[disabled] {
  opacity: .5;
  cursor: not-allowed;
}
.pr {
  color: var(--text-dark);
  padding: 4px 24px;
}
body.light .pr {
  color: var(--text-light);
}
.pr-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .2px;
}
.pr-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.pr-toolbar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.pr-search, .pr-select {
  background: #0d2b27;
  color: var(--text-dark);
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 8px;
  padding: .55rem .7rem;
}
.pr-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 1rem;
}
.pr-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0d2b27;
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 14px;
  padding: 14px;
  transition: transform .15s ease, border-color .15s ease;
}
.pr-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dark);
}
.pr-rank {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1b2f2c;
  background: linear-gradient(90deg,#bfa76a,#f5d485);
  border: 1px solid rgba(0,0,0,.2);
}
.pr-rank.silver {
  background: linear-gradient(90deg,#b9bfc7,#e2e6eb);
}
.pr-rank.bronze {
  background: linear-gradient(90deg,#d59a6a,#f2c39b);
}
.pr-head {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-top: .6rem;
}
.pr-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.pr-info {
  min-width: 0;
}
.pr-name {
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pr-name .pr-verified {
  color: var(--accent-dark);
  font-size: .9em;
  vertical-align: middle;
}
.pr-sub {
  color: #7da89d;
  font-size: .9rem;
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
}
.pr-chip {
  font-size: .78rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(115,115,115,0.18);
  color: #a8c3bf;
}
.pr-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .6rem;
  margin-top: .9rem;
}
.pr-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 10px;
  padding: .55rem .6rem;
}
.pr-metric .k {
  color: #7da89d;
  font-size: .8rem;
}
.pr-metric .v {
  font-weight: 800;
}
.pr-pag {
  display: flex;
  justify-content: flex-end;
  gap: .4rem;
  padding: .9rem .2rem;
}
.pr-page {
  border: 1px solid rgba(115,115,115,0.18);
  background: #0d2b27;
  color: inherit;
  padding: .35rem .65rem;
  border-radius: .5rem;
  cursor: pointer;
  font-weight: 700;
}
.pr-page.is-active {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 1px var(--accent-dark) inset;
}
.pr-ellipsis {
  align-self: center;
  opacity: .7;
}
.pr-detail.hidden {
  display: none;
}
.pr-detail-card {
  margin-top: 1rem;
  background: #0d2b27;
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 14px;
  padding: 16px;
}
.pr-back {
  border: 1px solid rgba(115,115,115,0.18);
  background: transparent;
  color: inherit;
  border-radius: 8px;
  padding: .35rem .6rem;
  cursor: pointer;
}
.pr-detail-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .9rem;
  align-items: center;
}
.pr-detail-id {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.pr-logo.lg {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.pr-name.lg {
  font-weight: 800;
  font-size: 1.2rem;
}
.pr-links {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-self: end;
}
.pr-link {
  border: 1px solid rgba(115,115,115,0.18);
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: .35rem .6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.pr-link:hover {
  border-color: var(--accent-dark);
}
.pr-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .6rem;
  margin-top: .9rem;
}
.pr-detail-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 10px;
  padding: .7rem .8rem;
}
.pr-detail-box .t {
  color: #7da89d;
  font-size: .85rem;
}
.pr-detail-box .v {
  font-weight: 800;
}
.pr-detail-desc {
  margin-top: 1rem;
  line-height: 1.5;
  opacity: .95;
}
body.light .pr-card,
body.light .pr-page,
body.light .pr-detail-card,
body.light .pr-detail-box,
body.light .pr-metric {
  background: #d9fef4;
  border-color: rgba(0,0,0,0.12);
}
body.light .pr-search, body.light .pr-select {
  background: #d9fef4;
  color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.12);
}
.btn {
  display: inline-block;
  padding: .8rem 1.2rem;
  border-radius: .8rem;
  font-weight: 700;
  text-decoration: none;
  background: #0f5a4d;
  color: #fff;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn--ghost {
  background: transparent;
  border: 2px solid #0f5a4d;
  color: #0f5a4d;
}
.card {
  background: rgba(0,0,0,.06);
  padding: 1rem;
  border-radius: 1rem;
  border: 2px solid rgba(0,0,0,.08);
}
.dark .card {
  background: rgba(255,255,255,.06);
  border-color: #00332f;
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 80px;
}
.faq {
  padding: 3rem 0.5rem;
  color: #d0f0ec;
}
body.light .faq {
  color: var(--text-light);
}
.faq-title {
  font-size: 6rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 1.2rem 0;
  color: #00332f;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #0d2b27;
  border: 1px solid rgba(115,115,115,0.18);
  border-radius: 18px;
  overflow: hidden;
}
body.light .faq-item {
  background: #d9fef4;
  border-color: rgba(0,0,0,0.12);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-q i {
  transition: transform .25s ease, opacity .2s ease;
}
.faq-item.open .faq-q i.fa-plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  color: #d0f0ec;
}
body.light .faq-a {
  color: var(--text-light);
}
.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
  padding: 0 22px 18px;
}
.faq-q:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-dark);
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: var(--background-dark);
  color: var(--text-dark);
  z-index: 3000;
  padding: 11px 20px;
  box-sizing: border-box;
  display: none;
  overflow-y: auto;
  flex-direction: column;
}
body.menu-open .header-right {
  display: none !important;
}
.mobile-close {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
}
.mobile-close i {
  font-size: 30px;
  line-height: 1;
}
.mobile-close:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  box-shadow: none;
}
body.light {
  background-color: var(--background-light);
  color: var(--text-light);
  --hud: var(--accent-dark);
  --hud-glow: rgba(0,153,112,.22);
}
.sci-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.card-border {
  position: relative;
  overflow: hidden;
  background: #0d2b27;
  color: var(--text-dark);
  padding: 16px;
  border: var(--b) solid var(--hud);
  box-shadow: 0 0 10px var(--hud-glow), 0 0 22px var(--hud-glow);
  border-radius: 0;
}
body.light .card-border {
  background: #d9fef4;
  color: var(--text-light);
}
.b-cut {
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut),
                     100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%,
                     var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
  -webkit-clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut),
                     100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%,
                     var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
.b-bevel {
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 12px, 100% 35%,
                     100% 65%, 100% calc(100% - 12px), calc(100% - 10px) 100%,
                     10px 100%, 0 calc(100% - 12px), 0 12px);
  -webkit-clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 12px, 100% 35%,
                     100% 65%, 100% calc(100% - 12px), calc(100% - 10px) 100%,
                     10px 100%, 0 calc(100% - 12px), 0 12px);
}
.b-hex {
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px),
                     calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  -webkit-clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px),
                     calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}
.b-notch {
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%,
                     0 100%, 0 18px);
  -webkit-clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%,
                     0 100%, 0 18px);
}
.b-seg {
  position: relative;
}
.b-seg::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 2px;
  pointer-events: none;
}
.b-double {
  position: relative;
}
.b-double::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--hud-glow);
  pointer-events: none;
}
.metric .m-label {
  font-size: .9rem;
  opacity: .85;
}
.metric .m-val {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin: .15rem 0 .35rem;
  color: var(--text-dark);
}
.metric .m-sub {
  font-size: .85rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.metric .delta {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 800;
  padding: .18rem .5rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
}
.metric .delta.up {
  color: #0b7a5f;
  background: rgba(0,153,112,.10);
}
.metric .delta.down {
  color: #b23a3a;
  background: rgba(255,0,0,.08);
}
.metric .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
body.light .metric .bar {
  background: rgba(0,0,0,.08);
}
.metric .bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), #0f5a4d);
}
.metric .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .2px;
}
.hud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.hud-card {
  border: 2px solid var(--text-dark);
  background: transparent;
  border-radius: 14px;
  padding: 1.2rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  text-align: center;
}
body.light .hud-card {
  border-color: var(--text-light);
  color: var(--text-light);
}
.hud-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hud-panel {
  background: rgba(0,0,0,0.04);
  padding: 0.8rem;
  border-radius: 10px;
}
body.light .hud-panel {
  background: rgba(0,0,0,0.06);
}
.hud-lineinfo {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.hud-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.hud-btn {
  border: 2px solid var(--text-dark);
  background: transparent;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
body.light .hud-btn {
  border-color: var(--text-light);
  color: var(--text-light);
}
.hud-btn:hover,
.hud-btn.is-primary {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
body.light .hud-btn:hover,
body.light .hud-btn.is-primary {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}
.robot-stage {
  display: inline-grid;
  place-items: center;
  gap: .75rem;
}
.shadow {
  position: absolute;
  left: calc(50% + var(--shadow-x));
  bottom: var(--shadow-y);
  transform: translateX(-50%);
  width: var(--shadow-w);
  height: var(--shadow-h);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,0) 70%);
  filter: blur(2px);
  pointer-events: none;
  will-change: transform, opacity;
  animation: shadow-pulse var(--dur) cubic-bezier(.37, 0, .63, 1) infinite;
  animation-play-state: running !important;
}
.planet-box > *:not(.planet) {
  position: relative;
  z-index: 1;
}
.planet {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
  z-index: 0;
}
.planet--top {
  top: var(--ptop-y);
  right: var(--ptop-x);
  width: var(--ptop-size);
  height: auto;
}
.planet--bottom {
  bottom: var(--pbot-y);
  left: var(--pbot-x);
  width: var(--pbot-size);
  height: auto;
}
#tokenChart {
  display: block;
  margin: auto;
  max-width: 360px;
  max-height: 360px;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.mobile-menu__links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  padding: 11px 20px;
}
.eyes {
  position: absolute;
  top: 44.84%;
  left: 49.97%;
  display: flex;
  gap: 39.2px;
  transform: translateX(-50.5%);
  pointer-events: none;
}
.eye {
  width: 50.6px;
  height: 50.6px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at center,
              #37ceae 60%,   
              #009970 100%   
             );
  box-shadow: 0 0 8px rgba(0,0,0,0.6) inset;
  overflow: hidden;
}
.eye::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #043a2b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eye::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #add1cb;
  border-radius: 50%;
  top: 32%;
  left: 34%;
}
.blink {
  animation: blinkAnim 0.15s linear;
}
.section-2 {
  text-align: center;
  justify-content: center;
  width: 100%;
}
.planet-box p {
  opacity: .9;
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.hero {
  display: flex;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 4vmin, 36px);
  align-items: center;
  padding: clamp(24px, 8vmin, 80px) 0;
  flex-direction: column;
  text-align: left;
}
:root {
  --background-dark: #A7F1CA;
  --background-light: #A7F1CA;
  --accent-dark: #009970;
  --accent-light: #009970;
  --text-dark: #00332f;
  --text-light: #00332f;
  --hud: var(--accent-dark);
  --hud-glow: rgba(0,153,112,.28);
  --b: 2px;
  --cut: 14px;
  --amp: 70px;
  --dur: 4.5s;
  --shadow-x: -65px;
  --shadow-y: 12px;
  --shadow-w: 130px;
  --shadow-h: 18px;
  --moon-size: 2300px;
  --moon-bottom: -2000px;
  --moon-x: 0;
  --ptop-size: clamp(120px, 10vw, 260px);
  --ptop-y: -150px;
  --ptop-x: 330px;
  --pbot-size: clamp(100px, 13vw, 240px);
  --pbot-y: -140px;
  --pbot-x: 400px;
  --float-amp: 15px;
  --float-ms: 8s;
}
.robot-img {
  max-width: 100%;
  width: calc(var(--wrap) * 0.72);
  height: auto;
  transform-origin: center bottom;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  animation: gentle-bounce var(--dur) cubic-bezier(.37,0,.63,1) infinite;
  animation-play-state: running !important;
}
.robot-wrap {
  position: relative;
  width: var(--wrap);
  height: 240px;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: visible;
  aspect-ratio: 1 / 1;
  justify-content: center;
  --wrap: clamp(220px, 40vmin, 520px);
  place-items: center;
  margin: 0 auto;
  --moon-size: calc(var(--wrap) * 3.4);
  --moon-bottom: calc(var(--wrap) * -2.9);
  --moon-x: calc(var(--wrap) * -0.06);
}
.robot-wrap .moon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--wrap) * 1.8);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.35));
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
}
.robot-wrap .shadow {
  z-index: 1;
  position: absolute;
  bottom: calc(var(--wrap) * 0.10);
  left: 50%;
  width: calc(var(--wrap) * 0.44);
  height: calc(var(--wrap) * 0.10);
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(calc(var(--wrap) * 0.04));
  background: radial-gradient(closest-side, rgba(0,0,0,.35), transparent 70%);
  opacity: .28;
}
.robot-wrap .earth {
  position: absolute;
  width: calc(var(--wrap) * 0.30);
  height: auto;
  left: calc(var(--wrap) * 0.02);
  bottom: calc(var(--wrap) * 0.04);
  z-index: 0;
}
.robot-wrap .robot-img {
  z-index: 2;
  position: relative;
}
.planet-box {
  position: relative;
  width: min(720px, 92vw);
  text-align: center;
}
.planet-box h2 {
  font-size: clamp(1.8rem, 4.6vmin, 3.2rem);
  line-height: 1.08;
  margin: 0 0 .9rem 0;
}
.planet-box h1 {
  font-size: clamp(.95rem, 2.3vmin, 1.125rem);
  line-height: 1.1;
  margin: 0 0 1.2rem 0;
  opacity: .9;
}
#home .section-2 {
  align-self: center !important;
  justify-self: center !important;
}
#home .robot-wrap {
  --wrap: clamp(240px, 40vmin, 520px);
  --amp: clamp(1px, 3vmin, 48px);
  width: var(--wrap) !important;
  height: clamp(80px, 30vmin, 100px);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
#home .robot-img {
  width: calc(var(--wrap) * .72) !important;
  height: auto !important;
}
#home .planet-box {
  justify-self: center !important;
  width: min(760px, 92vw);
  text-align: center;
  padding-bottom: clamp(100px, 4vmin, 40px);
}
#home .planet-box h2 {
  margin: 0 0 .25rem 0;
  font-size: clamp(1.2rem, 3.2vmin, 1.6rem);
  letter-spacing: .1em;
  font-weight: 800;
}
#home .planet-box h1 {
  margin: 0 0 .9rem 0;
  font-size: clamp(1.6rem, 5vmin, 2.6rem);
  line-height: 1.1;
  font-weight: 700;
}
#home .planet-box .cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#home .moon-floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(100vmin, 120vmin, 160vmin);
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
  z-index: 0;
}

#home.page .hero {
  min-height: calc(100vh - 70px);
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: stretch;
  gap: clamp(12px, 3vmin, 28px);
  padding: clamp(16px, 5vmin, 40px) 0;
  position: relative;
  overflow: hidden;
}
.space-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#home .section-2,
#home .planet-box {
  position: relative;
  z-index: 2;
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/exo-2/exo-2-v25-latin-300.woff2') format('woff2'),
       url('fonts/exo-2/exo-2-v25-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/exo-2/exo-2-v25-latin-400.woff2') format('woff2'),
       url('fonts/exo-2/exo-2-v25-latin-400.woff') format('woff');
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/exo-2/exo-2-v25-latin-600.woff2') format('woff2'),
       url('fonts/exo-2/exo-2-v25-latin-600.woff') format('woff');
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/exo-2/exo-2-v25-latin-700.woff2') format('woff2'),
       url('fonts/exo-2/exo-2-v25-latin-700.woff') format('woff');
}
@keyframes gentle-bounce{
  0%   { transform: translateY(0) scaleY(1); }
  50%  { transform: translateY(calc(-1 * var(--amp))) scaleY(1.02); }
  100% { transform: translateY(0) scaleY(1); }
}
@keyframes shadow-pulse{
  0%,100% { transform: scale(1);   opacity:.85; }
  50%     { transform: scale(.82); opacity:.6;  }
}
@keyframes blinkAnim {
  0%   { transform: scaleY(1); }
  50%  { transform: scaleY(0.1); }
  100% { transform: scaleY(1); }
}

@media (max-width: 768px) {
#main-nav {
  display: none;
}
.header-right {
  display: none !important;
}
.hamburger {
  display: inline-flex;
  margin-left: auto;
}
header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1500;
  background-color: var(--background-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
}
.page {
  display: block;
  padding: 0 20px;
}
.mobile-lang {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}
body.light .mobile-lang .dropdown-menu {
  background-color: #d9fef4;
}
.mobile-lang.open .dropdown-menu {
  display: flex;
}
#pie-chart-root {
  width: 100%;
  max-width: 500px;
  height: 300px;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.chart-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.large-stats, .small-stats {
  grid-template-columns: 1fr;
}
.stat-card.large .stat-value {
  font-size: 1.2rem;
}
.stat-card.small .stat-value {
  font-size: 1.8rem;
}
.stat-card.large {
  background: #0d2b27;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 100px 0;
}
.hero .planet-box {
  order: 2;
  max-width: 600px;
  margin-top: 60px;
}
.hero .robot-stage img {
  height: auto;
}
:root {
  --earth-size: 160px;
  --earth-bottom: -110px;
  --earth-x: -80px;
  --moon-size: 140px;
  --moon-top: 0px;
  --moon-right: -40px;
  --amp: 70px;
  --dur: 2.6s;
  --shadow-x: -40px;
  --shadow-y: 12px;
  --shadow-w: 80px;
  --shadow-h: 18px;
}
.robot-img {
  width: 150px;
  height: auto;
}
.cta-buttons {
  justify-content: center;
}
}
@media (max-width: 768px) {
header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1500;
  background-color: var(--background-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.page {
  display: block;
  padding: 0 20px;
}
.section-2 {
  text-align: center;
}
}
@media (min-width: 768px) {
.chart-grid {
  grid-template-columns: 1fr 1fr;
}
.hud-grid {
  grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width:768px) {
.wallet-visible {
  display: flex !important;
}
#main-nav {
  display: none;
}
.header-right,
.wallet-visible,
.btn-wallet {
  display: none !important;
}
.hamburger {
  display: inline-flex;
  margin-left: auto;
}
}
@media (max-width: 860px) {
.wm {
  padding: 12px;
}
.wm__panel {
  width: 96vw;
  max-height: 92vh;
  border-radius: 14px;
}
}
@media (max-width:860px) {
.lb-row {
  grid-template-columns: 52px 1fr 130px 130px;
}
.lb-cards {
  grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 1024px) {
.hud-grid {
  grid-template-columns: repeat(3, 1fr);
}
}
@media (prefers-reduced-motion: reduce) {
.robot-img, .shadow {
  animation: none !important;
}
.robot-img {
  animation: none !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.planet--top {
  animation: float-up var(--float-ms) ease-in-out infinite;
}
.planet--bottom {
  animation: float-down calc(var(--float-ms) * 1.15) ease-in-out infinite;
}
@keyframes float-up   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(calc(-1*var(--float-amp)))} }
@keyframes float-down { 0%,100%{transform:translateY(0)} 50%{transform:translateY(var(--float-amp))} }
}
@media (max-width: 480px) {
#home .moon-floor {
  width: 150vmin;
}
}


/* === Hero adjustments: center text and raise robot === */
#home.page .hero {
  text-align: center;
  justify-items: center; /* already present, but ensure */
}


/* Tweak for smaller screens so it's not too aggressive */
@media (max-width: 768px) {
  #home.page .hero .planet-box {
    margin-top: 10px;
  }
}


/* Empile robot (1) puis texte (2), centré */
#home.page .hero{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}


#home.page .hero .planet-box{
  grid-row: 2;            /* texte en dessous */
  text-align: center;
}

/* Mobile : relâcher un peu la remontée du robot */
@media (max-width: 768px){
  #home.page .hero .planet-box{ margin-top: 6px; }
  .site-logo {
    height: 50px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }
  #logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
  }
  #logo-link .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #051b16;
  }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    padding: 10px 18px;
    border-radius: 5px;
    border: 3px solid #0d2b27;
    background: #132018;
    color: #d9fef4;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
  }
}

#home.page .hero {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* écart fluide entre le logo et le texte */
  gap: clamp(10px, 4vw, 15px);

  /* padding vertical fluide (réduit sur petits écrans) */
  padding-block: clamp(8px, 4vmin, 32px);

  min-height: calc(100vh - 70px);
  text-align: center;
}

/* pas d’espace ajouté en bas du bloc texte */
#home .planet-box { padding-bottom: 0 !important; margin: 0; }

/* évite le “double espace” : c’est le gap qui gère tout */
#home .planet-box h1 { 
  margin: 0;   
  font-size: clamp(1.6rem, 5vmin, 2.6rem);
  line-height: 1.1;
  font-weight: 700; 
  color: #051b16;
}



/* =====================================================
   INTEGRATIONS – STONE + badge à côté du nom
   ===================================================== */

/* Grille centrée */
.integrations .ex-grid{
  margin: 0 auto;
}

/* Carte */
.integrations .ex-item{
  --card-bg: #9ad8b3;   /* gris très clair */
  --card-bd: #394e46;   /* bord gris doux */
  display: grid;
  grid-template-columns: 56px 1fr; /* logo | contenu */
  grid-template-rows: auto auto;   /* titre | description */
  align-items: start;
  gap: 6px 26px;
  padding: 35px;              /* plus besoin d'espace à droite */
  border: 3px solid var(--card-bd);
  border-radius: 16px;
  background: var(--card-bg);
  color: #0f1a18;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.integrations .ex-item:hover{
  transform: scale(1.02);
}

.integrations .ex-title{
  text-align:center;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(2.2rem, 8vmin, 5rem);
  color: #051b16;
  margin: 0 0 .4rem;
}

.integrations .ex-sub{
  text-align:center;
  font-weight: 800;
  opacity: .9;
  max-width: 48ch;
  font-size: 24px;
  margin: 0 auto clamp(20px, 4vmin, 36px);
  color: #051b16;
}

.integrations .ex-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vmin, 40px);
  align-items: center;
}

/* Logo (colonne 1 sur 2 lignes) */
.integrations .ex-logo{
  width: 58px; height: 58px;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

/* Titre + badge sur la même ligne (colonne 2) */
.integrations .ex-name{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1rem, .8rem + .4vw, 1.15rem);
  line-height: 1.1;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  white-space: nowrap;
  /* IMPORTANT : laisser le badge dépasser ; on garde la coupe du texte (clip) */
  overflow: visible;          /* ← au lieu de hidden */
  text-overflow: clip;        /* ← au lieu de ellipsis */
}

/* Badge collé au nom */
.integrations .ex-name::after{
  content: var(--badge, "");  /* ← on injecte le texte via une variable CSS */
  padding: 3px 10px;
  border-radius: 999px;
  font: 800 .72rem/1 system-ui,-apple-system,Segoe UI,Inter,Arial,sans-serif;
  background: #E9EEED;
  border: 2px solid #C7D4D0;
  color: #0f1a18;
  white-space: nowrap;
}

/* Mapping catégorie → texte du badge
   ~== “contient le mot” (fonctionne avec data-cat="all dex") */
.integrations .ex-item[data-cat~="dex"]        { --badge: "DEX"; }
.integrations .ex-item[data-cat~="wallet"]     { --badge: "Wallet"; }
.integrations .ex-item[data-cat~="explorer"]   { --badge: "Explorer"; }
.integrations .ex-item[data-cat~="trackers"]   { --badge: "Trackers"; }
.integrations .ex-item[data-cat~="portfolio"]  { --badge: "Portfolio"; }

/* (Supprime cette ancienne règle si tu l'avais)
   .integrations .ex-item::after { text-transform:none; }
*/


/* Description (sous le nom, colonne 2) */
.integrations .ex-desc{
  grid-column: 2;
  grid-row: 2;
  display: block;
  margin-top: 2px;
  font-size: .98rem;
  line-height: 1.25;
  color: #0f1a18;
  opacity: .95;
}

/* Responsive */
@media (max-width: 768px){
  .integrations .ex-grid{ grid-template-columns: repeat(1,1fr); }
}
@media (max-width: 1280px){
  .integrations .ex-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .integrations .ex-grid{ grid-template-columns: 1fr; }
}


/* ===== HOW TO BUY ===== */

.hb-title{
  text-align:center;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(2.2rem, 8vmin, 5rem);
  color: var(--text-dark);
  margin: 0 0 .4rem;
}

.hb-sub{
  text-align:center;
  font-weight: 800;
  opacity: .9;
  max-width: 48ch;
  margin: 0 auto clamp(20px, 4vmin, 36px);
  color: var(--text-dark);
}

.hb-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vmin, 40px);
  align-items: center;
}

/* Grille 2x2 pour les étapes */
.hb-steps{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(12px, 2.6vmin, 22px);
}

.hb-card{
  background:#0d2b27;
  border: 3px solid var(--text-dark);
  border-radius: 16px;
  padding: clamp(14px, 2.6vmin, 22px);
  box-shadow: 0 2px 0 rgba(0,0,0,.18) inset;
}

.hb-card h3{
  margin: 0 0 .6rem 0;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;                 /* bon contraste sur le fond sombre */
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hb-card p{
  margin: 0;
  color: #d0f0ec;              /* texte secondaire */
  font-weight: 700;
}

.hb-card a{
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Badge nombre */
.hb-step{
  display:inline-grid;
  place-items:center;
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 3px solid var(--text-dark);
  background: var(--accent-dark);
  color:#051b16;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
}

/* Illustration */
.hb-ill{
  margin: 0;
  display: grid;
  place-items: center;
}
.hb-ill img{
  width: min(460px, 90%);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.18));
}

/* Variante bande sombre (comme ta capture) */
/* ajoute la classe "howbuy howbuy--band" à la section si tu veux un fond sombre */
.howbuy--band{
  background:#1b2422;
  border-block: 2px solid rgba(0,0,0,.12);
}
.howbuy--band .hb-title,
.howbuy--band .hb-sub{ color:#fff; }
.howbuy--band .hb-card{ border-color:#2d3a38; }

/* Responsive */
@media (max-width: 1024px){
  .hb-layout{ grid-template-columns: 1fr; }
  .hb-ill{ order: -1; }   /* image au-dessus sur tablette/mobile */
}
@media (max-width: 640px){
  .hb-steps{ grid-template-columns: 1fr; }
}
/* ================= ABOUT US STYLE ================= */

.aboutus--band{
  --socials-bg: var(--accent-dark); /* par défaut, ta couleur d’accent */
  background: var(--socials-bg);
  border-block: 2px solid #105c4f33;
}
.aboutus--mint{
  --tk-accent: var(--accent-dark);      /* couleur des boîtes/bouton */
  --tk-text:   #051b16;
}
.au-title{
  text-align:center;
  font-weight: 900;
  letter-spacing:.02em;
  font-size: clamp(2.2rem, 8vmin, 5rem);
  color:#fff;
  margin:0 0 .2rem;
}
.au-sub{
  text-align:center;
  color:#d0f0ec;
  font-weight:800;
  max-width: 56ch;
  margin:0 auto clamp(18px, 4vmin, 32px);
}
.au-layout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vmin, 40px);
  align-items:center;
}
.au-art{
  margin:0;
  display:grid;
  place-items:center;
}
.au-art img{
  width:min(560px, 92%);
  height:auto;
  border: 4px solid #d6b96a;    /* “cadre” façon or (tu peux changer) */
  border-radius: 12px;
  background:#111;
}
.au-right{
  display:grid;
  gap: clamp(12px, 2.6vmin, 18px);
  align-content:start;
}
.au-box{
  background: var(--tk-accent);
  color: var(--tk-text);
  border: 3px solid var(--text-dark);
  border-radius: 12px;
  padding: clamp(12px, 2.2vmin, 18px);
}
.au-box-title{
  font-weight: 900;
  letter-spacing:.02em;
  font-size: clamp(1rem, 2.2vmin, 1.4rem);
}
.au-box-val{
  font-weight: 900;
  margin-top: 6px;
}
.au-mono{ font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.au-cta{
  display:inline-block;
  align-self:start;
  margin-top: clamp(6px, 1.4vmin, 10px);
  background:#e0463c;           /* rouge style “buy button” de la ref */
  color:#fff;
  border:3px solid #111;
  border-radius: 12px;
  padding:.8rem 1.2rem;
  font-weight:900;
  text-decoration:none;
  transform: rotate(-4deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
}
.au-cta:hover{ transform: rotate(-4deg) translateY(-2px); }

/* Responsive */
@media (max-width: 1024px){
  .au-layout{ grid-template-columns: 1fr; }
}


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


.tokoband--mint{
  --tk-accent: var(--accent-dark);      /* couleur des boîtes/bouton */
  --tk-text:   #051b16;
}
.tk-title{
  text-align:center;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(2.2rem, 8vmin, 5rem);
  color: var(--text-dark);
  margin: 0 0 .4rem;
}

.tk-sub{
  text-align:center;
  font-weight: 800;
  opacity: .9;
  max-width: 48ch;
  margin: 0 auto clamp(20px, 4vmin, 36px);
  color: var(--text-dark);
}

.tk-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vmin, 40px);
  align-items: center;
}
.tk-art{
  margin:0;
  display:grid;
  place-items:center;
}
.tk-art img{
  width:min(560px, 92%);
  height:auto;
  border: 4px solid #d6b96a;    /* “cadre” façon or (tu peux changer) */
  border-radius: 12px;
  background:#111;
}
.tk-right{
  display:grid;
  gap: clamp(12px, 2.6vmin, 18px);
  align-content:start;
}
.tk-box{
  background: var(--tk-accent);
  color: var(--tk-text);
  border: 3px solid var(--text-dark);
  border-radius: 12px;
  padding: clamp(12px, 2.2vmin, 18px);
}
.tk-box-title{
  font-weight: 900;
  letter-spacing:.02em;
  font-size: clamp(1rem, 2.2vmin, 1.4rem);
}
.tk-box-val{
  font-weight: 900;
  margin-top: 6px;
}
.tk-mono{ font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.tk-cta{
  display:inline-block;
  align-self:start;
  margin-top: clamp(6px, 1.4vmin, 10px);
  background:#e0463c;           /* rouge style “buy button” de la ref */
  color:#fff;
  border:3px solid #111;
  border-radius: 12px;
  padding:.8rem 1.2rem;
  font-weight:900;
  text-decoration:none;
  transform: rotate(-4deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
}
.tk-cta:hover{ transform: rotate(-4deg) translateY(-2px); }

/* Responsive */
@media (max-width: 1024px){
  .tk-layout{ grid-template-columns: 1fr; }
}

/* ================= SOCIALS STYLE ================= */

.socials--mint{
  --tile-bg: #0b0b0b;
  --tile-fg: #fff;
  --cta-bg:  #e0463c;
  --cta-bd:  #111;
}
.soc-title{
  text-align:center;
  font-weight: 900;
  letter-spacing:.02em;
  font-size: clamp(2.2rem, 8vmin, 5rem);
  color:#051b16; /* contrasté sur bande verte */
  margin:0 0 .2rem;
}
.soc-sub{
  text-align:center;
  font-weight:800;
  color:#051b16;
  font-size: 24px;
  opacity:.9;
  margin:0 0 clamp(18px, 4vmin, 26px);
}
.soc-icons{
  display:flex;
  gap: clamp(10px, 2.6vmin, 16px);
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: clamp(20px, 5vmin, 40px);
}
.soc-tile{
  width: clamp(44px, 6.6vmin, 62px);
  height: clamp(44px, 6.6vmin, 62px);
  display:grid;
  place-items:center;
  background: var(--tile-bg);
  border: 3px solid #151515;
  border-radius: 10px;
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
  transform: rotate(calc(var(--r, -6deg)));
  transition: transform .12s ease, translate .12s ease;
}
.soc-tile:nth-child(2){ --r: 4deg; }
.soc-tile:nth-child(3){ --r: -3deg; }
.soc-tile:nth-child(4){ --r: 6deg; }
.soc-tile:hover{ transform: translateY(-2px) rotate(var(--r)); }
.soc-tile img{
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: invert(100%); /* logos clairs sur fond noir */
}
.soc-bottom{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap: clamp(12px, 3vmin, 28px);
}
.soc-cta{
  justify-self:center;
  background: var(--cta-bg);
  color:#fff;
  border:3px solid var(--cta-bd);
  border-radius: 12px;
  padding: .9rem 1.2rem;
  text-decoration:none;
  font-weight:900;
  transform: rotate(-6deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
}
.soc-cta:hover{ transform: rotate(-6deg) translateY(-2px); }
.soc-mascot{
  width: min(520px, 45vw);
  height:auto;
  justify-self:end;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

/* Variante “jaune” comme la capture : ajoute socials--gold à la section */
.socials--gold{ --socials-bg: #f5a623; }
.socials--gold .soc-title,
.socials--gold .soc-sub{ color:#111; }

/* Responsive */
@media (max-width: 1024px){
  .soc-bottom{ grid-template-columns: 1fr; }
  .soc-mascot{ justify-self:center; width: min(420px, 80vw); }
}

/* Slides plein écran sous le header */
:root { --header-h: 70px; } /* desktop */

.page.slide{
  min-height: calc(100vh - var(--header-h));
  padding-block: 0;                      /* ⟵ enlève le padding haut/bas */
  padding-inline: clamp(20px, 6vw, 60px);/* garde le padding gauche/droite */
  scroll-margin-top: 0 !important;
}
@supports (height: 100dvh){
  .page.slide{ min-height: calc(100dvh - var(--header-h)); }
}

/* header plus petit sur mobile */
@media (max-width: 768px){
  :root{ --header-h: 50px; }
}

/* Tabs */
.ex-tabs{
  display:flex; gap:.75rem; justify-content:center; margin:1rem 0 2rem;
  flex-wrap:wrap;
}
.ex-tab{
  border:2px solid #00000033; border-radius:999px; padding:.5rem 1rem;
  font-weight:700; background:transparent; cursor:pointer; color: #0f1a18;
}
.ex-tab[aria-selected="true"]{
  background:#00000014; box-shadow:0 2px 0 #00000040 inset;
}

/* ===== Desktop (≥1281px) : 3 cartes/ligne via 6 colonnes internes ===== */
.integrations .ex-grid{
  display:grid;
  gap:1.25rem;
  grid-template-columns: repeat(6, minmax(0, 1fr)); /* 6 internes => 3 visibles */
}
.integrations .ex-grid > .ex-item{
  grid-column: span 2; /* 2/6 = 3 cartes */
}

/* Utilitaires appliqués par le script */
.ex-item.--span-all { grid-column: 1 / -1; } /* 100% */
.ex-item.--span-3   { grid-column: span 3; } /* 50% (3/6) */

/* ===== ≤1280px : 2 cartes/ligne (4 colonnes internes) ===== */
@media (max-width:1280px){
  .integrations .ex-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 internes => 2 visibles */
  }
  .integrations .ex-grid > .ex-item{
    grid-column: span 2; /* 2/4 = 2 cartes */
  }

  /* Remap des utilitaires */
  .ex-item.--span-3   { grid-column: span 2; } /* 50% en 2 colonnes */
  .ex-item.--span-all { grid-column: 1 / -1; } /* 100% */

  .page-home {
    display: block;
    padding: 0 60px;
  }
  .page-integrations {
    display: block;
    padding: 20px 60px 60px 60px;
  }
  .page-social {
    display: block;
    padding: 20px 60px;
  }
}

/* ===== ≤768px : 1 carte/ligne ===== */
@media (max-width:768px){
  .integrations .ex-grid{
    grid-template-columns: 1fr; /* 1 seule colonne */
  }
  .integrations .ex-grid > .ex-item,
  .ex-item.--span-3,
  .ex-item.--span-all{
    grid-column: auto; /* reset complet */
  }
  .page-home {
    display: block;
    padding: 0 60px;
  }
  .page-integrations {
    display: block;
    padding: 20px 20px 60px 20px;
  }
  .page-social {
    display: block;
    padding: 20px 60px;
  }
}


:root{
  --ring:rgba(43,196,165,.55);
  --bg-dark-1:#162825; --bg-dark-2:#0d1c19; --text-on-dark:#eafff9;
}
.btn-dark{appearance:none;
  border:1px solid transparent;
  padding-block: clamp(1rem, 1rem + 0.3vw, 2rem);
  /* horizontal : entre 2.2rem et 3.4rem, fluide */
  padding-inline: clamp(2rem, 2rem + 1vw, 2.4rem);
  border-radius:14px;
     font-weight:700;letter-spacing:.2px;cursor:pointer;display:inline-flex;gap:.55rem;
     transition:transform .16s, box-shadow .16s, filter .16s, background .16s;}
.btn-dark:hover{transform:translateY(-1px)}
.btn-dark:active{transform:translateY(1px);filter:saturate(.98)}
.btn-dark:focus-visible{outline:0;box-shadow:0 0 0 4px var(--ring)}
.btn-dark.dark{color:var(--text-on-dark);
  background:linear-gradient(180deg,var(--bg-dark-1),var(--bg-dark-2));
  border-color:#0e2b26;
  margin-top: 40px;
  box-shadow:0 10px 24px rgba(6,16,14,.6), inset 0 1px 0 rgba(255,255,255,.08);}
  
  .btn-dark-menu{appearance:none;
    border:1px solid transparent;
    padding-block: 10px;
    padding-inline: 20px;
    border-radius:14px;
       font-weight:700;letter-spacing:.2px;cursor:pointer;display:inline-flex;
       transition:transform .16s, box-shadow .16s, filter .16s, background .16s;}
  .btn-dark-menu:hover{transform:translateY(-1px)}
  .btn-dark-menu:active{transform:translateY(1px);filter:saturate(.98)}
  .btn-dark-menu:focus-visible{outline:0;box-shadow:0 0 0 4px var(--ring)}
  .btn-dark-menu.dark{color:var(--text-on-dark);
    background:linear-gradient(180deg,var(--bg-dark-1),var(--bg-dark-2));
    border-color:#0e2b26;
    box-shadow:0 10px 24px rgba(6,16,14,.6), inset 0 1px 0 rgba(255,255,255,.08);}

    /* === Starry background (mint + only stars) === */
:root{
  /* ta couleur de fond “mint” (déjà similaire à --background-dark) */
  --mint: #A7F1CA;
}



