:root {
  --bg: #07080b;
  --bg-2: #0d0e12;
  --card: #12141a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --muted: #9a958c;
  --orange: #f7931a;
  --orange-2: #ffb347;
  --good: #3ddc84;
  --bad: #ff6b4a;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --radius: 18px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% auto auto -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-2); }
img { max-width: 100%; height: auto; }
button, input { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 11, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.brand span { font-size: 18px; }
.mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.hero-copy { position: relative; }

.nav-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
}

.nav-price strong { font-size: 15px; }
.is-up { color: var(--good); }
.is-down { color: var(--bad); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  list-style: none;
}

.nav-links > li { list-style: none; }

.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #111 !important;
}

.nav-langs { display: flex; gap: 6px; align-items: center; }
.nav-langs img { width: 18px; height: 18px; border-radius: 2px; opacity: 0.8; }
.nav-langs a:hover img { opacity: 1; }
.lang-en {
  color: var(--text) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 4px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 64px 0 28px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.hero-chart .chart-frame {
  min-height: 440px;
}

.hero-chart iframe {
  height: 440px;
}

.about-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}
.about-copy p { margin-bottom: 14px; }
.about-copy strong { color: var(--text); }

.share-bar {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.share-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.share-line {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 720px;
  margin-bottom: 16px;
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 147, 26, 0.18);
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-lead {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { background: var(--orange-2); color: #111; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.ca-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
}

.ca-chip:hover { border-color: var(--orange); }

.listed {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.listed > span {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.listed a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 12px;
}

.listed a:hover { transform: translateY(-1px); }

.listed img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.listed img[alt="CoinMarketCap"] {
  height: 52px;
  max-width: 220px;
  filter: none;
}

.proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 8px 0 56px;
}

.proof article {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.proof strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section {
  position: relative;
  z-index: 1;
  padding: 24px 0 72px;
}

.section h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section .sub {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  margin-bottom: 10px;
  padding: 4px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  padding: 14px 0;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  color: var(--muted);
  padding: 0 0 16px;
  max-width: 720px;
}

.chart-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0a0b10;
  min-height: 560px;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.chart-open {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
}

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

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

.card {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card p { color: var(--muted); font-size: 15px; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}

.compare th,
.compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare thead th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #0f1117;
}

.compare td:first-child { color: var(--muted); font-weight: 600; }
.compare .win {
  color: var(--text);
  background: rgba(247, 147, 26, 0.08);
  font-weight: 700;
}

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

.roadmap article { min-height: 280px; }
.roadmap .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-now { background: var(--orange); color: #111; }
.tag-next { background: rgba(247, 147, 26, 0.16); color: var(--orange); }
.tag-later { background: var(--bg-2); color: var(--muted); border: 1px solid var(--line); }

.roadmap ul { list-style: none; color: var(--muted); }
.roadmap li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
}
.roadmap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.listed--row { margin: 0 0 22px; }

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

.markets a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: var(--card);
  font-weight: 600;
  font-size: 14px;
}

.markets a:hover { border-color: var(--orange); color: var(--orange); }

.site-footer {
  position: relative;
  z-index: 1;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.disclaimer { margin-top: 18px; max-width: 720px; }

.btcp-desk {
  padding: 20px;
  background: linear-gradient(180deg, #16181f, #101218);
  border: 1px solid rgba(247, 147, 26, 0.28);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.btcp-desk__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 800;
}

.btcp-desk__change { font-family: var(--mono); font-size: 12px; font-style: normal; }
.btcp-desk__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.btcp-desk__stats > div {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.btcp-desk__stats span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.btcp-desk__stats strong {
  font-family: var(--mono);
  font-size: 16px;
}

.btcp-desk__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px 12px;
  background: #0b0c10;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.btcp-desk__row label {
  width: 72px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.btcp-desk__row input,
.btcp-desk__row--out strong {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 22px;
}

.btcp-desk__row span { color: var(--orange); font-weight: 800; }
.btcp-desk__presets,
.btcp-desk__slip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.btcp-desk__slip span {
  margin-right: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.btcp-desk__presets button,
.btcp-desk__slip button {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
}

.btcp-desk__slip button.is-on,
.btcp-desk__presets button:hover,
.btcp-desk__slip button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btcp-desk__impact { min-height: 18px; margin-bottom: 10px; font-size: 12px; color: var(--muted); }
.btcp-desk__impact.is-warm { color: #f7c948; }
.btcp-desk__impact.is-hot { color: var(--bad); }

.btcp-desk__cta {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

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

.steps article {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: block;
  font-family: var(--mono);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 15px; }

.tokenomics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tokenomics article {
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.tokenomics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tokenomics strong { font-size: 18px; }

.sticky-buy { display: none; }

.btcp-desk__stats strong.is-up { color: var(--good); }
.btcp-desk__stats strong.is-down { color: var(--bad); }
.btcp-desk__status { min-height: 18px; margin-top: 8px; font-size: 12px; color: var(--muted); }
.btcp-desk__status.is-ok { color: var(--good); }
.btcp-desk__status.is-bad { color: var(--bad); }
.btcp-desk__status a { margin-left: 6px; }
.btcp-desk__links { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; }

@media (max-width: 900px) {
  .hero, .proof, .grid-3, .roadmap, .why-grid, .steps { grid-template-columns: 1fr; }
  .tokenomics { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-price { display: none; }
  .nav-links { display: none; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: #0b0c10;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .hero { padding-top: 36px; }
  .sticky-buy {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    background: var(--orange);
    color: #111;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
}

[dir="rtl"] body::before {
  inset: -20% -10% auto auto;
}

[dir="rtl"] .nav-toggle { margin-left: 0; margin-right: auto; }

[dir="rtl"] .hero-lead,
[dir="rtl"] .about-copy,
[dir="rtl"] .sub,
[dir="rtl"] .faq p,
[dir="rtl"] .disclaimer {
  text-align: right;
}
