:root {
  --ink: #f4f4f5;
  --paper: #0f1011;
  --surface: #18191b;
  --surface-raised: #1f2023;
  --mint: #7cebae;
  --mint-strong: #62e79e;
  --lime: #7cebae;
  --blue: #3478f6;
  --line: #292a2e;
  --muted: #a5a6ad;
  --danger: #ff6577;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 max(24px, 5vw);
  position: sticky;
  top: 0;
  background: rgba(15, 16, 17, .94);
  backdrop-filter: blur(16px);
  z-index: 5;
}
nav div { display: flex; align-items: center; gap: 8px; }
nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
nav div a {
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 10px;
}
nav div a:hover { color: var(--ink); background: var(--surface); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  letter-spacing: -.04em;
}
.brand::before {
  content: "";
  width: 17px;
  height: 34px;
  border: 2px solid #e9fff3;
  border-radius: 99px;
  background: linear-gradient(to bottom, #f6fff9 0 48%, var(--mint) 48% 100%);
  box-shadow: 0 0 0 2px rgba(124, 235, 174, .12);
  transform: rotate(42deg) scale(.72);
  margin-right: 10px;
}
.brand span { color: var(--mint); }

main { max-width: 1280px; min-width: 0; margin: auto; padding: 0 5vw; }
section { padding: 86px 0; }
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.45fr .7fr;
  gap: 7vw;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero > *,
.split > *,
.feeds > * { min-width: 0; }
.hero::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 16%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(124, 235, 174, .08);
  filter: blur(80px);
  pointer-events: none;
}
.eyebrow {
  color: var(--mint);
  font-size: .75rem;
  letter-spacing: .15em;
  font-weight: 850;
}
.hero h1 {
  font-size: clamp(3.4rem, 7.4vw, 7.3rem);
  line-height: .86;
  letter-spacing: -.07em;
  margin: .2em 0;
}
.hero h1 em { font-style: normal; color: var(--mint); }
.lede { max-width: 680px; color: #c4c5ca; font-size: 1.14rem; line-height: 1.65; }
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: #0b1710;
  border: 1px solid var(--mint);
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  padding: 14px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}
button:hover,
.button:hover {
  background: var(--mint-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(98, 231, 158, .16);
}
.pulse-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid #323438;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.pulse-card::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}
.pulse-card span { color: #d7d8dc; }
.pulse-card small { display: block; color: var(--muted); }
.pulse-card strong {
  color: var(--mint);
  font-size: 4.5rem;
  letter-spacing: -.08em;
  display: block;
  margin: 8px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.metrics article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.metrics strong { display: block; font-size: 2rem; }
.metrics span { color: var(--muted); }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 60px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .2);
  margin: 86px 0;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -.055em;
  line-height: .98;
  margin: .15em 0 .4em;
}
p { line-height: 1.55; }
a { color: var(--mint); }
label { display: inline-block; color: #d7d8dc; font-weight: 700; margin-bottom: 9px; }
.input-row { display: flex; gap: 10px; }
.input-row input {
  min-width: 0;
  flex: 1;
  padding: 15px;
  color: var(--ink);
  border: 1px solid #35363b;
  border-radius: 12px;
  outline: 0;
  background: #101113;
  font: inherit;
}
.input-row input::placeholder { color: #74767e; }
.input-row input:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(124, 235, 174, .1); }
.message { min-height: 1.5em; color: var(--muted); }
.registration-panel { padding: 0; overflow: hidden; }
.registration-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 48px;
  align-items: end;
  padding: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}
.registration-heading h2 { max-width: 690px; margin-bottom: 0; }
.registration-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; }
.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
  gap: 0;
}
.setup-guide { display: grid; gap: 12px; padding: clamp(26px, 3.5vw, 44px); }
.setup-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
  background: #141517;
  border: 1px solid #2b2c30;
  border-radius: 14px;
}
.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #0b1710;
  background: var(--mint);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 900;
}
.setup-step h3 { margin: 0 0 5px; font-size: 1rem; }
.setup-step p { margin: 0; color: var(--muted); font-size: .93rem; }
.registration-setup {
  align-self: start;
  margin: clamp(26px, 3.5vw, 44px) clamp(26px, 3.5vw, 44px) clamp(26px, 3.5vw, 44px) 0;
  padding: clamp(22px, 3vw, 30px);
  background: #111214;
  border: 1px solid #303136;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}
.wallet-help { color: var(--muted); margin-bottom: 10px; }
.wallet-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  gap: 8px;
  align-items: stretch;
}
.wallet-copy-row code {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  color: var(--ink);
  background: #0b0c0d;
  border: 1px solid #383a3f;
  border-radius: 12px;
  font-size: .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: copy;
}
.copy-wallet {
  width: 50px;
  min-height: 48px;
  padding: 0;
  font-size: 1.2rem;
  border-radius: 12px;
}
.copy-wallet:disabled,
button:disabled { cursor: not-allowed; opacity: .45; transform: none; box-shadow: none; }
.wallet-message { min-height: 1.35em; margin: 8px 2px 0; color: var(--muted); font-size: .82rem; }
.wallet-message.is-success,
.message.is-success { color: var(--mint); }
.wallet-message.is-error,
.message.is-error { color: var(--danger); }
.register-divider { height: 1px; margin: 24px 0; background: var(--line); }

.section-title { display: flex; align-items: end; justify-content: space-between; }
.coin-directory { border-bottom: 1px solid var(--line); }
.coin-directory .token-grid { margin-top: 32px; }
.token-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.token {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--surface);
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.token:hover { border-color: rgba(124, 235, 174, .55); background: var(--surface-raised); transform: translateY(-2px); }
.token header { display: flex; justify-content: space-between; gap: 10px; }
.token h3 { margin: 0; font-size: 1.45rem; }
.token header b {
  align-self: start;
  color: var(--mint);
  background: rgba(124, 235, 174, .1);
  border-radius: 99px;
  padding: 5px 9px;
  font-size: .69rem;
  text-transform: uppercase;
}
.token code { color: var(--muted); font-size: .72rem; }
.token .stat { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.token a { color: var(--mint); font-weight: 750; text-decoration: none; }
.token a:hover { text-decoration: underline; }
.empty { color: var(--muted); }
.earnings { margin-top: 28px; }
.payment { display: grid; grid-template-columns: 1fr auto; gap: 12px; border-top: 1px solid var(--line); padding: 14px 0; }
.payment a,
.feed a { color: var(--mint); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.steps b { color: var(--mint); font-size: 1.15rem; }
.steps h3 { font-size: 1.5rem; }
.steps p { color: var(--muted); }
.safety {
  margin-top: 20px;
  color: #dffbea;
  background: rgba(124, 235, 174, .09);
  border: 1px solid rgba(124, 235, 174, .25);
  border-radius: 14px;
  padding: 20px;
}
.feed .item { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.feed code { color: var(--muted); font-size: .75rem; }
.payouts-section { border-bottom: 1px solid var(--line); }
.payouts-section h2 { margin-bottom: 28px; }
.payout-list {
  padding: 8px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.payout-list .empty { margin: 16px 0; }
footer {
  color: var(--muted);
  background: #0c0d0e;
  border-top: 1px solid var(--line);
  padding: 32px 5vw;
  display: flex;
  justify-content: space-between;
  font-weight: 650;
}

@media (max-width: 800px) {
  nav div { display: none; }
  .hero,
  .split { grid-template-columns: 1fr; }
  .hero { padding: 80px 0; }
  .pulse-card { margin-bottom: 60px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .token-grid,
  .steps { grid-template-columns: 1fr; }
  .input-row { flex-direction: column; }
  .panel { margin: 60px 0; }
  footer { gap: 20px; flex-direction: column; }
}

@media (max-width: 850px) {
  .registration-heading { grid-template-columns: 1fr; gap: 14px; }
  .registration-heading > p { max-width: 680px; }
  .registration-grid { grid-template-columns: 1fr; }
  .registration-setup { margin: 0 clamp(26px, 3.5vw, 44px) clamp(26px, 3.5vw, 44px); }
}

@media (max-width: 560px) {
  .registration-heading,
  .setup-guide { padding: 24px; }
  .registration-setup { margin: 0 24px 24px; }
  .setup-step { padding: 15px; }
}
