/* Flash USDT — neon / hacker palette 2026 */
:root {
  --bg-deep: #050508;
  --bg-panel: #0a0c12;
  --cyan: #00f5d4;
  --magenta: #ff006e;
  --violet: #9d4edd;
  --lime: #ccff00;
  --amber: #ffbe0b;
  --text: #e8e6f0;
  --muted: #6b6a7a;
  --border: rgba(0, 245, 212, 0.25);
  --glow-cyan: 0 0 20px rgba(0, 245, 212, 0.45);
  --glow-magenta: 0 0 24px rgba(255, 0, 110, 0.5);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::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);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(157, 78, 221, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(255, 0, 110, 0.15), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0, 245, 212, 0.12), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9998;
  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: 9997;
  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;
}

.ai-assist {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem 0.75rem 0.8rem;
  border: 1px solid rgba(0, 245, 212, 0.45);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.14);
  backdrop-filter: blur(10px);
}

.ai-assist:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(255, 0, 110, 0.2);
}

.ai-assist-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050508;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ai-assist-copy {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

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

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

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  position: relative;
  text-decoration: none;
}

.logo::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--magenta);
  opacity: 0.35;
  clip-path: inset(0 0 50% 0);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: flex-end;
  max-width: min(100%, 72rem);
}

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

.nav a:hover {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--magenta);
  color: var(--magenta) !important;
  box-shadow: var(--glow-magenta);
}

.nav-cta:hover {
  background: rgba(255, 0, 110, 0.15);
  color: var(--lime) !important;
  border-color: var(--lime);
  text-shadow: 0 0 12px var(--lime) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
}

@media (max-width: 768px) {
  .ai-assist {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-content: center;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding: 1.5rem;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    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;
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: 85vh;
  padding: 3rem 1.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 212, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

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

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
}

.blink {
  animation: blink 1.2s step-end infinite;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.glitch {
  animation: neon-flicker 5s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%,
  94%,
  100% {
    text-shadow:
      0 0 8px rgba(0, 245, 212, 0.35),
      0 0 24px rgba(157, 78, 221, 0.25);
    filter: none;
  }
  95% {
    text-shadow:
      -2px 0 var(--magenta),
      2px 0 var(--cyan);
    filter: hue-rotate(8deg);
  }
  96% {
    text-shadow:
      2px 0 var(--cyan),
      -1px 0 var(--magenta);
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.4));
}

.lead {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00c4aa);
  color: var(--bg-deep);
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(0, 245, 212, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--magenta);
  border: 1px solid var(--magenta);
  box-shadow: var(--glow-magenta);
}

.btn-ghost:hover {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.stats {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.stats dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

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

.hero-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.3),
    0 24px 48px rgba(0, 0, 0, 0.5),
    var(--glow-cyan);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(0, 245, 212, 0.15) 0%,
    transparent 40%,
    rgba(255, 0, 110, 0.12) 100%
  );
  mix-blend-mode: soft-light;
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: saturate(1.2) contrast(1.08);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: linear-gradient(transparent, rgba(5, 5, 8, 0.95));
}

.tag {
  font-size: 0.65rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tag-magenta {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 12px rgba(255, 0, 110, 0.35);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }
  .hero-visual {
    order: -1;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: var(--text);
  text-shadow: 0 0 24px rgba(157, 78, 221, 0.5);
}

.section-sub {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2.5rem;
}

/* Features */
.features {
  border-top: 1px solid var(--border);
}

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

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

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan), 0 16px 32px rgba(0, 0, 0, 0.35);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.06);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  padding: 1rem 1rem 0;
  color: var(--lime);
  letter-spacing: 0.06em;
}

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

/* Gallery */
.gallery {
  border-top: 1px solid var(--border);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 212, 0.2);
  cursor: default;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 100, 0.07) 0%,
    transparent 42%,
    rgba(157, 78, 221, 0.12) 100%
  );
  mix-blend-mode: overlay;
  opacity: 0.85;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.3s;
  filter: saturate(1.12) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.25) contrast(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.5rem 0.65rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(transparent, rgba(5, 5, 8, 0.92));
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 245, 212, 0.45);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
}

@media (max-width: 520px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

/* Stack */
.stack {
  border-top: 1px solid var(--border);
}

.stack-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.stack-list li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(157, 78, 221, 0.35);
  font-size: 0.9rem;
}

.stack-list strong {
  color: var(--magenta);
}

.stack-images {
  display: grid;
  gap: 1rem;
}

.stack-images img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  filter: saturate(1.12) contrast(1.06);
}

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

/* CTA */
.cta-band {
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, transparent, rgba(255, 0, 110, 0.06)),
    linear-gradient(135deg, rgba(0, 245, 212, 0.08), rgba(157, 78, 221, 0.1));
  max-width: none;
  padding: 4rem 1.5rem;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-content .section-title {
  margin-bottom: 0.5rem;
}

.year {
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 190, 11, 0.6);
}

.signup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}

.signup input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 2px;
}

.signup input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.signup input::placeholder {
  color: var(--muted);
}

.fine-print {
  font-size: 0.7rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--magenta);
}

/* —— Extended homepage (WordPress-style flow) —— */

.hero-extended {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  min-height: auto;
}

.hero-extended .hero-grid {
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-visual-single figure.hero-card {
  margin: 0;
}

.hero-visual-single .hero-card img {
  max-height: min(72vh, 520px);
  object-fit: cover;
}

.lead.tight {
  margin-bottom: 1rem;
}

.muted-block {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-block {
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.about-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.12) contrast(1.05);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin: 0 0 0.5rem;
}

.about-copy .section-title {
  margin-top: 0;
}

.why-grid-wrap {
  border-top: 1px solid var(--border);
}

.why-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
  display: block;
  margin-bottom: 0.75rem;
}

.why-card h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

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

.use-cases-wrap {
  border-top: 1px solid var(--border);
}

.use-cases-head {
  margin-bottom: 2rem;
}

.use-cases-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto 1.75rem;
}

.use-cases-disclaimer {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

.feature-icons-wrap {
  border-top: 1px solid var(--border);
}

.block-text-center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.heading-bg {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 245, 212, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.heading-bg span {
  color: rgba(0, 245, 212, 0.08);
}

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.icon-box {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  align-items: flex-start;
}

.icon-svg {
  flex-shrink: 0;
  color: var(--cyan);
  filter: drop-shadow(var(--glow-cyan));
}

.icon-box h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--lime);
  letter-spacing: 0.04em;
}

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

.tx-section {
  border-top: 1px solid var(--border);
}

.tx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.tx-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 212, 0.25);
  text-decoration: none;
  color: var(--cyan);
}

.tx-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform 0.35s, filter 0.25s;
}

.tx-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) brightness(1.05);
}

.tx-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(transparent, rgba(5, 5, 8, 0.96));
}

.tx-amount {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.35);
}

.tx-cap {
  flex-shrink: 0;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 245, 212, 0.5);
}

.pricing-wrap {
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-card h4 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.06em;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  margin: 0 0 0.25rem;
}

.price-card .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.price-card .cents {
  font-size: 1.25rem;
}

.price-card .period {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.1rem;
  flex: 1;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.price-card--highlight {
  border-color: var(--magenta);
  box-shadow: var(--glow-magenta);
  background: linear-gradient(180deg, rgba(255, 0, 110, 0.06), var(--bg-panel));
}

.btn-block {
  width: 100%;
  text-align: center;
}

.roadmap-wrap {
  border-top: 1px solid var(--border);
}

.roadmap-steps {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.roadmap-steps li {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  border-left: 2px solid var(--border);
  margin-left: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.roadmap-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--bg-deep);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
}

.roadmap-steps li:last-child {
  border-left-color: transparent;
}

.newsletter-wrap {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.08), rgba(0, 245, 212, 0.06));
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.signup-row {
  justify-content: center;
  margin-top: 1rem;
}

.contact-line {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-line a {
  color: var(--cyan);
}

.faq-wrap {
  border-top: 1px solid var(--border);
}

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

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item:hover {
  color: var(--cyan);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(225deg);
}

.faq-a {
  padding: 0 0 1rem 0.25rem;
  margin-top: -0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.faq-a p {
  margin: 0;
}

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

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

.footer-extended {
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(280px, 85vw);
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.35));
}

.footer-warn {
  color: #ff6b6b;
  font-size: 0.85rem;
  max-width: 36rem;
  margin: 0;
}

.footer-copy {
  width: 100%;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}

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

.footer-copy a:hover {
  text-decoration: underline;
  text-shadow: var(--glow-cyan);
}

@media (max-width: 1024px) {
  .tx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tx-amount {
    font-size: 0.58rem;
  }
  .tx-cap {
    font-size: 0.55rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual-single .hero-card img {
    max-height: 380px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .icon-feature-grid {
    grid-template-columns: 1fr;
  }
  .faq-columns {
    grid-template-columns: 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo mark (TRC20 Flashers) */
.logo-brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo-brand::after {
  display: none;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: min(260px, 52vw);
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.35));
  transition: filter 0.25s, transform 0.2s;
}

.logo-brand:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(0, 245, 212, 0.55));
}

/* Checkout page */
.page-checkout .checkout-hero {
  padding-top: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.checkout-title {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.checkout-lead {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.checkout-layout-wrap {
  border-top: none;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.checkout-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}

.checkout-panel--accent {
  border-color: rgba(255, 0, 110, 0.35);
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.08);
}

.checkout-panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.checkout-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 245, 212, 0.12);
}

.checkout-lines li:last-child {
  border-bottom: none;
}

.checkout-lines .mono {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-lines .checkout-amount {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.25);
}

.checkout-note {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.checkout-amount-callout {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.checkout-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

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

.checkout-note a {
  color: var(--cyan);
}

.checkout-p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.checkout-bullets li {
  margin-bottom: 0.4rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.checkout-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.checkout-input {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  background: rgba(5, 5, 8, 0.9);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
}

.checkout-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.checkout-fineprint {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-trust {
  border-top: 1px solid var(--border);
  padding-bottom: 3rem;
}

.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  background: rgba(10, 12, 18, 0.65);
  border: 1px solid rgba(0, 245, 212, 0.15);
  border-radius: 6px;
  padding: 1.25rem;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: 0.06em;
}

.trust-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.trust-icon {
  display: inline-block;
  color: var(--magenta);
  font-size: 1.1rem;
  text-shadow: var(--glow-magenta);
}

/* USDT payment step */
.page-payment .payment-hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.payment-hero-title {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.payment-hero-sub {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.payment-layout {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.payment-card {
  width: 100%;
  max-width: 32rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 0 48px rgba(0, 245, 212, 0.06);
}

.payment-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-align: center;
}

.payment-field {
  margin-bottom: 1.35rem;
}

.payment-field-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.payment-amount-box {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  background: rgba(5, 5, 8, 0.95);
  border: 1px solid rgba(0, 245, 212, 0.35);
  border-radius: 6px;
  color: var(--cyan);
  text-align: center;
  text-shadow: 0 0 14px rgba(0, 245, 212, 0.35);
}

.payment-qr-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-radius: 6px;
}

.payment-qr-img {
  display: block;
  width: 220px;
  height: 220px;
  image-rendering: pixelated;
}

.payment-address-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
}

.payment-address {
  flex: 1 1 12rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  word-break: break-all;
  padding: 0.65rem 0.75rem;
  background: rgba(5, 5, 8, 0.95);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 4px;
  color: var(--text);
  line-height: 1.45;
}

.payment-copy-btn {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-color: rgba(0, 245, 212, 0.45);
  color: var(--cyan) !important;
}

.payment-address-hint {
  min-height: 1.25rem;
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
}

.payment-notice {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 190, 11, 0.08);
  border: 1px solid rgba(255, 190, 11, 0.35);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.55;
}

.payment-notice-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.payment-notice p {
  margin: 0;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.payment-btn-prev {
  min-width: 8rem;
  text-align: center;
}

.payment-btn-done {
  min-width: 12rem;
}

.payment-done-msg {
  margin: 0;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--lime);
  border: 1px solid rgba(204, 255, 0, 0.35);
  border-radius: 4px;
  background: rgba(204, 255, 0, 0.06);
}

@media (max-width: 520px) {
  .payment-actions {
    flex-direction: column;
  }

  .payment-btn-prev,
  .payment-btn-done {
    width: 100%;
  }
}

/* Blog */
.page-blog .blog-hero {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.blog-page-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.blog-lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-featured {
  border-top: none;
  padding-top: 2rem;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 245, 212, 0.05);
}

.blog-feature-visual {
  display: block;
  overflow: hidden;
  min-height: 280px;
}

.blog-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-feature-card:hover .blog-feature-visual img {
  transform: scale(1.04);
}

.blog-feature-body {
  padding: 1.75rem 2rem 1.75rem 0;
}

@media (max-width: 900px) {
  .blog-feature-body {
    padding: 0 1.5rem 1.75rem;
  }
}

.blog-grid-section {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.blog-grid-head {
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
}

.blog-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid rgba(0, 245, 212, 0.22);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s;
}

.blog-card:hover {
  border-color: rgba(0, 245, 212, 0.45);
  box-shadow: 0 0 28px rgba(0, 245, 212, 0.12);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

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

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

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

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.blog-card-title a:hover {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

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

.blog-readmore {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-decoration: none;
  align-self: flex-start;
}

.blog-tag-row,
.article-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
}

.blog-tag-row .tag,
.article-tag-row .tag {
  font-size: 0.7rem;
}

.blog-readmore:hover {
  text-shadow: var(--glow-cyan);
}

.blog-cta-wrap {
  border-top: 1px solid var(--border);
  padding-bottom: 3rem;
}

.blog-cta {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid rgba(255, 0, 110, 0.25);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.06);
}

.blog-cta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--magenta);
  margin: 0 0 0.5rem;
}

.blog-cta-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.blog-cta-text {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a.nav-is-active {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

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

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

  .blog-feature-visual {
    min-height: 220px;
  }

  .blog-feature-visual img {
    min-height: 220px;
  }

  .recent-posts-grid,
  .blog-info-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Long-form articles (blog/post-*.html) */
.page-article .article-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-hero-inner {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.article-back {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1rem;
}

.article-back:hover {
  color: var(--cyan);
}

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

.article-cat {
  color: var(--magenta);
  font-weight: 700;
}

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

.article-deck {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.article-byline {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.article-tag-row {
  margin-top: 0.9rem;
}

.article-visual {
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}

.article-visual img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.article-prose .article-inline-visual {
  margin: 2rem auto;
  max-width: 48rem;
}

.article-prose .article-inline-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(0, 242, 255, 0.22);
}

.article-prose .article-inline-visual figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.45;
  font-family: var(--font-mono, ui-monospace, monospace);
}

.article-link-hub {
  margin: 2.5rem 0 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 242, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}

.article-link-hub-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 1.25rem 0 0.65rem;
}

.article-link-hub-title:first-child {
  margin-top: 0;
}

.article-internal-links,
.article-external-links {
  margin: 0 0 0.5rem;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.article-internal-links {
  columns: 1;
}

@media (min-width: 640px) {
  .article-internal-links {
    columns: 2;
    column-gap: 2rem;
  }
}

.article-internal-links li,
.article-external-links li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
}

.article-body {
  padding: 2rem 1.25rem 4rem;
}

.article-prose {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

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

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 2.25rem 0 0.75rem;
  color: var(--text);
}

.article-prose h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin: 1.5rem 0 0.5rem;
}

.article-prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

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

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

.article-prose a {
  color: var(--cyan);
}

.article-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1.25rem 0;
}

.article-prose th,
.article-prose td {
  border: 1px solid rgba(0, 245, 212, 0.2);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.article-prose th {
  background: rgba(0, 245, 212, 0.08);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.toc-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.toc-box h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.toc-box li {
  margin-bottom: 0.35rem;
}

.callout {
  background: rgba(157, 78, 221, 0.08);
  border: 1px solid rgba(157, 78, 221, 0.28);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--violet);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.article-faq {
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
}

.article-faq .faq-q {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
}

.article-faq .faq-a {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.article-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  margin: 2.5rem 0 0;
  background: rgba(255, 0, 110, 0.06);
  border: 1px solid rgba(255, 0, 110, 0.25);
  border-radius: 8px;
}

.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.article-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
