.landing-page {
  --landing-bg: #030303;
  --landing-green: #3dff8a;
  --landing-blue: #5b9cff;
  --landing-purple: #b07cff;
  --landing-pink: #ff6bcb;
  --landing-text: #f2f2f2;
  --landing-muted: #8a8a8a;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Inter", system-ui, sans-serif;
  cursor: default;
}

.landing-page * {
  cursor: inherit;
}

.landing-page a {
  cursor: pointer;
}

.landing-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  contain: strict;
}

.landing-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  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");
}

.landing-scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  animation: landing-scan-shift 8s linear infinite;
}

@keyframes landing-scan-shift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(4px);
  }
}

.landing-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.9), transparent);
}

.landing-logo {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--landing-text);
}

.landing-top-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--landing-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-top-link:hover {
  color: var(--landing-green);
}

.landing-hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.landing-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--landing-green);
  margin-bottom: 1.5rem;
  animation: landing-pulse-glow 2.5s ease-in-out infinite;
}

@keyframes landing-pulse-glow {
  0%,
  100% {
    opacity: 0.65;
    text-shadow: 0 0 20px rgba(61, 255, 138, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(61, 255, 138, 0.7);
  }
}

.landing-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(4.5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  position: relative;
  background: linear-gradient(120deg, #fff 0%, var(--landing-green) 40%, var(--landing-blue) 70%, var(--landing-purple) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: landing-gradient-shift 4s ease infinite, landing-glitch-skew 5s infinite;
}

.landing-title::before,
.landing-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.8;
}

.landing-title::before {
  animation: landing-glitch-1 2.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
}

.landing-title::after {
  animation: landing-glitch-2 2s infinite;
  clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
}

@keyframes landing-gradient-shift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes landing-glitch-skew {
  0%,
  90%,
  100% {
    transform: skew(0deg);
  }
  92% {
    transform: skew(2deg);
  }
  94% {
    transform: skew(-3deg);
  }
  96% {
    transform: skew(1deg);
  }
}

@keyframes landing-glitch-1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-4px, 2px);
  }
  40% {
    transform: translate(4px, -2px);
  }
  60% {
    transform: translate(-2px, 1px);
  }
}

@keyframes landing-glitch-2 {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(3px, -1px);
  }
  50% {
    transform: translate(-3px, 2px);
  }
}

.landing-subtitle {
  max-width: 36rem;
  margin-top: 1.75rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--landing-muted);
}

.landing-accent {
  color: var(--landing-green);
  font-weight: 600;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.landing-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.landing-btn-primary {
  background: linear-gradient(135deg, var(--landing-green), #1fa85a);
  color: #041208;
  box-shadow: 0 0 40px rgba(61, 255, 138, 0.35);
}

.landing-btn-primary:hover {
  box-shadow: 0 0 60px rgba(61, 255, 138, 0.55);
}

.landing-btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.landing-btn-ghost:hover {
  border-color: var(--landing-blue);
  box-shadow: 0 0 30px rgba(91, 156, 255, 0.25);
}

.landing-btn-lg {
  padding: 1rem 2rem;
  font-size: 0.85rem;
}

.landing-scroll-hint {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--landing-dim, #555);
}

.landing-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--landing-green), transparent);
  animation: landing-scroll-drop 1.8s ease-in-out infinite;
}

@keyframes landing-scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

.landing-hub {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 6rem 1.5rem 5rem;
  perspective: 1400px;
  overflow: hidden;
}

.landing-hub-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.landing-hub-3d-scene,
.landing-hub-3d-scene * {
  pointer-events: none;
}

.landing-hub-3d-scene {
  position: absolute;
  inset: -10% -5%;
  transform-style: preserve-3d;
  z-index: 0;
}

.landing-hub-prism {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
  transform-style: preserve-3d;
  animation: landing-prism-spin 18s linear infinite;
}

.landing-hub-prism-a {
  top: 5%;
  right: 8%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation-duration: 22s;
}

.landing-hub-prism-b {
  bottom: 15%;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 24px;
  animation-direction: reverse;
  animation-duration: 16s;
  opacity: 0.5;
}

.landing-hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 720px);
  height: min(90vw, 720px);
  margin: -45% 0 0 -45%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: rotateX(72deg) translateZ(-120px);
  animation: landing-ring-pulse 5s ease-in-out infinite;
}

@keyframes landing-prism-spin {
  from {
    transform: rotateX(25deg) rotateY(0deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(25deg) rotateY(360deg) rotateZ(15deg);
  }
}

@keyframes landing-ring-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: rotateX(72deg) translateZ(-120px) scale(1);
  }
  50% {
    opacity: 0.55;
    transform: rotateX(72deg) translateZ(-80px) scale(1.06);
  }
}

.landing-hub-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3.5rem;
  transform-style: preserve-3d;
}

.landing-hub-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.landing-hub-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.5rem, 14vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  animation: landing-hub-title-float 5s ease-in-out infinite;
}

.landing-hub-title::before,
.landing-hub-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.35;
  pointer-events: none;
}

.landing-hub-title::before {
  color: var(--hub-accent, var(--landing-green));
  transform: translate3d(-6px, 0, -40px);
  filter: blur(0);
}

.landing-hub-title::after {
  color: var(--hub-accent-alt, var(--landing-blue));
  transform: translate3d(6px, 4px, -80px);
  opacity: 0.2;
}

@keyframes landing-hub-title-float {
  0%,
  100% {
    transform: rotateX(8deg) translateY(0);
  }
  50% {
    transform: rotateX(4deg) translateY(-12px);
  }
}

.landing-hub-tagline {
  max-width: 32rem;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--landing-muted);
}

.landing-hub-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  transform-style: preserve-3d;
}

.landing-hub-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-hub-grid-utils {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.landing-tool-card {
  position: relative;
  display: block;
  min-height: 168px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  text-decoration: none;
  color: var(--landing-text);
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
  isolation: isolate;
}

.landing-tool-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.landing-tool-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  height: 100%;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 17px;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.12s ease-out;
  pointer-events: none;
}

.landing-tool-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--hub-glow, rgba(61, 255, 138, 0.2)), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.landing-tool-card:hover .landing-tool-card-glow {
  opacity: 1;
}

.landing-tool-card-index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--hub-accent, var(--landing-green));
  margin-bottom: 0.65rem;
}

.landing-tool-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.landing-tool-card p {
  flex: 1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--landing-muted);
}

.landing-tool-card-arrow {
  margin-top: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.25rem;
  color: var(--hub-accent, var(--landing-green));
  transition: transform 0.25s;
}

.landing-tool-card:hover .landing-tool-card-arrow {
  transform: translateX(6px);
}

.landing-tool-vip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  vertical-align: middle;
  padding: 0.15rem 0.4rem;
  margin-left: 0.35rem;
  border-radius: 4px;
  background: rgba(176, 124, 255, 0.25);
  color: var(--landing-purple);
}

.landing-tool-card-feature {
  min-height: 200px;
}

.landing-tool-card-feature .landing-tool-card-inner {
  min-height: 200px;
}

.landing-tool-card-vip {
  border-color: rgba(176, 124, 255, 0.35);
}

.landing-hub-attack {
  --hub-accent: #ff6b7a;
  --hub-accent-alt: #b07cff;
  --hub-glow: rgba(255, 107, 122, 0.35);
  background: linear-gradient(180deg, transparent, rgba(255, 60, 80, 0.04) 40%, transparent);
}

.landing-hub-attack .landing-hub-eyebrow {
  color: #ff6b7a;
}

.landing-hub-attack .landing-hub-title {
  background: linear-gradient(120deg, #fff 0%, #ff6b7a 45%, #b07cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hub-attack .landing-hub-title::before,
.landing-hub-attack .landing-hub-title::after {
  -webkit-background-clip: text;
  background-clip: text;
}

.landing-hub-osint {
  --hub-accent: #3dff8a;
  --hub-accent-alt: #5b9cff;
  --hub-glow: rgba(61, 255, 138, 0.3);
  background: linear-gradient(180deg, transparent, rgba(61, 255, 138, 0.03) 40%, transparent);
}

.landing-hub-osint .landing-hub-eyebrow {
  color: var(--landing-green);
}

.landing-hub-osint .landing-hub-title {
  background: linear-gradient(120deg, #fff 0%, var(--landing-green) 50%, var(--landing-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hub-utils {
  --hub-accent: #5b9cff;
  --hub-accent-alt: #ff6bcb;
  --hub-glow: rgba(91, 156, 255, 0.28);
  background: linear-gradient(180deg, transparent, rgba(91, 156, 255, 0.04) 40%, transparent);
}

.landing-hub-utils .landing-hub-eyebrow {
  color: var(--landing-blue);
}

.landing-hub-utils .landing-hub-title {
  background: linear-gradient(120deg, #fff 0%, var(--landing-blue) 40%, var(--landing-pink) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hub.is-in-view .landing-hub-title {
  animation: landing-hub-title-float 5s ease-in-out infinite, landing-hub-title-enter 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes landing-hub-title-enter {
  from {
    opacity: 0;
    transform: rotateX(35deg) translateY(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotateX(8deg) translateY(0) scale(1);
  }
}

.landing-tool-card.landing-reveal {
  opacity: 0;
  transform: rotateX(18deg) translateY(80px) scale(0.92);
}

.landing-tool-card.landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.landing-hub-header.landing-reveal.is-visible .landing-hub-title {
  animation: landing-hub-title-float 5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .landing-hub {
    min-height: auto;
    padding: 4.5rem 1.25rem 3.5rem;
  }

  .landing-hub-grid,
  .landing-hub-grid-wide {
    grid-template-columns: 1fr;
  }

  .landing-hub-grid-utils {
    grid-template-columns: 1fr 1fr;
  }

  .landing-hub-prism {
    opacity: 0.35;
    width: 160px;
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hub-prism,
  .landing-hub-ring,
  .landing-hub-title,
  .landing-tool-card {
    animation: none !important;
  }

  .landing-tool-card,
  .landing-tool-card-inner {
    transform: none !important;
  }
}

.landing-marquee {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.85rem 0;
}

.landing-marquee-track {
  display: flex;
  width: max-content;
  animation: landing-marquee 28s linear infinite;
}

.landing-marquee-track span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--landing-muted);
  padding-right: 4rem;
  white-space: nowrap;
}

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

.landing-about {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.landing-about-copy h2 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.landing-about-copy p {
  color: var(--landing-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.landing-about-list {
  list-style: none;
  margin-top: 1.5rem;
}

.landing-about-list li {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--landing-text);
}

.landing-about-list li::before {
  content: ">";
  color: var(--landing-green);
  margin-right: 0.75rem;
}

.landing-console-wrap {
  perspective: 800px;
}

.landing-console {
  border-radius: 14px;
  border: 1px solid rgba(61, 255, 138, 0.25);
  background: rgba(8, 8, 8, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(61, 255, 138, 0.08);
  transform: rotateY(-6deg) rotateX(4deg);
  animation: landing-console-float 6s ease-in-out infinite;
}

@keyframes landing-console-float {
  0%,
  100% {
    transform: rotateY(-6deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-8px);
  }
}

.landing-console-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.landing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.landing-dot-red {
  background: #ff5f57;
}

.landing-dot-yellow {
  background: #febc2e;
}

.landing-dot-green {
  background: #28c840;
}

.landing-console-title {
  margin-left: 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  color: var(--landing-muted);
}

.landing-console-body {
  margin: 0;
  padding: 1.25rem 1.25rem 1.5rem;
  min-height: 220px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--landing-green);
  white-space: pre-wrap;
  word-break: break-word;
}

.landing-console-prompt {
  color: var(--landing-purple);
  margin-right: 0.35rem;
}

.landing-console-cursor {
  color: var(--landing-green);
  animation: landing-blink 0.9s step-end infinite;
}

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

.landing-cta {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.landing-cta h2 {
  font-family: "Syne", sans-serif;
  font-size: 2.25rem;
}

.landing-cta p {
  color: var(--landing-muted);
  margin: 1rem 0 2rem;
}

.landing-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.landing-foot {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--landing-muted);
}

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

.landing-foot a:hover {
  color: var(--landing-green);
}

.landing-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 3;
  opacity: 0.45;
  animation: landing-orb-drift 12s ease-in-out infinite;
}

.landing-orb-a {
  width: 420px;
  height: 420px;
  background: var(--landing-green);
  top: 10%;
  left: -10%;
}

.landing-orb-b {
  width: 360px;
  height: 360px;
  background: var(--landing-purple);
  bottom: 20%;
  right: -8%;
  animation-delay: -4s;
}

.landing-orb-c {
  width: 280px;
  height: 280px;
  background: var(--landing-blue);
  top: 50%;
  left: 40%;
  animation-delay: -7s;
}

@keyframes landing-orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
}


.landing-page.landing-is-scrolling .landing-scanlines,
.landing-page.landing-is-scrolling .landing-orb {
  animation-play-state: paused;
}

.landing-page {
  scroll-behavior: auto;
  overscroll-behavior: none;
}
