:root {
  --bg: #030605;
  --bg-2: #06110c;
  --green: #39ff14;
  --green-dim: #1aff6a;
  --green-deep: #0a3d1f;
  --green-glow: rgba(57, 255, 20, 0.45);
  --text: #e8ffe8;
  --muted: #8fb89a;
  --line: rgba(57, 255, 20, 0.22);
  --font-display: "Orbitron", sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(57, 255, 20, 0.12), transparent 55%),
    linear-gradient(180deg, #020403 0%, var(--bg) 40%, #04140c 100%);
  font-family: var(--font-mono);
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  font: inherit;
  cursor: none;
}

.noise,
.scanlines,
#particle-canvas,
#cursor-glow,
#cursor-ring,
#cursor-trail {
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 91;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.18) 3px
  );
  opacity: 0.35;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.22), transparent 65%);
  z-index: 95;
  mix-blend-mode: screen;
  transform: translate3d(-100vw, -100vh, 0);
  transition: opacity 0.25s ease;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-glow), inset 0 0 8px rgba(57, 255, 20, 0.35);
  z-index: 96;
  transform: translate3d(-100vw, -100vh, 0);
}

#cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 94;
}

.trail-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px var(--green-glow);
  opacity: 0;
  animation: trail-fade 0.55s ease-out forwards;
}

@keyframes trail-fade {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(2, 4, 3, 0.92), rgba(2, 4, 3, 0.55), transparent);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px var(--green-glow);
}

.nav {
  display: flex;
  gap: 1.25rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--green);
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.18), rgba(57, 255, 20, 0.05));
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.18), inset 0 0 20px rgba(57, 255, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.4), inset 0 0 24px rgba(57, 255, 20, 0.15);
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.28), rgba(57, 255, 20, 0.08));
}

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

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.65rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.2) brightness(0.55);
  z-index: 0;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(3, 10, 6, 0.35), rgba(2, 4, 3, 0.88) 70%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.55), transparent 30%, rgba(2, 4, 3, 0.95));
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orb-float 10s ease-in-out infinite;
}

.orb-a {
  width: 280px;
  height: 280px;
  left: 8%;
  top: 20%;
  background: rgba(57, 255, 20, 0.25);
}

.orb-b {
  width: 220px;
  height: 220px;
  right: 10%;
  top: 35%;
  background: rgba(26, 255, 106, 0.2);
  animation-delay: -3s;
}

.orb-c {
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: 15%;
  background: rgba(10, 90, 40, 0.45);
  animation-delay: -6s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -24px, 0) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 2rem));
  text-align: center;
  padding: 7rem 0 5rem;
}

.hero-logo {
  width: clamp(110px, 18vw, 170px);
  height: clamp(110px, 18vw, 170px);
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(57, 255, 20, 0.45);
  box-shadow:
    0 0 40px rgba(57, 255, 20, 0.35),
    0 0 80px rgba(57, 255, 20, 0.15);
}

.float-glow {
  animation: float-glow 4.5s ease-in-out infinite;
}

@keyframes float-glow {
  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.5));
  }
  50% {
    transform: translateY(-10px);
    filter: drop-shadow(0 0 28px rgba(57, 255, 20, 0.85));
  }
}

.brand-mark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--green);
  text-shadow:
    0 0 18px rgba(57, 255, 20, 0.75),
    0 0 48px rgba(57, 255, 20, 0.35);
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.glitch::before {
  color: #7cff6a;
  clip-path: inset(0 0 55% 0);
  transform: translate(-2px, -1px);
  animation: glitch-a 3.2s infinite linear alternate-reverse;
}

.glitch::after {
  color: #b6ff4a;
  clip-path: inset(45% 0 0 0);
  transform: translate(2px, 1px);
  animation: glitch-b 2.4s infinite linear alternate-reverse;
}

@keyframes glitch-a {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-3px, 1px);
  }
  96% {
    transform: translate(2px, -1px);
  }
}

@keyframes glitch-b {
  0%,
  88%,
  100% {
    transform: translate(0);
  }
  91% {
    transform: translate(3px, -1px);
  }
  95% {
    transform: translate(-2px, 2px);
  }
}

.hero h1 {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.2vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lede {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ca-line {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
}

.ca-line span {
  color: var(--green);
  letter-spacing: 0.12em;
}

.ca-line code {
  font-family: var(--font-mono);
  color: var(--text);
}

.hero-grid-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10%;
  height: 42%;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(2, 4, 3, 0.95), transparent),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(57, 255, 20, 0.12) 49px,
      rgba(57, 255, 20, 0.12) 50px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(57, 255, 20, 0.1) 49px,
      rgba(57, 255, 20, 0.1) 50px
    );
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, black 20%, transparent 90%);
  animation: grid-pulse 5s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.75;
  }
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(4, 18, 10, 0.85);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
}

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

.section {
  position: relative;
  z-index: 4;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

.section-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

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

.feature {
  padding: 0;
  border: none;
  background: transparent;
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--green);
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.banner-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.12);
}

.banner-frame img {
  width: 100%;
  height: auto;
  filter: contrast(1.05) saturate(1.1);
  transition: transform 0.6s ease;
}

.banner-frame:hover img {
  transform: scale(1.03);
}

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

.stats li {
  padding: 1.4rem 1rem;
  border-top: 1px solid var(--green);
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.08), transparent);
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 16px var(--green-glow);
}

.stats span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px var(--green-glow);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ca-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(4, 20, 12, 0.65);
}

.ca-card span {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.ca-card code {
  flex: 1;
  min-width: 12rem;
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 1rem;
}

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

.social {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(57, 255, 20, 0.08), transparent 60%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social:hover {
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.2);
  transform: translateY(-3px);
}

.social-icon {
  color: var(--green);
  font-size: 1.2rem;
}

.social span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.site-footer img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-glow);
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 100;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--green);
  background: rgba(2, 10, 6, 0.95);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .about-grid,
  .stats,
  .socials {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-header .btn-sm {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  body {
    cursor: auto;
  }

  #cursor-glow,
  #cursor-ring,
  #cursor-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
