/* FLASH_USDT — vivid accents, high-contrast readable text */
:root {
  --bg: #07131a;
  --bg-soft: #0f1e28;
  --panel: #152a36;
  --ink: #ffffff;
  --muted: #d5e0e7;
  --line: rgba(255, 255, 255, 0.18);
  --accent: #b8f000;
  --accent-deep: #92c400;
  --accent-hot: #ff4d7a;
  --accent-cool: #5cefff;
  --warn: #ffb020;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --void: var(--bg);
  --deep: var(--bg-soft);
  --ink-soft: #f5f9fc;
  --phosphor: var(--accent);
  --phosphor-bright: #d4ff4a;
  --amber: var(--warn);
  --cyan: var(--accent-cool);
  --cyan-deep: #2ec8d8;
  --signal: var(--accent-hot);
  --glass: rgba(10, 24, 32, 0.95);
  --mist: var(--bg);
  --paper: var(--bg-soft);
  --ice: var(--accent-cool);
  --line-dim: rgba(255, 255, 255, 0.1);
  --glow: rgba(184, 240, 0, 0.2);
  --danger: #ff4d7a;
  --text-glow: none;
  --text-glow-soft: none;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 800px 420px at 90% -5%, rgba(92, 239, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 700px 400px at 0% 100%, rgba(255, 77, 122, 0.08), transparent 50%),
    #07131a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-cool);
}

::selection {
  background: rgba(198, 255, 0, 0.45);
  color: #04161c;
}

.noise,
.future-shell,
.aurora-canvas,
.crt-overlay,
.chrono-bar,
.hud-corners,
.cursor-orb,
.cursor-ring,
.hack-terminal-bar,
.hack-prompt,
.typed-caret {
  display: none !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 2px;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-hot), var(--accent), var(--accent-cool));
  box-shadow: 0 0 12px rgba(198, 255, 0, 0.45);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.85rem clamp(0.85rem, 3vw, 1.5rem) 0;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 19, 26, 0.92);
  backdrop-filter: blur(12px);
}

.site-header::before {
  display: none !important;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.site-footer .logo-img {
  width: 32px;
  height: 32px;
}

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

.nav a {
  font-size: 0.92rem;
  color: #e8eef2;
}

.nav a::before {
  content: none !important;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent);
  text-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 28;
  top: 4.8rem;
  left: 0.85rem;
  right: 0.85rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 20, 18, 0.97);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  color: var(--muted);
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(74, 222, 128, 0.08);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: #b8f000;
  color: #07131a;
  border-color: transparent;
  font-weight: 700;
}

.btn-primary:hover {
  background: #d4ff4a;
  color: #07131a;
  box-shadow: 0 8px 24px rgba(184, 240, 0, 0.25);
}

.btn-primary::before {
  display: none;
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
  background: rgba(255, 45, 106, 0.08);
}

.btn-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-layout,
.hack-terminal {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.hack-terminal,
.hack-terminal-body {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

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

.hero-display img {
  width: min(380px, 100%);
}

.coin-field {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.2;
}

.float-coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(24, 36, 31, 0.6);
  color: var(--accent);
  font-size: 1rem;
  animation: floaty 12s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 19, 26, 0.92) 0%, rgba(7, 19, 26, 0.78) 55%, rgba(7, 19, 26, 0.88) 100%);
}

.hero-grid,
.hero-scan {
  display: none;
}

.brand-mark {
  margin: 0 0 0.75rem;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero h1,
.page-hero-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.headline-accent {
  color: #5cefff;
}

.lede {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.section-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 38rem;
}

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

.eyebrow-line {
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0;
  color: var(--muted);
}

.how,
.faq-section,
.why,
.safety,
.uses {
  background: rgba(15, 30, 40, 0.72);
}

.flow {
  margin: 1.25rem 0 1.75rem;
}

.flow-track {
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}

.flow-beam {
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: beam 2.6s linear infinite;
}

@keyframes beam {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(400%);
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step,
.info-block,
.coin-panel,
.package,
.blog-card,
.faq-item,
.contact-form,
.docs-panel,
.showcase,
.split-copy,
.buy-direct {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step::before,
.package::before,
.docs-panel::before,
.showcase::before {
  display: none !important;
}

.step:hover,
.coin-panel:hover,
.package:hover,
.blog-card:hover,
.info-block:hover {
  border-color: rgba(0, 240, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(198, 255, 0, 0.12), 0 12px 32px rgba(255, 45, 106, 0.1);
}

.step-num,
.coin-ticker,
.package-tier,
.showcase-kicker,
.blog-card-cat {
  margin: 0 0 0.4rem;
  color: var(--accent-hot);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.showcase-kicker::before {
  content: none !important;
}

.step h3,
.use-list h3,
.info-block h3,
.coin-panel h3,
.package h3,
.contact-aside h2,
.prose h2,
.buy-direct h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--ink);
}

.step p,
.use-list p,
.site-footer p,
.info-block p,
.coin-panel p,
.section-lede,
.faq-item p,
.blog-card-meta,
.blog-card-excerpt,
.prose p,
.split-copy p,
.buy-direct p,
.showcase-slide p:last-child {
  margin: 0;
  color: var(--muted);
}

.use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.use-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.use-index {
  grid-row: span 2;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.docs {
  padding-bottom: 4.5rem;
}

.docs-panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.25rem clamp(1rem, 4vw, 2rem) 2.75rem;
  border-top: 1px solid var(--line);
  background: #061018;
}

.footer-brand {
  max-width: 28rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.page-hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-display img {
  width: min(340px, 100%);
}

.section-inner.narrow {
  max-width: 740px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0.2rem 1rem 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "–";
}

.showcase {
  position: relative;
}

.showcase-viewport {
  min-height: 200px;
}

.showcase-slide {
  display: none;
}

.showcase-slide.is-active {
  display: block;
}

.showcase-stat,
.price-amount {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #b8f000;
}

.showcase-slide h3 {
  margin: 0 0 0.45rem;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.showcase-nav,
.page-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
}

.showcase-nav:hover,
.page-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.showcase-dots {
  display: flex;
  gap: 0.4rem;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  padding: 0;
  cursor: pointer;
}

.showcase-dot.is-active {
  background: var(--accent);
}

.coin-grid,
.coin-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.coin-panel ul,
.package ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coin-panel li,
.package li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.coin-panel li::before,
.package li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  align-items: center;
}

.blog-search input,
.blog-filter select,
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-family: var(--font-body);
  min-width: 160px;
}

.blog-search input:focus,
.blog-filter select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.blog-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-card h2 {
  margin: 0;
  font-size: 1.05rem;
}

.blog-card-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.9rem;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.4rem;
}

.page-btn.is-current {
  background: var(--accent-hot);
  color: #fff6e8;
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.4;
}

.post-meta,
.post-loading {
  color: var(--muted);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.package-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .package-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.package-featured {
  border-color: rgba(255, 45, 106, 0.55);
  box-shadow: 0 0 0 1px rgba(198, 255, 0, 0.2), 0 0 36px rgba(0, 240, 255, 0.12);
}

.package-price {
  margin: 0.4rem 0 0.75rem;
}

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

.buy-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
}

.buy-actions .btn {
  width: 100%;
}

.buy-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.35rem;
}

.contact-meta {
  display: grid;
  gap: 0.85rem;
}

.contact-meta div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.contact-meta dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-meta dd {
  margin: 0.25rem 0 0;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.form-status {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: var(--danger);
}

.animate-in {
  opacity: 0;
  animation: rise-in 0.6s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .page-hero-layout,
  .package-grid,
  .package-grid-4,
  .contact-layout,
  .split,
  .info-grid,
  .blog-grid,
  .coin-grid,
  .coin-grid-compact,
  .steps {
    grid-template-columns: 1fr;
  }
  .flow {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header .btn-ghost {
    display: none;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .field-row,
  .buy-actions-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .reveal,
  .float-coin,
  .flow-beam {
    animation: none !important;
    transition: none !important;
  }
  .animate-in,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* —— Readability overrides —— */
.logo,
.hero h1,
.page-hero-content h1,
.section h2,
.step h3,
.use-list h3,
.info-block h3,
.coin-panel h3,
.package h3,
.blog-card h2,
.faq-item summary,
.prose h2,
.contact-aside h2,
.buy-direct h3 {
  color: #ffffff !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #ffffff;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.lede,
.section-lede,
.step p,
.use-list p,
.info-block p,
.coin-panel p,
.coin-panel li,
.package li,
.faq-item p,
.prose p,
.split-copy p,
.blog-card-excerpt,
.blog-card-meta,
.site-footer p,
.showcase-slide p:last-child,
.buy-direct p,
.field span,
.contact-meta dt,
.price-note,
.blog-count,
.post-meta,
.eyebrow {
  color: #d5e0e7 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.nav a {
  color: #eef3f6 !important;
}

.brand-word,
.headline-accent {
  -webkit-text-fill-color: unset;
}

.brand-word {
  color: #b8f000 !important;
}

.headline-accent {
  color: #5cefff !important;
}

.showcase-stat,
.price-amount {
  color: #b8f000 !important;
  -webkit-text-fill-color: #b8f000;
  background: none !important;
}

.theme-simple .reveal.is-alive,
.theme-simple .step.is-alive,
.theme-simple .coin-panel.is-alive,
.theme-simple .package.is-alive,
.theme-simple .blog-card.is-alive {
  animation: alive-in 0.7s ease both;
}

@keyframes alive-in {
  from {
    opacity: 0.35;
    transform: translateY(18px) scale(0.98);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

