:root {
  color-scheme: dark;
  --bg: #07100d;
  --bg-soft: #0d1814;
  --panel: rgba(13, 24, 20, 0.82);
  --panel-strong: rgba(20, 31, 25, 0.94);
  --text: #f7f4e8;
  --muted: #b7c4b7;
  --gold: #f2c85b;
  --green: #62d887;
  --cyan: #71d4ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 77px;
  background:
    radial-gradient(circle at 18% 18%, rgba(98, 216, 135, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 24%, rgba(113, 212, 255, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  cursor: none;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

a,
button,
select,
input,
label {
  cursor: none;
}

::selection {
  background: rgba(242, 200, 91, 0.32);
  color: var(--text);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #07100d;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #050b09, #0b1712);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar-thumb {
  border: 3px solid #07100d;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffdf88, #8cf0a8);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease, width 0.16s ease, height 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(242, 200, 91, 0.72);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 200, 91, 0.74);
  border-radius: 50%;
  background: rgba(98, 216, 135, 0.05);
  backdrop-filter: blur(1px);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 46px;
  height: 46px;
  border-color: rgba(98, 216, 135, 0.88);
  background: rgba(242, 200, 91, 0.08);
}

body.cursor-hover .cursor-dot {
  background: var(--green);
}

.content-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 13, 0.84);
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 200, 91, 0.32), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.52);
  border-radius: 50%;
  background: rgba(242, 200, 91, 0.09);
  box-shadow: inset 0 1px 12px rgba(255, 255, 255, 0.12), 0 10px 28px rgba(242, 200, 91, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(242, 200, 91, 0.25));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--gold);
}

.mobile-menu-actions {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(242, 200, 91, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 142px;
  min-height: 44px;
  border: 1px solid rgba(242, 200, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(98, 216, 135, 0.06)),
    rgba(7, 16, 13, 0.9);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}

.language-trigger:hover,
.language-trigger:focus {
  border-color: rgba(98, 216, 135, 0.58);
  outline: 0;
}

.language-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  width: 190px;
  max-height: 370px;
  padding: 8px;
  border: 1px solid rgba(242, 200, 91, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11, 25, 20, 0.98), rgba(5, 11, 9, 0.98)),
    var(--bg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.language-menu.open .language-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-list button {
  display: flex;
  align-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font: inherit;
  text-align: left;
}

.language-list button:hover,
.language-list button:focus {
  background: rgba(98, 216, 135, 0.12);
  color: var(--text);
  outline: 0;
}

.language-list button[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(242, 200, 91, 0.24), rgba(98, 216, 135, 0.12));
  color: var(--gold);
}

select,
input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

select option {
  color: #121812;
  background: #f7f4e8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #ffdf88);
  color: #14100a;
}

.button-outline {
  min-width: 150px;
  border-color: rgba(242, 200, 91, 0.45);
  background: linear-gradient(135deg, rgba(242, 200, 91, 0.14), rgba(98, 216, 135, 0.08));
  color: var(--text);
  font-weight: 800;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.telegram-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(113, 212, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(113, 212, 255, 0.2), rgba(255, 255, 255, 0.07));
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.telegram-button img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
}

.telegram-button:hover {
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.section {
  padding: 96px 0;
}

.section-band {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.94), rgba(7, 16, 13, 0.64) 55%, rgba(7, 16, 13, 0.9)),
    url("https://static.wixstatic.com/media/11062b_71b832b59b744d86bf0310d0fceb3055f000.jpg/v1/fill/w_980%2Ch_551%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/11062b_71b832b59b744d86bf0310d0fceb3055f000.jpg") center / cover;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
  padding: 58px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.65vw, 4.9rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
}

.hero-lede,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-lede {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.54);
}

.hero-cta-primary {
  justify-content: space-between;
  gap: 16px;
  min-width: 206px;
  background: linear-gradient(135deg, var(--gold), #ffdf88);
  color: #14100a;
  box-shadow: 0 16px 36px rgba(242, 200, 91, 0.18);
}

.hero-cta-primary strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(20, 16, 10, 0.92);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.hero-cta-primary strong img {
  width: 18px;
  height: 18px;
  filter: invert(78%) sepia(65%) saturate(513%) hue-rotate(358deg) brightness(102%) contrast(91%);
}

.hero-cta-secondary {
  min-width: 154px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.18), rgba(98, 216, 135, 0.08)),
    rgba(7, 16, 13, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.back-to-top img {
  width: 24px;
  height: 24px;
  filter: invert(92%) sepia(48%) saturate(918%) hue-rotate(331deg) brightness(99%) contrast(92%);
}

.back-to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 216, 135, 0.58);
}

.mining-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.mining-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.mining-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 48%, rgba(242, 200, 91, 0.1), transparent 22rem),
    rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.mining-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  border: 1px solid rgba(242, 200, 91, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(98, 216, 135, 0.08), rgba(242, 200, 91, 0.06)),
    rgba(5, 11, 9, 0.95);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.mining-modal.open .mining-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.modal-close:hover {
  border-color: rgba(242, 200, 91, 0.44);
  color: var(--gold);
}

.mining-dialog h2 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.team-dialog h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.mining-copy {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  line-height: 1.7;
}

.mining-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mining-app-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(242, 200, 91, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.045);
}

.mining-app-logo {
  width: 116px;
  height: 116px;
  border: 1px solid rgba(242, 200, 91, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.mining-app-card h3 {
  margin-bottom: 0;
}

.mining-app-card strong {
  color: var(--text);
  font-size: 1.1rem;
}

.play-badge {
  display: inline-block;
  width: 178px;
  max-width: 100%;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.play-badge img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
}

.blockchain-dialog {
  text-align: left;
}

.blockchain-dialog > .eyebrow,
.blockchain-dialog > h2 {
  text-align: center;
}

.chain-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid rgba(242, 200, 91, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.12), rgba(98, 216, 135, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.chain-brand {
  width: min(320px, 100%);
  max-height: 124px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.chain-details {
  display: grid;
  gap: 9px;
}

.chain-details p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.chain-details strong {
  color: var(--gold);
}

.wallet-add-button {
  justify-self: start;
  min-height: 44px;
  margin-top: 12px;
  border: 1px solid rgba(242, 200, 91, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #ffdf88);
  color: #14100a;
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
}

.wallet-add-button:hover {
  transform: translateY(-2px);
}

.wallet-status {
  display: block;
  min-height: 18px;
  color: var(--muted);
  line-height: 1.4;
}

.contract-panel {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contract-panel h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contract-panel h3 span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
}

.contract-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.network-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
}

.network-name img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contract-row code {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
}

.telegram-dialog {
  text-align: left;
}

.telegram-dialog > .eyebrow,
.telegram-dialog > h2 {
  text-align: center;
}

.telegram-dialog h2 {
  color: var(--gold);
}

.telegram-groups {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.telegram-groups section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(113, 212, 255, 0.08), rgba(242, 200, 91, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.telegram-groups h3 {
  margin-bottom: 16px;
  color: var(--text);
}

.telegram-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.telegram-link-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.telegram-link-grid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 212, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.telegram-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.38);
  background: rgba(242, 200, 91, 0.1);
}

.team-dialog {
  width: min(1080px, 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.team-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 360px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 200, 91, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.045);
}

.team-avatar {
  width: 174px;
  height: 174px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.team-card h3 {
  margin: 12px 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.team-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.team-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.team-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(242, 200, 91, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.team-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.55);
}

.team-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-socials a[href*="x.com"] img {
  filter: brightness(0) invert(1);
}

.team-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: #d7ead8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.verification-dialog {
  width: min(820px, 100%);
  text-align: left;
}

.verification-dialog > .eyebrow,
.verification-dialog > h2,
.verification-copy {
  text-align: center;
}

.verification-dialog h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.verification-copy {
  max-width: 660px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.verification-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.verification-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 11, 9, 0.86);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}

.verification-form input:focus {
  border-color: rgba(242, 200, 91, 0.48);
  outline: 0;
}

.verification-result {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.6;
}

.verification-result.verified {
  border-color: rgba(98, 216, 135, 0.46);
  background: rgba(98, 216, 135, 0.1);
  color: #dfffe7;
}

.verification-result.warning {
  border-color: rgba(242, 200, 91, 0.5);
  background: rgba(242, 200, 91, 0.1);
  color: #ffe7a0;
}

.verification-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.verification-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.verification-hints span {
  border: 1px solid rgba(242, 200, 91, 0.18);
  border-radius: 999px;
  color: var(--muted);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.token-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  perspective: 900px;
}

.coin-plate {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(360px, 82vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.4), transparent 18%),
    linear-gradient(145deg, #f4dc83, #ab8124 42%, #251e0e 100%);
  box-shadow: var(--shadow), inset 0 0 34px rgba(255, 255, 255, 0.2);
  transform: rotateY(-18deg) rotateX(8deg);
  animation: floatCoin 7s ease-in-out infinite;
}

.coin-plate::before {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(18, 17, 12, 0.88), rgba(8, 9, 7, 0.72));
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.24);
}

.coin-logo {
  position: relative;
  z-index: 2;
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.3));
}

.coin-plate strong {
  position: absolute;
  bottom: 88px;
  color: #221909;
}

.chain-ring {
  position: absolute;
  border: 1px solid rgba(242, 200, 91, 0.34);
  border-radius: 50%;
  transform: rotateX(72deg);
}

.ring-one {
  width: 450px;
  height: 450px;
}

.ring-two {
  width: 580px;
  height: 580px;
  border-color: rgba(113, 212, 255, 0.2);
}

.metric-chip {
  position: absolute;
  z-index: 4;
  min-width: 138px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 13, 0.78);
  box-shadow: var(--shadow);
}

.metric-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.metric-chip strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
}

.chip-top {
  top: 66px;
  right: 18px;
}

.chip-bottom {
  left: 0;
  bottom: 78px;
}

.ticker-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 20, 16, 0.94);
}

.ticker-strip div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.ticker-strip span,
.ticker-strip strong {
  display: block;
}

.ticker-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.ticker-strip strong {
  margin-top: 4px;
  font-size: 1.1rem;
}

.featured-section {
  padding: 44px 0 26px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(242, 200, 91, 0.05), transparent 28%, rgba(98, 216, 135, 0.04)),
    rgba(5, 11, 9, 0.52);
}

.featured-label {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(96px, 1fr));
  gap: 12px;
  align-items: center;
}

.partner-logo {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(242, 200, 91, 0.08)),
    rgba(255, 255, 255, 0.09);
  padding: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.32);
  background: rgba(242, 200, 91, 0.06);
}

.partner-logo img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(2.15) contrast(1.2) drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover img {
  filter: grayscale(1) invert(1) brightness(2.45) contrast(1.28) drop-shadow(0 0 18px rgba(242, 200, 91, 0.28));
  opacity: 1;
  transform: scale(1.03);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 790px;
}

.feature-grid,
.app-grid,
.stats-grid,
.document-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.app-tile,
.document-link,
.swap-panel,
.soon-panel,
.stats-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card,
.app-tile {
  padding: 28px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.ecosystem-logo {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 22px;
  border: 1px solid rgba(242, 200, 91, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(242, 200, 91, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.045);
  padding: 10px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.feature-card p,
.app-tile p,
.soon-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-card a,
.document-link span {
  color: var(--gold);
  font-weight: 800;
}

.feature-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  margin-bottom: 0;
  color: var(--green);
  font-weight: 900;
}

.accent-card {
  background: linear-gradient(160deg, rgba(242, 200, 91, 0.22), rgba(98, 216, 135, 0.08)), var(--panel);
}

.app-grid {
  grid-template-columns: repeat(3, 1fr);
}

.app-tile {
  min-height: 220px;
}

.app-tile span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.78rem;
}

.app-tile.featured {
  background: linear-gradient(135deg, rgba(113, 212, 255, 0.18), rgba(242, 200, 91, 0.16)), var(--panel);
}

.app-tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.app-tab {
  min-width: 104px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
}

.app-tab.active {
  background: linear-gradient(135deg, var(--gold), #ffdf88);
  color: #14100a;
}

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

.product-grid.active {
  display: grid;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 14%, rgba(242, 200, 91, 0.1), transparent 10rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.product-card > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border: 1px solid rgba(242, 200, 91, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.product-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 4px;
}

.product-card .play-badge,
.product-card .product-button {
  align-self: end;
  margin-top: auto;
}

.product-button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 200, 91, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
}

.product-button:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 216, 135, 0.48);
}

.product-button.disabled {
  color: var(--muted);
  opacity: 0.72;
}

.soon-product {
  background:
    linear-gradient(135deg, rgba(113, 212, 255, 0.11), rgba(242, 200, 91, 0.08)),
    var(--panel);
}

.swap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.swap-panel,
.soon-panel {
  padding: 28px;
}

.swap-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 104px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.swap-row label {
  color: var(--muted);
  font-weight: 800;
}

.swap-switch {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.swap-switch:hover {
  transform: rotate(180deg);
  border-color: rgba(242, 200, 91, 0.45);
  background: rgba(242, 200, 91, 0.12);
}

.swap-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.swap-meta strong {
  color: var(--text);
  text-align: right;
}

.swap-panel .button + .button {
  margin-top: 10px;
}

.soon-panel,
.exchange-panel {
  background:
    linear-gradient(135deg, rgba(98, 216, 135, 0.16), rgba(113, 212, 255, 0.1)),
    var(--panel-strong);
}

.soon-panel h3,
.exchange-panel h3 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  margin-bottom: 14px;
}

.exchange-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.exchange-card {
  display: grid;
  min-height: 138px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(242, 200, 91, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.exchange-card:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 216, 135, 0.45);
  background: rgba(242, 200, 91, 0.08);
}

.exchange-card img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.exchange-card span {
  color: var(--text);
  font-weight: 900;
}

.exchange-card small {
  color: var(--gold);
  font-size: 0.72rem;
}

.soon-exchange {
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.12), rgba(113, 212, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.buy-hero {
  padding: 88px 0 70px;
}

.buy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.buy-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.buy-lede {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.buy-token-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(242, 200, 91, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 10%, rgba(242, 200, 91, 0.22), transparent 12rem),
    rgba(255, 255, 255, 0.045);
  padding: 28px;
  box-shadow: var(--shadow);
}

.buy-token-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 50%;
  background: #020403;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.buy-token-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.buy-token-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.22rem;
}

.buy-section .section-heading {
  margin-bottom: 24px;
}

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

.market-card {
  display: grid;
  min-height: 260px;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(98, 216, 135, 0.035)),
    var(--panel);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.market-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 200, 91, 0.42);
  background:
    linear-gradient(145deg, rgba(242, 200, 91, 0.12), rgba(98, 216, 135, 0.055)),
    var(--panel);
}

.market-card img {
  width: 148px;
  height: 64px;
  object-fit: contain;
  justify-self: start;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26));
}

.market-card img.market-logo-readable {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
  opacity: 0.94;
}

.market-card img.market-logo-wordmark {
  width: 170px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.market-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.market-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.market-card p strong {
  color: var(--text);
}

.market-card > span {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 200, 91, 0.34);
  border-radius: 8px;
  background: rgba(242, 200, 91, 0.1);
  color: var(--gold);
  padding: 0 16px;
  font-weight: 900;
}

.market-card-soon {
  background:
    linear-gradient(145deg, rgba(242, 200, 91, 0.14), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.soon-dot {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.buy-warning {
  border: 1px solid rgba(242, 200, 91, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.14), rgba(255, 255, 255, 0.035)),
    var(--panel);
  padding: clamp(24px, 4vw, 40px);
}

.buy-warning h2 {
  margin: 0 0 14px;
  color: var(--gold);
}

.buy-warning p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.roadmap-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.roadmap-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.token-profile {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(242, 200, 91, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.13), rgba(98, 216, 135, 0.05)),
    var(--panel);
  box-shadow: var(--shadow);
}

.token-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.token-logo-wrap {
  position: relative;
  flex: 0 0 auto;
}

.token-logo-wrap > img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border: 1px solid rgba(242, 200, 91, 0.18);
  border-radius: 50%;
  background: rgba(5, 11, 9, 0.58);
  padding: 14px;
}

.token-identity span,
.token-profile-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.token-identity strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.token-profile-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.token-profile-meta div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.token-profile-meta strong {
  display: block;
  margin-top: 6px;
}

.download-logo-button {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 200, 91, 0.38);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffdf88);
  color: #14100a;
  padding: 0;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.download-logo-button img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%);
}

.stats-grid div {
  padding: 26px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.stats-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.document-grid {
  grid-template-columns: repeat(3, 1fr);
}

.document-link {
  min-height: 140px;
  padding: 24px;
}

.document-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(98, 216, 135, 0.08), rgba(242, 200, 91, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: inherit;
  text-align: left;
}

.document-button:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.38);
}

.document-link strong,
.document-link span {
  display: block;
}

.document-link strong {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.media-kit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.media-kit-dialog {
  width: min(1180px, 100%);
}

.media-kit-card {
  display: grid;
  min-height: 158px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(242, 200, 91, 0.035)),
    rgba(7, 18, 14, 0.72);
  text-align: center;
}

.media-kit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.45);
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.12), rgba(98, 216, 135, 0.06)),
    rgba(10, 24, 18, 0.9);
}

.media-kit-card img {
  width: 84px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.media-kit-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.media-kit-card small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.media-kit-card small img {
  width: 14px;
  height: 14px;
  filter: invert(83%) sepia(87%) saturate(445%) hue-rotate(344deg) brightness(102%) contrast(90%);
}

.about-page main {
  padding-top: 86px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(242, 200, 91, 0.2), transparent 22rem),
    radial-gradient(circle at 26% 68%, rgba(98, 216, 135, 0.14), transparent 24rem),
    linear-gradient(120deg, rgba(4, 10, 8, 0.95), rgba(7, 16, 13, 0.72));
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.about-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1.02;
}

.about-hero p {
  max-width: 760px;
  color: #d7ead8;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.about-coin-card {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 200, 91, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 200, 91, 0.22), transparent 12rem),
    rgba(7, 18, 14, 0.72);
  box-shadow: var(--shadow);
}

.about-coin-card img {
  width: min(70%, 260px);
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.42));
}

.about-story-grid,
.about-ecosystem-grid,
.about-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 18, 14, 0.74);
}

.about-card.highlight {
  border-color: rgba(242, 200, 91, 0.34);
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.18), rgba(98, 216, 135, 0.06)),
    rgba(13, 24, 20, 0.9);
}

.about-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.about-card p,
.about-card li {
  color: #d7ead8;
  line-height: 1.72;
}

.about-card ul {
  margin: 0;
  padding-left: 18px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.about-metrics div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.about-metrics div + div {
  border-left: 1px solid var(--line);
}

.about-metrics strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-metrics span {
  color: var(--muted);
}

.about-ecosystem-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 18, 14, 0.74);
}

.about-ecosystem-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.about-ecosystem-card h3 {
  margin: 0 0 6px;
}

.about-ecosystem-card p {
  margin: 0;
  color: #d7ead8;
  line-height: 1.6;
}

.about-sponsor-grid .about-card {
  min-height: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050b09;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.9fr repeat(5, minmax(120px, 1fr));
  gap: 36px;
  padding: 70px 0 54px;
}

.footer-main p,
.footer-main a,
.footer-community a,
.footer-bottom a {
  color: var(--muted);
}

.footer-column a,
.footer-link-button,
.footer-support strong {
  display: block;
}

.footer-column a,
.footer-link-button {
  margin-top: 12px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.35;
  text-align: left;
}

.footer-column a:hover,
.footer-link-button:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.footer-main h4,
.footer-community h4 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1rem;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-block p {
  max-width: 260px;
  line-height: 1.7;
}

.footer-support strong {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.93rem;
}

.footer-support a {
  margin-top: 6px;
}

.footer-community {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 0 34px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(242, 200, 91, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(242, 200, 91, 0.07)),
    rgba(6, 14, 11, 0.78);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 91, 0.55);
  background:
    linear-gradient(135deg, rgba(242, 200, 91, 0.24), rgba(98, 216, 135, 0.12)),
    rgba(9, 22, 17, 0.9);
}

.social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.linktree-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(242, 200, 91, 0.2);
  border-radius: 8px;
  background: rgba(6, 14, 11, 0.72);
}

.linktree-badge img {
  display: block;
  max-width: 132px;
  max-height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-x img,
.social-link[href*="github.com"] img,
.social-link[href*="coinmarketcap.com"] img {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom a {
  margin-left: 28px;
  font-size: 0.92rem;
}

@keyframes floatCoin {
  0%,
  100% {
    transform: rotateY(-18deg) rotateX(8deg) translateY(0);
  }
  50% {
    transform: rotateY(-12deg) rotateX(11deg) translateY(-18px);
  }
}

@media (max-width: 1040px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    z-index: 60;
  }

  .mobile-menu-toggle {
    display: grid;
    position: relative;
    z-index: 64;
  }

  .site-header.menu-open .mobile-menu-toggle {
    border-color: rgba(242, 200, 91, 0.58);
    background: rgba(242, 200, 91, 0.1);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 62;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    width: min(292px, 86vw);
    margin: 0;
    padding: 82px 16px 260px;
    border: 0;
    border-left: 1px solid rgba(242, 200, 91, 0.24);
    border-radius: 0;
    background: rgba(5, 12, 9, 0.98);
    box-shadow: -22px 0 54px rgba(0, 0, 0, 0.42);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform 0.25s ease, opacity 0.2s ease;
    white-space: normal;
  }

  .header-actions {
    position: fixed;
    right: 0;
    top: 360px;
    z-index: 63;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(292px, 86vw);
    margin: 0;
    padding: 0 16px 18px;
    border: 0;
    border-left: 1px solid rgba(242, 200, 91, 0.24);
    background: rgba(5, 12, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .site-header.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 61;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-header.menu-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-header.menu-open .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.035);
    text-align: left;
  }

  .site-header.menu-open .header-actions {
    align-items: stretch;
  }

  .hero-grid,
  .about-hero-grid,
  .buy-hero-grid,
  .swap-layout {
    grid-template-columns: 1fr;
  }

  .token-stage {
    min-height: 430px;
  }

  .feature-grid,
  .app-grid,
  .market-grid,
  .product-grid,
  .team-grid,
  .media-kit-grid,
  .stats-grid,
  .document-grid,
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-kit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .token-profile {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .about-ecosystem-grid,
  .about-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .ticker-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-row {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 680px) {
  .content-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .site-header.menu-open .nav-links {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(292px, 86vw);
    padding: 78px 14px 260px;
  }

  .site-header.menu-open .nav-links a {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .site-header.menu-open .header-actions {
    top: 346px;
    width: min(292px, 86vw);
  }

  .site-header.menu-open .language-control {
    justify-content: flex-start;
  }

  .site-header.menu-open .telegram-button {
    align-self: flex-start;
  }

  .site-header.menu-open .button-outline {
    width: 100%;
  }

  .telegram-button {
    width: 44px;
    height: 44px;
  }

  .button-outline {
    flex: 0 1 auto;
    min-width: 0;
    padding-inline: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .mining-app-grid {
    grid-template-columns: 1fr;
  }

  .mining-dialog {
    width: 100%;
    padding: 26px 16px;
    text-align: left;
  }

  .modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 160;
  }

  .team-dialog,
  .media-kit-dialog,
  .verification-dialog,
  .telegram-dialog,
  .blockchain-dialog {
    width: 100%;
  }

  .mining-app-card {
    text-align: center;
  }

  .chain-card,
  .contract-row {
    grid-template-columns: 1fr;
  }

  .contract-panel {
    padding: 20px;
  }

  .telegram-link-grid,
  .telegram-link-grid.compact {
    grid-template-columns: 1fr;
  }

  .language-control {
    flex: 1;
    justify-content: flex-start;
  }

  .language-menu,
  .language-trigger {
    width: 100%;
  }

  .language-list {
    left: 0;
    right: auto;
    width: min(220px, 100%);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 22px;
    padding: 46px 0 72px;
  }

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

  .hero-cta {
    min-width: min(206px, 100%);
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.25rem);
  }

  .hero-lede,
  .section-heading p {
    font-size: 1rem;
  }

  .token-stage {
    min-height: 320px;
  }

  .coin-plate {
    width: min(260px, 74vw);
  }

  .coin-plate strong {
    bottom: 58px;
  }

  .ring-one {
    width: 310px;
    height: 310px;
  }

  .ring-two {
    width: 390px;
    height: 390px;
  }

  .metric-chip {
    min-width: 118px;
    padding: 10px 12px;
  }

  .metric-chip strong {
    font-size: 1.2rem;
  }

  .chip-top {
    top: 10px;
    right: 0;
  }

  .chip-bottom {
    left: 0;
    bottom: 12px;
  }

  .ticker-strip,
  .about-metrics,
  .partners-row,
  .feature-grid,
  .app-grid,
  .product-grid,
  .team-grid,
  .media-kit-grid,
  .stats-grid,
  .token-profile,
  .document-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    padding: 46px 0 34px;
  }

  .footer-brand-block,
  .footer-support {
    grid-column: 1 / -1;
  }

  .footer-column a,
  .footer-link-button {
    margin-top: 9px;
    font-size: 0.88rem;
    line-height: 1.28;
  }

  .footer-main h4,
  .footer-community h4 {
    margin-bottom: 10px;
    font-size: 0.94rem;
  }

  .about-metrics div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .token-profile-meta {
    grid-template-columns: 1fr;
  }

  .partners-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-community,
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-inner {
    padding: 16px 0;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 8px 18px 0 0;
  }

  .verification-form {
    grid-template-columns: 1fr;
  }

  .ticker-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }

  .swap-row {
    grid-template-columns: 1fr;
  }

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

  .buy-hero {
    padding: 54px 0 50px;
  }

  .buy-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4.1rem);
  }

  .buy-token-card {
    padding: 22px;
  }

  .buy-token-card img {
    width: 92px;
    height: 92px;
  }

  .market-card {
    min-height: auto;
    padding: 22px;
  }

  .market-card img {
    width: min(148px, 100%);
    justify-self: start;
  }

  .market-card > span {
    width: 100%;
  }
}

@media (max-width: 1040px) {
  body {
    padding-top: 73px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    z-index: 90;
  }

  .mobile-menu-toggle {
    display: grid;
    position: relative;
    z-index: 96;
    border-color: rgba(242, 200, 91, 0.38);
    background: rgba(7, 16, 13, 0.9);
  }

  .site-header.menu-open .mobile-menu-toggle {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .site-header.menu-open .mobile-menu-toggle span {
    background: #f7f4e8;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 92;
    display: flex;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vh, 34px);
    margin: 0;
    padding: 88px 24px 180px;
    border: 0;
    border-radius: 0;
    background: #020403;
    color: #f7f4e8;
    font-size: clamp(1.35rem, 5.2vw, 2rem);
    font-weight: 500;
    letter-spacing: 0;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    text-align: center;
    transform: none;
    transition: opacity 0.18s ease;
    white-space: normal;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open::after {
    content: none;
  }

  .site-header.menu-open .nav-links a {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    color: #f7f4e8;
    text-align: center;
  }

  .site-header.menu-open .nav-links a.active {
    color: var(--gold);
  }

  .header-actions {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 30px;
    top: auto;
    z-index: 93;
    display: flex;
    width: min(360px, calc(100vw - 48px));
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.18s ease;
  }

  .site-header.menu-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .site-header.menu-open .language-control {
    width: 100%;
    justify-content: center;
  }

  .site-header.menu-open .language-menu,
  .site-header.menu-open .language-trigger {
    width: min(220px, 100%);
  }

  .site-header.menu-open .telegram-button {
    align-self: auto;
  }

  .site-header.menu-open .button-outline {
    width: min(190px, 100%);
  }

  .site-header.menu-open .nav-links {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding: 112px 28px 230px;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3.4vh, 30px);
    background:
      radial-gradient(circle at 50% 18%, rgba(242, 200, 91, 0.1), transparent 15rem),
      linear-gradient(180deg, #020403, #050b09 62%, #07100d);
    box-shadow: none;
  }

  .site-header.menu-open .nav-links a {
    min-height: auto;
    border: 0;
    background: transparent;
    color: #f7f4e8;
    padding: 0;
    font-size: clamp(1.25rem, 5vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
  }

  .site-header.menu-open .nav-links a.active {
    color: var(--gold);
  }

  .site-header.menu-open .header-actions {
    position: fixed !important;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 34px;
    z-index: 97;
    width: min(330px, calc(100vw - 46px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    justify-items: stretch;
    border: 0;
    background: transparent;
    padding: 0;
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .header-actions .language-trigger,
  .site-header.menu-open .header-actions .telegram-button,
  .site-header.menu-open .header-actions .button-outline {
    min-height: 46px;
  }

  .site-header.menu-open .language-control {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .site-header.menu-open .language-control > span {
    display: none;
  }

  .site-header.menu-open .language-menu,
  .site-header.menu-open .language-trigger {
    width: 100%;
  }

  .site-header.menu-open .telegram-button {
    justify-self: end;
  }

  .site-header.menu-open .button-outline {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .site-header.menu-open > .header-actions {
    display: none !important;
  }

  .site-header.menu-open .mobile-menu-actions {
    display: grid;
    width: min(330px, calc(100vw - 46px));
    gap: 14px;
    margin-top: clamp(12px, 3vh, 28px);
  }

  .mobile-language-picker {
    position: relative;
    width: 100%;
  }

  .mobile-language-picker summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(242, 200, 91, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    padding: 0 16px;
    list-style: none;
  }

  .mobile-language-picker summary::-webkit-details-marker {
    display: none;
  }

  .mobile-language-picker summary span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-language-picker summary strong {
    color: var(--text);
    font-size: 0.95rem;
  }

  .mobile-language-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    display: grid;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid rgba(242, 200, 91, 0.3);
    border-radius: 8px;
    background: #07100d;
    padding: 8px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  }

  .mobile-language-list button {
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--text);
    font: inherit;
    text-align: left;
    padding: 0 10px;
  }

  .mobile-language-list button:hover {
    background: rgba(242, 200, 91, 0.12);
    color: var(--gold);
  }

  .mobile-menu-buttons {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .mobile-menu-buttons .telegram-button,
  .mobile-menu-buttons .button-outline {
    min-height: 50px;
  }

  .mobile-menu-buttons .telegram-button {
    width: 50px;
    height: 50px;
  }

  .mobile-menu-buttons .telegram-button img {
    width: 34px;
    height: 34px;
  }

  .site-header.menu-open .mobile-menu-buttons .button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 200, 91, 0.46);
    border-radius: 8px;
    background: rgba(242, 200, 91, 0.08);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    padding: 0 16px;
  }

  .buy-page .market-grid {
    grid-template-columns: 1fr;
  }

  .buy-page .market-card {
    min-height: auto;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body,
  a,
  button,
  select,
  input,
  label {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
