*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0c1324;
  --bg-alt: #0f1729;
  --surface: rgba(21, 27, 45, 0.95);
  --accent: #00fca1;
  --accent-dim: #00c878;
  --cyan: #a4e6ff;
  --text: #c8d6e5;
  --muted: #9fb3c8;
  --dim: #7a8fa3;
  --danger: #f87171;
  --up: #4ade80;
  --section-pad: clamp(56px, 10vw, 96px);
  --container: 1120px;
  --site-header-height: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body:has(> .site-header) {
  padding-top: var(--site-header-height);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container--narrow {
  max-width: 720px;
}

/* Background */
.crypto-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 252, 161, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 252, 161, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  animation: grid-drift 24s linear infinite;
}

@keyframes grid-drift {
  to {
    transform: translate(48px, 48px);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 12s ease-in-out infinite;
}

.glow-orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: 10%;
  background: rgba(0, 252, 161, 0.25);
}

.glow-orb--2 {
  width: 320px;
  height: 320px;
  top: 40%;
  right: -80px;
  background: rgba(100, 180, 255, 0.2);
  animation-delay: -4s;
}

@keyframes orb-float {
  50% {
    transform: translate(24px, -16px) scale(1.08);
  }
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* Fixed header (ticker + nav — always visible on homepage) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(12, 19, 36, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
}

.site-header .ticker-wrap {
  border-bottom: 1px solid rgba(0, 252, 161, 0.12);
}

.site-header .site-nav {
  position: relative;
  top: 0;
  z-index: 1;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
}

/* Subpages: same full-width fixed bar as home (no ticker) */
.site-header--sub {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(12, 19, 36, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
}

.site-header--sub .site-nav {
  position: relative;
  top: 0;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: transparent;
}

.ticker {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  animation: ticker-scroll 40s linear infinite;
}

.ticker span {
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker em {
  font-style: normal;
  margin-left: 6px;
}

.ticker em.up {
  color: var(--up);
}
.ticker em.down {
  color: var(--danger);
}
.ticker em.flat {
  color: var(--cyan);
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
  background: rgba(12, 19, 36, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.06);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #e8f4ff;
  text-decoration: none;
}

.nav-logo__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.nav-links > a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links > a:hover {
  color: #e8f4ff;
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid rgba(164, 230, 255, 0.12);
}

.nav-auth__signin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-auth__signin:hover {
  color: #e8f4ff;
}

.nav-auth__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.nav-auth__label {
  line-height: 1.2;
}

.nav-auth__register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #e8f4ff;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 1px solid rgba(164, 230, 255, 0.28);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-auth__register:hover {
  color: #fff;
  background: rgba(164, 230, 255, 0.08);
  border-color: rgba(164, 230, 255, 0.45);
}

.nav-cta {
  padding: 8px 16px !important;
  border-radius: 8px;
  background: rgba(0, 252, 161, 0.12);
  color: var(--accent) !important;
  border: 1px solid rgba(0, 252, 161, 0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(0, 252, 161, 0.2) !important;
  color: var(--accent) !important;
}

.cta-row--hero {
  flex-wrap: wrap;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: 10px;
  background: rgba(21, 27, 45, 0.9);
  color: #e8f4ff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: rgba(0, 252, 161, 0.35);
  background: rgba(0, 252, 161, 0.08);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s, opacity 0.2s;
}

.site-nav.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(4, 8, 18, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

body.nav-menu-open {
  overflow: hidden;
}

body.nav-menu-open .nav-backdrop {
  display: block;
}

/* Sections — shared */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.section + .section {
  border-top: 1px solid rgba(164, 230, 255, 0.06);
}

.section-alt {
  background: var(--bg-alt);
  box-shadow: inset 0 1px 0 rgba(0, 252, 161, 0.04), inset 0 -1px 0 rgba(164, 230, 255, 0.04);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header--compact {
  margin-bottom: 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0 0 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #e8f4ff;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

/* Pricing (homepage #pricing) */
.section-pricing .section-header {
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.12);
}

.pricing-card--featured {
  border-color: rgba(0, 252, 161, 0.45);
  box-shadow: 0 20px 48px rgba(0, 252, 161, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #0c1324;
  background: linear-gradient(90deg, #00fca1, #a4e6ff);
}

.pricing-tier {
  margin: 0 0 8px;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #e8f4ff;
}

.pricing-price {
  margin: 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}

.pricing-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-period {
  margin: 4px 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-features {
  flex: 1;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-card .btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  margin-top: auto;
}

.pricing-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.pricing-note a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero section */
.section-hero {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(40px, 8vw, 72px);
  border-top: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #e8f4ff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.12);
}

.chip--accent {
  color: var(--accent);
  border-color: rgba(0, 252, 161, 0.35);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 460px;
  animation: hero-levitate 6s ease-in-out infinite;
}

.hero-showcase__glow {
  position: absolute;
  inset: 5%;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(0, 252, 161, 0.18), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  animation: hero-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Animated gradient border — frame only; content stays visible inside */
.hero-showcase__frame {
  position: relative;
  z-index: 1;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(0, 252, 161, 0.35) 0%,
    rgba(0, 252, 161, 0.85) 35%,
    rgba(164, 230, 255, 0.7) 50%,
    rgba(0, 252, 161, 0.85) 65%,
    rgba(0, 252, 161, 0.35) 100%
  );
  background-size: 220% 100%;
  animation: hero-ring-shimmer 4s linear infinite;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-showcase__scan {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  z-index: 3;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #00fca1, transparent);
  box-shadow: 0 0 14px rgba(0, 252, 161, 0.8);
  opacity: 0;
  pointer-events: none;
  animation: hero-scan 5s ease-in-out infinite;
}

/* HTML dashboard mock — aligned icons & text */
.hero-dashboard {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(160deg, #1a2438 0%, #121a2e 100%);
  border: 1px solid rgba(0, 252, 161, 0.15);
  animation: dash-border-pulse 3s ease-in-out infinite;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dash-top__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-top__bars span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: #2a3548;
}

.dash-top__bars span:first-child {
  width: 96px;
}

.dash-top__bars span:last-child {
  width: 64px;
  height: 6px;
}

.dash-top__status {
  display: flex;
  gap: 8px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(164, 230, 255, 0.25);
}

.dash-dot--on {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.dash-main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.dash-health {
  padding: 16px;
  border-radius: 12px;
  background: #0c1324;
  border: 1px solid rgba(0, 252, 161, 0.12);
}

.dash-label {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-score {
  margin: 0 0 12px;
  line-height: 1;
}

.dash-score-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
}

.dash-score-max {
  margin-left: 4px;
  font-size: 0.95rem;
  color: var(--dim);
}

.dash-bar {
  height: 8px;
  border-radius: 4px;
  background: #2a3548;
  overflow: hidden;
}

.dash-bar-fill {
  display: block;
  height: 100%;
  width: 87%;
  border-radius: 4px;
  background: var(--accent);
  animation: dash-bar-grow 1.6s ease forwards;
}

@keyframes dash-bar-grow {
  from {
    width: 0;
  }
  to {
    width: 87%;
  }
}

.dash-assets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-asset {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0c1324;
  border: 1px solid rgba(164, 230, 255, 0.1);
}

.dash-asset-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: block;
}

.dash-asset-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dash-asset-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #e8f4ff;
}

.dash-change {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.dash-change--up {
  color: var(--up);
}

.dash-chart {
  padding: 14px 16px 8px;
  border-radius: 12px;
  background: #0c1324;
  border: 1px solid rgba(164, 230, 255, 0.08);
}

.dash-chart .dash-label {
  margin-bottom: 10px;
}

.dash-chart-svg {
  display: block;
  width: 100%;
  height: 72px;
}

.dash-chart-area {
  fill: url(#dashChartFill);
  opacity: 0;
  animation: fade-fill 1.2s ease forwards 1.6s;
}

.dash-chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw-line 2.2s ease forwards 0.5s;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-fill {
  to {
    opacity: 1;
  }
}

@keyframes dash-border-pulse {
  0%,
  100% {
    border-color: rgba(0, 252, 161, 0.15);
  }
  50% {
    border-color: rgba(0, 252, 161, 0.35);
  }
}

.float-coin {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  animation: float-coin-orbit 7s ease-in-out infinite;
}

.float-coin--1 {
  top: -14px;
  right: -14px;
  animation-delay: 0s;
}

.float-coin--2 {
  top: 50%;
  left: -22px;
  animation-name: float-coin-orbit-side;
  animation-delay: -2.3s;
}

.float-coin--3 {
  bottom: -12px;
  right: -12px;
  animation-delay: -4.6s;
}


@keyframes hero-levitate {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes hero-ring-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes hero-scan {
  0% {
    top: 12%;
    opacity: 0;
  }
  8% {
    opacity: 0.85;
  }
  45% {
    top: 78%;
    opacity: 0.85;
  }
  55% {
    opacity: 0;
  }
  100% {
    top: 78%;
    opacity: 0;
  }
}

@keyframes hero-sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float-coin-orbit {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  75% {
    transform: translateY(6px) rotate(-4deg);
  }
}

@keyframes float-coin-orbit-side {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 8px)) translateX(2px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(0, 252, 161, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-ghost {
  border: 1px solid rgba(164, 230, 255, 0.35);
  background: rgba(164, 230, 255, 0.06);
  color: #e8f4ff;
}

.btn-ghost:hover {
  background: rgba(164, 230, 255, 0.12);
  color: var(--accent);
  border-color: rgba(0, 252, 161, 0.4);
}

button.btn {
  font-family: inherit;
  cursor: pointer;
}

/* Stats section */
.section-stats {
  padding-top: 0;
  padding-bottom: var(--section-pad);
  border-top: none;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 252, 161, 0.12);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 252, 161, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.stat {
  padding: 28px 16px;
  text-align: center;
  background: var(--surface);
}

.stat-value {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #e8f4ff;
}

.stat-value[data-label='health']::after {
  content: '/100';
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Coin showcase */
.coin-showcase {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.coin-showcase li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.coin-showcase li:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 252, 161, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.coin-showcase img {
  width: 64px;
  height: 64px;
  display: block;
}

.coin-showcase span {
  font-weight: 600;
  color: #e8f4ff;
  font-size: 15px;
}

.coin-showcase em {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--dim);
}

.coin-showcase em.up {
  color: var(--up);
}

.coin-showcase em.flat {
  color: var(--cyan);
}

/* Features grid */
.features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 252, 161, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.feature-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #e8f4ff;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* In-app tools */
.tools-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.tools-grid .tool-card {
  align-items: center;
  text-align: center;
}

.tools-grid .tool-card__body {
  align-items: center;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 22px;
  line-height: 1;
  background: rgba(0, 252, 161, 0.1);
}

.tool-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.tool-card--earn .tool-icon {
  background: rgba(100, 180, 255, 0.15);
}
.tool-card--protect .tool-icon {
  background: rgba(0, 252, 161, 0.15);
}
.tool-card--analyze .tool-icon {
  background: rgba(168, 85, 247, 0.15);
}
.tool-card--alerts .tool-icon {
  background: rgba(164, 230, 255, 0.1);
}
.tool-card--copilot .tool-icon {
  background: linear-gradient(135deg, rgba(0, 252, 161, 0.2), rgba(100, 180, 255, 0.2));
}

.tool-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #e8f4ff;
}

.tool-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.tool-card--copilot {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-color: rgba(0, 252, 161, 0.2);
  background: linear-gradient(135deg, rgba(21, 27, 45, 0.98), rgba(0, 252, 161, 0.06));
}

.tool-card--copilot .tool-icon {
  margin-bottom: 0;
}

.tool-card--copilot .tool-card__body {
  flex: 1;
}

@media (max-width: 960px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card--copilot {
    flex-direction: column;
    align-items: flex-start;
  }

  .tool-card--copilot .tool-icon {
    margin-bottom: 12px;
  }
}

/* Use cases */
.usecase-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.usecase-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  border-left: 3px solid var(--accent);
  transition: border-color 0.2s, transform 0.2s;
}

.usecase-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--cyan);
}

.usecase-card img {
  display: block;
  margin-bottom: 14px;
}

.usecase-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #e8f4ff;
}

.usecase-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.section-faq {
  background: var(--bg-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #e8f4ff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 252, 161, 0.12);
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  background: rgba(0, 252, 161, 0.2);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item p strong {
  color: var(--accent);
}

/* Download perks */
.download-perks {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.download-perks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.download-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* Spotlight */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.spotlight-row:last-child {
  margin-bottom: 0;
}

.spotlight-row--reverse .spotlight-media {
  order: 2;
}

.spotlight-row--reverse .spotlight-copy {
  order: 1;
}

/* Spotlight visuals (HTML mock + coin images) */
.spotlight-media {
  min-width: 0;
}

.spotlight-visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}

.spotlight-visual__frame {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #1a2438 0%, #121a2e 100%);
  border: 1px solid rgba(0, 252, 161, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(164, 230, 255, 0.08);
  min-height: 300px;
}

.spotlight-visual__float {
  position: absolute;
  top: -14px;
  right: -14px;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  animation: float-coin 5s ease-in-out infinite;
}

.spotlight-visual__float--right {
  top: auto;
  right: auto;
  bottom: -12px;
  left: -12px;
  animation-delay: -2s;
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #0c1324;
}

.mock-alert:last-child {
  margin-bottom: 0;
}

.mock-alert img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.mock-alert strong {
  display: block;
  font-size: 14px;
  color: #e8f4ff;
  margin-bottom: 4px;
}

.mock-alert span {
  font-size: 12px;
  color: var(--muted);
}

.mock-alert--whale {
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.mock-alert--yield {
  border: 1px solid rgba(0, 252, 161, 0.35);
}

.mock-alert--vol {
  border: 1px solid rgba(164, 230, 255, 0.3);
}

.spotlight-visual--security .spotlight-visual__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px 32px;
}

.mock-shield-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(0, 252, 161, 0.35));
}

.mock-coins-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.mock-coins-row img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}

.mock-coins-row img:hover {
  transform: translateY(-4px) scale(1.05);
}

.mock-security-caption {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.spotlight-copy h3 {
  margin: 0 0 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e8f4ff;
}

.spotlight-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.spotlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spotlight-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.spotlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* How it works */
.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin-inline: auto;
}

.flow-steps li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--accent);
  opacity: 0.85;
}

.step-icon {
  border-radius: 10px;
  object-fit: cover;
}

.flow-steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #e8f4ff;
}

.flow-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Trust */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  padding: 32px 24px;
  text-align: center;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(0, 252, 161, 0.15);
}

.trust-icon {
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-item span {
  font-size: 13px;
  color: var(--dim);
}

/* Download */
.section-download {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 252, 161, 0.06) 50%, var(--bg) 100%);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.download-copy .section-title {
  text-align: left;
}

.download-copy .section-label {
  display: flex;
}

.download-copy p {
  color: var(--muted);
  margin: 0 0 24px;
}

.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  max-width: min(220px, 85vw);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(164, 230, 255, 0.2);
  background: #0a0f1a;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 252, 161, 0.12),
    0 0 32px rgba(0, 252, 161, 0.1);
}

.portal-cta-card {
  width: min(320px, 100%);
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(0, 252, 161, 0.35);
  box-shadow: 0 20px 48px rgba(0, 252, 161, 0.12);
  text-align: left;
}

.portal-cta-card__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.portal-cta-card h3 {
  margin: 0 0 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.35rem;
  color: #e8f4ff;
}

.portal-cta-card p {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.phone-mockup img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.store-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 252, 161, 0.08);
  border: 1px solid rgba(0, 252, 161, 0.2);
  color: #86efac;
  font-size: 14px;
}

/* Legal */
.section-legal {
  padding-top: 32px;
  padding-bottom: 32px;
  background: rgba(0, 0, 0, 0.2);
}

.disclaimer {
  margin: 0;
  font-size: 13px;
  color: var(--dim);
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.disclaimer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.disclaimer a:hover {
  text-decoration: underline;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(164, 230, 255, 0.08);
  padding: clamp(40px, 6vw, 56px) 0 clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  max-width: 36ch;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #e8f4ff;
  text-decoration: none;
}

.footer-logo span {
  color: var(--accent);
}

.footer-logo__icon {
  flex-shrink: 0;
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-pills-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(164, 230, 255, 0.1);
  text-align: center;
}

.footer-pills-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.footer-pills a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: rgba(12, 19, 36, 0.6);
  border: 1px solid rgba(164, 230, 255, 0.12);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-pills a:hover {
  color: var(--accent);
  border-color: rgba(0, 252, 161, 0.35);
  background: rgba(0, 252, 161, 0.08);
}

.footer-visitors {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(164, 230, 255, 0.08);
}

.footer-visitor-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 16px;
}

.footer-visitor-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(21, 27, 45, 0.6);
  border: 1px solid rgba(164, 230, 255, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.footer-visitor-list strong {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-weight: 700;
}

.footer-visitor-list__loading {
  justify-content: center;
  color: var(--dim);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(164, 230, 255, 0.08);
  font-size: 13px;
}

.footer-copy {
  margin: 0;
  color: var(--dim);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
}

.footer-legal a {
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.footer-legal a:hover,
.footer-legal a[aria-current='page'] {
  color: var(--accent);
  background: rgba(0, 252, 161, 0.08);
}

@media (max-width: 560px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .spotlight-row,
  .spotlight-row--reverse,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-row--reverse .spotlight-media,
  .spotlight-row--reverse .spotlight-copy {
    order: unset;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .dash-main {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    order: 10;
    margin-top: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(12, 19, 36, 0.98);
    border: 1px solid rgba(164, 230, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }

  .site-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links > a {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
  }

  .nav-links > a:hover {
    background: rgba(0, 252, 161, 0.08);
  }

  .nav-auth {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    margin-left: 0;
    padding: 12px 0 0;
    border-left: none;
    border-top: 1px solid rgba(164, 230, 255, 0.1);
  }

  .nav-auth__signin {
    flex: 1;
    justify-content: center;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    background: rgba(164, 230, 255, 0.04);
  }

  .nav-auth__register {
    flex: 1;
    padding: 12px 14px;
    font-size: 15px;
  }

  .nav-links .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps li {
    grid-template-columns: auto 1fr;
  }

  .step-icon {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-nav {
    padding: 12px 16px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .float-coin {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker,
  .grid-overlay,
  .glow-orb,
  .pulse-dot,
  .float-coin,
  .hero-showcase,
  .hero-showcase__glow,
  .hero-showcase__frame,
  .hero-showcase__scan,
  .hero-dashboard,
  .dash-bar-fill,
  .dash-chart-line,
  .dash-chart-area {
    animation: none;
  }

  .dash-bar-fill {
    width: 87%;
  }

  .dash-chart-line {
    stroke-dashoffset: 0;
  }

  .dash-chart-area {
    opacity: 1;
  }
}
