/* Flash USDT — neon / hack terminal aesthetic */

:root {
  --bg-deep: #05080d;
  --bg-panel: #0a1018;
  --cyan: #00fff2;
  --cyan-dim: rgba(0, 255, 242, 0.35);
  --magenta: #ff2eea;
  --green: #39ff14;
  --amber: #ffd60a;
  --text: #c8f7f4;
  --text-muted: #5a7d78;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-display: "Orbitron", system-ui, sans-serif;
  --glow-cyan: 0 0 20px rgba(0, 255, 242, 0.45), 0 0 60px rgba(0, 255, 242, 0.15);
  --glow-magenta: 0 0 24px rgba(255, 46, 234, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 255, 242, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 46, 234, 0.06), transparent 45%),
    linear-gradient(180deg, #05080d 0%, #070c12 40%, #05080d 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 242, 0.15);
  background: rgba(5, 8, 13, 0.85);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 242, 0.55)) drop-shadow(0 0 22px rgba(255, 46, 234, 0.2))
    saturate(1.15);
}

.foot--big .logo__img {
  height: auto;
  max-height: 56px;
}

.logo__glyph {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  font-size: 1.25rem;
}

.logo__accent {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-dim);
}

.nav__cta {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--cyan);
  color: var(--cyan) !important;
  border-radius: 2px;
  box-shadow: var(--glow-cyan);
}

.nav__cta:hover {
  background: rgba(0, 255, 242, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 255, 242, 0.35);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 14px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 7px 0 var(--cyan), 0 14px 0 var(--cyan);
  transition: transform 0.2s, box-shadow 0.2s, top 0.2s;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 21px;
  height: 2px;
  background: var(--cyan);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(5, 8, 13, 0.97);
    border-bottom: 1px solid rgba(0, 255, 242, 0.2);
    gap: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  pointer-events: none;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 12px var(--cyan-dim);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 2rem;
  align-items: start;
  min-height: calc(100vh - 72px);
  padding: 3rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 242, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 242, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: #e8fffc;
  text-shadow:
    0 0 20px rgba(0, 255, 242, 0.5),
    0 0 40px rgba(255, 46, 234, 0.25);
}

.hero__title-line {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-shadow: none;
}

.neon-strong {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-dim);
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  color: var(--magenta);
  animation: glitch-1 3s infinite linear alternate-reverse;
  opacity: 0.7;
  text-shadow: var(--glow-magenta);
}

.glitch::after {
  color: var(--cyan);
  animation: glitch-2 2.5s infinite linear alternate-reverse;
  opacity: 0.6;
}

@keyframes glitch-1 {
  0% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(-2px, 0);
  }
  20% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(2px, 0);
  }
  40% {
    clip-path: inset(30% 0 50% 0);
    transform: translate(-1px, 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}

@keyframes glitch-2 {
  0% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(2px, 0);
  }
  25% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(-2px, 0);
  }
  50% {
    clip-path: inset(45% 0 30% 0);
    transform: translate(1px, 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}

.hero__lead {
  max-width: 32rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(0, 255, 242, 0.2), rgba(255, 46, 234, 0.15));
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(0, 255, 242, 0.35);
}

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

/* Hero dashboard column */
.hero__aside {
  position: relative;
  z-index: 1;
}

.dash {
  position: relative;
  padding: 1rem;
  background: var(--bg-panel);
  border: 1px solid rgba(0, 255, 242, 0.28);
  box-shadow:
    0 0 40px rgba(0, 255, 242, 0.1),
    inset 0 0 50px rgba(0, 255, 242, 0.04);
}

.dash--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 255, 242, 0.25), transparent 45%, rgba(255, 46, 234, 0.2));
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.dash__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.dash__row--split {
  align-items: flex-start;
  gap: 1rem;
}

.dash__label {
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.dash__value {
  color: var(--green);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.dash__media {
  border: 1px solid rgba(0, 255, 242, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.dash__media img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  filter: saturate(1.1) drop-shadow(0 0 16px rgba(0, 255, 242, 0.28));
}

.dash__caption {
  padding: 0.6rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.75rem;
}

.dash__caption strong {
  color: var(--cyan);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.dash__caption span {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.dash__pill {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  border-radius: 2px;
  box-shadow: var(--glow-magenta);
}

.dash__rate {
  text-align: right;
}

.dash__big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.dash__link {
  font-size: 0.7rem;
  color: var(--magenta);
  text-decoration: none;
}

.dash__link:hover {
  text-decoration: underline;
}

.dash__broker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(0, 255, 242, 0.15);
  border-bottom: 1px solid rgba(0, 255, 242, 0.15);
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.dash__broker strong {
  display: block;
  color: #e8fffc;
}

.dash__broker span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.dash__call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.78rem;
}

.dash__call-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 6px var(--cyan-dim));
}

.dash__now {
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 46, 234, 0.15);
  border: 1px solid var(--magenta);
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.dash__viz {
  margin-top: 0.75rem;
  text-align: center;
}

.dash__viz img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 242, 0.2));
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 242, 0.2);
  border-bottom: 1px solid rgba(0, 255, 242, 0.2);
  background: rgba(0, 0, 0, 0.35);
}

.ticker__inner {
  display: flex;
  gap: 3rem;
  padding: 0.65rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker__inner span {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-dim);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.section__hash {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: rgba(10, 16, 24, 0.8);
  border: 1px solid rgba(0, 255, 242, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 255, 242, 0.15);
  transform: translateY(-4px);
}

.card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px var(--cyan-dim));
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: #e8fffc;
}

.card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Terminal */
.terminal-wrap {
  padding-top: 2rem;
}

.terminal {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 242, 0.3);
  box-shadow:
    0 0 40px rgba(0, 255, 242, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.terminal__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #0d141c;
  border-bottom: 1px solid rgba(0, 255, 242, 0.15);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--r {
  background: #ff5f56;
}
.dot--y {
  background: #ffbd2e;
}
.dot--g {
  background: #27c93f;
}

.terminal__title {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.terminal__body {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: #060a0e;
  font-size: 0.8rem;
  line-height: 1.65;
  overflow-x: auto;
}

.terminal__body code {
  font-family: var(--font-mono);
}

.prompt {
  color: var(--magenta);
}

.ok {
  color: var(--green);
}

.cyan {
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan-dim);
}

.magenta {
  color: var(--magenta);
}

.cursor {
  animation: blink 1s step-end infinite;
  color: var(--cyan);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* CTA */
.cta {
  padding-bottom: 5rem;
}

.cta__box {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 46, 234, 0.35);
  background: linear-gradient(160deg, rgba(255, 46, 234, 0.06), rgba(0, 255, 242, 0.04));
  box-shadow: 0 0 50px rgba(255, 46, 234, 0.1);
}

.cta__box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
  text-shadow: var(--glow-magenta);
}

.cta__box p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

.cta__form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 242, 0.35);
  border-radius: 2px;
  outline: none;
}

.cta__form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 255, 242, 0.25);
}

.cta__form .btn {
  flex-shrink: 0;
}

/* Footer */
.foot {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 255, 242, 0.1);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.eyebrow__icon {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.section__head {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  color: #e8fffc;
  line-height: 1.35;
}

.section__sub {
  margin: -0.5rem 0 1.5rem;
}

.lede {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.prose {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.prose--compact {
  max-width: 52rem;
}

.prose strong {
  color: var(--text);
}

.neon-border {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 255, 242, 0.25);
  background: rgba(10, 16, 24, 0.65);
  box-shadow: inset 0 0 30px rgba(0, 255, 242, 0.04);
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .section--split {
    grid-template-columns: 1fr;
  }
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-block__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.rating-block__star {
  font-size: 2rem;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(255, 214, 10, 0.5);
}

.checklist {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.checklist li {
  margin-bottom: 0.35rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}

.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.neon-details {
  border: 1px solid rgba(0, 255, 242, 0.25);
  background: rgba(10, 16, 24, 0.75);
  padding: 0;
}

.neon-details summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  list-style: none;
}

.neon-details summary::-webkit-details-marker {
  display: none;
}

.neon-details[open] summary {
  border-bottom: 1px solid rgba(0, 255, 242, 0.15);
  color: var(--cyan);
}

.neon-details__body {
  padding: 1rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: start;
}

@media (max-width: 600px) {
  .neon-details__body {
    grid-template-columns: 1fr;
  }
}

.neon-details__img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 242, 0.35);
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.2), 0 0 48px rgba(255, 46, 234, 0.08);
  filter: saturate(1.12) contrast(1.03);
}

.neon-details__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section--video {
  padding-top: 2rem;
}

.video-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: var(--glow-cyan);
  transition: transform 0.2s, box-shadow 0.2s;
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(0, 255, 242, 0.45);
}

.video-row__text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
  max-width: 20rem;
}

.stat-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 46, 234, 0.25);
  background: linear-gradient(135deg, rgba(255, 46, 234, 0.06), rgba(0, 255, 242, 0.04));
}

@media (max-width: 768px) {
  .stat-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-banner__img img {
  width: min(280px, 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 242, 0.28);
  box-shadow: 0 0 28px rgba(0, 255, 242, 0.15);
  filter: saturate(1.08) drop-shadow(0 0 12px rgba(255, 46, 234, 0.15));
}

.stat-banner__counter {
  text-align: center;
}

.stat-banner__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.stat-banner__suffix {
  font-size: 2rem;
  color: var(--magenta);
}

.stat-banner__counter p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.stat-banner__grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stat-banner__grid img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 242, 0.28);
  box-shadow: 0 0 12px rgba(0, 255, 242, 0.18);
  filter: saturate(1.06);
}

.spotlight {
  border-top: 1px solid rgba(0, 255, 242, 0.12);
  border-bottom: 1px solid rgba(0, 255, 242, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.feature-grid--6 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.use-card {
  padding: 1.25rem;
  background: rgba(10, 16, 24, 0.85);
  border: 1px solid rgba(0, 255, 242, 0.18);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.use-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.12);
}

.use-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: #e8fffc;
}

.use-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(0, 255, 242, 0.35);
}

.roadmap li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  margin-left: 0.5rem;
}

.roadmap li::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  background: var(--magenta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--glow-magenta);
}

.roadmap__phase {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.roadmap p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(0, 255, 242, 0.22);
  background: rgba(10, 16, 24, 0.9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card--featured {
  border-color: var(--magenta);
  box-shadow: 0 0 40px rgba(255, 46, 234, 0.15);
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .price-card--featured {
    transform: none;
  }
}

.price-card__badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  background: var(--magenta);
  color: #0a0a0f;
  font-weight: 700;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}

.price-card__price {
  margin: 0 0 1rem;
}

.price-card__price span {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.price-card__price small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-card ul {
  text-align: left;
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
}

.price-card li {
  margin-bottom: 0.4rem;
}

.price-card > img {
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 242, 0.28);
  box-shadow: 0 0 18px rgba(0, 255, 242, 0.18);
  filter: saturate(1.1);
}

.btn--block {
  width: 100%;
}

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

.quote-card {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(0, 255, 242, 0.2);
  background: rgba(0, 0, 0, 0.25);
}

.quote-card__stars {
  color: var(--amber);
  margin: 0 0 0.5rem;
  letter-spacing: 0.2em;
}

.quote-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #e8fffc;
  margin: 0 0 0.5rem;
}

.quote-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.quote-card footer {
  font-size: 0.8rem;
  color: var(--cyan);
}

.live-tx {
  overflow-x: auto;
  margin-top: 1rem;
}

.live-tx__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.live-tx__table thead th {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(0, 255, 242, 0.28);
  text-align: left;
}

.live-tx__table tbody td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(0, 255, 242, 0.1);
  color: var(--text-muted);
  vertical-align: top;
}

.live-tx__table tbody tr:hover td {
  color: var(--text);
  background: rgba(0, 255, 242, 0.04);
}

.live-tx__table code {
  font-size: 0.76rem;
  color: #a8e8e0;
}

.faq {
  max-width: 720px;
}

.faq__item {
  border: 1px solid rgba(0, 255, 242, 0.2);
  background: rgba(10, 16, 24, 0.65);
  margin-bottom: 0.5rem;
}

.faq__item summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.faq__item[open] summary {
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 255, 242, 0.12);
}

.faq__item p {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta__fine {
  margin: 1rem 0 0;
  font-size: 0.78rem;
}

.cta__fine a {
  color: var(--cyan);
  text-decoration: none;
}

.cta__fine a:hover {
  text-decoration: underline;
}

.cta__wallets {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 28rem;
}

.cta__wallets-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.cta__wallets-label:not(:first-child) {
  margin-top: 0.65rem;
}

.cta__wallets code {
  word-break: break-all;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.foot--big {
  text-align: left;
  padding: 3rem 1.5rem 2rem;
}

.foot__grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .foot__grid {
    grid-template-columns: 1fr;
  }
}

.foot__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 16rem;
}

.foot__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.foot--big h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.foot--big ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
}

.foot--big li {
  margin-bottom: 0.35rem;
}

.foot--big a {
  color: var(--text-muted);
  text-decoration: none;
}

.foot--big a:hover {
  color: var(--cyan);
}

.foot__copy {
  text-align: center;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 242, 0.1);
  font-size: 0.7rem;
}

.fab-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 60;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.fab-wa:hover {
  transform: scale(1.05);
}

/* Blog listing & posts */
.page-blog .blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.blog-hero {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 242, 0.2);
}

.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  color: #e8fffc;
  text-shadow: 0 0 20px rgba(0, 255, 242, 0.35);
}

.blog-breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.blog-breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-breadcrumb__sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.blog-breadcrumb__current {
  color: var(--text-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 255, 242, 0.22);
  background: rgba(10, 16, 24, 0.75);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 255, 242, 0.12);
  transform: translateY(-3px);
}

.blog-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #060a0e;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: filter 0.25s ease, transform 0.35s ease;
}

.blog-card:hover .blog-card__thumb img {
  filter: saturate(1.2) contrast(1.06) drop-shadow(0 0 12px rgba(0, 255, 242, 0.35));
  transform: scale(1.03);
}

.blog-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.blog-card__author {
  color: var(--magenta);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.6rem;
  letter-spacing: 0.04em;
}

.blog-card__title a {
  color: #e8fffc;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-dim);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}

.blog-card__more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-decoration: none;
  align-self: flex-start;
}

.blog-card__more:hover {
  text-shadow: 0 0 10px var(--cyan-dim);
}

/* Single post */
.article-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.article-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-decoration: none;
}

.article-back:hover {
  text-decoration: underline;
}

.article-header {
  margin-bottom: 2rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  color: #e8fffc;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.article-meta span {
  color: var(--magenta);
}

.article-figure {
  margin: 0 0 2rem;
  border: 1px solid rgba(0, 255, 242, 0.28);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(0, 255, 242, 0.12), 0 0 60px rgba(255, 46, 234, 0.06);
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.08) contrast(1.03) drop-shadow(0 0 16px rgba(0, 255, 242, 0.22));
}

.article-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #e8fffc;
  margin: 2rem 0 0.75rem;
}

.article-prose p {
  margin: 0 0 1rem;
}

.article-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.article-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.article-prose h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin: 1.5rem 0 0.5rem;
}

.article-prose li {
  margin-bottom: 0.35rem;
}

.article-prose strong {
  color: #e8fffc;
  font-weight: 600;
}

.article-highlight {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--magenta);
  background: rgba(255, 0, 255, 0.06);
  border-radius: 0 6px 6px 0;
}

.article-highlight p {
  margin: 0;
  font-style: italic;
  color: var(--text);
}

.blog-card__cat {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 242, 0.35);
  border-radius: 999px;
}
