:root {
  --bg-primary: #08080c;
  --bg-secondary: #0c0c12;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --bg-elevated: #1a1a24;
  --accent: #a855f7;
  --accent-secondary: #6366f1;
  --accent-dim: rgba(168, 85, 247, 0.12);
  --accent-glow: rgba(168, 85, 247, 0.2);
  --success: #10b981;
  --success-dim: rgba(16, 185, 129, 0.12);
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(161, 161, 170, 0.08);
  --border-hover: rgba(161, 161, 170, 0.15);
  --border-accent: rgba(168, 85, 247, 0.3);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 100px;
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-secondary) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}
#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  list-style: none;
}
::selection {
  background: var(--accent);
  color: #fff;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.container-sm {
  max-width: 480px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 0 20px #a855f74d;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px #a855f766;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-ghost {
  color: var(--text-secondary);
  padding: 8px;
}
.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
}
.tag-accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.tag-success {
  background: var(--success-dim);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-body {
  padding: 20px;
}
.token-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.token-item:last-child {
  margin-bottom: 0;
}
.token-item:hover {
  border-color: var(--border-hover);
}
.token-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.token-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.token-icon svg {
  width: 20px;
  height: 20px;
}
.token-icon.purple {
  background: var(--accent-dim);
  color: var(--accent);
}
.token-icon.green {
  background: var(--success-dim);
  color: var(--success);
}
.token-icon.orange {
  background: #f59e0b1f;
  color: var(--warning);
}
.token-name {
  font-weight: 500;
  margin-bottom: 2px;
}
.token-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.token-value {
  text-align: right;
}
.token-amount {
  font-weight: 600;
}
.token-usd {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.summary {
  background: linear-gradient(
    135deg,
    var(--accent-dim),
    rgba(99, 102, 241, 0.08)
  );
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 20px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
}
.summary-label {
  color: var(--text-secondary);
}
.summary-value {
  font-weight: 500;
}
.summary-value.highlight {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  margin-bottom: 16px;
}
.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px #a855f759;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #08080ccc;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px #a855f74d;
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-center {
  display: flex;
  gap: 8px;
}
.header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.header-badge svg {
  width: 14px;
  height: 14px;
}
.header-badge.live {
  color: var(--success);
  border-color: #10b98133;
}
.header-badge.live svg {
  color: var(--success);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero {
  position: relative;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -300px;
  left: 50%;
  transform: translate(-50%);
  opacity: 0.3;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -200px;
  right: -100px;
  opacity: 0.2;
}
.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 70%
  );
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.hero-tag {
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  to {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-cta .btn {
  height: 48px;
  padding: 0 24px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.services {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .tag {
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-header p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px #a855f726;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.service-card:hover .service-icon {
  background: #a855f733;
  box-shadow: 0 0 20px #a855f74d;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.service-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}
.scanner-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.scanner-wrapper {
  max-width: 460px;
  margin: 0 auto;
}
.scanner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.scanner-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
.wallet-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.status-indicator.active {
  animation: pulse 1.5s infinite;
}
.wallet-address {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.wallet-network {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.connect-prompt {
  text-align: center;
  padding: 32px 0;
}
.connect-prompt p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}
.loading-state .spinner {
  width: 36px;
  height: 36px;
}
.loading-state p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.how-section {
  padding: 60px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.25s;
}
.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.step-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-xl);
}
.step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}
.step h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.stats-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #a855f70f, #6366f10f);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.features-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.25s;
}
.feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-lg);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.feature h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.wallets-section {
  padding: 60px 0;
}
.wallets-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.wallet-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.wallet-badge:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.wallet-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
}
.wallet-name {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.wallets-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.cta-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  text-align: center;
}
.cta-box h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 260px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
}
.footer-logo .logo-icon svg {
  width: 18px;
  height: 18px;
}
.footer-logo span {
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-socials a:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
}
.footer-links h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-secondary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-badges {
  display: flex;
  gap: 16px;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}
.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #000c;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-container {
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px #00000080;
  animation: slideUp 0.3s ease;
}
.modal-container::-webkit-scrollbar {
  display: none;
}
.modal-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}
.modal-title span {
  color: var(--text-primary);
}
.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.modal-body {
  padding: 20px;
}
.wallet-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.status-dot.active {
  animation: pulse 1.5s ease infinite;
}
.wallet-addr {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wallet-net {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.modal-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
}
.modal-state h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.modal-state p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
}
.state-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}
.state-icon svg {
  width: 32px;
  height: 32px;
}
.state-icon.purple {
  background: var(--accent-dim);
  color: var(--accent);
}
.state-icon.orange {
  background: #f59e0b1f;
  color: var(--warning);
}
.state-icon.green {
  background: var(--success-dim);
  color: var(--success);
}
.connect-state {
  padding: 40px 20px;
}
.connect-state h3 {
  margin-top: 0;
}
.connect-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.scanning-state {
  padding: 48px 16px;
  gap: 16px;
}
.scanning-state .spinner {
  width: 36px;
  height: 36px;
}
.scanning-state p {
  margin: 0;
}
.rejected-state {
  align-items: stretch;
  text-align: left;
  padding: 0;
  gap: 16px;
}
.rejected-state .alert {
  margin-bottom: 0;
}
.results-state {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  margin-bottom: 16px;
}
.alert svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.alert-danger {
  background: #ef44441a;
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
}
.alert-warning {
  background: #f59e0b1a;
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--warning);
}
.findings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.finding-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
  gap: 12px;
}
.finding-item:hover {
  border-color: var(--border-hover);
}
.finding-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.finding-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.finding-icon svg {
  width: 18px;
  height: 18px;
}
.finding-icon.purple {
  background: var(--accent-dim);
  color: var(--accent);
}
.finding-icon.green {
  background: var(--success-dim);
  color: var(--success);
}
.finding-icon.orange {
  background: #f59e0b1f;
  color: var(--warning);
}
.finding-icon.blue {
  background: #3b82f61f;
  color: #3b82f6;
}
.finding-icon.red {
  background: #ef44441f;
  color: var(--danger);
}
.finding-icon.pink {
  background: #ec48991f;
  color: #ec4899;
}
.finding-icon.cyan {
  background: #06b6d41f;
  color: #06b6d4;
}
.finding-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.finding-label {
  font-weight: 500;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.finding-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.finding-value {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.finding-amount {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
}
.finding-usd {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.results-summary {
  background: linear-gradient(
    135deg,
    var(--accent-dim),
    rgba(99, 102, 241, 0.08)
  );
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.summary-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.summary-row.total {
  padding-top: 12px;
}
.summary-count {
  font-weight: 500;
  color: var(--text-primary);
}
.summary-total {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.action-btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 0 30px #a855f740;
}
.action-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 40px #a855f759;
}
.action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.action-btn svg {
  width: 20px;
  height: 20px;
}
.action-btn .spinner {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.rescan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.rescan-btn:hover {
  color: var(--text-secondary);
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}
.service-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-icon.purple {
  background: var(--accent-dim);
  color: var(--accent);
}
.service-icon.green {
  background: var(--success-dim);
  color: var(--success);
}
.service-icon.orange {
  background: #f59e0b1f;
  color: var(--warning);
}
.service-icon.blue {
  background: #3b82f61f;
  color: #3b82f6;
}
.service-icon.red {
  background: #ef44441f;
  color: var(--danger);
}
.service-icon.pink {
  background: #ec48991f;
  color: #ec4899;
}
.service-icon.cyan {
  background: #06b6d41f;
  color: #06b6d4;
}
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.container {
  padding: 0 16px;
}
.header-inner {
  height: 56px;
}
.header-center,
.header-left .tag {
  display: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
}
.logo-text {
  font-size: 1rem;
}
.hero {
  padding: 48px 0 40px;
}
.hero h1 {
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-cta .btn {
  width: 100%;
  max-width: 280px;
  height: 48px;
  justify-content: center;
}
.hero-cta appkit-button {
  display: block;
  width: 100%;
  max-width: 280px;
}
.hero-cta appkit-button::part(button) {
  width: 100% !important;
  justify-content: center !important;
}
.hero-stats {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  min-width: 80px;
}
.hero-stat-value {
  font-size: 1.25rem;
}
.hero-stat-label {
  font-size: 0.6875rem;
}
.hero-orb-1 {
  width: 300px;
  height: 300px;
  top: -150px;
}
.hero-orb-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
}
.services {
  padding: 40px 0;
}
.section-header {
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: 1.25rem;
}
.section-header p {
  font-size: 0.8125rem;
}
.services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service-card {
  padding: 16px 12px;
  gap: 10px;
}
.service-icon {
  width: 40px;
  height: 40px;
}
.service-icon svg {
  width: 20px;
  height: 20px;
}
.service-label {
  font-size: 0.75rem;
}
.how-section {
  padding: 40px 0;
}
.steps {
  grid-template-columns: 1fr;
  gap: 12px;
}
.step {
  padding: 20px 16px;
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  position: static;
  order: -1;
}
.step-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
}
.step-icon svg {
  width: 22px;
  height: 22px;
}
.step-content {
  flex: 1;
}
.step h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.step p {
  font-size: 0.75rem;
  line-height: 1.5;
}
.stats-section {
  padding: 32px 0;
}
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
.stat-value {
  font-size: 1.375rem;
}
.stat-label {
  font-size: 0.75rem;
}
.features-section {
  padding: 40px 0;
}
.features-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.feature {
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
.feature h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.feature p {
  font-size: 0.75rem;
}
.wallets-section {
  padding: 40px 0;
}
.wallets-grid {
  gap: 8px;
  margin-bottom: 16px;
}
.wallet-badge {
  padding: 8px 12px;
  gap: 8px;
}
.wallet-logo {
  width: 18px;
  height: 18px;
}
.wallet-name,
.wallets-note {
  font-size: 0.75rem;
}
.cta-section {
  padding: 40px 0;
}
.cta-box {
  padding: 28px 20px;
}
.cta-box h2 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.cta-button {
  display: flex;
  justify-content: center;
}
.cta-button appkit-button {
  display: block;
  width: 100%;
  max-width: 240px;
}
.cta-button appkit-button::part(button) {
  width: 100% !important;
  justify-content: center !important;
}
.footer {
  padding: 32px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  margin-bottom: 28px;
}
.footer-brand {
  grid-column: 1 / -1;
  max-width: none;
  text-align: center;
}
.footer-brand p {
  font-size: 0.75rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo,
.footer-socials {
  justify-content: center;
}
.footer-links {
  text-align: center;
}
.footer-links h5 {
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.75rem;
}
.footer-links ul {
  gap: 8px;
}
.footer-bottom {
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.6875rem;
}
.footer-badges {
  gap: 12px;
  justify-content: center;
}
.footer-badge {
  font-size: 0.6875rem;
}
@media (min-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-stat-value {
    font-size: 1.375rem;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 20px 14px;
  }
  .service-label {
    font-size: 0.8125rem;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step {
    flex-direction: column;
    text-align: center;
  }
  .step-icon {
    margin: 0 auto;
  }
  .cta-box {
    padding: 32px 24px;
  }
  .footer-links {
    text-align: left;
  }
  .footer-brand {
    text-align: center;
  }
}
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
  .header-inner {
    height: 60px;
  }
  .header-left .tag {
    display: inline-flex;
  }
  .hero {
    padding: 60px 0 48px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero-desc {
    font-size: 0.9375rem;
  }
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  .hero-cta .btn {
    width: auto;
    max-width: none;
    padding: 0 24px;
  }
  .hero-cta appkit-button {
    width: auto;
    max-width: none;
  }
  .hero-cta appkit-button::part(button) {
    width: auto !important;
  }
  .hero-stats {
    gap: 32px;
  }
  .hero-stat-value {
    font-size: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature {
    flex-direction: column;
    text-align: left;
  }
  .footer-grid {
    gap: 32px 24px;
  }
  .footer-brand {
    text-align: left;
    max-width: 300px;
  }
  .footer-brand p {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-logo,
  .footer-socials {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .cta-button appkit-button {
    width: auto;
    max-width: none;
  }
  .cta-button appkit-button::part(button) {
    width: auto !important;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 64px;
  }
  .header-center {
    display: flex;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .logo-icon svg {
    width: 20px;
    height: 20px;
  }
  .logo-text {
    font-size: 1.125rem;
  }
  .hero {
    padding: 80px 0 56px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -250px;
  }
  .hero-orb-2 {
    width: 350px;
    height: 350px;
  }
  .services {
    padding: 56px 0;
  }
  .section-header h2 {
    font-size: 1.375rem;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .how-section {
    padding: 56px 0;
  }
  .stats-section {
    padding: 40px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-value {
    font-size: 1.75rem;
  }
  .features-section {
    padding: 56px 0;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature {
    padding: 24px;
  }
  .wallets-section,
  .cta-section {
    padding: 56px 0;
  }
  .cta-box {
    padding: 40px 36px;
  }
  .footer {
    padding: 40px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 1;
    max-width: 240px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -300px;
  }
  .hero-orb-2 {
    width: 400px;
    height: 400px;
  }
  .services {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .service-card {
    padding: 24px 16px;
    gap: 12px;
  }
  .service-icon {
    width: 48px;
    height: 48px;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  .how-section {
    padding: 60px 0;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .step {
    padding: 28px 20px;
  }
  .step-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  .step-icon svg {
    width: 26px;
    height: 26px;
  }
  .stats-section {
    padding: 48px 0;
  }
  .stat-value {
    font-size: 2rem;
  }
  .features-section {
    padding: 60px 0;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .wallets-section,
  .cta-section {
    padding: 60px 0;
  }
  .cta-box {
    padding: 48px;
  }
  .cta-box h2 {
    font-size: 1.375rem;
  }
  .footer {
    padding: 48px 0 28px;
  }
  .footer-grid {
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand {
    max-width: 260px;
  }
}
.modal-overlay {
  padding: 0;
  align-items: flex-end;
}
.modal-container {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 20px 20px 0 0;
}
.modal-header {
  padding: 16px;
}
.modal-title {
  font-size: 0.9375rem;
  gap: 10px;
}
.modal-close {
  width: 32px;
  height: 32px;
}
.modal-close svg {
  width: 18px;
  height: 18px;
}
.modal-body {
  padding: 16px;
}
.wallet-status-bar {
  padding: 10px 12px;
  gap: 8px;
}
.wallet-addr {
  font-size: 0.75rem;
}
.wallet-net {
  font-size: 0.6875rem;
}
.modal-state {
  padding: 24px 16px;
}
.modal-state h3 {
  font-size: 1rem;
}
.modal-state p {
  font-size: 0.8125rem;
}
.state-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
.state-icon svg {
  width: 28px;
  height: 28px;
}
.connect-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.connect-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.connect-btn-wrapper appkit-button {
  display: block;
  width: 100%;
  max-width: 200px;
}
.connect-btn-wrapper appkit-button::part(button) {
  width: 100% !important;
  justify-content: center !important;
}
.scanning-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 16px;
}
.scanning-state .spinner {
  width: 32px;
  height: 32px;
}
.findings-list {
  gap: 8px;
}
.finding-item {
  padding: 12px;
  gap: 10px;
}
.finding-icon {
  width: 34px;
  height: 34px;
}
.finding-icon svg {
  width: 16px;
  height: 16px;
}
.finding-label {
  font-size: 0.8125rem;
}
.finding-status {
  font-size: 0.6875rem;
}
.finding-amount {
  font-size: 0.8125rem;
}
.finding-usd {
  font-size: 0.6875rem;
}
.results-summary {
  padding: 14px;
}
.summary-row {
  font-size: 0.8125rem;
  padding: 6px 0;
}
.summary-total {
  font-size: 1rem;
}
.action-btn {
  padding: 14px;
  font-size: 0.875rem;
}
.action-btn svg {
  width: 18px;
  height: 18px;
}
.rescan-btn {
  padding: 10px;
  font-size: 0.75rem;
  margin-top: 12px;
}
.rescan-btn svg {
  width: 14px;
  height: 14px;
}
.modal-header .service-icon {
  width: 32px;
  height: 32px;
}
.modal-header .service-icon svg {
  width: 16px;
  height: 16px;
}
.modal-body .alert {
  padding: 10px 12px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.modal-body .alert svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 480px) {
  .modal-overlay {
    padding: 20px;
    align-items: center;
  }
  .modal-container {
    max-width: 400px;
    max-height: 85vh;
    border-radius: 16px;
  }
  .modal-header {
    padding: 16px 20px;
  }
  .modal-body {
    padding: 20px;
  }
  .connect-btn-wrapper appkit-button {
    width: auto;
    max-width: none;
  }
  .connect-btn-wrapper appkit-button::part(button) {
    width: auto !important;
  }
  .finding-item {
    padding: 14px 16px;
  }
  .finding-icon {
    width: 38px;
    height: 38px;
  }
  .finding-icon svg {
    width: 18px;
    height: 18px;
  }
  .modal-header .service-icon {
    width: 36px;
    height: 36px;
  }
  .modal-header .service-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 640px) {
  .modal-container {
    max-width: 440px;
  }
  .modal-title {
    font-size: 1rem;
  }
  .modal-close {
    width: 34px;
    height: 34px;
  }
  .modal-close svg {
    width: 20px;
    height: 20px;
  }
  .action-btn {
    padding: 16px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 479px) {
  .header-right appkit-button::part(button) {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

}
.hide-mobile {
  display: none;
}
@media (min-width: 640px) {
  .hide-mobile {
    display: initial;
  }
}
.show-mobile {
  display: initial;
}
@media (min-width: 640px) {
  .show-mobile {
    display: none;
  }
}
