
:root {

  --bg: #050507;
  --bg-raised: #0a0b0d;
  --bg-card: #0b0c0f;
  --bg-inset: #08090b;
  --border: #191b20;
  --border-strong: #24272e;
  --border-hot: rgba(38, 255, 128, 0.32);

  --neon: #26ff80;
  --neon-soft: #7affb1;
  --neon-dim: #17d064;
  --neon-deep: #12a34e;
  --neon-shade: #156a38;
  --neon-glow: rgba(38, 255, 128, 0.22);
  --ink: #07080a;

  --text: #f0f2ec;
  --text-dim: #e0e8dd;
  --text-faint: #858b86;

  --success: #6ee787;
  --danger: #ff7a7a;

  --header-h: 68px;
  --pv-bar-h: 77px;
  --forge-gap: 36px;

  --radius: 14px;
  --radius-sm: 10px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Chivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar { width: 0; height: 0; }

.scrollbar {
  position: fixed;
  top: 0;
  right: 3px;
  bottom: 0;
  width: 10px;
  z-index: 60;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scrollbar.on { display: block; }
.scrollbar.show { opacity: 1; }

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 2px;
  width: 6px;
  border-radius: 99px;
  background: #2b2f36;
  pointer-events: auto;
  cursor: default;
  transition: background 0.15s ease, width 0.15s ease;
}

.scrollbar-thumb:hover,
.scrollbar.dragging .scrollbar-thumb {
  background: #3d434c;
}

.pos-body,
.panel-overlay,
.pos-tabs {
  scrollbar-width: thin;
  scrollbar-color: #2b2f36 transparent;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.btn,
.btn-nav {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 40% at 50% -12%, rgba(38, 255, 128, 0.07), transparent 70%),
    radial-gradient(ellipse 45% 35% at 88% 108%, rgba(23, 208, 100, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.sprite { display: none; }

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg { width: 22px; height: 22px; }
.icon-sm { width: 14px; height: 14px; stroke-width: 2.4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease;
}

.site-header.scrolled { background: var(--bg); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text);
}

.brand-word {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--neon);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px var(--neon-glow);

  overflow: hidden;
}

.brand-mark .icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.brand em { font-style: italic; color: var(--neon); }

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--text); background: var(--bg-card); }
.nav-links a.active { color: var(--neon); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 4px 24px var(--neon-glow);
}

.btn-primary:hover { background: var(--neon-soft); box-shadow: 0 4px 34px rgba(38, 255, 128, 0.34); }

.btn-shine {
  position: relative;
  overflow: hidden;
  background: rgba(38, 255, 128, 0.05);
  color: var(--neon);
  border: 1.5px solid var(--neon);
  box-shadow:
    inset 0 0 16px rgba(38, 255, 128, 0.16),
    inset 0 0 44px rgba(38, 255, 128, 0.07),
    0 0 26px rgba(38, 255, 128, 0.16);
}

.btn-shine:hover {
  background: rgba(38, 255, 128, 0.1);
  box-shadow:
    inset 0 0 20px rgba(38, 255, 128, 0.24),
    inset 0 0 54px rgba(38, 255, 128, 0.1),
    0 0 38px rgba(38, 255, 128, 0.26);
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 55%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(122, 255, 177, 0.05) 28%,
    rgba(160, 255, 200, 0.14) 50%,
    rgba(122, 255, 177, 0.05) 72%,
    transparent 100%
  );
  filter: blur(7px);
  transform: translateX(-140%) skewX(-18deg);
  animation: btn-shine-sweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine-sweep {
  0% { transform: translateX(-140%) skewX(-18deg); }

  45%, 100% { transform: translateX(240%) skewX(-18deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-shine::after { animation: none; display: none; }
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover { border-color: var(--border-hot); color: var(--neon); }

.btn-nav {
  background: var(--neon);
  border: 1px solid var(--neon);
  color: var(--ink);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 18px var(--neon-glow);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn-nav:hover { background: var(--neon-soft); border-color: var(--neon-soft); }

.btn-lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 12px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.hero {
  position: relative;

  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 40px;
  text-align: center;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38, 255, 128, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  pointer-events: none;
}

.how-section {
  position: relative;

  overflow-x: clip;
  overflow-y: visible;
}

.how-section > .container { position: relative; z-index: 2; }

.token-field {
  position: absolute;
  left: 0;
  right: 0;
  top: -260px;
  bottom: -30px;
  pointer-events: none;
  z-index: 1;

  perspective: 2600px;
}

.token-tile {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);

  transform: translateX(var(--px, 0));
  opacity: var(--op, 0.9);
  will-change: transform, opacity;
}

.tile-float,
.token-tile img,
.token-tile b {
  border-radius: 24%;
}

.token-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(38, 255, 128, 0.04);
  animation: tile-float var(--d) ease-in-out var(--dl) infinite;

  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--r, 0deg));
  opacity: 0.9;
}

.token-tile b {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  font-family: var(--font-display);
  font-size: calc(var(--s) * 0.42);
  color: var(--neon);
  background: var(--bg-card);
  border: 1px solid var(--border-hot);
  animation: tile-float var(--d) ease-in-out var(--dl) infinite;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--r, 0deg));
}

.token-tile.fail img { display: none; }
.token-tile.fail b { display: grid; }

@keyframes tile-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (prefers-reduced-motion: reduce) {
  .token-tile img, .token-tile b { animation: none; }
}

@media (max-width: 1023px) {
  .token-field { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--neon-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 760px;
  margin: 0 auto 20px;
}

.neon-text {
  color: var(--neon);
  font-style: italic;
  text-shadow: 0 0 34px var(--neon-glow);
}

.hero p {
  color: var(--text-faint);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;

  margin-top: 0;
  padding: 40px 0 0;
}

.stat-card {
  position: relative;
  z-index: 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--neon);
}

.stat-label { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }

.section { padding: 104px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-head p { color: var(--text-dim); font-size: 1.02rem; }

.eyebrow {
  color: var(--neon-dim);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover { border-color: var(--border-hot); transform: translateY(-3px); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(38, 255, 128, 0.08);
  border: 1px solid rgba(38, 255, 128, 0.18);
  color: var(--neon);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 0.92rem; }

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

.step-card {
  position: relative;
  background: linear-gradient(165deg, #121419, var(--bg-card) 55%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;

  left: calc(100% + 21px);
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.5;
}

.step-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 255, 128, 0.5), transparent);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hot);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 44px rgba(38, 255, 128, 0.08);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(38, 255, 128, 0.08);
  border: 1px solid rgba(38, 255, 128, 0.2);
  color: var(--neon);
}

.step-icon .icon { width: 20px; height: 20px; }

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(38, 255, 128, 0.18);
}

.step-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step-card p { color: var(--text-dim); font-size: 0.9rem; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step-card:not(:last-child)::before { display: none; }
}

.showcase {
  position: relative;
  background: linear-gradient(150deg, var(--bg-raised), #0a0f0c);
  border: 1.5px solid rgba(38, 255, 128, 0.55);
  border-radius: 30px;
  padding: 56px 44px 48px;
  overflow: hidden;
  box-shadow:
    inset 0 0 34px rgba(38, 255, 128, 0.1),
    inset 0 0 110px rgba(38, 255, 128, 0.05),
    0 0 60px rgba(38, 255, 128, 0.1);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 255, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 255, 128, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, transparent 30%, #000 100%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, transparent 30%, #000 100%);
  pointer-events: none;
}

.showcase-head {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow-chip {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 15px;
  margin-bottom: 18px;
  color: var(--neon-dim);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.showcase-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.showcase-head p {
  color: var(--text-dim);
  font-size: 0.88rem;
  max-width: 580px;
  margin: 14px auto 0;
}

.showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(320px, 1.3fr);
  gap: 0 24px;
  align-items: center;
  margin-top: 44px;
}

.showcase-phone { display: flex; justify-content: center; }

.phone-shot {
  display: block;
  max-height: 520px;
  max-width: 100%;

  filter:
    drop-shadow(0 34px 58px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 48px rgba(38, 255, 128, 0.09));
}

.showcase-cards {
  position: relative;
  display: grid;
  gap: 22px;
}

.bubbles {
  display: flex;
  gap: 22px;
}

.bubble {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 22px;
  padding: 26px 20px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.bubble b {
  display: block;
  font-size: clamp(2.4rem, 4.2vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.bubble span {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}

.bubble.neon {
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.6), 0 0 46px var(--neon-glow);
}

.bubble.neon span { color: rgba(7, 8, 10, 0.68); }

.bubble.dark {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.6);
}

.bubble.dark b { color: var(--neon); }
.bubble.dark span { color: var(--text-dim); }

.showcase-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
}

.showcase-cta h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.showcase-cta p {
  color: var(--text-dim);
  font-size: 0.98rem;
  margin: 12px 0 24px;
}

@media (max-width: 900px) {
  .showcase { padding: 44px 22px 40px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .showcase-phone { order: 2; }
  .showcase-cards { order: 1; }
  .phone-shot { max-height: 430px; }
}

@media (max-width: 560px) {
  .bubbles { flex-direction: column; }
}

.cta-band {
  position: relative;
  background: linear-gradient(150deg, var(--bg-raised), #0a0f0c);
  border: 1.5px solid rgba(38, 255, 128, 0.55);
  border-radius: 22px;
  padding: 56px 32px;
  text-align: center;
  margin: 24px 0 72px;
  overflow: hidden;

  box-shadow:
    inset 0 0 34px rgba(38, 255, 128, 0.1),
    inset 0 0 110px rgba(38, 255, 128, 0.05),
    0 0 60px rgba(38, 255, 128, 0.1);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 255, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 255, 128, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, transparent 30%, #000 100%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, transparent 30%, #000 100%);
  pointer-events: none;
}

.cta-band > * { position: relative; }

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-band p { color: var(--text-dim); margin-bottom: 28px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--text-faint);
  font-size: 0.87rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--neon); }

.forge-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--forge-gap);

  padding: calc(var(--forge-gap) - 4px) 0 80px;
}

.page-title { padding: 48px 0 0; }

.page-title h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.page-title p {
  color: var(--text-faint);
  margin-top: 6px;
  max-width: 780px;
  font-size: 0.9rem;
}

.wizard {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.step-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--pv-bar-h) + var(--forge-gap));
}

.step-list { list-style: none; }

.step-item {
  --marker: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(var(--marker) / 2 - 0.5px);
  top: var(--marker);
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--neon-shade) 0 3px,
    transparent 3px 7px
  );
}

.step-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 0 0 44px;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

.step-item:last-child .step-btn { padding-bottom: 0; }

.step-marker {
  position: relative;
  width: var(--marker);
  height: var(--marker);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-inset);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

.step-index {
  line-height: 1;
  transform: translateY(0.4px);
  color: var(--neon);
  transition: opacity 0.15s, color 0.18s;
}

.step-marker .step-tick {
  position: absolute;
  width: 16px;
  height: 16px;
  stroke-width: 3;
  opacity: 0;
}

.step-label { display: flex; flex-direction: column; min-width: 0; }
.step-name { font-size: 0.92rem; font-weight: 600; line-height: 20px; color: var(--text-dim); }
.step-hint { font-size: 0.75rem; line-height: 16px; color: var(--text-faint); }

.step-btn:hover .step-name { color: var(--text); }
.step-btn:hover .step-marker { border-color: var(--border-hot); }

.step-btn:focus-visible {
  outline: 2px solid var(--border-hot);
  outline-offset: 3px;
}

.step-item.is-active .step-marker {
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 18px rgba(38, 255, 128, 0.28);
}

.step-item.is-active .step-index { color: var(--ink); }
.step-item.is-active .step-name { color: var(--text); }

.step-item.is-done .step-marker {
  background: rgba(38, 255, 128, 0.1);
  border-color: var(--neon);
  color: var(--neon);
}

.step-item.is-done .step-index { opacity: 0; }
.step-item.is-done .step-tick { opacity: 1; }
.step-item.is-done .step-name { color: var(--text-dim); }

.step-line { display: none; }

.step-pane { display: none; }
.step-pane.is-active { display: block; }

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.step-actions.end { justify-content: flex-end; }
.step-actions .btn { display: inline-flex; align-items: center; gap: 9px; }
.step-actions .btn .icon { width: 16px; height: 16px; }

.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.panel + .panel { margin-top: 20px; }
.panel h2 { font-size: 1.04rem; font-weight: 700; margin-bottom: 4px; }
.panel-sub { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 22px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-dim); }
.field label .req { color: var(--neon); }

.field input,
.field textarea,
.field select {
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }

.field input.upper { text-transform: uppercase; }
.field input.upper::placeholder { text-transform: none; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(38, 255, 128, 0.13);
}

.field textarea { resize: vertical; min-height: 88px; }

.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.hint { font-size: 0.77rem; color: var(--text-faint); }

.logo-desc-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 172px 1fr;
  gap: 18px;
  align-items: stretch;
}

.logo-desc-row .field { height: 100%; }

.desc-field textarea { flex: 1; min-height: 0; }

.dropzone {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.4;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  background: var(--bg-inset);
}

.dropzone:hover { border-color: var(--neon); color: var(--text-dim); }
.dropzone.dragging { border-color: var(--neon); background: rgba(38, 255, 128, 0.05); color: var(--text); }

.dropzone .icon { width: 20px; height: 20px; margin-bottom: 6px; }
.dz-hint { display: block; }

.dropzone.has-image {
  padding: 0;
  border-style: solid;
  border-color: var(--border-hot);
}

.dropzone.has-image #dropzoneText {
  display: block;
  width: 100%;
  height: 100%;
}

.dropzone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.dropzone.has-image::after {
  content: "Change";
  position: absolute;
  inset: auto 0 0 0;
  padding: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(5, 5, 7, 0.82);
  opacity: 0;
  transition: opacity 0.15s;
}

.dropzone.has-image { position: relative; }
.dropzone.has-image:hover::after { opacity: 1; }

@media (max-width: 620px) {
  .logo-desc-row { grid-template-columns: 1fr; }
  .logo-field .dropzone { max-width: 172px; }
}

.switch { position: relative; width: 44px; height: 25px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: transform 0.2s, background 0.2s;
}

.switch input:checked + .slider { background: var(--neon); }
.switch input:checked + .slider::before { transform: translateX(19px); background: var(--ink); }

.launch-block {
  margin-top: 26px;
  display: grid;
  justify-items: center;
}

.adv-stack { display: grid; gap: 14px; }

.adv-module {
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.adv-module:not(.is-lit):hover { border-color: var(--border-strong); }

.adv-module.is-lit {
  border-color: var(--neon);
  background: rgba(38, 255, 128, 0.045);
  box-shadow: inset 0 0 26px rgba(38, 255, 128, 0.06);
}

.adv-head { display: flex; align-items: center; gap: 14px; }

.adv-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(38, 255, 128, 0.08);
  border: 1px solid rgba(38, 255, 128, 0.18);
  color: var(--neon);
}

.adv-icon .icon { width: 19px; height: 19px; }

.adv-tag {
  flex-shrink: 0;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(38, 255, 128, 0.1);
  border: 1px solid rgba(38, 255, 128, 0.24);
}

.adv-tag.muted {
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
}

.adv-title { flex: 1; min-width: 0; }
.adv-title h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.adv-title p { margin-top: 2px; color: var(--text-faint); font-size: 0.84rem; line-height: 1.45; }

.adv-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.adv-module:has(.adv-toggle:not(:checked)) .adv-body { opacity: 0.45; }
.adv-body input:disabled { cursor: not-allowed; }

.adv-note { margin-bottom: 12px; color: var(--text-faint); font-size: 0.84rem; }

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

.preset {
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.preset:hover { border-color: var(--neon); color: var(--neon); }
.preset.is-on { background: var(--neon); border-color: var(--neon); color: var(--ink); }
.preset:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(38, 255, 128, 0.25); }

.preset-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  transition: border-color 0.15s;
}

.preset-custom:focus-within { border-color: var(--neon); }

.preset-custom input {
  width: 92px;
  padding: 11px 0;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.preset-custom input::placeholder { color: var(--text-faint); font-weight: 600; }
.preset-unit { color: var(--text-faint); font-size: 0.82rem; font-weight: 600; }

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

.pair-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pair { display: flex; flex-direction: column; gap: 7px; }

.hint.above { margin-bottom: 2px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.review-grid .review-head { justify-content: flex-start; }

@media (max-width: 620px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-grid .review-head { justify-content: space-between; }
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-head h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.review-list {
  list-style: none;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
}

.review-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  font-size: 0.87rem;
}

.review-list li + li { border-top: 1px solid var(--border); }
.review-list li span:first-child { flex-shrink: 0; color: var(--text-faint); }

.review-list li span:last-child {
  color: var(--text);
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.review-list li span.review-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px 10px;
}

.review-list li.pay-total { border-top-color: var(--border-strong); }
.review-list li.pay-total span:first-child { color: var(--text); font-weight: 700; }
.review-list li.pay-total span:last-child {
  color: var(--neon);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.preview-panel {
  background: linear-gradient(160deg, #09100c, var(--bg-card));
  border-color: var(--border-hot);
}

.pv-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.pv-bar .pv-logo { width: 46px; height: 46px; border-radius: 13px; font-size: 1.15rem; }

.pv-bar .pv-supply-row {
  border-top: none;
  padding: 0;
  gap: 8px;
  flex-shrink: 0;
}

.pv-bar .pv-badges { margin-left: auto; justify-content: flex-end; }

@media (max-width: 820px) {
  .pv-bar { flex-wrap: wrap; gap: 12px 16px; }
  .pv-bar .pv-badges { margin-left: 0; width: 100%; justify-content: flex-start; }
}

.pv-logo {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--neon);
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 22px var(--neon-glow);
}

.pv-logo.has-image { color: transparent; }
.pv-id { min-width: 0; }

.pv-name {
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-name.placeholder { color: var(--text-faint); }

.pv-symbol {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--neon);
}

.pv-supply-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.87rem;
  color: var(--text-dim);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.pv-supply { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.pv-badges { display: flex; flex-wrap: wrap; gap: 6px; }

.pv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--neon);
  background: rgba(38, 255, 128, 0.08);
  border: 1px solid rgba(38, 255, 128, 0.2);
  border-radius: 999px;
  padding: 3px 9px;
}

.pv-badge .icon { width: 11px; height: 11px; stroke-width: 2.6; }

.pv-badge.muted {
  color: var(--text-faint);
  background: transparent;
  border-color: var(--border);
  font-weight: 400;
}

.pv-badge.addon {
  color: var(--text-dim);
  background: rgba(240, 242, 236, 0.05);
  border-color: var(--border-strong);
  font-weight: 600;
}

.summary-note {
  font-size: 0.77rem;
  color: var(--text-faint);
  margin-top: 14px;
  line-height: 1.5;
}

.badge-net {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--neon-dim);
  background: rgba(38, 255, 128, 0.06);
  border: 1px solid rgba(38, 255, 128, 0.18);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

.liq-body { padding: 28px 0 90px; }

.liq-state { text-align: center; padding: 64px 32px; }
.liq-state h2 { font-size: 1.2rem; margin-bottom: 8px; }
.liq-state p { color: var(--text-dim); font-size: 0.94rem; max-width: 440px; margin: 0 auto; }

.liq-state-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(38, 255, 128, 0.08);
  border: 1px solid rgba(38, 255, 128, 0.2);
  color: var(--neon);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.liq-state-icon .icon { width: 26px; height: 26px; }

.liq-state-icon.error {
  background: rgba(255, 122, 122, 0.09);
  border-color: rgba(255, 122, 122, 0.3);
  color: var(--danger);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.modal h3 { font-size: 1.18rem; margin-bottom: 6px; }
.modal .modal-sub { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 22px; }

.pay-modal {
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.pay-modal h3 span { color: var(--neon); }
.pay-field + .pay-field { margin-top: 14px; }

.pay-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-faint);
}

.pay-label em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  padding: 1px 6px;
}

.pay-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 11px 11px 14px;
}

.pay-amount {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}

.pay-unit { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-dim); }

.pay-amount-group {
  display: flex;
  align-items: baseline;
  gap: 7px;
  transform: translateY(1.5px);
}

.pay-address {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  word-break: break-all;
}

.pay-copy {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.pay-copy:hover { border-color: var(--neon); color: var(--neon); }
.pay-copy .icon { width: 14px; height: 14px; }

.pay-breakdown {
  list-style: none;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pay-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.pay-breakdown li span:last-child { font-variant-numeric: tabular-nums; }

.pay-breakdown .pay-total {
  margin-top: 8px;
  padding-top: 11px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
}

.pay-breakdown .pay-total span:last-child { color: var(--neon); }

.mono {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--text-dim);
}

.badge-net.live {
  color: #ffb4b4;
  background: rgba(255, 122, 122, 0.09);
  border-color: rgba(255, 122, 122, 0.35);
}

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-raised);
  border: 1px solid var(--border-hot);
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  max-width: 90vw;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 900px) {
  .forge-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 900px) {
  .wizard { grid-template-columns: 1fr; }
  .step-nav { position: static; }
  .step-list { display: flex; align-items: center; }
  .step-item { flex-direction: row; align-items: center; }
  .step-item:not(:last-child)::after { content: none; }
  .step-btn { width: auto; padding: 0; gap: 10px; align-items: center; }
  .step-hint { display: none; }
  .step-name { white-space: nowrap; }
  .step-label { padding-top: 0; }

  .step-line {
    display: block;
    flex: 0 0 22px;
    height: 1px;
    margin-left: 10px;
    background-image: repeating-linear-gradient(
      to right,
      var(--neon-shade) 0 3px,
      transparent 3px 7px
    );
  }
}

@media (max-width: 560px) {
  .pair-row { grid-template-columns: 1fr; }
  .social-row { grid-template-columns: 1fr; }
  .preset-row .preset { flex: 1 0 auto; }
  .preset-custom { flex: 1 0 100%; }
  .preset-custom input { width: 100%; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 48px; }
  .step-item:not(.is-active) .step-name { display: none; }
  .step-item:not(.is-active) .step-btn { padding: 9px; }
}

.pay-verify {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

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

.verify-input {
  flex: 1;
  min-width: 0;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  transition: border-color 0.15s;
}

.verify-input::placeholder { font-family: var(--font-body); color: var(--text-faint); }
.verify-input:focus { outline: none; border-color: var(--border-hot); }
.verify-input:disabled { opacity: 0.55; }

.verify-input.is-invalid { border-color: var(--danger); }
.verify-input.is-invalid:focus { border-color: var(--danger); }

.verify-error {
  margin-top: 10px;
  color: var(--danger);
  font-size: 0.8rem;
  line-height: 1.45;
}

.verify-btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 0.76rem;
  box-shadow: none;
}

.pay-success { text-align: center; }
.pay-success h3 { margin-bottom: 6px; }
.pay-success .modal-sub { margin-bottom: 4px; }
.pay-success .modal-sub b { color: var(--neon); }
.pay-success .pay-breakdown { text-align: left; }
.pay-success .btn .icon { width: 17px; height: 17px; }

.pay-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 0 0 8px rgba(38, 255, 128, 0.1);
}

.pay-success-mark .icon { width: 26px; height: 26px; stroke-width: 3; }

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-head .panel-sub { margin-bottom: 0; }

.btn-sm {
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 0.74rem;
  border-radius: 9px;
}

.btn-sm .icon { width: 15px; height: 15px; }

@media (max-width: 560px) {
  .panel-head { flex-direction: column; align-items: stretch; }
}
