/* Neko Viral Digital Asset — NVDA */

:root {
  --bg: #050806;
  --bg-2: #080c09;
  --ink: #f3f6f0;
  --muted: #8d9688;
  --line: rgba(184, 255, 60, 0.14);
  --line-strong: rgba(184, 255, 60, 0.32);
  --nvidia: #76b900;
  --rh: #00c805;
  --volt: #b8ff3c;
  --deep: #102010;
  --glow: rgba(118, 185, 0, 0.42);
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --display: Syne, "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --wrap: min(100% - clamp(1.5rem, 5vw, 3.5rem), 1200px);
  --header: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
p,
ul,
figure {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  padding: 0.55rem 0.8rem;
  background: var(--rh);
  color: #041006;
  font-size: 0.85rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(118, 185, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 185, 0, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 0%, transparent 62%);
  animation: grid-drift 48s linear infinite;
}

.page-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 6, 0.55) 48%, var(--bg) 100%);
}

main,
.site-header,
.site-footer,
.tape {
  position: relative;
  z-index: 1;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 6, 0.94);
}

.header-inner {
  width: min(100% - clamp(1rem, 4vw, 3rem), 1280px);
  margin-inline: auto;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.brand-ticker {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand-name {
  display: none;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 16rem;
}

.site-nav {
  display: none;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--volt);
}

.header-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn-lg {
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
}

.btn-buy {
  background: var(--rh);
  color: #041006;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.3);
}

.btn-buy:hover,
.btn-buy:focus-visible {
  background: #14e21a;
  box-shadow: 0 0 24px rgba(0, 200, 5, 0.28);
}

.btn-line {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(8, 16, 10, 0.5);
}

.btn-line:hover,
.btn-line:focus-visible {
  border-color: var(--volt);
  color: var(--volt);
}

.btn-quiet {
  border-color: transparent;
  color: var(--muted);
  padding-inline: 0.65rem;
}

.btn-quiet:hover,
.btn-quiet:focus-visible {
  color: var(--ink);
}

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

.btn-copy {
  border: 1px solid var(--line-strong);
  min-width: 5.4rem;
  background: rgba(118, 185, 0, 0.08);
}

.btn-copy:hover,
.btn-copy:focus-visible,
.btn-copy.is-copied {
  border-color: var(--rh);
  color: var(--volt);
}

/* Hero */

.hero {
  padding: clamp(1.6rem, 4vw, 3.2rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.hero-inner {
  width: min(100% - clamp(1.25rem, 4.5vw, 3.25rem), 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem 2.5rem;
}

.eyebrow,
.section-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rh);
}

.hero-title {
  margin-top: 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.35rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-title span {
  display: block;
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.hero-ticker-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: 0.18em;
  color: var(--volt);
}

.lives {
  display: flex;
  gap: 0.28rem;
}

.lives i {
  width: 7px;
  height: 14px;
  background: rgba(184, 255, 60, 0.22);
  box-shadow: inset 0 0 0 1px rgba(184, 255, 60, 0.28);
}

.lives i:nth-child(-n + 3) {
  background: var(--rh);
}

.hero-hook {
  margin-top: 1.35rem;
  max-width: 22rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.hero-sub {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-glow,
.hero-sweep {
  position: absolute;
  inset: 12% 10%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  background: radial-gradient(circle, var(--glow) 0%, rgba(0, 200, 5, 0.16) 38%, transparent 70%);
  filter: blur(28px);
}

.hero-sweep {
  background: linear-gradient(115deg, transparent 36%, rgba(184, 255, 60, 0.2) 50%, transparent 64%);
  background-size: 220% 220%;
  animation: sweep 7.5s ease-in-out infinite;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  animation: float 6.4s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* CA */

.ca-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(16, 32, 16, 0.7), rgba(5, 8, 6, 0.4));
  min-width: 0;
}

.ca-meta {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  min-width: 0;
}

.ca-label {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.ca-value {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

/* Tape */

.tape {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 0.7rem 0;
  background: rgba(8, 14, 9, 0.8);
}

.tape-track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  animation: tape 38s linear infinite;
}

.tape-track span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.tape-track span:nth-child(odd) {
  color: var(--volt);
}

/* Dual ticker */

.dual {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dual-col {
  padding: 0.4rem 0;
}

.dual-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.dual-symbol {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.dual-note {
  margin-top: 0.45rem;
  color: var(--muted);
}

.dual-col-end {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Narrative */

.narrative {
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.narrative-inner {
  display: grid;
  gap: 1.6rem;
  max-width: 52rem;
  margin-inline: auto;
}

.narrative-lead {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.narrative-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  border-left: 1px solid var(--line-strong);
  padding-left: 1.1rem;
}

.narrative-list li {
  font-size: 1.15rem;
  color: var(--muted);
}

.narrative-list span {
  color: var(--ink);
  font-weight: 600;
}

.narrative-blow {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 6.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.narrative-aside {
  max-width: 28rem;
  color: var(--muted);
}

/* Banner */

.banner-block {
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
}

.banner-frame {
  width: min(100% - clamp(1.25rem, 4.5vw, 3.25rem), 1280px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.banner-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: center;
  transition: transform 1.1s ease, filter 0.6s ease;
}

.banner-frame:hover img {
  transform: scale(1.018);
  filter: brightness(1.06);
}

/* Chart */

.chart {
  padding: 0 0 clamp(4.5rem, 9vw, 7rem);
}

.chart-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.chart-title {
  margin-top: 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.dex-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(180deg, rgba(184, 255, 60, 0.18), rgba(0, 200, 5, 0.05)) border-box;
  padding: 0.65rem;
}

.dex-chart-wrap {
  width: 100%;
  overflow: hidden;
}

#dexEmbed {
  display: block;
  width: 100%;
  height: clamp(480px, 65vw, 720px);
  border: 0;
  background: #0b0e0c;
}

/* Visuals */

.visuals {
  padding: 0 0 clamp(4.5rem, 9vw, 7rem);
}

.visuals-inner {
  display: grid;
  gap: 1.5rem;
}

.visuals-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
}

.visuals-kicker {
  color: var(--muted);
  max-width: 18rem;
}

.visuals-title {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.04;
  max-width: 14ch;
}

.visuals-logo {
  width: min(42vw, 8.5rem);
  height: auto;
  margin-top: 1.6rem;
  object-fit: cover;
}

.visuals-art {
  position: relative;
}

.visuals-art::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.22), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.visuals-art img {
  position: relative;
  width: min(100%, 26rem);
  margin-inline: auto;
  transition: transform 0.45s ease;
}

.visuals-art:hover img {
  transform: translateY(-6px);
}

/* Community */

.community {
  padding: 0 0 clamp(4.5rem, 8vw, 6.5rem);
}

.community-inner {
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}

.community-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
}

.community-sub {
  color: var(--muted);
}

.community-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.footer-name {
  font-weight: 600;
}

.footer-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--volt);
}

/* Motion */

.hero-enter {
  animation: enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow.hero-enter { animation-delay: 0.06s; }
.hero-title .hero-enter:first-child { animation-delay: 0.16s; }
.hero-title .hero-enter:last-child { animation-delay: 0.26s; }
.hero-ticker.hero-enter { animation-delay: 0.38s; }
.hero-hook.hero-enter { animation-delay: 0.48s; }
.hero-sub.hero-enter { animation-delay: 0.58s; }
.hero-actions.hero-enter { animation-delay: 0.68s; }

.js [data-reveal] {
  opacity: 0;
}

.js [data-reveal="left"] {
  transform: translateX(-18px);
}

.js [data-reveal="scale"] {
  transform: translateY(12px) scale(0.985);
}

.js [data-reveal="pair"] {
  transform: translateY(20px);
}

.js [data-reveal="clip"] {
  opacity: 1;
  clip-path: inset(12% 0 12% 0);
}

.js [data-reveal="frame"] {
  transform: translateY(16px);
}

.js [data-reveal="art"] {
  transform: translateX(16px);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.9s ease;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

@keyframes sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .page-grid,
  .hero-sweep,
  .hero-art,
  .tape-track {
    animation: none !important;
  }

  .js [data-reveal],
  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* Breakpoints */

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .ca-bar {
    padding: 0.95rem 1.15rem;
  }

  .dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .dual-col-end {
    padding-top: 0.4rem;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 2rem;
    text-align: right;
  }

  .visuals-stage {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }

  .visuals-art img {
    margin-inline: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .brand-name {
    display: block;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "copy visual"
      "actions visual"
      "ca visual";
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 1.15rem;
    min-height: 0;
  }

  .hero-copy { grid-area: copy; }
  .hero-visual { grid-area: visual; }
  .hero-actions { grid-area: actions; }
  .ca-bar { grid-area: ca; }

  .hero-art {
    width: min(100%, 38rem);
  }

  .header-inner {
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 3.4rem;
  }

  .hero-inner {
    column-gap: 2.5rem;
  }

  .hero-art {
    width: min(100%, 42rem);
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 5.8rem;
  }

  .narrative-blow {
    font-size: 4.7rem;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy { order: 1; }
  .hero-actions { order: 3; }
  .ca-bar { order: 4; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand ctas"
      "nav nav";
  }

  .brand { grid-area: brand; }
  .header-ctas { grid-area: ctas; }

  .site-nav {
    display: flex;
    justify-content: flex-start;
    grid-area: nav;
    padding-bottom: 0.55rem;
  }
}

@media (max-width: 767px) {
  .header-ctas .btn-quiet {
    display: none;
  }

  .header-ctas .btn {
    padding-inline: 0.7rem;
  }
}

@media (max-width: 430px) {
  .header-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 0.65rem;
    padding-bottom: 0.7rem;
    gap: 0.55rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .header-ctas {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.7fr;
    gap: 0.35rem;
    width: 100%;
  }

  .header-ctas .btn {
    width: 100%;
    min-height: 2.25rem;
    padding: 0.35rem 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn-buy,
  .hero-actions .btn-quiet {
    grid-column: 1 / -1;
  }

  .community-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .community-ctas .btn-buy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .ca-bar {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 360px) {
  .header-ctas .btn {
    padding-inline: 0.48rem;
    letter-spacing: 0.06em;
  }

  .brand-ticker {
    font-size: 0.84rem;
  }

  .hero-title {
    font-size: 2.05rem;
  }
}

@media (hover: none) {
  .banner-frame:hover img,
  .visuals-art:hover img {
    transform: none;
    filter: none;
  }
}
