/* --- Extracted <style> block #1 --- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=fonts/inter-400.ttf*/ url(fonts/font_78eae8a823f461192b4df2d67d7eaa818cf09b5a.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=fonts/inter-500.ttf*/ url(fonts/font_78f01e4f13a7da5c283f4d0b5d36dc489eb5ab73.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=fonts/inter-600.ttf*/ url(fonts/font_1048573ec372a0c4a60bd3d5b3ab3b82bc3973da.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=fonts/inter-700.ttf*/ url(fonts/font_b7ab5dc5e8d605338223de7a8ffe3ebea409d3bc.ttf) format("truetype");
}

:root {
  --neon: #ccff00;
  --neon-hover: #b8e600;
  --black: #000;
  --panel: #111;
  --line: #222;
  --line-soft: #1f2937;
  --text: #fff;
  --muted: #9ca3af;
  --faint: #6b7280;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a {
  font: inherit;
}

.top-strip {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  background: var(--neon);
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-strip a {
  color: inherit;
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #000;
  border-bottom: 1px solid #111827;
}

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

.brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand .divider {
  width: 1px;
  height: 24px;
  background: #1f2937;
}

.brand span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-button {
  display: grid;
  gap: 6px;
  width: 32px;
  padding: 6px 3px;
  border: 0;
  background: transparent;
  opacity: 0.82;
  cursor: pointer;
}

.menu-button:hover {
  opacity: 1;
}

.menu-button span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
}

.page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 80px;
}

.hero,
.token-card,
.requirements {
  width: 100%;
  max-width: 448px;
  animation: fadeIn 0.6s ease-out both;
}

.hero {
  max-width: 672px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--neon);
}

.hero p {
  margin: 0 auto 32px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.join-button {
  display: inline-flex;
  min-width: 220px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 16px 48px;
  border: 0;
  border-radius: 999px;
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.join-button:hover {
  background: var(--neon-hover);
  transform: translateY(-1px);
}

.token-card {
  margin-bottom: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  animation-delay: 0.1s;
}

.token-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

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

.token-logo-wrap {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid #374151;
  border-radius: 999px;
  background: #000;
}

.token-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-identity h2 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.token-identity p {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
}

.network-block {
  flex: 0 0 auto;
  text-align: right;
}

.network-block span {
  display: block;
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-block strong {
  color: var(--neon);
  font-size: 14px;
  font-weight: 700;
}

.contract-box {
  position: relative;
  margin-bottom: 24px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #1f2937;
  border-radius: 16px;
  background: #000;
}

.contract-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 12px;
}

.contract-box code {
  display: block;
  color: #d1d5db;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

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

.market-grid div {
  min-width: 0;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 12px;
  background: #070707;
}

.market-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--faint);
  font-size: 11px;
}

.market-grid strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-grid strong.is-positive {
  color: var(--neon);
}

.market-grid strong.is-negative {
  color: #fb7185;
}

.activity-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
}

.label {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 12px;
}

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

.counter-wrap strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 150ms ease;
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--neon);
}

.live-dot::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--neon);
  content: "";
  animation: ping 1.3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.requirements {
  animation-delay: 0.2s;
}

.requirements h3 {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1f2937;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--neon);
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.15);
  font-size: 14px;
  font-weight: 700;
}

.step h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.step mark {
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #1f2937;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%,
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-inline: 48px;
  }

  .page-shell {
    padding-top: 48px;
  }

  .token-card {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .brand .divider,
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .join-button {
    width: 100%;
  }

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

/* --- Extracted <style> block #2 --- */
:root {
  }



/* --- Cashback card demo styling --- */
.cashback-card {
  position: relative;
  overflow: hidden;
}

.cashback-card::after {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(204, 255, 0, 0.055);
  filter: blur(12px);
  content: "";
  pointer-events: none;
}

.cashback-logo {
  border-color: #334000;
  background: radial-gradient(circle at 35% 30%, #243000, #080900 70%);
}

.cashback-mark {
  color: var(--neon);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.cashback-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 13px 14px;
  border: 1px solid #293000;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(204,255,0,.08), rgba(204,255,0,.025));
}

.cashback-banner strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.eyebrow {
  display: block;
  color: var(--neon);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.demo-badge {
  flex: 0 0 auto;
  padding: 5px 7px;
  border: 1px solid #4b5563;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.cashback-total-box {
  margin-bottom: 12px;
}

.cashback-total {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -.03em;
}

.cashback-total-box small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 10px;
}

.cashback-grid {
  margin: 0 0 18px;
}

.cashback-grid div {
  padding: 11px;
}

.cashback-grid strong {
  font-size: 13px;
}

.cashback-activity {
  align-items: center;
  padding-top: 17px;
}

.cashback-activity .counter-wrap {
  gap: 7px;
}

.cashback-activity .counter-wrap strong {
  font-size: 16px;
}

.cashback-live-copy {
  max-width: 145px;
  color: var(--neon);
  font-size: 10px;
  font-weight: 700;
  text-align: right;
  line-height: 1.35;
  animation: claimPulse 3.2s ease-in-out infinite;
}

.cashback-footnote {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.4;
}

.cashback-footnote span:first-child {
  color: var(--neon);
  font-size: 8px;
}

@keyframes claimPulse {
  0%, 100% { opacity: .55; }
  8%, 20% { opacity: 1; }
  28% { opacity: .65; }
}

@media (max-width: 430px) {
  .cashback-banner {
    align-items: flex-start;
  }

  .cashback-live-copy {
    max-width: 120px;
  }
}
